@charset "utf-8";
/* CSS Document */
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #1c3146;
	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: #000000;
}
#container  {
	width: 960px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	height: auto;
	background-color: #F9F3E5;
} 
#header  {
	background-color: #DDDDDD;
	background-image: url(images/finalheader1.jpg);
	height: 120px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 0px;
} 
#header  h1  {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-top: -10px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
}
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 140px;
	background-color: #EBEBEB;
	background-image: url(images/newewstnav.jpg);
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
	height: 380px;
}
#mainContent  {
	margin-top: 0;
	margin-right: 40px;
	margin-bottom: 0;
	margin-left: 190px;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 0px;
} 
.twoColFixLtHdr #container #mainContent p {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
	font-weight: normal;
	color: #1C3146;
}
#footer  {
	height: 39px;
	width: 930px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0px;
	padding-left: 20px;
	background-color: #F9F3E5;
} 
#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: 5px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 8pt;
	background-color: #F9F3E5;
	font-family: Arial, Helvetica, sans-serif;
	color: #1C3146;
}
#mainContent h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14pt;
	color: #1C3146;
	font-weight: bold;
	text-decoration: none;
}
#mainContent a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13pt;
	color: #1C3146;
	text-decoration: underline;
}
#mainContent a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13pt;
	color: #1C3146;
	text-decoration: underline;
}
#mainContent a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13pt;
	color: #1c3146;
	text-decoration: none;
}
#footer p a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8pt;
	color: #1C3146;
	text-decoration: none;
}
#footer p a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8pt;
	color: #1C3146;
	text-decoration: none;
}
#footer p a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8pt;
	font-weight: normal;
	text-decoration: underline;
	color: #1C3146;
}
.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;
}
#sidebar1 .navtext a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13pt;
	font-weight: bold;
	color: #1C3146;
	text-decoration: none;
}
#sidebar1 .navtext a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13pt;
	font-weight: bold;
	color: #1C3146;
	text-decoration: none;
}
#sidebar1 .navtext a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13pt;
	font-weight: bold;
	color: #1C3146;
	text-decoration: underline;
}
.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;
}
.navtext {
	font-size: 13pt;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #1C3146;
}
