@charset "utf-8";
body  {
	background:#E5F5F9 url(../images/bg.gif) repeat-x;
	margin: 0;
	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 */
}
.twoColFixLtHdr #container { 
	position:relative;
	top:10px;
	width: 800px;
	height:auto;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
	background: #FFFFFF;	
} 
.twoColFixLtHdr #header { 
	position:relative;
	width: 800px; 
	height: 110px;
} 
.twoColFixLtHdr #headerDefaultText {
	position: absolute;
	top: 30px;
	left:250px;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size:18px;
	font-weight: bold;	
	z-index:1;
}
.twoColFixLtHdr #headerGraphic {
	position: absolute;	
	top:0; left:0;
	background: #33CCFF url(../images/header.jpg) top left no-repeat;	
	width: 800px; height: 110px;
	z-index:2;
	}
.twoColFixLtHdr #headerPWD {
	position: absolute;
	bottom:0;
	left:580px;
	width: 220px; height: 120px;
	z-index:3;
}	
.twoColFixLtHdr #skipToContent {
	position: relative;
	top: -135px;
	left: 500px;
	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 */
	z-index:2;	
	}	
.twoColFixLtHdr #topnav {
	position:relative;
	top:0;
	left:0;
}
.twoColFixLtHdr #wrapper {
	position:relative;
	top:0;
	left:0;
	background-color:#BEE6F7;
	float:none;	
	margin:0;
	padding:0;
}
html>body #wrapper {
    height: 100%;
	}
.twoColFixLtHdr #sidebar {
	position:relative;	
	float: left; /* since this element is floated, a width must be given */
	width: 145px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	height:auto;
	min-height:325px;
	background-color:#BEE6F7;
	background-image:url(../images/leftnavoverlay.jpg); background-repeat:no-repeat;
	margin:0;
	padding:0;
}
.twoColFixLtHdr #sidenav {
	position:relative;
	top:0;
	left:0;
	margin:0;
	padding:10px 0 0 0;
}
.twoColFixLtHdr #mainContent { 
	min-height:325px;
	position:relative;
	background: #FFFFFF;	
	margin: 0 0 0 145px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar space when the content in #sidebar1 ends. */
	padding: 1px 10px 20px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLtHdr #pageBottom {
	position: absolute;
	bottom: 0;
	width: 100%;
	height:10px;
	padding-bottom:5px;
}

.twoColFixLtHdr #bottomnav {
	position:relative;
	top:-11px;
	width:800px;
	margin: 0 auto;	
	padding:0;
	text-align: center;
}

.twoColFixLtHdr #footer { 
	margin:20px 0 0 0;
	padding: 0;
	text-align:center;
	line-height:1.2em;
} 
.twoColFixLtHdr #footer p.first {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: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;
}