
/*--- estilos para los ul y li del formulario ---*/
.contact_form ul {
    width:auto;
    list-style-type:none;
	margin:0px 20px 0px 40px;
	padding:0px;
}
.contact_form li{
	padding:0px; 
	/*border-bottom:.5px solid #333;*/
	position:relative;
} 
.contact_form label {
    color: #FFF;
    display: inline-block;
    float: left;
    font-size: 12px;
    margin-top: 0px;
    padding: 3px;
    width:50px;
}
.contact_form input {
	height:15px; 
	font-size: 9px;
	width:200px; 
	padding:8px;
}
.contact_form textarea {
	padding:8px; 
	width:200px;
	overflow:auto;
	resize: none;
}
.contact_form button {
	margin-left:90px;
}

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

.contact_form input, .contact_form textarea { 
	border:1px solid #defc97;
	box-shadow: 0px 0px 3px #fff, 0 5px 5px #defc97 inset;
	border-radius:2px;
	color: #000;
	font-size: 12px;
	padding-right:10px;
	-moz-transition: padding .25s; 
	-webkit-transition: padding .25s; 
	-o-transition: padding .25s;
	transition: padding .25s;
	background: #ecffc0;
	 
}
.contact_form input:focus, .contact_form textarea:focus {
	background: #fff; 
	border:1px solid #defc97; 
	box-shadow: 0 0 3px #fff; 
	padding-right:80px;
}

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

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

/* === Estilos del boton de Envio === */
button.submit {
	font-size:9px;
   padding: 2px:
   line-height: 1;
   color: #000;
   border: none;
   /*text-shadow: 0 1px 1px rgba(255, 255, 255, 0.85);*/
   background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#c5f25e), to(#d9f49c));
   background-image: -moz-linear-gradient(0% 100% 90deg, #c5f25e, #d9f49c);
   filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c5f25e', endColorstr='#d9f49c');

   background-color: #c5f25e;
   border: 1px solid #c3f255;
   border-radius: 3px;
   box-shadow: 0 1px 2px rgba(1, 0, 0, 0.5);
   opacity:.8;
   
}
button.submit:hover {
	opacity: 1;
	cursor: pointer;
}
button.submit:active {
	opacity:.3;
	border: 1px solid #888;
	box-shadow: 0 0 10px 5px #999 inset; 
}
