/* ================================================= */
/* 	 GENERIC FORM CSS                                 */
/* ================================================= */
#form1{
	margin:0px;
	font:Normal 12px Arial,Tahoma, Verdana, Helvetica, sans-serif;
	width: auto; 
	color:#000;
	text-align: right;
	float: left;
}

/* ================================================= */
/* 	 FORM AND FIELDSET CSS                         */
/* ================================================= */

form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font:12px Geneva,arial,sans-serif; margin: 10px 0; padding: 10px 0; width: 100%;
}

fieldset {
  / * clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  padding: 10px 0;
    background: #fff;
border: 1px dotted #9f9f9f;
	margin: 0 15px 15px 0;
	float: left;
	clear: right;
}
fieldset p{
	margin: 0 0 4px;
	
}
.left{
	text-align: left;
}
.right{
	text-align: right;
}

.form-label {
	width:110px;
	float: left;
	color: gray;
}
.text_field {
	background: #fff url('../images/bg_box.gif') repeat-x top left;border: 1px solid #b8b8b8;padding: 5px 8px;
	margin: 2px 0px 2px 5px;
	float: right;

}
.form-field {
  float:left;
	width: 230px;
	
}


.form-item {
  clear:both;
	padding:0;
	margin-bottom:5px;
	float: left;
}
.cf {display: inline-block;}

fieldset legend {
	font: 12px Tahoma, Helvetica, sans-serif; background: #dcdcdc;
 color: #808080;
	float: none;
	text-align: left;
	padding: 2px 5px 3px;
}
/*.estender{
	width: 523px;
}*/
form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 100px; 
	padding: 0 10px 0 0; 
	margin: 6px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}
form dfn {margin:0 10px;}

form input, form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 0px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

textarea { overflow: auto; }

form small {
	display: block;
	margin: 0 0 5px 100px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}


form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

.datos_extra{
	text-align: right;
	/*float: left;*/
	background-color: #efefef;
	padding: 5px;
	margin-left: 15px;
}
.datos_extra ul{
	float: left;
	clear: none;
}
/* ================================================= */
/* 	 INPUT FIELD CSS                                 */
/* ================================================= */

form input {
	background-color: #FAFAFA; background-image: url("../images/bg_box.gif");border: 1px solid #cccccc;color: #484848;
	padding-bottom: 2px;
	padding-left: 2px;
	padding-top: 2px;
	margin-left: 2px;
}


form textarea.textbox {width: 55%;}

form input[type=radio],
form input[type=checkbox]
					{border: none;
	clear: none;
	margin-right: 5px;
}

textarea 
					{background: #fff url('../images/bg_box.gif') repeat-x top left;border: 1px solid #b8b8b8;
	margin: 2px 0px 2px 5px;
	padding: 5px 8px;
}
textarea 
					{width: 97%;
	margin-bottom: 6px;
}

input[type=text]:focus,
input[type=password]:focus,
textarea:focus {
	background: #fff url('../images/bg_box.gif') repeat-x top left;
}
input[type=submit],
input[type=button],
textarea:focus 
					{background: #e4e4e4;
					cursor: pointer;}


form div input.inputCheckbox, form div input.inputRadio, input.inputCheckbox, input.inputRadio 
					{ width: auto;
	margin: 2px 10px;
}

form fieldset p input.required{
	background: #fff url('../images/required.gif') 98% 50%  no-repeat;
}
form input.required{
	background: #fff url('../images/required.gif') 98% 50% no-repeat;
}
form select{
	width: 325px;
	margin-left: 5px;
	margin-top: 5px;
}

