@charset "utf-8";
body  {
	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: #333;
	background-color: #FFF;
	background-image: url(images/bg_up.png);
	background-repeat: repeat-x;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
}
img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}
p {
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}
a {
	color: #066F91;
	text-decoration: underline;
}
#mainContent h1 {
	padding: 0px;
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
	font-size: 22px;
	color: #666;
	font-weight: normal;
}
.twoColFixLtHdr #container {
	width: 765px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-image: url(images/header.png);
	background-repeat: no-repeat;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
} 
.twoColFixLtHdr #header {
	height: 130px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 20px;
} 
.twoColFixLtHdr #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 */
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 220px;
	padding-top: 5px;
	padding-right: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
}
.twoColFixLtHdr #mainContent {
	margin-top: 250px;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 250px;
	padding-top: 0;
	padding-right: 20px;
	padding-bottom: 0;
	padding-left: 0px;
} 
.twoColFixLtHdr #footer {
	background-image: url(images/footer.png);
	background-repeat: repeat-x;
	height: 129px;
	margin: 0px;
	padding: 0;
} 
.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;
}
#header #icons {
	width: 200px;
	float: right;
	margin-top: 80px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
#menu ul {
	list-style-type: none;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 15px;
	margin: 0px;
}
#menu ul a {
	background-image: url(images/menu.png);
	background-repeat: no-repeat;
	height: 32px;
	width: 177px;
	display: block;
	font-size: 14px;
	color: #FFF;
	text-decoration: none;
	padding-left: 20px;
	padding-top: 8px;
}
#menu .active span{
	background-image: url(images/menu_hover.png);
	color: #FFF;
	background-repeat: no-repeat;
	height: 32px;
	width: 177px;
	display: block;
	font-size: 14px;
	text-decoration: none;
	padding-left: 20px;
	padding-top: 8px;
}

#menu ul a:hover {
	background-image: url(images/menu_hover.png);
	color: #FFF;
}
#footer #links {
	width: 520px;
	margin-left: auto;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	color: #6F9CB7;
	clear: both;
	display: block;
}
#footer #copy a {
	font-weight: normal;
}
#footer #copy {
	margin-top: 30px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	width: 325px;
	color: #5A85A3;
}
#footer a  {
	color: #5A85A3;
	font-weight: bold;
}
.blue {
	color: #118CD3;
}
.floatleft {
	float: left;
	margin: 10px;
}
.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;
}
