@charset "utf-8";
#container {
	width: 950px;
	text-align: left; /* this overrides the text-align: center on the body element. */
	margin-top: 20;
	margin-right: auto;
	margin-left: auto;
} 
#header {
	height: 198px;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 0;
	padding-left: 65px;
	margin-top: 10px;
	margin-right: auto;
	margin-left: auto;
} 
#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;
}
#sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 135px; /* padding keeps the content of the div away from the edges */
	margin-top: 45px;
	padding-right: 15px;
	padding-left: 20px;
	margin-left: 50px;
	border: 1px solid #FF9797;
	padding-top: 0px;
	padding-bottom: 5px;
	margin-bottom: 0px;
}
#sidebar2 {
	float: right; /* since this element is floated, a width must be given */
	width: 150px; /* padding keeps the content of the div away from the edges */
	margin-top: 45px;
	margin-right: 50px;
	background-color: #F4FBFF;
	border: 1px solid #FF9797;
	padding-top: 10px;
	padding-bottom: 10px;
	padding-left: 15px;
	padding-right: 4px;
}

#mainContent {
	margin-top: 30px;
	width: 470px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 5;
	margin-right: auto;
	margin-left: auto;
} 
#footer {
	margin-bottom: 0px;
	padding-right: 0px;
	padding-left: 0px;
	height: 40px;
	width: 890px;
	margin-left: auto;
	padding-bottom: 0;
	margin-right: auto;
	background-image: none;
	background-repeat: no-repeat;
	background-color: #FF0000;
} 

#footer p {
	margin: 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	padding-top: 11px;
	padding-right: 0;
	padding-bottom: 10px;
	padding-left: 0;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	color: #FFFFFF;
	font-size: 100%;
}
.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;
}

.firstpara {
	margin-top: 0px;
}
#container #mainContent .firstpara .style28 {
	color: #FF0000;
}
#container #mainContent .style25 .firstpara {
	color: #000000;
}
a img {
	border-top-style: none;
}

