@import url("formcheck.css");

form 
{
 position:relative;
 /*top:50px;*/
 font-family:Arial, Helvetica, sans-serif;
 font-size:1em;
 text-align:left;
}

/* Form Sections ======================================================================== */
/* Fieldset  */

fieldset
{
 margin: 0;
 padding: 0;	
 /*border: 1px solid #674d34;	*/
 /*overflow: auto;*/
}

legend
{
 padding: 2px 5px;
 color: #674d34;
 font-size: 115%;
 font-weight: bold;
 display:none;
}

/* Form or Fieldset instruction paragraph. */
form .instructions
{
 width: 882px;
 line-height: 1.3em;
 font-style: italic;
}

.field
{
 width: auto;
 display:block;
 margin: 5px 0;
 clear:both;
}

/* Field Labels ======================================================================== */

/* Base */


label, form .label {	
 color: #b20838;
 margin: 0;
 line-height: 1.5em;
}
/* Text inputs / Select label */
label.preField {
 display: -moz-inline-box;
 display: inline-block;
 font-weight:bold;
 margin: 0.6em 4px 0 0;
 padding: 0 2px;
 min-width: 14em;
 text-align:right;
}

/* Radio / Checkbox group label */
form .label  {
	display: block; 
	margin: 0.6em 4px 0 0;
	padding: 2px;
}
/* Individual Checkbox / Radio label */
label.postField  {
	margin: 0 4px 0 4px;
}


/****************
     Elements
*****************/

select{
 border: 1px solid #ccc;
 background: #ebeaea;
 margin: 0px 5px;
 color: #000;
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size: 11px;
 font-variant: normal;
 padding: 3px;
}	
input[type=text], input[type=password] {
 border: 1px solid #ccc;
 background: #ebeaea;
 margin: 0px 5px;
 color: #000;
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size: 11px;
 font-variant: normal;
 padding: 3px;
 width:180px;
}

input:hover {
 background: #ccc;
 border: 1px solid #ccc;
}

textarea {
 border: 1px solid #ccc;
 margin: 5px;
 background: #ebeaea;
 color: #333333;
 width: 310px;
 font-family: Verdana, Arial, Helvetica, sans-serif;
 font-size: 11px;
 font-variant: normal;
 padding: 3px;
}

textarea:hover {
 background: #ebeaea;
 border: 1px solid #ccc;
}


/****************
     BUTTONS
*****************/

form .actions {
 text-align: center;
 margin: 20px 0 10px 0;	
}
/* Submit button */
form .primaryAction {
 font-weight: bold;
}
/* Cancel button */
form .secondaryAction {
 color: grey;
}
form .secondaryAction:hover {
 color: black;
}

/* Asterisk on required fields */
form .reqMark {
 color: #000;
 padding: 0 4px;
}
form .field-hint {
 float: right;
 clear: right;
 color: #000;
 margin: 2px 0 0px 0;
 padding: 2px;
 padding-bottom:0;
 font-size: 85%;
 min-height: 2em;	
}
 
/****************
     IE6 Fixes
*****************/

form {
	height:expression('1%'); /* IE Pick-a-boo bug fix */
}
form fieldset {
	position:expression('relative'); /* Fixes IE problem with fieldset+legend boundaries */
	margin-top:expression('1em');
	padding-top:expression('1.5em');
	overflow: expression('visible');
}
form fieldset legend {
	position: expression('absolute'); 
	top: expression('-.5em'); /* Fixes IE problem with fieldset+legend boundaries */
	left:expression('.5em');
}
form .inlineSection .oneField {
	display: expression('inline-block');		
}
label.preField, form .inlineSection .oneField .inlineLabel {
	width: expression('9em');
}