@charset "utf-8";
* {
	font-family: Geneva, Arial, Helvetica, sans-serif;
}
body  {
	font: 100%;
	/*background: #3F6720 url(/images/grass.jpg) repeat;*/
	background-color: #999;
	background-image: url(/images/bark.jpg) !important;
	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: #000;
	background-attachment: fixed;
}
#container {
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
	border-style: solid;
	border-width: 1px;
	border-color: #000;
} 
#header {
	padding: 0;  /* 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: 250px;
	background-color: #402B0E;
} 
#menu {
	margin: 0px;
	padding: 7px 0px 3px 0px;  /* 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: 25px;
	text-align: center;
	background-color:#402B0E;
	background-image: url(/images/brownheader.jpg);
	background-repeat: repeat-x;
} 
#menu a {
	margin: 0px;
	font-size: 1.2em;
	color: #fff !important;
	text-decoration: none !important;
}
#menu a:hover {
	margin: 0px;
	font-size: 1.2em;
	color: #ff0 !important;
	text-decoration: underline !important;
}
#sidebar1 {
	float: right;
	padding: 0px 0px 0px 0px;
	background: #000;
	margin: 0 0 0 5px;
}
#sidebar1 #menu1 {
	padding: 5px;
	font-weight: bold;
	color: #555555;
	background-image: url(/images/homeright.jpg);
	background-repeat: no-repeat;
	background-position: 5px;
	height: 400px;
	width: 200px;
	text-align: center;
}
#sidebar1 #menu1 form {
	margin-top: 55px;
}
#sidebar1 #menu1 form input {
	margin-bottom: 5px;
}
#sidebar1 #menu1 p {
	font-size:0.9em;
	text-align: left;
	padding-left: 5px;
	padding-top: 10px;
}

#sidebar1 #menu1 a {
	font-size: 1em;
	color: #000 !important;
	text-decoration: none !important;
}
#sidebar1 #menu1 a:hover {
	font-size: 1em;
	color: #000 !important;
	text-decoration: underline !important;
}

#mainContent {
	margin: 0 210px 0 0; /* the right margin on this div element creates the column down the right side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	font-size: 0.9em;
	padding: 20px 10px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
} 
#mainContent p, li {
	margin-bottom: 5px;
}
#mainContent ul {
	list-style-type: circle;
	margin-left: 20px;
}
#mainContent td {
	padding-bottom: 10px;
}
blockquote {
	margin-left: 30px;
}
#footer {
	margin: 0px;
	height: 25px;
	text-align: center;
	background-color:#402B0E;
	background-image: url(/images/brownheader.jpg);
	background-repeat: repeat-x;
	color: #FFF;
	padding: 10px 0px 0px 0px;
	font-size: 1em;
} 
#footer a {
	margin: 0px;
	font-size: 1em;
	color: #fff;
	text-decoration: none !important;
}
#footer a.hover {
	margin: 0;
	font-size: 1em;
	color: #fff;
	text-decoration: underline !important;
}

#frame1 {
	border-style: double;
	border-width: 3px;
	padding: 4px 4px 4px 4px;
	width: 530px;
}
.title {
	font-size: 1.5em;
	font-weight: bold;
}
.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;
}
