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


#datos
{
	float:center;
	width:500px;
	height:440px;
    margin:0 auto;	
	text-align:left;
	padding-top: 148px;
}
#nombre
{
	width:500px;
	height:20px;
}

#e-mail
{
	width:500px;
	height:20px;
}
#teléfono
{
	width:500px;
	height:20px;
}
#ciudad
{
	width:500px;
	height:20px;
}
#celular
{
	width:500px;
	height:20px;
}
#servicio
{
	width:500px;
	height:80px;
	max-height:"200";
}
label
{
	display:block;
	padding:5px;
	font-family:"Calibri", Gadget, sans-serif;
	font-size:12px;
}

#btnsubmit
{
	border:none;	
	background:#9AB62A;
	color:#FFF;
	cursor:pointer;
	border-radius:10px;
}




/*--- estilos para los ul y li del formulario ---*/
.contact_form ul {
    width:750px;
    list-style-type:none;
	margin:0px;
	padding:0px;
}
.contact_form li{
	padding:8px; 
	border-bottom:0px solid #eee;
	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:350px; 
	padding:5px 8px;
}
.contact_form textarea {
	padding:8px; 
	width:350px;
}
.contact_form button {
	margin-left:90px;
}

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

.contact_form input, .contact_form textarea { 
	border:1px solid #aaa;
	box-shadow: 0px 0px 3px #ccc, 0 10px 15px #eee inset;
	border-radius:2px;
	color: #888;
	font-size: 12px;
	padding-right:30px;
	-moz-transition: padding .25s; 
	-webkit-transition: padding .25s; 
	-o-transition: padding .25s;
	transition: padding .25s;
}
.contact_form input:focus, .contact_form textarea:focus {
	background: #fff; 
	border:1px solid #9AB62A; 
	box-shadow: 0 0 3px #9AB62A; 
	padding-right:80px;
}

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

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

/* === 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;
   text-shadow: 0 1px 1px rgba(255, 255, 255, 0.85);
   background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#fff), to(#bbb));
   background-image: -moz-linear-gradient(0% 100% 90deg, #BBBBBB, #FFFFFF);
   background-color: #fff;
   border: 1px solid #f1f1f1;
   border-radius: 10px;
   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}
button.submit:hover {
	opacity:.90;
	cursor: pointer; 
	color:#9AB62A;
}
button.submit:active {
	border: 1px solid #9AB62A;
	box-shadow: 0 0 10px 5px #fff inset; 
}
