@charset "UTF-8";
body  {
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #FFFFFF;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #FFCC00;
	background-image: url(../nav_images/backgrounds/background-main.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
#container  {
	width: 894px;
	text-align: left;
	margin-top: 0;
	margin-right: auto;
	margin-left: auto;
} 
#nav-area {
	height: 65px;
	padding-right: 55px;
}
#nav-area h3 {
	text-indent: -9000px;
	display: block;
	width: 100px;
	float: left;
	position: absolute;
	height: 100px;
}
#header  {
	height: 188px;
	padding: 0;
} 
#header  h1  {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	text-indent: -9000px;
}
#backing {
	background-image: url(../nav_images/backgrounds/background-content.gif);
	background-repeat: repeat-y;
	background-position: center top;
	padding: 0px;
	margin: 0px;
	height: 100%;
}
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 171px;
	padding-top: 5px;
	padding-right: 0px;
	padding-bottom: 5px;
	padding-left: 14px;
}
#mainContent  {
	background-repeat: repeat-y;
	background-position: center top;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 180px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
} 
#mainContent a {
	color: #FFCC00;
}
#mainContent h1 {
	color: #9E9ED2;
	padding-left: 5px;
	font-size: 17px;
}
#mainContent h2 {
	color: #9C9B9B;
	padding-left: 5px;
	font-size: 15px;
}
#footer  {
	height: 150px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	background-image: url(../nav_images/backgrounds/background-footer.gif);
	background-repeat: no-repeat;
	background-position: center top;
	text-align: center;
	color: #999999;
	font-size: 10px;
} 
#footer a {
	color: #000000;
}
#footer  p  {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 50px;
	padding-right: 0;
	padding-bottom: 2px;
	padding-left: 0;
	line-height: 21px;
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
legend {
font-weight: bold;
}
label {
display:block;
} /* if you want the label to go next to the text box just float it left and give it a width 10em*/
input{
width: auto;
}
text area {
width: 300px;
height: 100px;
}
input.checkbox,input.submit {
width: auto;
}