@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: 100%;
	background-color: #666666;
	background-image: url(../img/bg_green.jpg);
}
h2 {
	font-family: Georgia, "Times New Roman", Times, serif;
	color: #666600;
	font-size: 18px;
	margin: 10px 0px 0px 0px;
	padding: 0px;
}
.thrColFixHdr   #topnav   {
	background-color: #999966;
	height: 30px;
	background-image: url(../img/topnav.jpg);
	color: #333333;
	text-align: right;
	font-size: 12px;
	padding: 10px 10px 0px 0px;
}
.thrColFixHdr #container {
	width: 842px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 10px solid #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
} 
.thrColFixHdr #container #contentwrap #containertopgraphic {
	background-image: url(../img/bg_buffalo.jpg);
	float: right;
	z-index: -1;
	width: 635px;
	height: 53px;
}
.thrColFixHdr #header {
	padding: 0px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	background-color: #FFFFFF;
	text-align: left;
	background-image: url(../img/bg_logobanner.jpg);
	height: 80px;
	background-position: 5px 3px;
} 
.thrColFixHdr #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 */
}
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 145px; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 130px 10px 15px 10px;
	background-color: #fff;
	background-image: url(../img/logo.jpg);
	background-repeat: no-repeat;
	background-position: center top;
}
.thrColFixHdr #container #contentwrap #sidebar1 ul  {
	margin: 10px 0px;
	padding: 0px;
	list-style-image: none;
	list-style-type: none;
}

.thrColFixHdr #container #contentwrap #sidebar1 ul li{
	background-color: #333366;
	display: block;
	list-style-image: none;
	margin: 5px 0px;
}

.thrColFixHdr #container #contentwrap #sidebar1 ul li a {
	padding:5px;
	color: #FFFFFF;
	background-color: #333366;
	margin: 0px;
	display: block;
	height: 15px;
	font-size: 11px;
	font-weight: bold;
	text-decoration: none;
	vertical-align: middle;
}

.thrColFixHdr #container #contentwrap #sidebar1 ul li a:hover{
	background-color: #FF6600;	
}

.thrColFixHdr #container #contentwrap {
	background-color: #999966;
	padding: 10px 15px;
	background-image: url(../img/bg_content.jpg);
	background-position: center top;
	float:left;
}

.thrColFixHdr #sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 170px; /* the background color will be displayed for the length of the content in the column, but no further */
/*	padding: 15px 10px 15px 20px;  padding keeps the content of the div away from the edges */
	padding: 15px 5px 15px 10px;
	background-color: #FFFFFF;
	font-size: 10px;
}
.thrColFixHdr #mainContent {
	margin: 0px 180px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background-color: #FFFFFF;
	padding: 0px 20px;
	width:400px;
} 
.thrColFixHdr  #mainContent p   {
/*
	background-repeat: repeat;
	background-image: url(../img/bg_maincontent.jpg);
*/
	font-size: 11px;
	background-color: #FFFFFF;
	line-height: 26px;
	padding: 0px;
	margin: 10px 0px;
}

.thrColFixHdr #footer {
	padding: 0 10px 0 20px;
	background-color: #333333;
	color: #FFFFFF;
} 
.thrColFixHdr #footer p {
	font-size: 10px;
	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 */
}

A.defaultlink:link 		{ text-decoration: none; text-decoration: none; color: #000000; }
A.defaultlink:visited	{ text-decoration: none; text-decoration: none; color: #000000; }
A.defaultlink:hover		{ text-decoration: none; text-decoration: underline; }
A.defaultlink:active	{ text-decoration: none; text-decoration: underline; }

A.footerlink:link 		{ text-decoration: none; text-decoration: none; color: #FFFFFF; }
A.footerlink:visited	{ text-decoration: none; text-decoration: none; color: #FFFFFF; }
A.footerlink:hover		{ text-decoration: none; text-decoration: underline; }
A.footerlink:active		{ text-decoration: none; text-decoration: underline; }


.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;
}

