@charset "utf-8";
body  {
	font: 0.8em Verdana, Arial, Helvetica, sans-serif;
	background: #fff;
	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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000;
}
a{
color:#000;
}
#container a
{
color:#000;
}
a:hover{
color:#000;
}
p{
line-height:1.8em;
text-align:justify;
}
.twoColFixLt #header { 
	
	background:#fff;
	padding: 10px 10px;; /* the auto margins (in conjunction with a width) center the page */
	border-bottom:5px solid #000;
	color:#000;
	height:92px;
}
.twoColFixLt #header h1{
position:absolute;
top:30px;
left:206px;
margin:0px;
padding:0px;
font-size:2em;
} 
.twoColFixLt #header h2{
position:absolute;
top:40px;
left:626px;
margin:0px;
padding:0px;
font-size:1.2em;
} 
.twoColFixLt #header #nav, #flash{
display:none;
}
.twoColFixLt #container { 
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	
	margin: 0px 10px;; /* the auto margins (in conjunction with a width) center the page */
	border-top: 1px solid #000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.twoColFixLt #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px; /* 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 */
	background: #000; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 20px 20px 15px 20px;
}
.twoColFixLt #sidebar1 h3{
font-size:1em;
}
.twoColFixLt #mainContent { 
	margin: 0 0 0 250px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 0 20px 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
.twoColFixLt #sidebar1 a{
color:#fff;
}
.twoColFixLt #sidebar1 a:hover{
color:#fff;
}
.twoColFixLt #mainContent h1{ 
margin-top:20px;
margin-bottom:0px;
padding-bottom:0px;
border-bottom: 1px dashed #000;
font-size:1.4em;
}
.twoColFixLt #mainContent h2{ 
border-bottom: 1px dashed #000;
font-size:1.2em;
}
.twoColFixLt #mainContent h2.black{ 
border-bottom: 0px dashed #000;
margin:0px;
padding:0px;
color:#000;
font-size:1.2em;
}
.twoColFixLt #mainContent td, .twoColFixLt #mainContent th{ 
text-align:center;
border-bottom:1px solid #000
}
.twoColFixLt #mainContent td{ 
color:#000;
font-weight:bold;
border-bottom:1px solid #000;
}
.twoColFixLt #mainContent #mail td{ 
border-bottom:0px solid #000;
}
.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;
}