@charset "utf-8";

form.dynaform {
	font-size: 1em;
	margin: 0 1em;
	padding: 1em;
}
form.dynaform div.formgroup {
	float: left;
}
form.dynaform label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 9em; 
	padding: 0; 
	margin: 10px 0 0; /* set top margin same as form.dynaform input - textarea etc. elements */
	text-align: right;
}
form.dynaform label.label2 { /* used for the Zip Code label */
	width: 5em;
}
form.dynaform label.nowrap { /* allows label to sit above field */
	width: 20em; /* set width equal to textarea width below */
	margin-left: 10px;
	text-align: left;
	white-space: nowrap;
}
form.dynaform input, form.dynaform select {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width: 18.35em;
	color: #686868;
	font-family: Lucida Sans Unicode, Lucida Grande, sans-serif;
	font-size: 1.12em;
	margin: 5px 10px 0 10px; /* set margin on left of form.dynaform elements rather than right of
                              label aligns textarea better in IE */
}
form.dynaform input.radio {
	width: auto;
	margin: 5px 2px 0 18px; /* set margin on left of form.dynaform elements rather than right of
                              label aligns textarea better in IE */
}
form.dynaform input {
	height: 16px;
}
form.dynaform select {
	margin-top: 6px;
	width: 20em;
}
form.dynaform input#State {
	width: 6em;
}
form.dynaform input#Zip {
	width: 5.9em;
}
form.dynaform textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width: 90%;
	color: #686868;
	font-family: Lucida Sans Unicode, Lucida Grande, sans-serif;
	font-size: 1.1em;
	margin: 5px 0 0 10px; /* set margin on left of form.dynaform elements rather than right of
                              label aligns textarea better in IE */
}
form.dynaform input#SUBMIT {
	height: auto;
	width: auto;
	margin: 1em 0 0;
}
form.dynaform input#RESET {
	height: auto;
	width: auto;
/*	margin-left: 0px; /* set margin-left back to zero on reset button (set with input above) */
}
textarea {
	overflow: auto;
}
form.dynaform .required {
	font-weight: bold; /* uses class instead of div, more efficient */
}
form.dynaform br {
	clear: left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}

