
/* form style */
#myform {
	background:#E8EEFA;
	padding:10px 10px;
	color:#eee;
	width:200px;
	margin:0 auto;
	position:relative;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}

.fondoDatos{
	background:#E8EEFA;
}

#myform.grande {
	width:auto;	
}

/* nested fieldset */
#myform fieldset {
	border:0;
	margin:0;
	padding:0;
	background:#E8EEFA;
	
}



/* typography */
#myform h3 	{ color:#eee; margin-top:0px; }
#myform p 	{ font-size:11px; }


/* input field */
#myform input {
	border:1px solid #444;
	background-color:#666;
	padding:5px;
	color:#ddd;
	font-size:12px;

	/* CSS3 spicing */
	text-shadow:1px 1px 1px #000;
	-moz-border-radius:4px;
	-webkit-border-radius:4px;
}

#myform input:focus 	{ color:#fff; background-color:#777; }
#myform input:active 	{ background-color:#888; }


/* button */
#myform button {
	outline:0;
    cursor:pointer; position: relative;
	/*border:1px solid #000080;  */
	text-align: center;
	text-decoration:none;
}


#myform p {
	padding: 0px 0 0 20px;
}
#myform p span{
	color: #565656;
}


/* error message */
.error {
	height:15px;
	background-color:#800000;
	font-size:11px;
	border:1px solid #ff0000;
	padding:4px 10px;
	color:#fffbf0;
	display:none;

	-moz-border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius-bottomleft:0;
	-moz-border-radius-topleft:0;
	-webkit-border-bottom-left-radius:0;
	-webkit-border-top-left-radius:0;

	-moz-box-shadow:0 0 6px #ddd;
	-webkit-box-shadow:0 0 6px #ddd;
}

.error p {
	margin:0;
}




/* field label */
label {
	/*display:block;*/
	font-size:11px;
	color:#33406B;
    text-align:left;
    text-autospace:ideograph-space;
}

.grande label{
	float: left;
	width: 120px;
}

#terms label {
	float:left;
}

#terms input {
	margin:0 5px;
}


#resultados {
	background-color:#E8EEFA;
	color:#C00000;
	font-size: 0.9em;
	width:180px;
	padding:10px;
	margin:5px auto;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
}