.formStyle {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font:Arial, Helvetica, sans-serif;
  font-size:12px;
  margin: 0;
  padding: 0;
  min-width: 385px;
  max-width: 385px;
  width: 385px; 
  text-align:left;
}
.formStyle textarea {
	font-family:Arial;
	font-size:12px;
}
.formStyle input{
	font-family:Arial;
	font-size:12px;
}
.formStyle fieldset {
  clear: both; /* note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border-color: white;
  border-width: 1px;
  border-style: solid;
  padding: 2px;        /* padding in fieldset support spotty in IE */
  margin: 0;
    text-align:left;
}

.formStyle fieldset legend {
	font-size:small;
	padding-left:0px;
	margin-left:-6px;
	color:#092268; /* 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  */
}

.formStyle label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 250px; 
	padding: 0; 
	margin: 0px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: left; 
	font-size:small;
	color:#092268;
}


.formStyle input, form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */

	width:100%;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 0px; 
	background-color:#f0f0f0;		/* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

.formStyle input, form select {
	/* 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 */
	margin:5px 0 0 0px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

.formStyle input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}

textarea { overflow: auto; }

.formStyle small {
	display: block;
	margin: 0 0 5px 10px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: small;
}

.formStyle .smallLabel {
	display: block;
	margin: 0 0 5px 180px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: small;
}

.formStyle .required{font-weight:bold;} /* uses class instead of div, more efficient */

.formStyle br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

.form1	{
		width:50%;
		background-color:white;
		padding-left:0px;
}

.button	{
		background-color:#CCCCCC;
}

.srch	{
		padding-top:70px;
}
