form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font:100%;
  margin: 0 10px;
  padding: 0;
  width: auto; 
}

form fieldset {
  /* clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border: 1px solid #333;
  padding: 10px;        /* padding in fieldset support spotty in IE */
  margin: 0;
}
form div fieldset {
  clear: none;
  border:0;
  background-color:#F2F1F1;
  margin: 0;
  padding: 0px 5px 5px 5px;
}

form fieldset legend {
	font-size:140%; /* bump up legend font size, not too large or it'll overwrite border on left */
    padding: 0px 3px 0px 9px;   /* be careful with padding, it'll shift the nice offset on top of border  */
	font-weight:700;
	color:#333;
}
form div fieldset legend {
  font-size: 100%;
  padding: 0px 3px 0px 9px;
}
form fieldset div {
	clear:left;
}
form fieldset label,form fieldset div label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 170px; 
	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 */
	border: 1px solid #ddd;
	background: #eee;
	font: 11px verdana, sans-serif;
	color: #443;
	padding: 3px;
}

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:700;} /* 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 fieldset label.labelCheckbox, form 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, form fieldset input.inputRadio {
  display: inline;
  height: 14px;
  width: 14px;
  border: none;
  padding: 0;
  margin: 0 2px;
  background:none;
}
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;
	text-transform:uppercase;
}
form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}
form input.inp {
	width:auto;}