form 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; 
}
form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
  margin: 0;
  padding: 0;
  min-width: 420px;
  max-width: 450px;
  width: 450px; 
}

form fieldset {
  border-width: 1px;
  border-color:#003366;
  border-style: solid;
  padding: 10px;        /* padding in fieldset support spotty in IE */
  margin: 0;
  margin-bottom:15px;
}

form fieldset legend {
	font-weight:bold;
	font-size:1.1em; /* bump up legend font size, not too large or it'll overwrite border on left */
}
form br {
	clear:left;
}

form input, form textarea {
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
}
