form { 
  margin: 10px;
  padding: 5px;
  min-width: 400px;
  max-width: 600px;
  width: 600px; 
}

form fieldset {
  /*clear: both; /*note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border-color: #fff;
  border-width: 0px;
  border-style: none;
  padding: 10px; 
  margin: 0;
}

form fieldset legend {
	font-size:1.1em;
}

form label { 
	/*display: block;   block float the labels to left column, set a width */
	float: left;
	width: 120px; 
	padding:0; 
	margin: 5px 0 0; 
	text-align: right; 
}


form input, form textarea, form select {
	width:auto;
	margin:5px 0 0 10px;
    font:12px verdana,arial,sans-serif;
}

form input#reset {
	margin-left:0px;
}

textarea { overflow: auto; }

form small {
	display: block;
	margin: 0 0 5px 130px;
	padding: 1px 3px;
	font-size: 10px;
}

form .required{font-weight:bold;}

form br {
	clear:left;
}