@charset "UTF-8";
/* CSS Document */

body  {
	font-family: "Times New Roman", Times, serif;
	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: #000;
	width: 960px;
	font-size: 90%;
	background-color: #FFF;
}
#header {
	padding: 0 15px 15px 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. */
	position: relative;
	height: 60px;
	margin: 0;
	text-align: left;
	font-family: "Times New Roman", Times, serif;
	color: #000;
	font-size: 90%;
}
#outwrapper {
	width: 100%;
	height: 20px;
	text-align: center;
	margin-left: 5px;
}
#navcontainer {
	width: 120%;
}
ul#navlist, ul#navlist ul, ul#navlist li {
	margin: 0;
	padding: 0;
	list-style-type: none;
	text-align: center;
}
ul#navlist a {
	font-weight: normal;
	text-decoration: none;
}
ul#navlist li {
	float: left;
}
ul#navlist li a {
	color: #09F;
	padding: 0 .5em;
	width: 130px;
	font-size: 100%;
	text-align: center;
	line-height: 1em;
}
ul#navlist li a:hover {
	text-decoration: underline;
}
#sidebar {
	text-align: left;
	position:fixed;
	padding: 0 10px;
	width: 150px;
	list-style-type: none;
	float: left;
	margin-left: 5px;
	margin-top: 5px;
	color: #03C;
	font-size: 1.2em;
}
h3 {
	color: #784809;
	padding: 0;
	line-height: .5em;
	font-size: 1em
}
h2 {
	font-family:Verdana, Geneva, sans-serif;
	color: #03C;
	font-size: 1.7;
}
#green {
	color: #060;
	font-weight:bold;
	font-size:1.2em;
}
#image {
	border: 10px solid #784809;
	padding: 3px;
	float: right;
	margin-right: 30px;
	margin-left: 30px;
}

