/*******ESTILO PARA EL FORMULARIO************/
form.fc {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font: 14px "Trebuchet MS", Arial, sans-serif;
  padding: 0;
  width: 450px;
  float: left;
}
form.fc label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 75px; 
	padding: 0; 
	margin: 10px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right;
	font-weight:bold;
}
form.fc .cajatexto{
	width:360px;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:7px 0 5px 10px; /* set margin on left of form elements rather than right of label aligns textarea better in IE */
	background:#EAF4F7;
	border:1px solid #8CC6D9;
	font: 14px "Trebuchet MS", Arial, sans-serif;
	float:left;
}
form.fc textarea{
	overflow: auto;
}
form.fc small {
	display: block;
	margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}
form.fc #enviar-custom{
	width: 80px;
	height: 27px;
	padding: 25px 0 0 0;
	margin: 10px 0 0 0;
	border: 0;
	background: transparent url(images/bot_enviar.gif) no-repeat center top;
	overflow: hidden;
	cursor: pointer; /* hand-shaped cursor */
	cursor: pointer; /* para IE 5.x */
}
/**********************/