@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: #000000;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 14px;
	background-color: #536479;
}
.twoColFixLtHdr #container {
	width: 900px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(../images/blueBG.jpg);
	background-repeat: repeat-y;
} 
.twoColFixLtHdr #header {
	background-color: #28629B;
	height: 79px;
	border-top-width: 2px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-left-width: 2px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: solid;
	border-top-color: #132815;
	border-right-color: #132815;
	border-bottom-color: #132815;
	border-left-color: #132815;
} 
.twoColFixLtHdr #header h1 {
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #FFF;
}
.twoColFixLtHdr #mainContent {
	margin-top: 2px;
	margin-right: 2px;
	margin-bottom: 2px;
	margin-left: 40px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 10px;
	min-height: 630px;
} 
.twoColFixLtHdr #footer {
	background-color: #162915;
	min-height: 3px;
} 
.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;
}

h1,h2,h3,h4,h5,h6 {
	font-family: Georgia, Times New Roman, Times, serif;
	margin-bottom: 0px;
	margin-top: 0px;
}
.greenText {
	font-weight: bold;
	color: #036;
}

h1 {
	font-size: 36px;
	color: #036;
}

h3 {
	color: #369;
}

