@charset "utf-8";
/* CSS Document */


form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
	font:100% verdana, arial, sans-serif;
	padding-left: 35px;
	min-width: 500px;
	max-width: 400px;
	width: 400px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	padding-top: 0px;
}
form fieldset {
	clear: both;
	padding: 10px;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}
form fieldset legend {
	font-size:12px;
	color: #333333;
	font-family: Arial, Helvetica, sans-serif;
	width: 400px;
	margin-top: 0px;
	font-weight:bold;
}
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;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
}
form input, form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;
	margin:5px 0 0 10px;
}
form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
}
textarea {
	overflow: auto;
}
form 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%;
}
form .required {
	font-weight:bold;
} /* uses class instead of div, more efficient */
form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

