/* CSS Document */
/* Author: Pablo Lara */
.contact_form h2 {
    background: none repeat scroll 0 0 #F3F3F3;
    border-radius: 5px;
    color: #5CD053;
    display: block;
    font-family: sans-serif;
    font-size: 20px;
    padding: 5px;
    text-shadow: 1px 1px 1px #CCCCCC;
    width: 433px;
}
/*--- estilos para los ul y li del formulario ---*/
.contact_form ul {
    list-style-type:none;
	margin:0px;
	padding:0px;
}
.contact_form li{
	padding:4px; 
	position:relative;
} 
.contact_form label {
    color: #555555;
    display: inline-block;
    float: left;
    font-family: sans-serif;
    font-size: 13px;
    font-weight: bold;
    margin-top: 3px;
    padding: 3px;
    width: 90px;
}
.contact_form input {
	height:20px; 
	width:298px; 
	padding:10px;
	margin:-2px;
}
.contact_form textarea {
	padding:8px; 
	width:300px;
}
.contact_form button {
    text-align: center;
}

/*----- estilos visuales de los elementos --------*/

.contact_form input, .contact_form textarea {
	background-color:#dde1e0;
	color: #000;
	font-size: 12px;
	font-weight:bold;
	padding-right:30px;
    margin-left: -2px;
    margin-top: -2px;
}
.contact_form input:focus, .contact_form textarea:focus {
	background: #FFF; 
}
.contact_form input:focus.button_send{
	background: #00adc4; 
}

/* === Estilos de Validacion === */	

.contact_form input:required:valid, .contact_form textarea:required:valid {
	box-shadow: 0 0 5px #5cd053;
	border-color: #CCC;
	background: #fff; 
}
.contact_form input:focus:invalid, .contact_form textarea:focus:invalid {
	box-shadow: 0 0 5px #d45252;
	border-color: #CCC;
	background: #fff; 
}

/* === Estilos del boton de Envio === */
button.submit {
    padding: 2px;
   font-family: Helvetica, Arial, sans-serif;
   font-weight: bold;
   line-height: 1;
   color: #444;
   border: none;
   background-color:#00adc4;
	border: 1px solid #ccc;
    text-align: center;
}
button.submit:hover {
	cursor: pointer; 
   background-color:#00adc4;
	color: #fff;
}
button.submit:active {
	border: 1px solid #ccc;
   background-color:#00adc4;
}
.button_send{
   background-color:#00adc4;
}

.contact_form select {
	padding: 10px;
	font-size: 12px;
	line-height: 150%;
	color: #313131;
	width: 261px;
	background-color:#00adc4;
	font-weight:600;
	}

.contact_form .button_send {
    color: #FFF;
    height: 29px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    padding: 0px;
    width: 120px;
    background-color: #3c589e;
	margin-left:216px;
}
.contact_form .button_send:hover{
	background-color:#00adc4;
    padding: 0px;
    text-align: center;
	margin-left:216px;
}
.contact_form .button_send:active {
	background-color:#00adc4;
    padding: 0px;
	margin-left:216px;
    text-align: center;
}
.contact_form .button_send:selected {
	background-color:#00adc4;
    padding: 0px;
	margin-left:216px;
    text-align: center;
}