
div.formcontainer {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  font:100% verdana,arial,sans-serif;
  margin: 10px 0px 20px 0px;
  padding: 0;
  min-width: 700px;
  max-width: 788px;
  width: 100%;
}

div.contentBucket fieldset {
  
  border-color: #000;
  border-width: 0px;
  border-style: solid;
  padding: 10px;        /* padding in fieldset support spotty in IE */
  margin: 0px 0px 15px 0px;
}

div.contentBucket fieldset legend {
	font-size:1.1em; 
	
	color: #666666;
	font-weight: bold;
}

div.contentBucket label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 150px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}


div.contentBucket input, div.contentBucket textarea, div.contentBucket select {
	
	font-size: .90em;
	width:auto;      
	margin:5px 0 0 10px; 
}


div.contentBucket div textarea { overflow: auto; width: 95%; height: 150px; }

div.contentBucket small {
	display: block;
	margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}

div.contentBucket .required{font-weight:bold;} /* uses class instead of div, more efficient */
div.contentBucket br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}
div.contentBucket div 
{
	padding: 5px 0px 5px 0px;
}
div.contentBucket div.action 
{
	float: right;
}


