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

*{
	margin: 0;
	padding: 0;	
}
body{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #000;
}
#contenedor{
	display: block;
	width: 600px;
	margin: 0 auto;
	border: 1px solid #333;	
}
form{
	margin: 20px 40px;		
}
label{
	font-weight: bold;
	text-decoration: underline;
	display: block;
	clear: both;
	width: 100%;
	margin: 10px 0;
	height: 20px;	
}
input{
	border: none;
	background: #58595B;
	color: #FFF;
	height: 30px;
	line-height: 30px;
	width: 100%;
	clear: both;
}
div.check{
	width: 100%;
	height: 30px;
	display: block;
	clear: both;	
}
div.check input{
	height: 15px;
	width: 15px;
	float: left;
	margin: 0 10px 0 0;
}
div.check label{
	text-decoration: none;
	font-weight: normal;
	margin: 0;
	clear: none;
	width: auto;
	display: inline;
}
#btnEnviar{
	display: block;
	width: 210px;
	height: 41px;
	border: none;
	background: url(imagenes/btnEnviar.jpg) top left no-repeat;
	text-indent: -9999px;
	margin: 20px 0 10px 310px;
	cursor: pointer;
}
#btnEnviar:hover{
	box-shadow: 2px 2px 5px #333;
	-webkit-box-shadow: 2px 2px 5px #333;
	-moz-box-shadow: 2px 2px 5px #333;	
}
p{
	margin: 20px 0;
	color: #666;	
}
#gracias, #error{
	display: none;
	font-weight: bold;
	width: 95%;
	padding: 5%;
}