@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	margin: 0px 0px 0px 0px; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0px 0px 0px 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;
}
.bfund #container { 
	width: 781px;  /* 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: 0px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background:#EAEAEB;
} 
.bfund #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 */
}

img { behavior: url(iepngfix.htc); } 

.bfund #mainContent {
	padding:0px 0px 0px 0px;
	margin:0px 0px 0px 0px;
	background:#EAEAEB;
}
.bfund #mainContent p{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#28448B;
	padding: 0px 30px 0px 30px;
	text-align:justify;
	line-height:1.15em;
}
.bfund #mainContent p a:link, .bfund #mainContent p a:visited{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#28448B;
	text-decoration:none;
}
.bfund #mainContent p a:hover{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#28448B;
	text-decoration:underline;	
}
.bfund #mainContent #orange_links a:link, .bfund #mainContent #orange_links a:visited{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#F19F1C;
	text-decoration:none;
}
.bfund #mainContent #orange_links a:hover{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#F19F1C;
	text-decoration:underline;	
}
.bfund #mainContent h1{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:15px;
	color:#28448B;
	padding: 0px 30px 0px 30px;
	text-align:justify;
	line-height:1.15em;
	font-weight:bold;
}
.bfund #mainContent h2{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:13px;
	color:#28448B;
	padding: 0px 30px 0px 30px;
	text-align:justify;
	line-height:1.15em;
	font-weight:bold;
}
.bfund #mainContent h3{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#28448B;
	padding: 0px 30px 0px 30px;
	text-align:justify;
	line-height:1.15em;
	font-weight:bold;
}
.bfund #mainContent_title {
    margin:5px 0 0 0;
	padding:0;
	border:0;
} 
.bfund ul {
	padding: 0px 0px 0px 50px;
}
.bfund li {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:11px;
	color:#F19E21; /* #28448B */
	margin-bottom:2px;
}
.bfund #liText {
	color:#28448B; /* #28448B */
	font-size:9px;
}
.bfund #liText a:link, .bfund #liText a:visited {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#28448B; /* #28448B */
	text-decoration:none;
}
.bfund #liText a:hover {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	color:#28448B; /* #28448B */
	text-decoration:underline;
}
.bfund li a:link, .bfund #mainContent li a:visited {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:13px;
	color:#28448B;
	text-decoration:none;
}
.bfund li a:hiver{
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:13px;
	color:#28448B;
	text-decoration:underline;
}
.bfund #main{
float:left;
width:468px;
height:500px;
/*position:relative;*/
}
.bfund #sidebar{
float:right;
width:210px;
height:485px;
}
.bfund #footer {
	/*position:relative;*/
	width:781px;
	height:40px;
	background-image:url(../images/fund_footer.gif);
	background-repeat:no-repeat;
	padding:0;
	margin:0;	
}
.bfund #footer p {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:9px;
	color:#FFFFFF;
	margin:0;
	padding:15px 0px 0px 28px;
}
.bfund #footer p a:link, .bfund #footer p a:visited{
	color:#FFFFFF;
	text-decoration:none;
}
.bfund #footer p a:hover {
	color:#FFFFFF;
	text-decoration:underline;
}
.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:0px;
    font-size: 1px;
    line-height: 0px;
	margin:0px;
	padding:0px;
}