@charset "utf-8";
body {
	font: 12px "Trebuchet MS", Arial, Helvetica, sans-serif;
	background: #FFF;
	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: #003;
}
a {
	color: #F00; 
}
a img {
	border: 0;
}
ul {
	margin: 0;
	padding: 0;
	list-style: none;
	line-height: 30px;
}
#container {
	width: 1000px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: url(rfimages09/mainbg.jpg) repeat left top; /* this overrides the text-align: center on the body element. */
	text-align: center;
	margin: 0px auto;
}
#header {
	padding: 15px 20px 10px;  /* 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. */
	height: 210px;
}
#subheader {
	font: bolder 11px "Segoe Script", "Segoe Print", sans-serif;
	background: url(rfimages09/navbar.gif) no-repeat;
	height: 25px;
}
#mainContent {
	padding: 10px 50px 20px;
}
#mainContent h1 {
	font: bolder 25px "Segoe Script", "Segoe Print", sans-serif;
	color: #003;
}
#mainContent h2 {
	font: 18px "Segoe Script", "Segoe Print", sans-serif;
	color: #F00;
}
#mainContent h4 {
	font: 12px "Segoe Script", "Segoe Print", sans-serif;
	color: #F00;
}
#mainContent .pod h1 {
	color: #F00;
}
#footer {
	padding: 0 25px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:url(rfimages09/footerbg.jpg) no-repeat left top;
	height: 50px;
	font-size: 65%;
}
#footer a {
	text-decoration:none;
}
#footer a:hover, #footer a:active, #footer a:focus {
	color: #003;
	font-weight: bolder;
	font-size: 105%;
}
#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 */
}
.noTop {
	margin-top: 0px;
}
.clearfloat {
	font-size: 1px;
	line-height: 0px;
	margin: 0px;
	clear: both;
	height: 0px;
}
