/* input y textarea no se resetean en reset.css */
input {
	margin: 0px;
	padding: 0px;
	vertical-align: top;
}

textarea {
	margin: 0px;
	padding: 0px;
}

form {
	padding-left: 20px;
}

form ol {
	list-style-type: none;
	padding: 0px;
}

form ol li {
	padding-bottom: 5px;
}

form ol li label {
	/* Propiedades para etiquetas arriba */
	//display: block;
	/* Propiedades para etiquetas a la izquierda */
	width: 80px;
	display: inline-block;
	text-align: left;
	vertical-align: top;
	padding-right: 10px;
}

/* El contenedor del error en CodeIgniter es un <p>
   (poner el color adecuado) */
/*form ol li p {
	display: inline;
	height: auto;
	padding-left: 10px;
	color: #ff0000;
}*/

/* El contenedor del error en jquery.validate es un <label class="error">
   (poner el color adecuado) */
form ol li label.error {
	text-align: left;
	padding: 0px 0px 0px 90px;
	color: #ff0000;
	display: block;
	width: 160px;
}

/* El contenedor del error en CFormsII puede ser:
   li.cf_li_err span.reqtxt
   li.cf_li_err span.emailreqtxt
   ... 
   (poner el color adecuado) */
/*li.cf_li_err span.reqtxt,
li.cf_li_err span.emailreqtxt {
	padding: 0px 0px 0px 10px;
	color: #ff0000;
}*/

form p {
	/*height: 40px;*/
	/*padding-bottom: 0px;*/
	/* Sólo para cuando las etiquetas están a la izquierda */
	/*padding-left: 160px;*/
}

form p input {
	/*margin-right: 10px;
	padding-left: 10px;
	padding-right: 10px;*/
	cursor: pointer;
	display: block;
	/*float: left;*/
}

/*form p a {
	display: block;
	float: left;
	margin-right: 10px;
}*/

#nombre,
#direccion,
#email,
#telefono,
#destinatario,
#asunto {
	height: 18px;
}

#nombre,
#direccion,
#email,
#telefono,
#destinatario,
#asunto,
#mensaje {
	border: 1px solid #bfbfbf;
	width: 330px;
}

form p.botones {
	width: 420px;
	height: 31px;
	position: relative;
	padding-bottom: 10px;
}

#enviar {
	position: absolute;
	left: 120px;
	top: 0px;
	display: block;
	width: 50px;
	height: 31px;
	text-indent: -9999px;
	border: 0 none;
	padding-top: 31px; /* para quitar el texto */
	background-color: #e6e6e6;
	background-image: url("../images/enviar.png");
	background-repeat: no-repeat;
}

#borrar {
	position: absolute;
	left: 320px;
	top: 0px;
	display: block;
	width: 50px;
	height: 31px;
	line-height: 31px;
	text-indent: -9999px;
	background-image: url("../images/borrar.png");
	background-repeat: no-repeat;
}