@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	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;
	position: static;
	bottom: 100px;
}
.twoColFixLtHdr #container {
	width: 1000px; /* the auto margins (in conjunction with a width) center the page */
	border: 1px none #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 15px;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	background-color: #FFF;
	font-style: italic;
} 
.twoColFixLtHdr #header {
	background-color: #FFF;
	border-bottom-style: solid;
	background-repeat: no-repeat;
	text-align: right;
	background-image: url(images/header.gif);
	height: auto;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
	background-position: center;
	border-bottom-width: thick;
	border-bottom-color: #004C92;
} 
.twoColFixLtHdr #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 */
	color: #FFF;
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	text-align: center;
	font-size: large;
	font-style: normal;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px;
	font-size: 10pt;
	background-color: #FFF;
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom-style: none;
	color: #004C92;
	text-align: right;
	padding-right: 20px;
	padding-left: 15px;
}
.twoColFixLtHdr #sidebar1 a:link {
	font-size: 16px;
	font-weight: bold;
	color: #004C92;
	text-decoration: none;
	text-indent: 0px;
	display: block;
	height: 40px;
	background-repeat: no-repeat;
	text-align: left;
	background-position: left top;
	font-family: Arial, Helvetica, sans-serif;
}
.twoColFixLtHdr #sidebar1 a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight: bold;
	color: #004C92;
	text-decoration: none;
	text-indent: 0px;
	display: block;
	background-color: #FFF;
	background-repeat: no-repeat;
	height: 40px;
	text-align: left;
}
.twoColFixLtHdr #sidebar1 a:hover {
	font-family: Arial, Helvetica, sans-serif;
	text-transform: none;
	text-decoration: none;
	text-indent: 0px;
	display: block;
	font-weight: bold;
	font-size: 16px;
	background-repeat: no-repeat;
	height: 40px;
	text-align: left;
	color: #F00;
}

.twoColFixLtHdr #sidebar2 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px;
	font-size: 10pt;
	background-color: #666;
	padding-top: 15px;
	padding-right: 10px;
	padding-bottom: 15px;
	padding-left: 20px;
	color: #FFFfff;
	clear: left;
	position: absolute;
	top: 649px;
	left: 431px;
}

.twoColFixLtHdr #mainContent {
	font-size: 100%;
	background-color: #FFF;
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	font-family: Verdana, Geneva, sans-serif;
	color: #004C92;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	text-align: left;
	font-style: normal;
} 

.twoColFixLtHdr #mainContent a:link {
	font-size: 1em;
	font-weight: bold;
	color: #004C92;
	text-decoration: none;
	text-indent: 0px;
	display: block;
	font-family: Arial, Helvetica, sans-serif;
}
.twoColFixLtHdr #mainContent a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 1em;
	font-weight: bold;
	color: #00F;
	text-decoration: none;
	text-indent: 0;
	display: block;
}
.twoColFixLtHdr #mainContent a:hover {
	font-family: Arial, Helvetica, sans-serif;
	text-transform: none;
	text-decoration: underline;
	text-indent: 0px;
	display: block;
	background-color: #FFF;
	font-weight: bold;
	color: #F00;
}
.twoColFixLtHdr #footer {
	color: #036;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	border-bottom-style: none;
	border-bottom-color: #F00;
	border-top-width: thin;
	border-bottom-width: thick;
	border-top-style: none;
	border-top-color: #333;
	text-align: center;
	background-color: #FFF;
} 
.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 */
	text-align: center;
}
.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;
	font-family: "Times New Roman", Times, serif;
	text-align: center;
}
.twoColFixLtHdr #container #mainContent p {
	font-size: 10pt;
	color: #000;
	text-align: left;
}
.twoColFixLtHdr #container #header h1 {
	font-size: 36px;
	text-align: right;
}
.twoColFixLtHdr #container #mainContent a {
	text-align: left;
	font-size: 14px;
	color: #004C92;
	text-decoration: underline;
	font-style: normal;
}
.twoColFixLtHdr #container #mainContent p strong {
	text-align: left;
	color: #000;

}
.twoColFixLtHdr #container #footer h5 strong {
	text-align: center;
}
.twoColFixLtHdr #container #footer h3 strong {
	text-align: center;
	color: #F00;
}
.twoColFixLtHdr #container #mainContent ul {
	font-size: 10pt;
}
.twoColFixLtHdr #container #mainContent ol li {
	font-size: 10%;
}
.twoColFixLtHdr #container #mainContent ol li {
	font-size: 10pt;
}
.twoColFixLtHdr #container #mainContent table tr td {
	text-align: left;
}
.twoColFixLtHdr #container #mainContent h4 {
	text-align: left;
}
.twoColFixLtHdr #container #footer p a {
	font-size: x-small;
	font-style: normal;
}
.twoColFixLtHdr #container #mainContent table tr td {
	text-align: left;
}
.twoColFixLtHdr #container #mainContent table {
	text-align: center;
	font-weight: normal;
}
