@charset "utf-8";
body  {
	font-family:Georgia, "Times New Roman", Times, serif;
	background: #FFFFFF;
	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;
	color: #000000;
}
.twoColFixLtHdr #container { 
	width: 800px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	/*border: 1px solid #000000;*/
	text-align: left; /* this overrides the text-align: center on the body element. */
	background: url(../images/container-bg.jpg) top no-repeat;
	height: 100%;
	min-height:600px;
} 
.twoColFixLtHdr #header { 
	background: url(../images/header.jpg);
	width:800px;
	height:150px;
	border: none;
} 

.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 150px; /* 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: #FFFFFF; /* the background color will be displayed for the length of the content in the column, but no further */
	margin: 10px 10px 0 15px;
}
.twoColFixLtHdr #sidebar2 {
	float: left; /* since this element is floated, a width must be given */
	width: 210px; /* 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: 348px;
	background: url(../images/sidebar2-bg.jpg);
	margin:15px 0 0 5px;	
}
.twoColFixLtHdr #contentWrapper { 
	float: left;
	width:610px;
	height:100%;
	*margin-top: 15px; /* addd margin for IE */
}
.twoColFixLtHdr #mainContent { 
	width:610px;
	height:100%;
	min-height:360px;
	background: url(../images/main-content_bg-top.jpg) top no-repeat;
}
.twoColFixLtHdr #mainContent-bottom {
	width:610px;
	height:25px;
	background: url(../images/main-content_bg-bottom.jpg);
} 
.twoColFixLtHdr #footer { 
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: url(../images/footer.jpg);
	width:800px;
	height:50px; 
} 
.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: 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;
}
/* -------------------------------------------------------------- 
	NAVIGATION STYLES  
-------------------------------------------------------------- */
#navigation ul {
	margin: 0;
	padding: 0;
	list-style:none;
	*margin-top: -28px;
}

a:link, a img{
	text-decoration: none;
	border: none;
}

/* -------------------------------------------------------------- 
	CONTENT STYLES  
-------------------------------------------------------------- */
#mainContent {
	clear:both;
	font-family: Arial, Helvetica, sans-serif;
	font-size:12px;
}

#mainContent p, #mainContent table{
	margin:.7em 2.8em 0 2.5em;
}
#mainContent li{
	margin: 0.2em;
}
#mainContent ul{
	width:500px;
	margin:0;
	margin-left: 2em;
	padding:0;
	padding-left:2em;
	list-style-position: outside;
}

h1 {
	padding-top: 15px;
	font-size: 15px;
	margin: 0 0 .6em -0.5em;
	text-align: center;
	font-weight: normal;
	font-family: Arial, Helvetica, sans-serif;
}
h2 {
	font-size: 13px;
	margin: 1em 0 0 2em;
	font-weight: bold;
	color: #007BB9;
}

h3 {
	font-size:.85em;
}
.blueH{
	font-weight: bold;
	color: #007BB9;
}

#Maincontent a {
	color:#7B68EE;
}

#Maincontent a:hover {
	color:#aa0000;
}
/* -------------------------------------------------------------- 
	FOOTER STYLES  
-------------------------------------------------------------- */
#footer {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:.8em;
	color:#000;
}
/* -------------------------------------------------------------- 
	TABLES
-------------------------------------------------------------- */
.tableDisplay {
	width:100%;
	font-size:.8em;
	
}