#inquiry {  /* set width in #inquiry, not fieldset (still takes up more room w/ fieldset width */
	width: 99%; color: #000;
}

#inquiry fieldset {
  /* clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border: none;
  padding: 15px;        /* padding in fieldset support spotty in IE */
  margin: 0;
}

#inquiry label {
	display: block;  /* block float the labels to left column, set a width */
	float: left;
	width: 110px;
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as #inquiry input - textarea etc. elements */
	text-align: right; 
}

#inquiry fieldset legend {
	font-size:1.1em; /* 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  */
}

#inquiry input, #inquiry textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width: 225px;      /* set width of #inquiry elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of #inquiry elements rather than right of
                              label aligns textarea better in IE */
	border: 1px solid #CCC;
}

#inquiry input.spam {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width: 110px;      /* set width of #inquiry elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of #inquiry elements rather than right of
                              label aligns textarea better in IE */
	border: 1px solid #CCC;
}

#inquiry select {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width: 225px;      /* set width of #inquiry elements to auto-size, otherwise watch for wrap on resize */
	margin: 5px 0 0 10px; /* set margin on left of #inquiry elements rather than right of
                              label aligns textarea better in IE */
	border: 1px solid #CCC;
}

#inquiry option:hover{ background:#C6C4BD; }

#inquiry input#reset {
	width: 100px;
	margin-left:10px; /* set margin-left back to zero on reset button (set above) */
	border: 1px solid #CCC;	
}

#inquiry input#submit {
	width: 100px;
	margin-left:10px; /* set margin-left back to zero on reset button (set above) */
	border: 1px solid #CCC;	
}

#inquiry textarea { width: 225px; overflow: auto; }

#inquiry small {
	display: block;
	width: 325px;	
	margin: 0 0 0 5px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 4px;
	font-size: 75%;
}



#inquiry .required{font-weight:bold;} /* uses class instead of div, more efficient */

#inquiry br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}
