form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font:100% verdana,arial,sans-serif;
  margin: 0;
  padding: 0;
  min-width: 460px;
  max-width: 520px;
  width: 490px; 
}

form fieldset {
  /* clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border-color: #000000;
  border-width: 1px;
  border-style: solid;
  padding: 10px;        /* padding in fieldset support spotty in IE */
  margin: 0;
  margin-left:10px;
}
form div fieldset {
  clear: none;
  border:0;
  background-color:#F2F1F1;
  margin: 0;
  padding: 0px 5px 5px 5px;
}

form fieldset legend {
	font-size:1.2em; /* bump up legend font size, not too large or it'll overwrite border on left */
                       /* be careful with padding, it'll shift the nice offset on top of border  */
}
form div fieldset legend {
  font-size: 100%;
  padding: 0px 3px 0px 9px;
}
form fieldset label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 120px; 
	padding: 0; 
	margin: 2px 4px 0 2px; /* set top margin same as form input - textarea etc. elements */
	text-align:right;
}

form fieldset input, form textarea {
	/* 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 */
	width:300px;
	margin:2px 0 0 2px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

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

form fieldest textarea { overflow: auto; }

form fieldset small {
	display: block;
	margin: 0 0 0 310px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 10px;
}

form .required{font-weight:bold;} /* uses class instead of div, more efficient */
form fieldset div.notes {
  float: right;
  width: 250px;
  height: auto;
  margin: 0;
  margin-right: 30px;
  padding: 0;
  color: #666666;
  font-size: 88%;
}
form .notes button {
padding:2px;
margin-top: 50px;
font-size:10px;
}
form .calc {
	display:block;
	padding-top: 6px;
	}
form div fieldset label.labelCheckbox, form div fieldset label.labelRadio {
	display: block;
  	width: 300px;
  	height: expression('1%');
  	padding: 0;
  	margin: 0 0 4px 4px;
  	text-align: left;
}
form div fieldset input.inputCheckbox, form div fieldset input.inputRadio, form fieldset input.inputCheckbox {
  display: inline;
  height: 14px;
  width: 14px;
  border-width: 1px;
  padding: 0;
  margin: 0;
}
form div fieldset label.compact {
  display: inline;
  width: auto;
  padding: 4px 10px 0 0;
  text-indent: 0px;
  margin: 0;
}
form input.inputSubmit {
	float:right;
	background-color: #cccccc;
  	color: #000000;
	width:auto;
	margin:0;
	padding:4px 10px;	
}
form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}