@charset "UTF-8";
/* CSS Document */

form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font:100% "Century Gothic",arial,sans-serif;
  margin: 0;
  padding: 0;
  min-width: 540px;
  max-width: 640px;
  width: 630px; 
}

form fieldset {
  / * clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border-color: #000;
  border-width: 0px;
  border-style: solid;
  padding: 5px;        /* padding in fieldset support spotty in IE */
  margin: 0;
}

/*form label { 
	display: block;  
	float: left; 
	width: 80px; 
	padding: 0; 
	margin: 5px 0 0; 
	text-align: right;
	font-size:12px;
	color:#666;
}*/

form .labelsRequired { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 80px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right;
	font-size:12px;
	color:#666;
	font-weight:bold;
}

form .labelsNonRequired { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 80px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right;
	font-size:12px;
	color:#666;
}

form .labelsLong { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 320px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right;
	font-size:12px;
	color:#666;
}

form select {
	width:140px;
	margin:3px 0 8px 5px;
}

form fieldset legend {
	font-size:12px;
	color:#005398;
	margin:5px 0px 0px 11px;
}

/*form input, form textarea {
	width:110px;      
	margin:5px 0 0 5px; 
} */

.textInput {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:140px;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 8px 5px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

.textInput02 {
	width:auto;      
	margin:5px 0 8px 17px; 
}


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 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}

form .required{font-weight:bold;} /* uses class instead of div, more efficient */

form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

form .smlText {
	font-size:12px;
	color:#005398;
	margin:3px 0px 4px 11px;
}
