html {
	font: 100%  Arial, Helvetica, sans-serif;
	margin: 20px; /* 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: #1090FD;
	font-size:13px;
	background-color: #BDBDBD;
	background-image: url(../Images/bg.jpg);
	background-position:top center;
}
a{
color:#fff; text-decoration:underline;
}
div, span, img{
margin:0; padding:0;
}
.mf #container {
	width: 920px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	margin: 10px auto; /* the auto margins (in conjunction with a width) center the page */
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.mf #topbar {
	padding:5px 10px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image: url(../Images/top_bg.png);
	background-repeat: no-repeat;
	background-position: center top;
}
.mf #shadow {
	padding:0 10px 5px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image: url(../Images/shadow_bg.png);
	background-repeat: repeat-y;
	background-position: center top;
}
.mf #footerbar {
	padding:5px 10px 10px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background-image: url(../Images/footer_bg.png);
	background-repeat: no-repeat;
	background-position: center bottom;
}
.mf #header {
background-color:#FFFFFF;
	padding: 20px 10px 10px 20px;  /* 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. */
}

.mf #nav {
padding:0px 20px 10px 0px; background-color:#FFFFFF; text-align:right; text-transform:uppercase; font-size:13px;
}
.mf #nav a
{
    color:#666; text-decoration:none; padding:0 5px 0;
}
.mf #nav a:hover
{
    color:#333; 
}
.mf #nav a.selected
{
    color:#0072BB;
}
.mf #banner {
margin-bottom:10px;background-color:#FFFFFF; height:170px;
}
.mf #mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	color:#fff;
}
.mf #mainContent #content .full{
background-color:#0072BB;
}

.mf #mainContent #content .left{
width:590px; float:left; background-color:#0072BB;
}
.mf #mainContent #content .right{
margin-left:600px; background-color:#ACACAC;
}
.mf #logos {
	padding: 10px 20px 5px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-color:#FFFFFF;
	text-align:center;
}
.mf #footer {
	padding: 10px 20px 5px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-color:#FFFFFF;
	font-size:11px;
	color:#666;
}
.mf #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 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.mf #footer .left {
	width:500px; float:left;
}
.mf #footer .right {
margin-left:500px; text-align:right;
}
.mf #footer a{
color:#666; text-decoration:none;
}
.mf #footer a:hover{
color:#0072BB;
}

.clear{
clear:both;
}