/* CSS Document */
/* Author: Pablo Lara */


/* CONTACT FORM */
.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: 343px;
}
/*--- estilos para los ul y li del formulario ---*/
.contact_form ul {
    list-style-type:none;
	margin:0px;
	padding:0px;
}
.contact_form li{
	position:relative;
	margin:3px;
} 
.contact_form label {
    color: #555555;
    display: inline-block;
    float: left;
    font-family: sans-serif;
    font-size: 13px;
    font-weight: bold;
    margin-top: 3px;
    padding: 6px;
    width: 70px;
}
.contact_form input {
	height:12px; 
	width:274px; 
	padding:13px 12px;
}
.contact_form textarea {
	padding:8px; 
	width:278px;
}
.contact_form button {
    text-align: center;
}

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

.contact_form input, .contact_form textarea { 
	color: #FFF;
	font-size: 14px;
	padding-right:30px;
	-moz-transition: padding .25s; 
	-webkit-transition: padding .25s; 
	-o-transition: padding .25s;
	transition: padding .25s;
    font-weight: bold;
	background-color:#273042;
}
.contact_form textarea{
	font-family: 'Open Sans', sans-serif;
	font-size:13px;
	font-weight:bold;
	line-height:150%;
	color:#FFF;
}
/* === Estilos de Validacion === */	

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

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

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

.contact_form .button_send {
	background-color:#16439c;
    color: #FFF;
    height: 29px;
    font-weight: bold;
    cursor: pointer;
    text-align: center;
    padding: 0px;
    margin: 0px;
    width: 140px;
	height:42px;
	font-size: 14px;
	border:none;
}
.contact_form .button_send:hover{
	background-color:#bc2b54;
    padding: 0px;
    margin: 0px;
    text-align: center;
	height:42px;
}
.contact_form .button_send:selected {
	background-color:#bc2b54;
    padding: 0px;
    margin: 0px;
    text-align: center;
	height:42px;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  border: 0px solid #FFF;
  -webkit-text-fill-color: #FFF;
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
  transition: background-color 5000s ease-in-out 0s;
}