@charset "UTF-8";
/* CSS Document */

#header {
	background: #FFFFFF;
	padding: 0 0px;
} 
#header ul {
	margin: 0px;
	padding: 0px;
	list-style: none;
	background: #81B2DC 100%;
	float: left;
	width: 100%;
	font-size: 110%;
}
#header ul a:hover{
	background: #B00063;
}
#header ul a.currentmain {
	cursor: default;
	background: #B00063;
	}
#header li a {
	display: block;
	float: left;
	padding: 8px 31px;
	text-decoration: none;
	color: #FFFFFF;
}
#header li {
	font-size: 110%;
	float: left;
}
#mainContent h1 {
	padding-top: 50px;
	color: #0999DC;
	font-size: 1.6em;
}
#footer {
	padding: 0 10px 0 20px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#D9D2C8;
} 
#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: 90%;
}
.img_padding {
	padding-right: 30px;
	padding-left: 50px;
}
a img {
	border: none;
	}
.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;
    font-size: 1px;
    line-height: 0px;
}
