/* CSS Document */

form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
	font:12px;
	margin: 0;
	padding: 0;
	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;
}

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

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