/* CSS Document */

form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
	font:12px;
	margin: 0;
	padding: 0;
	min-width: 500px;
	max-width: 680px;
	width: 680px;
	font-family: Arial, Helvetica, sans-serif;
}
form fieldset {
  / * clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border-width: 1px;
  border-style: solid;
  padding: 10px;        /* padding in fieldset support spotty in IE */
  margin: 0px 0px 0px 0px;
  border: 1px solid #BFBAB0;
  background-color: #FFF;
}
form fieldset legend {
	font-size:12px; /* bump up legend font size, not too large or it'll overwrite border on left */
	font-weight: bold;
	color: #333333;
                       /* be careful with padding, it'll shift the nice offset on top of border  */
}
form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 280px; 
	padding: 10px 20px 0px 0px;
	margin: 0px 0px 0px 0px; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}

form input, form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width: 180px;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin: 10px 0px 0px 0px; /* set margin on left of form elements rather than right of label aligns textarea better in IE */
	text-align: left;
	background-color: #F4F4F4;
	border: 1px solid #D0CCCE;
	height: 20px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
}
form file, form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	background-color: #F4F4F4;
	border: 1px solid #D0CCCE;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333333;
}
form input#browse {
 background-color: #000;
 color: #fff;
 font-size: 11px;
 letter-spacing: 1px;
 text-align: center; 
}
form select, form select {
	/* 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: 10px 0px 0px 0px; /* set margin on left of form elements rather than right of label aligns textarea better in IE */
	background-color: #F4F4F4;
	border: 1px solid #D0CCCE;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	padding: 4px;
}

form input#submit {
	background-color: #960001;
	color: #fff;
	font-size: 12px;
	letter-spacing: 1px;
	text-align: center;
	border: 1px solid #CCCCCC;
	width: 200px;
	height: 30px;
}

textarea { overflow: auto; }

form small {
	display: block;
	margin: 0 0 5px 180px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 1px;
	font-size: 14px;
}
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 */
}
div#acceptance {
	background-color: #F4F4F4;
	border: 1px solid #BFBAB0;
	width: 660px;
	padding: 10px;
	margin-left: auto;
	text-align: center;
}
