@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: #c9c9a7;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	/*background-color: #F8F8FF;*/
	background-color:#778899;
}
#container {
	width: 940px; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: auto;
	margin-right: auto;
	margin-bottom: auto;
	margin-left: auto;
	background-color: ;
	padding-right:20px;
	top: auto;
	bottom: auto;
}
#header {


	padding: 20px 100px 10px 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
   
}
#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: 0px 20px 10px; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	color:#FFFFE0;
	text-align: right;
}
#mainContent {
	border-top: 1px solid #c9c9a7;
	padding: 0 5px;
	/*background-color: #000000;*/
	min-height: 720px;
	
}
#mainContent h1 {
	color:#FFFFE0;
	font-size: medium;
	font-weight: lighter;
	text-transform: uppercase;
}



#footer {
	padding: 10px 10px;
	
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size:x-small;
	text-align:center;
}
#footer a:link, #footer a:visited {
	color:#666666;
	text-decoration: none;
}
#footer a:hover {
	color:#CCCCCC;
}

span.inline {display:inline;}
.statement {
padding-bottom:10px;
	color: 	#F8F8FF;
	line-height: 1.4em;
	font-size:small;
}
h2 {
	font:bold 80% 'helvetica neue',sans-serif;letter-spacing:3px;text-transform:uppercase;}
	
	.form {
padding-left:90px;
	color: 	#F8F8FF;
	line-height: 1.4em;
	font-size:small;
}
	
	


