@charset "utf-8";
/*
body
{
	font-family:Verdana, Geneva, sans-serif;
	font-size: 75%;
	background-color: #e8e8e8;
	margin-top: 0px;
}
*/
body {
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	background: #e8e8e8;
	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; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #050505;
}

h1 {font-size: 24px; line-height: 36px; margin:18px 0; color:#9999CC;}
h2 {color:#5c3e90;}
h4 {font-size: 14px; color:#FC0;}
h5 {font-size: 8px; line-height: 36px; margin-top:18px;}

.bfstyle #container {
	width: 984px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	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. */
}

.bfstyle #mainContent {
	/* remember that padding is the space inside the div box and margin is the space outside the div box */
	/*padding: 0 20px; */
	/*margin: 20 auto;*/
	margin:5px;
	/*background-color:transparent;*/
	padding-top: 30px;
	padding-bottom:50px;
	padding-right:25px;
	padding-left:25px;
	
}

.bfstyle #Navigation {
	background: #9999CC;
	color: #F5F5F5;
}

.bfstyle #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#666666;
}

.bfstyle #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 */
	font-size: 11px;
	color: #f5f5f5;
}

.bfstyle #tdheader {
	color: #5c3e90;
	font-style:italic;
	font-weight:bold;
}

.bfstyle #imgDiv {
	float: left;
	width: 230px;; /* since this element is floated, a width must be given */
	background: #transparent; /* the background color will be displayed for the length of the content in the column, but no further */
	
}

.bfstyle #imgDiv h3, .bfstyle #imgDiv p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

.bfstyle #imgDivRight {
	float: Right;
	width: 290px;; /* since this element is floated, a width must be given */
	background: #transparent; /* the background color will be displayed for the length of the content in the column, but no further */
	
}

.bfstyle #imgDivRight h3, .bfstyle #imgDivRight p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 10px;
}

.bfstyle #subContent {
	/* margin: top right bottom left */
	margin: 0 20px 0 26%;
}

.bfstyle #subContent dt {
	font-size: 120%;
	color: #006;
}

.bfstyle #ce_table {
	margin-left: auto;
	margin-right: auto;
	border: thin solid black;
	border-collapse: collapse;
	background-color: #ECECEC;
}

.bfstyle #ce_table td, .bfstyle #ce_table th {
	border: thin dotted gray;
	padding: 5px;
}
	
.dtHeader {
	font-size: 110%;
	color: #006;
}

.subHdr {
	font-size: 120%;
	color: #5c3e90;
	font-weight: bold;
	padding-top:5px;
}

.hrLine
{
	border-top: solid 1px #006;
	width: 100%;
	padding-top:8px;
	padding-bottom: 2px;
}

.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;
}

