@charset "UTF-8";
body  {
	margin: 100; /* 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-image: url(images/light_body.2.gif);
	background-repeat: repeat;
	background-color: #FFFFFF;
}
.twoColFixLtHdr #container {
	width: 780px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 4px solid #FFFFFF;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFFFFF;
	background-repeat: repeat-y;
	background-image: url(images/sidebar_short.jpg);
} 
.twoColFixLtHdr #header {
	background-image: url(images/header.jpg);
	height: 128px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	background-repeat: no-repeat;
	position: relative;
} 
.twoColFixLtHdr #container #header ul {
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	right: 0px;
	bottom: 0px;
	float: right;
	width: 750px;
	text-align: right;
}
.twoColFixLtHdr #container #header li {
	float: right;
	display: inline;
	}
.twoColFixLtHdr #container #header li a:link,.twoColFixLtHdr #container #header li a:visited {
	display: block;
	text-decoration: none;
	color: #FFFFFF;
	margin-right: .5em;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.75em;
	font-weight: bold;
	padding-top: 0.4em;
	padding-right: 0.5em;
	padding-bottom: 0.5em;
	padding-left: 0.5em;
	}
.twoColFixLtHdr #container #header li a:hover, .twoColFixLtHdr #container #header li a:active {
	color:	#333333;
	background: #fff;
	}
	
.twoColFixLtHdr #container #header li a.current, .twoColFixLtHdr #container #header li a.current:hover, .twoColFixLtHdr #container #header li a.current:active {
	color: #78320e;
	background: #fff;
	cursor: default;
	}	

.twoColFixLtHdr #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 */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 165px;
	padding-top: 20px;
}
.twoColFixLtHdr #container #sidebar1 ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.twoColFixLtHdr #container #sidebar1 ul li{
	margin: 0;
	padding: 0;
	}
.twoColFixLtHdr  #container  #sidebar1 ul a  {
	color: #333333;
	text-decoration: none;
	margin: 0;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #999999;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 0.75em;
	line-height: 30px;
	width: 150px;
	padding-left: 30px;
	display:block;
	}
	
.twoColFixLtHdr  #container  #sidebar1 ul a.first  {
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #999999;
	}
	
.twoColFixLtHdr #container #sidebar1 ul a:hover {
	color: #000000;
	background-color: #CCCCCC;
}

.twoColFixLtHdr #mainContent {
	font-size: 12px;
	line-height: 1.5em;
	color: #333333;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 200px;
	padding-top: 5px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 15px;
	vertical-align: top;
	position: relative;
} 

.twoColFixLtHdr #mainContent h1 { /* b/c ie6 is stupid when applying line-height to descenders */
	line-height: 2em;
}

.twoColFixLtHdr #footer {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #000000;
	float: none;
	width: 750px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
	background-color: #000000;
	border: 0px solid #FFFFFF;
	background-image: url(images/background_3.jpg);
	margin: 0 auto;
} 
.twoColFixLtHdr #footer a:link, .twoColFixLtHdr #footer a:visited {
	color: #000000;
	text-decoration: none;
	}
	
.twoColFixLtHdr #footer a:hover, .twoColFixLtHdr #footer a:active {
	color:#FFFFFF;
	text-decoration: underline;
	}
.twoColFixLtHdr #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: 10px;
}
.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;
}
.style1 {
	font-size: 70%;
	color: #333333;
}
.bottomLine {
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #666666;
}
