/* jqModal base Styling courtesy of;
  Brice Burgess <bhb@iceburg.net> */

/* The Window's CSS z-index value is respected (takes priority). If none is supplied,
  the Window's z-index value will be set to 3000 by default (in jqModal.js). You
  can change this value by either;
    a) supplying one via CSS
    b) passing the "zIndex" parameter. E.g.  (window).jqm({zIndex: 500}); */
.mensagem {
    color: #f5f5f5;
	font-family: Helvetica, tahoma;
	font-size: 12px;
}
 
.jqmWindow {
    display: none;
    position: fixed;
    top: 30%;
    left: 50%;
    margin-left: -160px;
    width: 343px;
	height: 116px;
	background-position: top;
	background-repeat: no-repeat;
    color: #f5f5f5;
	text-align:center;
	vertical-align:middle;
	line-height: 20px;
}


.mensagemCentro {
		background-color: #890e2e;
		padding: 10px;
}

.mensagemTop {
	background-image: url(../imagens/mensagensTop.png);
	width: 343px;
	height: 10px;
}

.mensagemBottom {
	background-image: url(../imagens/mensagensBottom.png);	
	width: 343px;
	height: 10px;
}

.jqmOverlay { background-color:#333333; }

.tituloMensagem {
	color: #fa3d6e;
	font-size: 16px;
	font-weight: bold;
}

/* 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');
}


a.jqmClose {
	color: #fa3d6e;
	text-decoration: none;
	font-family: Helvetica, tahoma;
	font-size: 11px;
	font-weight: bold;
}