@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, Arial, Helvetica, sans-serif;
	font-size: small;
	background-color: #9ACCCD;
}
#container  {
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #7CA2A3;
	border-right-color: #7CA2A3;
	border-bottom-color: #7CA2A3;
	border-left-color: #7CA2A3;
} 
#header  {
	background-image: none;
	background-repeat: no-repeat;
	height: 141px;
	width: 800px;
	margin: 0px;
	padding: 0;
} 
#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: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
}
#sidebar1  {
	float: left; /* since this element is floated, a width must be given */
	width: 170px; /* padding keeps the content of the div away from the edges */
	padding-top: 0px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 15px;
	background-color: #C3E5E4;
}
#navbar {
	background-color: #FFF;
	font-family: Verdana, Geneva, sans-serif;
	font-size: small;
	color: #C33;
	text-align: left;
	text-decoration: none;
}
navbar ul {
	margin: 0px;
	padding: 0px;
}
#navbar ul li {
	list-style-type: none;
	text-align: left;
}
#navbar a:link {
	color: #C33;
	text-decoration: none;
}
#navbar a:active {
	color: #789E9F;
	text-decoration: none;
}
#navbar a:visited {
	color: #C33;
	text-decoration: none;
}
#navbar a:hover {
	color: #789E9F;
	text-decoration: none;
}
#sidebar2  {
	float: right; /* since this element is floated, a width must be given */
	width: 160px; /* padding keeps the content of the div away from the edges */
	background-color: #FFF;
	border-top-width: thin;
	border-right-width: thin;
	border-bottom-width: thin;
	border-left-width: thin;
	border-left-style: dotted;
	border-top-color: #999;
	border-right-color: #999;
	border-bottom-color: #999;
	border-left-color: #999;
	padding-top: 5px;
	padding-right: 10px;
	padding-bottom: 5px;
	padding-left: 10px;
}
#mainContent  {
	margin-top: 0;
	margin-right: 200px;
	margin-bottom: 0;
	margin-left: 200px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 10px;
} 
#footer  {
	background-color: #B7DDDD;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 20px;
	font-size: x-small;
	text-align: center;
	color: #666;
} 
#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;
	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;
}
.thrColFixHdr #container #mainContent table font {
	font-size: x-small;
}
.thrColFixHdr #container #sidebar1 h4 {
	color: #7AA0A0;
}
