@charset "UTF-8";

body {
	font-family:Verdana, Arial, Helvetica, sans-serif;
	background: #73880A;
	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: #000000;
	background-image:url("/images/background.png");
}
.content a, #sidebar a{
	color:#92256E;
	text-decoration:none;
	border-bottom:1px dashed #92256E;
	padding:0px 3px;
}
.content a:hover, #sidebar a:hover {
	color:#7F0055;
	border-bottom:1px dashed #92256E;
	background:#D2F870;
}
a img {
	border:none;
}
h1 {
	color:#73880A;
}
h2 {
	color:#73880A;
}
h3 {
	color:#73880A;
}
p {
	font-family:Georgia, "Times New Roman", Times, serif;
}
#container {
	width: 1016px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #F8FAF3;
	background-image:url("/images/wrapper-background.png");
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding:0;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
#header {
	background-image:url("/images/wrapper-top.png");
	background-repeat:no-repeat;
	width:1016px;
	margin:0 auto;
	padding:20px;
}
#navigation {
	list-style-type:none;
	margin-right:50px;
}
#navigation li {
	float:left;
	margin:0px 20px 0px 20px;
	font-weight:bold;
	text-transform:lowercase;
}
#navigation li a {
	font-size:18px;
	color:#73880A;
	text-decoration:none;
}
#pagearea {
	position:relative;
	float:left;
	overflow:hidden;
	width:620px;
	height:300px;
	margin:0 0 0 40px;
	padding:0;
}
#pages {
	position:absolute;
	top:0;
	left:0;
	width:5000px;
	height:300px;
}
.page {
	float:left;
	width:620px;
	height:300px;
	overflow:auto;
}
.pagehead {
	margin:5px 0px 0px 320px;
}
.logo {
	margin:20px;
	float:left;
}
.content {
	width:580px;
}
#footer {
	background-image:url("/images/wrapper-bottom.png");
	background-repeat:no-repeat;
	width:1016px;
	height:126px;
	overflow:hidden;
	margin:0 auto;
	color:#73880A;
}
#footer p {
	margin:75px 30px 0px 30px;
}
#sidebar {
	float: right; /* since this element is floated, a width must be given */
	width: 240px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	height:300px;
	margin-right:50px;
	padding:0;
	overflow:auto;
}
#sidebar p {
	width:180px;
}
.content {
	margin:0;
	padding:0;
}
.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;
}