/* formulario contacto */
/* El formulario medirá:  Ancho del form (300) + margen del input (130) + 6 px = 436px */

#formularioContacto {
	width:235px; /*LAS CAJAS SE ADAPTAN AL ANCHO DEL FORM */
	font-family:"Trebuchet MS", Tahoma, Verdana, Arial, Helvetica, sans-serif;
	text-align:left;
	font-size:12px;
	float:left;
	display:inline;
	/*background-color:#eee;*/
	margin:0 0 0 0;
	padding:0 0 32px 0;
}

#formularioContacto label {
	width:110px; /* ESPACIO PARA EL TEXTO DEL LABEL*/
	margin:2px 0 0 0;
	text-align:right; 
	/*font-family:"Trebuchet MS", Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;*/
	font-weight:bold;
	color:#fff;
	position:absolute; /* PARA LABEL SOBRE EL CAMPO ELIMINAR */
	clear:right;
}

#formularioContacto input, #formularioContacto textarea {
	width:100%;
	margin:0 0 4px 120px; /* DEJAR UN MARGEN PROPORCIONAL AL LABEL +10px. PARA LABEL SOBRE CAMPO ELIMINAR*/ 
	font-family:"Trebuchet MS", Tahoma, Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	font-weight:normal;
	color:#fff;
	border:1px #fff solid;
	background-color:#676d70;
	text-align:left;
}

#formularioContacto .botonClean, #formularioContacto .botonSubmit {
width:100px;
height:21px;
margin:0 0 4px 120px;
color:#fff;
border:1px #fff solid;
background-color:#000;
font-weight:bold;
text-align:center;
position:absolute;
cursor:pointer;
}

#formularioContacto .botonSubmit {
margin:0 0 4px 261px; /* PARA un FORM de 436 */
}


/* fin formulario */