@charset "UTF-8";

/* CSS Document */



form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
}

form fieldset {
  / * clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
    border-color: #000;
	margin: 0;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 35px;
	padding-left: 0px;
	border-top-width: 8px;
	border-top-color: #9c9870;
}

form label {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 65%;
	color: #222222;
	display: block;  /* block float the labels to left column, set a width */
	float: left;
	width: 225px; /* set top margin same as form input - textarea etc. elements */
	text-align: left;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding: 0;
}

.FullWidthLabel {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 65%;
	color: #222222;
	display: block;  /* block float the labels to left column, set a width */
	float: left;
	width: 99%; /* set top margin same as form input - textarea etc. elements */
	text-align: left;
	font-size: 0.7em;
	font-family: Arial, Helvetica, sans-serif;
	margin-top: 5px;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
	padding: 0;
}



form fieldset legend {
	font-size:1.1em; /* bump up legend font size, not too large or it'll overwrite border on left */
                       /* be careful with padding, it'll shift the nice offset on top of border  */
}

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 margin on left of form elements rather than right of
                              label aligns textarea better in IE */
	float: left;
	margin: 0px;
	padding: 0px;
}

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 */
}

legend { display:none; }


.InputTextField {
	width: 250px;
	height: 22px;
	padding: 1px;
	background-color: #E1DFD1;
	margin-bottom: 5px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	border-top-width: 1px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #9C9870;
	border-right-color: #9C9870;
	border-bottom-color: #9C9870;
	border-left-color: #9C9870;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 75%;
}


.InputTextArea {
	width: 325px;
	height: 175px;
	padding: 1px;
	background-color: #E1DFD1;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	border-top-width: 1px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #9C9870;
	border-right-color: #9C9870;
	border-bottom-color: #9C9870;
	border-left-color: #9C9870;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 75%;
}


.BeigeTextAreaFullWidth {
	width: 99%;
	height: 150px;
	padding: 2px;
	background-color: #E1DFD1;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	border-top-width: 1px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #9C9870;
	border-right-color: #9C9870;
	border-bottom-color: #9C9870;
	border-left-color: #9C9870;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 75%;
}



.DropDownListStyleForm {
	color:#FFFFFF;
	padding:2px;
	background-image: url(../ImagesForSite/ButtonGradient.gif);
	background-repeat: repeat-x;
	background-position: center;
	background-color: #5C5327;
}

.SubmitButtonStyle {
	background-color:#669933;
	color:#ffffff;
	border-top-width:1px;
	border-right-width:1px;
	border-bottom-width:1px;
	border-left-width:1px;
	padding: 3px;
}

.ValidationAlertMessage {
	float: left;
	color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 70%;
	font-weight: bold;
	width: 99%;
	background-color: #990000;
	padding-top: 1px;
	padding-right: 1px;
	padding-bottom: 1px;
	padding-left: 1px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
	text-align: center;
	border: 2px solid #990000;
}

