@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: left; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #333;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 90%;
	background-image: url(pictures/HiRes.jpg);
	line-height: 140%;
}
h1  {
	background-image: url(pictures/h1.gif);
	background-repeat: no-repeat;
	background-position: left center;
	color: #F60;
	padding-left: 40px;
	line-height: 150%;
}
h2 {
	color: #09C;
	border-bottom-width: 2px;
	border-bottom-style: solid;
	border-bottom-color: #F60;
	font-variant: normal;
	display: inline;
}
h3 {
	color: #09C;
}
h4 {
	color: #F60;
}
img {
	padding: 3px;
	border: 1px solid #F60;
}
a:link , a:visited{
	color: #333;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #09C;
	text-decoration: none;
}
a:hover , a:active{
	color: #333;
	text-decoration: none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #F60;
}
.twoColFixLtHdr #container #mainContent p a img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
}

.twoColFixLtHdr #container {
	width: 960px;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	background-color: #FFF;
	border-top-width: 1px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-top-color: #F60;
	border-right-color: #F60;
	border-bottom-color: #F60;
	overflow: hidden;
	background-image: url(pictures/orange_back.gif);
	background-repeat: repeat-y;
	background-position: left top;
} 
.twoColFixLtHdr #header {
	height: 150px;
	background-image: url(pictures/RiverHillsLogo.png);
	background-repeat: no-repeat;
	background-position: center top;
} 
.twoColFixLtHdr #mainContent {
	margin-top: 0;
	margin-bottom: 0;
	margin-left: 200px;
	padding-bottom: 0;
	padding-left: 40px;
	padding-right: 40px;
} 
.twoColFixLtHdr #mainContentAbout  {
	margin-top: 0;
	margin-bottom: 0;
	padding-bottom: 0px;
	width: 650px;
	padding-top: 10px;
	border: 1px solid #F60;
}
.twoColFixLtHdr #sidebar1 {
	float: left; /* since this element is floated, a width must be given */
	width: 200px;
	background-color: #F60;
}
.twoColFixLtHdr #sidebar1 p {
	color: #FFF;
	font-size: 90%;
}
.sidebar1img {
	border: 1px solid #F60;
}
.sidebar2img {
	border: 1px solid #6CF;
}
.twoColFixLtHdr #footer {
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #F60;
	border-right-color: #F60;
	border-left-color: #F60;
	background-color: #6CF;
} 
.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 */
	color: #FFF;
	font-size: 80%;
}
.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;
}

