@charset "UTF-8";
/* CSS Document */

body  {
	margin: 20px 0 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #333333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	line-height: 1.5em;
	background: url(-img/bg.gif) repeat-x 0px 20px;
}
body,td,th {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 85%;
	color: #333333;
}
h1,h2,h3,h4,h5,h6 {
	font-family: Times New Roman, Times, serif;
	font-weight: bold;
	color: #263F6A;
}
h1 {
	font-size: 230%;
}
h2 {
	font-size: 160%;
}
a:link {
	color: #CC3300;
	text-decoration: underline;
}
a:visited {
	text-decoration: underline;
	color: #CC3300;
}
a:hover {
	text-decoration: none;
	color: #CC3300;
}
a:active {
	text-decoration: underline;
	color: #CC3300;
}
#container  {
	width: 900px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	text-align: left;
} 
#header  {
	margin-bottom: -1px;
} 
#sidebar  {
	float: left; /* since this element is floated, a width must be given */
	width: 265px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0px 0px 15px;
}
#mainContent  {
	margin: 10px 10px 10px 265px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0px 20px 10px 40px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	border-left: 0px solid #263f6a;
} 
#footer  {
	padding: 5px 0px 0 40px;
	border-top: 1px solid #263F6a;
	margin-top: 15px;
} 
#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 10px 20; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	font-size: 80%;
	line-height: 1.5em;
}
.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;
}
.firstsidebarlink {
	border-top: 0px solid #263F6a;
}
#rightcol {
	float: right;
	width: 300px;
}
.boldblue {
	font-weight: bold;
	color: #263F6A;
}
#leftcol {
	float: left;
	width: 255px;
}
#mainContent li {
	line-height: 115%;
}

