@charset "utf-8";

form.dynaform {
	font-size: 1em;
	margin: 0px;
	padding: 0px;
}
form.dynaform label, form.dynaform input, form.dynaform select, form.dynaform textarea {
	color: #656962;
	font-size: 0.9em;
}
form.dynaform label {
	display: block;  /* block float the labels to left column, set a width */
	float: left;
	width: 9em;
	padding: 0;
	margin: 0 0 2px; /* set top or bottom margin same as form.dynaform input - textarea etc. elements */
	text-align: right;
	line-height: 18px;
	font-style: italic;
	font-size: 0.9em;
}
form.dynaform input, form.dynaform select, form.dynaform textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width: 15em;
	margin: 0 0 2px 10px; /* 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 input#Submit, form.dynaform input#Reset {
	height: auto;
	width: auto;
	margin: 15px 0 0;
	padding: 0 2em;
}
form.dynaform input#Reset {
	margin:0px; /* set margin-left back to zero on reset button (set above) */
}
form.dynaform select, form.dynaform textarea {
	width: 90%;
}
form.dynaform textarea {
	overflow: auto;
	height: 4em;
}
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 */
}
form.dynaform ul {
	list-style: none;
	margin: 0px;
	padding: 0px;
}
form.dynaform li {
	float: left;
	width: 43%;
	margin: 0px 3% 1em 1%;
	text-indent: -1.65em;
	padding-left: 1.65em;
}

