@charset "utf-8";
.thrColFixHdr #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; /* this overrides the text-align: center on the body element. */
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	padding-right: 1px;
	padding-left: 1px;
	border-right-width: 2px;
	border-bottom-width: 2px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-right-color: #999999;
	border-bottom-color: #999999;
} 
.thrColFixHdr #header {
	background: #DDDDDD;  /* 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. */
} 
.thrColFixHdr #logo {
}

.thrColFixHdr #nav {

}
.thrColFixHdr #mainContent {
	position: relative;
	border-bottom-width: 1px;
	border-bottom-style: groove;
	border-bottom-color: #CCCCCC;
	padding-right: 10px;
	padding-left: 10px;
	width: 650px;
	float: right;
	background-color: #EBEBEB;
	padding-top: 10px;
} 
	
.thrColFixHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 195px;
	padding-right: 20px;
	padding-bottom: 15px;
	padding-left: 10px;
	background-color: #FFFFFF;
}
.thrColFixHdr #footer {
	padding-bottom: 10px;

} 
.thrColFixHdr #footernav {
	border-bottom-width: thin;
	border-bottom-style: groove;
	border-bottom-color: #FFFFFF;

} 
.thrColFixHdr #footercopy {
	background-color: #5E97DD;
	padding-left: 10px;
	padding-top: 5px;


} 
.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;
}
