﻿@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: #393939;
	font-family: Tahoma, Geneva, sans-serif;
	font-size: 100%;
	background-color: #EAEAEA;
	background-image: url(../images/bodyBackground.png);
	background-repeat: repeat-x;
}
#container  {
	width: 985px;
	text-align: left;
	margin-right: auto;
	margin-left: auto;
	margin-top: 20px;
} 
#header  {
	background-image: url(../images/headerBackground.png);
	height: 102px;
	width: 940px;
	background-repeat: no-repeat;
	padding-top: 15px;
	padding-right: 30px;
	padding-bottom: 15px;
	padding-left: 15px;
	margin-bottom: 15px;
} 
#navBar {
	clear: both;
	float: left;
	width: 965px;
	margin-right: auto;
	margin-left: auto;
	background-image: url(../images/navBarBackground.png);
	height: 37px;
	background-repeat: no-repeat;
	padding-left: 20px;
}
.twoColFixLtHdr #container #header h1 {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	color: #FFF;
	font-size: 50px;
	font-weight: bold;
	letter-spacing: 80%;
	margin: 0px;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.twoColFixLtHdr #container #header .fltrt h2 {
	text-align: center;
	color: #FFF;
	font-size: 18px;
	margin: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	line-height: 125%;
}
.twoColFixLtHdr #container #header .fltrt p {
	color: #FFF;
	font-weight: bold;
	text-align: center;
	font-size: 14px;
}



#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 200px;
	clear: right;
	background-color: #D0DBDF;
	background-image: url(../images/mainContentShadowRt.png);
	background-repeat: repeat-y;
	background-position: right;
	margin-top: 20px;
	margin-right: 20px;
	margin-bottom: 20px;
	padding: 15px;
	height: 450px;
	overflow: auto;
}
#mainContent  {
	padding-right: 20px;
	clear: both;
	float: left;
	width: 942px;
	background-color: #FFF;
	background-image: url(../images/mainContentShadowRt.png);
	background-repeat: repeat-y;
	background-position: right;
	border-left-width: thin;
	border-left-style: solid;
	border-left-color: #CCC;
	overflow: auto;
	padding-left: 20px;
	height: 520px;
} 
#footer  {
	padding: 0 10px 0 20px;
	color: #FFF;
	background-image: url(../images/footerBackground.png);
	background-repeat: no-repeat;
	font-size: 14px;
} 
#subFooter {
	text-align: center;
	color: #AAA;
}
#subFooter a {
	color: #AAA;
	text-decoration: none;
}

.twoColFixLtHdr #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 */
}
.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;
	font-size: 16px;
	width: 550px;
	margin-top: 10px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	padding: 0px;
	margin-top: 0px;
}
.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;
}
a:link {
	color: #567696;
}
a:visited {
	color: #567696;
}
a:hover {
	color: #850F12;
	text-decoration: underline;
}
a:active {
	color: #850F12;
	text-decoration: underline;
	font-weight: bold;
}

h1 {
	color: #567696;
	padding: 0px;
	
}
h2 {
	color: #567696;
	font-size: 20px;
}
