form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font: 12px Arial;
  margin: 0;
  padding: 0;
  min-width: 500px;
  max-width: 600px;
  width: 560px; 
}

form fieldset {
 
  border-color: #00cc00;
  border-width: 2px;
  border-style: solid;
  padding: 5px;        /* padding in fieldset support spotty in IE */
  margin: 0;
}

form fieldset legend {
	font-size:12px;
	font-weight: bold;
	text-transform: capitalize;
	color:  #00cc00;
	text-decoration: underline;
	
}

form label {
	display: block;
	float: left;
	width: 175px;
	padding: 0;
	margin: 5px 0 0;
	text-align: Left;
	font: 12px Arial;

}

form labelnine {
	width: 175px;
	padding: 0;
	text-align: Left;
	font: 9px Arial;

}

form labelDes {
	display: block;
	float: left;
	width: 175px;
	padding: 0;
	margin: 5px 0 0;
	text-align: Left;
	font: 12px Arial;

}

form fieldset label:first-letter { /* use first-letter pseudo-class to underline accesskey, note that */
                                    /* pseudo-class on legend elements, but do support it on label elements */
                                    /* we instead underline first letter on each label element and accesskey */
                                    /* each input. doing only legends would  lessens cognitive load */
                                   /* opera breaks after first letter underlined legends but not labels */
}

form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}
.FormInner
{	padding: 0;
	margin: 5px 0 0;
	text-align: Left;
	font: 12px Arial;
	}