.widget {
	overflow: hidden;
	float: expression('left');
	position: relative;
}
form {
	font-family: Verdana, Arial, Sans-Serif;
	background-color: #FAFAFA;
	border: 1px solid #878177;	
	padding: 10px;
	/*height: expression('1%'); /* IE Pick-a-boo bug fix */
	font-size:10px;
	display:block;
	
}
form.transparente {
	font-family: Verdana, Arial, Sans-Serif;
	background:none;
	border:none;	
	padding: 5px;
	height: expression('1%'); /* IE Pick-a-boo bug fix */
	font-size:10px;
}

fieldset {
	/*float: expression('none'); /* Fixes IE problem with fieldset+legend boundaries 
	position: expression('relative'); /* Fixes IE problem with fieldset+legend boundaries */
	padding: 15px 10px;
	background-color:#FAFAFA;
	margin: 10px 5px;
	border: 3px solid #E4E3D3;
	
}
fieldset fieldset  {
	border: 1px solid #ccc;
	background-color:#FFF;
}
legend {
	/*position: expression('absolute'); */
	top: expression('-9px'); /* Fixes IE problem with fieldset+legend boundaries */
	padding: 2px 5px;
	color: #888;
	font-size: 135%;
	
}
fieldset fieldset legend {
	font-size: 135%;
}
label, .label {	
	color: #333;
	font-size: small;
	margin: 0;
}
/* .label is typically used on a span or p tag to label a radio or checkbox group */
label.preField, .label  {
	display: -moz-inline-box;
	display: inline-block;	
	width: expression('15em'); /* Min-width for IE6 */
	min-width: 17em;
	padding: 0 2px;
	margin: 0.6em 4px 0.6em 0;
	background-color: #EDEDDC;
}
.label { display: block; width: auto; }

label.postField  {
	margin-left: 4px;
	margin-right: 4px;
}
textarea {
	padding: 0;
	vertical-align: top;
	margin: 2px 0 1px 0;
}
input {
}
input[type=text], input[type=password] {
	width: 12em;
}
select {
	padding: 0;
	margin: 2px 0 1px 0;
}

/* Form Builder Related Rules */
/* ========================== */
/* Form or Fieldset instruction paragraph. */
.instructions {
	margin: 1em 0;
	font-style: italic;
	
}
/* Ties together a label and its checkbox or radio */
.oneChoice {
	white-space: nowrap; 
}
/* wForms Related Rules */
/* ==================== */
/* Field w/ a validation error */
.error {	/* deprecated since wForms v0.92 */
	border: 1px solid #F00;
}
.errFld {
	padding: 1px;
	border: 1px solid #F00;
}

/* Field-Hint with focus */
.field-hint {
	color: #000;
	float: right;
	clear: right;
	width: 190px;
	background-color: #FFFFFF;
	border: 1px solid #bbb;
	margin: 2px 0 7px 0;
	padding: 2px;
	font-size: 110%;
	min-height: 2em;	
}
/* Field-Hint without focus */
.field-hint-inactive {
	color: #666;
	float: right;
	clear: right;
	width: 190px;
	background-color: #FFFFFF;
	border: 1px solid #E4E3D3;
	margin: 2px 0 7px 0;
	padding: 2px;
	font-size: 110%;
	min-height: 2em;
}

/* offstate classes for the Switch Behavior are in wforms-jsonly.css */

/* Buttons */
.actions {
	text-align: center;
}
.primaryAction {
	display: inline;
}
.secondaryAction {
	color: grey;
	display: inline;
}
.secondaryAction:hover {
	color: black;
}

/*
	Validaciones
*/
input.disabled {
	border: 1px solid #F2F2F2;
	background-color: #F2F2F2;
}

input.required, textarea.required {
	/*border: 1px solid #00A8E6;*/
}
input.validation-failed, textarea.validation-failed {
	border: 1px solid #FF3300;
	color : #FF3300;
}
input.validation-passed, textarea.validation-passed {
	border: 1px solid #00CC00;
	color : #000;
}

.validation-advice {
	margin: 5px 0;
	padding: 5px;
	background-color: #FF3300;
	color : #FFF;
	font-weight: bold;
	width:98%;
}


