form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font:100% verdana,arial,sans-serif;
  margin: auto;
  padding: 0;
  min-width: 400px;
  max-width: 450px;
  width: 450px; 
}
.form-login {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font:100% verdana,arial,sans-serif;
  margin: auto;
  padding: 0;
  min-width: 200px;
  max-width: 250px;
  width: 250px; 
}

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

form fieldset legend {
	color:#005555;
	font-size:13px; /* 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 label { 
	float: left; 
	width: 90px; 
	color:#011f25;
	font-size:11px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	text-align: right; 
	display: block;  /* block float the labels to left column, set a width */
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
}
form input, form textarea {
	color:#011f25;
	font-size:11px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	/* 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 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}
form select {
	color:#011f25;
	font-size:11px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:160px;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}

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

textarea { overflow: auto; }

form small {
	color:#011f25;
	font-size:11px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	display: block;
	margin: 0 0 5px 100px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
}

.required { /* uses class instead of div, more efficient */
	font-size:11px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#FF0000;
} 

form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}
form p { 
	color:#011f25;
	font-size:11px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	text-align: left; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
}
form textarea.textarea {
	color:#011f25;
	font-size:11px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	/* 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 100px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}
.textfrm { 
	float: left; 
	width: 110px; 
	color:#011f25;
	font-size:11px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	text-align: right; 
	display: block;  /* block float the labels to left column, set a width */
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
}
form img {
	color:#011f25;
	font-size:11px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	display: block;
	margin:5px 0 0 120px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
}
