@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: url(../images/bg_page.gif);
	margin: 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px;
	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;
}
.twoColFixLtHdr #container { 
	width: 840px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0px auto 0px 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. */
} 
.twoColFixLtHdr #header { 
	background: #DDDDDD; 
	padding: 0;  /* 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. */
} 

/*********** #menus styles ***********/

.twoColFixLtHdr #menu {
	font: 15px/21px Geneva, Arial, Helvetica, sans-serif;
	color: #003;
	background: #E6E6E6;
	text-align: center;
	margin: 0px;
	padding: 3px;
	border-bottom: 1px solid #003;
}

.twoColFixLtHdr #menu a:link, #menu a:visited {
color: #000033;
text-decoration:none;
}

.twoColFixLtHdr #menu a:hover{
color:#003; background-color:#999; text-decoration:underline;
}



.twoColFixLtHdr #mainContent { 
	margin: 0px 10px 0px 10px; /* 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: 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 

.twoColFixLtHdr #mainContent h1 {
	font: italic 28px/32px "Times New Roman", Times, serif;
	color: #FF0000;
	border-bottom: 2px groove #cccccc;
	margin: 0px 0px 15px 0px;
	text-align: center;
} 
.twoColFixLtHdr #mainContent h2 {
	font: 21px/24px "Times New Roman", Times, serif;
	color: #FF0000;
	border-bottom: 2px groove #cccccc;
	margin: 0px 10px 15px 0px;
	text-align: center;
} 

.twoColFixLtHdr #mainContent h6 {
	font: 12px/14px Arial, Helvetica, sans-serif;
	color: #000000;
	margin: 5px 0px 10px 0px;
	padding: 5px;
	text-align: justify;
} 

.twoColFixLtHdr #mainContent p {
	font: 12px/14px Arial, Helvetica, sans-serif;
	color: #000000;
	padding: 0 10px 0 0;
} 

.twoColFixLtHdr #mainContent img {
	border:1px solid #000000;
	} 

.twoColFixLtHdr #siteInfo{
	clear: both;
	border-top: 1px solid #000033;
	font-size: 75%;
	color: #000033;
	padding: 10px 10px 10px 10px;
	margin-top: 0px;
}
/* negative top margin pulls siteinfo up so its top border overlaps (and thus lines up with)
   the bottom border of the navBar in cases where they "touch" */

.twoColFixLtHdr #siteInfo img{
	padding: 4px 4px 4px 0px;
	vertical-align: middle;

}

.twoColFixLtHdr #DFinfo2{
font: 12px/14px Arial, Helvetica, sans-serif;
color: #fff;
background-color:#003;
margin: 15px 5px 0px 0px;
padding: 10px;
text-align: justify;
}

.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;
	margin:0;
    font-size: 1px;
    line-height: 0px;
}