/* CSS Document */

form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px; 
	margin: 0;
	padding: 0;
}
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: #;
}
form fieldset legend {
	font-size:13px; /* bump up legend font size, not too large or it'll overwrite border on left */
	font-weight: bold;
	color: #1a3351;
                       /* be careful with padding, it'll shift the nice offset on top of border  */
}
form label { 
	font-size:12px;
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 140px; 
	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: 280px;      /* 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;
	coverflow: auto;
	color: #333333;
}
form.secondary input, {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width: 80px;      /* 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;
	coverflow: auto;
	color: #333333;
}
form file, form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width: 280px;      /* 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: 100px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	coverflow: auto;
	color: #333333;
}
.altButton01Format {
	background-color: #bdc2b7;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11pt;
	font-weight: bold;
	border: 1px solid #CCCCCC;
	font-size: 12px;
	color: #666666;
	width: 80px;
	height: 30px;
	margin: 10px 20px 0px 260px;
	text-align: center; 
} 



