/*
 * SimpleModal OSX Style Modal Dialog
 * http://www.ericmmartin.com/projects/simplemodal/
 * http://code.google.com/p/simplemodal/
 *
 * Copyright (c) 2010 Eric Martin - http://ericmmartin.com
 *
 * Licensed under the MIT license:
 *   http://www.opensource.org/licenses/mit-license.php
 *
 * Revision: $Id: osx.css 254 2010-07-23 05:14:44Z emartin24 $
 */

#osx-modal-content, #osx-modal-data {
	display:none;
}
/* Overlay */
#osx-overlay {
	background-color:#000;
	cursor:wait;
}
/* Container */
#osx-container {
	background: url(http://www.rogerbras.com.br/site/imagens/estrutura/bg_light_box.png) no-repeat;
	color:#000;
	font: 16px/24px "Lucida Grande", Arial, sans-serif;
	padding-bottom:4px;
	width:678px;
	height:552px;
}
#osx-container a {
	color:#ddd;
}
#osx-container #osx-modal-title {
	color:#000;
	font-weight:bold;
	padding:6px 8px;
	text-shadow:0 1px 0 #f4f4f4;
}
#osx-container .close {
	display:none;
	position:absolute;
	right:10px;
	top:10px;
}
#osx-container .close a {
	display:block;
	color:#70161F;
	font-weight:bold;
	padding:6px 12px 0;
	font-size:18px;
	text-decoration:none;
	text-shadow:0 1px 0 #f4f4f4;
}
#osx-container .close a:hover {
	color:#000;
}
#osx-container #osx-modal-data {
	font-size: 12px;
    margin-left: 30px;
    margin-top: 20px;
    padding-left: 10px;
    padding-top: 20px;
    width: 610px;
}
#osx-container h2 {
	margin:10px 0 6px;
	color:#70161F;
	font-size:20px;

}
#osx-container p {
	margin-bottom:10px;
}
#osx-container span {
	color:#777;
}

