/* CSS Document */


form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
	font-size: 11px;	
 	margin: 0;
  	padding: 0;
}

form fieldset {
  border:dashed;
  border-color:#CCCCCC;
  border-width:1px;
  padding: 10px;        /* padding in fieldset support spotty in IE */
  margin: 0;
}

form fieldset legend {
	font-size:1.2em; /* bump up legend font size, not too large or it'll overwrite border on left */
	padding-bottom: 10px;
	color:#ed762e
                       /* be careful with padding, it'll shift the nice offset on top of border  */
}

form label { 
	display: block;  
	float: left; 
	width: 150px; 
	padding: 0; 
	margin: 5px 0 0; 
	text-align: right; 
	font-size: 15px;
	font-weight:bold;
}

form input, form textarea {
	font-size: 15px;
	background-color: #F2F2F2;
	width:auto;      
	margin:5px 0 0 10px; 
	padding: 0px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
}

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

textarea { overflow: auto; }

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 */
}




