/* Basic Elements */
html
{
	height: 100%;
}
body
{
	background-color: #23380A;
	text-align: center;	
	font-family: Verdana, Arial, Sans-Serif;
	font-size: small;
	margin: 0px;
	height: 100%;
}
a
{
	text-decoration: none;
}
a:hover
{
	text-decoration: underline;
}
a img
{
	border: 0px;
}
p
{
	line-height: 150%;
}
.page
{	
	width: 800px;
	margin-left: auto;
	margin-right: auto;
	padding-top: 7px;
}

/* Banner and Content Sections */
.bannerContainer
{
	background-color: #149A02;
	width: 800px;
	height: 180px;
	text-align: center;
	vertical-align: middle;
	/*position: fixed;*/
}
.banner
{
	background-image: url('../images/banner.png');
	background-repeat: no-repeat;
	border-top: 1px solid Black;
	border-left: 1px solid Black;
	border-right: 1px solid Black;
	background-position:  center;
	width: 100%;
	height: 100%;
}
.contentContainer
{
	width: 100%;
	text-align: left;	
	background-color: White;
	border-left: solid 1px Black;
	border-right: solid 1px Black;
	border-top: solid 1px DarkGreen;	
	padding-top: 0px;
	float: left;
}
.content
{
	background-color: White;
	padding-left: 10px;
	padding-right: 10px;
	border-left: dashed thin DarkGreen;	
	margin-left: 25%;
}
.contentHeader
{
	padding-top: 20px;
	font-size: large;
	font-weight: bold;
}
.contentSubHeader
{
	font-size: medium;
	font-weight: bold;
}
.navigation
{
	padding-left: 10px;
	padding-right: 10px;
	margin-top: 20px;	
	padding-bottom: 20px;	
	background-color: White;
	float: left;
}
.footerContainer
{
	color: #A3D953;
	background-color: #4F8400;
	width: 100%;
	text-align: center;	
	border-left: solid 1px Black;
	border-right: solid 1px Black;
	border-bottom: solid 1px Black;
	border-top: solid 1px DarkGreen;	
	float: left;
}
.footer
{
	margin: 10px;
	font-size: small;	
}

/* Navigation Links */
.navigation ul
{
	list-style: none;
	margin-top: 0px;
	margin-bottom: 0px;
	margin-left: 5px;
	padding: 0px;
	width: 170px;
}
.navigation ul li
{
	border: solid 1px black;
	padding: 7px;
	background-color: #81B419;
	font-size: medium;
	color: Black;
	cursor: pointer;
}
.navigation ul li:hover, .selectedNavMenu
{
	background-color: #4F8400;
	color: White;
}
.navigation ul li a
{
	margin: 0px;
	font-size: medium;
	color: Black;
}

/*Sub-lists in navigation*/
.navigation ul li ul
{
	width: 100%;
}
.navigation ul li ul li
{
	border: 0px none;
	padding: 0;
	font-size: small;
	background: transparent;
}

/* Random Stuff */
a.downloadButton
{
	border: inset 2px darkgreen;
	padding: 2px 5px 2px 5px;
	background-color: Green;
	text-decoration: none;
	color: White;
	margin-left: 15px;
	font-size: small;
	font-family: Arial;
}