@charset "utf-8";
/* CSS Document */
html{
	overflow-y: scroll;
}
body{
	padding: 0;
	font-family: verdana, arial, helvetica, sans-serif;
	font-size: 82%;/* font sizing in ems, if you want to change anything, just change this.*/
	/*funny thing happens at 75% and lower. opera goes to a nice small size, but moz and ie pc change almost not at all. seems 76% is as small as you can go and stay the same across browsers.*/
	background-color:#354411;
	margin:0px;
	margin-top:10px;
	padding:0px;
}
/*the following classes are to demonstrate better line heights for narrow columns*/	
.narrow1{
	width: 50%;
	line-height: 1.3em;
	}
.narrow2{
	width: 50%;
	line-height: 1.5em;
	}
		
/*typography*/
a {
	text-decoration: none;
	font-weight: bold;
	/*color: #000;*/
	}
a:link {
	}
a:visited {
	}
a:active {
	}
a:hover {
	text-decoration: underline;
	}
h1 {
	font-size: 2.0em;
	font-weight: bold;
	margin-top: 0em;
	margin-bottom: 0.1em;/*both set to zero and padding in header div is used intead to deal with compound ie pc problems that are beyound summary in a simple comment.*/
	text-align:center;
	}
h2 {
	font-size: 1.7em;
	margin: 1.0em 0em 1.0em 0em;
	font-weight: bold;
	}
h3 {
	font-size: 1.4em;
	margin: 1.0em 0em 1.0em 0em;
	font-weight: bold;
	}
h4 {
	font-size: 1.2em;
	margin: 1.0em 0em 1.0em 0em;
	font-weight: bold;
	color:#842619;
	}
h5 {
	font-size: 1.0em;
	margin: 1.0em 0em 1.0em 0em;
	font-weight: bold;
	color:#842619;
	text-align:right;
	border-top:1px solid #842619;
	border-bottom:1px solid #842619;
	}
h6 {
	font-size: 0.8em;
	margin: 1.0em 0em 1.0em 0em;
	font-weight: bold;
	}
img {
	border: 0;
	}
ol, ul, li {/*
	list-style: none;*/
	font-size: 1.0em;
	line-height: 1.8em;
	margin-top: 0.2em;
	margin-bottom: 0.1em; 
	}
p {
	font-size: 1.0em;
	line-height: 1.2em;
	margin: 1.4em 0em 1.4em 0em;
	color:#333;
	}
li > p {
	margin-top: 0.2em;
	}
pre {/*moz 1.0/1.1/1.2.1, net 7.0/7.01 make this way too small, but i'm not going to go larger because monospace tends to run you into overflow pretty quick. prior moz and net are okay.*/
	font-family: monospace;
	font-size: 1.0em;
	}
strong, b {
	font-weight: bold;
	color:#666;
	}
#container{
	position:relative;
	width:1000px;
	margin:5px auto 5px auto;
	border:1px solid #455817;
	background-image:url(../img/elements/container_bg.gif);
}
#top{
	width:1000px;
	height:79px;
	background-image:url(../img/elements/top_logo.png);
	border-bottom:1px solid #455817;
}
#menu{
	position:absolute;
	width:150px;
	top:82px;
	left:2px;
}
#content{
	margin-left:156px;
	width:824px;
	top:80px;
	padding:10px 10px 10px 10px;
}
/* BOX */
.left_top{
	background:url(../img/elements/frame_l_top.png);
	background-position:top left;
	font-weight:bold;
	padding-left:22px;
	padding-top:5px;
}
.left_top h3{
	margin-top:0px;
	text-align:center;
	color:#FFF;
}
.left_top p{
	color:#354411;
	font-size: 0.9em;
}
.left_top img{
	border:1px solid #82A230;
} 
.right_top{
	background:url(../img/elements/frame_r_top.png);
	background-position:top right;
	width:22px;
}
.left_bottom{
	background:url(../img/elements/frame_l_bottom.png);
	background-position:bottom left;
	height:22px;
	padding-left:22px;
}
.right_bottom{
	background:url(../img/elements/frame_r_bottom.png);
	background-position:bottom right;
	width:22px;
	height:22px;
}