/* form.css */

form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
	margin: 0;
	padding: 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
form fieldset {
	/*clear: both;*/ /*note that this clear causes inputs to break to left in ie5.x mac, commented out */
	border-color: #7C1115;
	border-width: 1px;
	border-style: solid;
	padding: 10px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 20;
	margin-left: 0;
	display: block;
	position: relative;
}

form fieldset legend {
	font-size:14px; /* bump up legend font size, not too large or it'll overwrite border on left */
	color: #9AA8E5;                       /* be careful with padding, it'll shift the nice offset on top of border  */
	font-weight: normal;
	letter-spacing: .1em;
}

form input, form textarea, form select {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 5px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
	border: 1px solid #999999;
}

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%;
}
input.submit
{
	border-top-color: #8F9FD3;
	border-left-color: #8F9FD3;
	padding: 0.25em;
	background-color: #6273A9;
	color: #FFFFFF;
	font-size: 12px;
	font-weight: bold;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #434A64;
	border-bottom-color: #434A64;
}

input.submit:active
{
border: 3px double #CCCCCC;
border-top-color: #999999;
border-left-color: #999999;
} 

form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
}
form .n-required {
	display: block;  /* block float the labels to left column, set a width */
	float: left;
	width: 165px; /* set top margin same as form input - textarea etc. elements */
	text-align: right;
	font-weight: bold;
	margin-top: 7px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 10px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	line-height: 12px;
}
form .n-notrequired {
	display: block;  /* block float the labels to left column, set a width */
	float: left;
	width: 165px;
	padding: 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right;
	line-height: 12px;
	margin-top: 7px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 10px;
}