@charset "utf-8";
body {
	background: #996633;
	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: #402000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
}
.riverstyle #container {
	width: 960px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
		text-align: left; /* this overrides the text-align: center on the body element. */
}
.riverstyle #header {
	background: #996633; 
	padding: 0 10px 0 20px;  /* 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. */
}
.riverstyle #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 */
	font-family: Arial, Helvetica, sans-serif;
	font-size: 36px;
	color: #000000;
	font-style: italic;
}
#navcontainer
{
	width: 100%;
	float: left;
	background-color: #000000;
	height: 30px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	color: rgb(255,255,255);
}

#navcontainer ul { padding: 0; }
#navcontainer ul li { display: inline; }

#navcontainer ul
{
	margin: 0;
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 0.75em;
	letter-spacing: 1px;
	font-weight: normal;
	padding: 5px;
}

#navcontainer ul li a
{
padding: 0.2em 12px;
background-color: #669999;
color: #FFFFFF;
text-decoration: none;
float: left;
border-right: 1px solid #000000;
}

#navcontainer ul li a:hover
{
background-color: #996633;
color: #FFFFFF;
}

#navlist li a:hover, #navlist li a:active
{
color: #FFFFFF;
text-decoration: none;
background: #CC3333;
text-align: left;
}
.riverstyle #mainContent {
	padding: 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	border: 5px solid #669999;
}
.riverstyle #mainContent a{
	color: #669999;
	text-decoration: none;
}
.riverstyle #mainContent a:visited {
	color: #669999;
	text-decoration: none;
}
.riverstyle #mainContent a:hover{
	color: #996633;
	text-decoration: none;
}

.riverstyle #mainContent  h1 {
	margin: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 22px;
	letter-spacing:0.2em;
	font-weight: bold;
	color: #669999;
	padding-top: 20px;
	padding-right: 0;
	padding-bottom: 20px;
	padding-left: 0;
}
.riverstyle #mainContent  h2 {
	margin: 0;
	padding: 10px 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 20px;
	font-weight: bold;
	color: #669999;
}
.riverstyle #mainContent  h3 {
	margin: 0;
	padding: 10px 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 18px;
	font-weight: bold;
	color: #996633;
}
.riverstyle #mainContent  h4 {
	margin: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 16px;
	font-weight: bold;
	color: #669999;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
}
.riverstyle #mainContent  h5 {
	margin: 0;
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	font-weight: bold;
	color: #996633;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 0;
}

.riverstyle #footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000000;
	border: 5px solid #669999;
}
.riverstyle #footer p {
	margin: 0;
	padding: 10px 0;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #FFFFFF;
}
.riverstyle #footer a{
	color: #669999;
	text-decoration: none;
}
.riverstyle #footer a:visited{
	color: #669999;
	text-decoration: none;
}
.riverstyle #footer a:hover{
	color: #996633;
	text-decoration: none;
}

/* ~~ miscellaneous float/clear classes ~~ */
.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. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}
.whtborder {
	border: 15px solid #FFFFFF;
}
