@charset "utf-8";
/* CSS Document */

html, body {
height:100%;
}
 
body {
	margin:0; 
	padding:0;
	background-image:url(../img/background.jpg);
	font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #666;
	}
	
.clear {clear:both;}

#master { 
	max-width:480px; /*largura máxima do layout*/
	width: 90%; /*ajuste do layout à tela*/
	position:relative;  /*Contexto de posicionamento */
	margin:0 auto;
	min-height:100%;
	background-color:#F5F5F5;
	border-left:1px solid #CCC;
	border-right:1px solid #CCC;
	}
 * html #box {
 height: 100%;
 }	




#corpobox{
width:480px; /* Tamanho da Largura da Div */
height:460px; /* Tamanho da Altura da Div */
top:50%; 
position:absolute;
margin-top:-230px; /* ou seja ele pega 50% da altura tela e sobe metade do valor da altura no caso 100 */
}
#logo{
	height:206px;
	text-align:center;
}

#formulario{
	width:310px;
	height:315px;
	left:50%; 
	position:absolute;
	margin-left:-150px;
	
}

label{
		font-size:14px;
		color:#369;
		font-weight:bold;
	}
	input {
		-webkit-border-radius: 8px;
		-moz-border-radius: 8px;
		border-radius: 8px;
		border: 1px solid #CCC;
		height:30px;
		width:300px;		
	}
	
	input[type="submit"]
	{
		color:#FFF;
		font-weight:bold;
		background-color:#004C66;
	}

#logininvalid{
margin-left:90px;
margin-bottom:10px;
font-family: Tahoma, Verdana, Arial, Helvetica, sans-serif;
font-size: 12px;
font-weight:bold;
color: #900;
	
}