/* jqmWindow ------------------------------------------------------*/

.jqmWindow {
    display: none;    
    position: fixed;
    top: 17%;
    left: 50%;    
    margin-left: -250px;
	width: 500px;    
    background-color: #f1f1f1;
    color: #333;
	font: Calibri, Arial, Helvetica, sans-serif;
	font-size:15px;
	font-style:italic;
	font-weight:bold;
    border: 1px solid #ffffff;
	border-bottom: 3px solid #8bc7d5;
    padding: 20px 20px 20px 25px;
	border-radius: 10px 10px 10px 10px;
    box-shadow: 0 4px 6px #001a20;
}
.jqmWindow hr {
	border:0px;
	border-top: #999999 1px dotted;
	width: 80%;
}

.jqmClose {
	padding: 7px 35px 5px 10px;
	margin: 0px;
	top: 0px;
	float:right;
	background:url(../redise%C3%B1o/images/cerrar.png) no-repeat right;
}

.jqmOverlay { background-color: #003642; }

/* Fixed posistioning emulation for IE6
     Star selector used to hide definition from browsers other than IE6
     For valid CSS, use a conditional include instead */
* html .jqmWindow {
     position: absolute;
     top: expression((document.documentElement.scrollTop || document.body.scrollTop) + Math.round(17 * (document.documentElement.offsetHeight || document.body.clientHeight) / 100) + 'px');
}