/*
	w3FormValidation (2.0) - 25/11/2006
	Por Leandro Vieira Pinho - http://leandro.w3invent.com.br
	
	Para informações de uso deste add-on visite:
	http://leandro.w3invent.com.br/addons/w3FormValidation/

	Nota: Este add-on requer a Mtzlib 0.2.6 ou superior.
	Mtzlib: http://metzen.com.br/mtzlib/

	O código HTML gerado para exibir o box com as mensagens é o seguinte:
	
	<div id="w3ShowMsgToUser">
		<h3>Observações!</h3>
		<ol>
			<li>Mensagem</li>
			<li>...</li>
		</ol>
		<input id="w3ShowMsgToUserBtnOk" value="Ok" type="button">
	</div>
*/
#w3BodyOverlay { 
	background-color: #000;
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	filter:alpha(opacity="0");
}
#w3ShowMsgToUser {
	position: absolute;
	left: 50%;
	width: 350px;
	margin-left: -175px;
	background-color: #C0E7FA;
	border: 2px solid #59C0F1;
	color: #000;
	padding: 0 0 5px 1em;
	opacity: 0;
	filter: alpha(opacity="0");
	font-family: "Trebuchet MS", Arial, sans-serif;
	font-size: small;
	text-align: left;
}
#w3ShowMsgToUser h3 {
	background-color: #59C0F1;
	margin: 0 0 0.5em -1em;
	padding: 0.5em 1em 0.5em;
}
#w3ShowMsgToUser ol {
	margin: 0 0 5px;
	padding: 0;
	list-style-position: inside;
	list-style-type: decimal;
	line-height: 1.5em;
}
#w3ShowMsgToUser input {
	width: 65px;
	font-weight: bold;
	padding: 0;
	font-family: "Trebuchet MS", Arial, sans-serif;
	margin: 0;
}
.w3FieldError {
	background-color: #fcc;
}