﻿/* 
   The below CSS file was built using samples + techniques described by Rachel Andrew in her book:
   The CSS Anthology: 101 Essential Tips, Tricks & Hacks
*/

/* Overall Page */

body {
	margin: 0;
	padding-bottom: 2em;
	background-color: #FFFFFF;
	color: #000000;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	border-top: 10px solid #005500;
	width: 1000px;
}

/* Header Section */

#header {
	border-top: 3px solid #005500;
	height: 3em;
}
#header .title {
	font: 190% Arial, Helvetica, Georgia, "Times New Roman", Times, serif;
	color: black;
	background-color: transparent;
	float: left;
	margin-right: 0.2em;
	margin-top: 0.2em;
	margin-left: .8em;
}

#header a:link, a:visited  {
	color: #005500;
}

#breadcrumb {
	clear:both;
	font: 80% Arial, Helvetica, Georgia, "Times New Roman", Times, serif;
	color: black;
	background-color: transparent;
	margin-right: 2em;
	font-weight:bold;
	width:900px;
}

/* Navigation */
#navigation {
	width: 150px;
	left: 1em;
	margin-top: 1em;
	clear: both;	
	position:relative;
	float:left;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size:90%;
}
#navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}
#navigation li {
	border-bottom: 1px solid #FFFF00;
}
#navigation li a  {
	display: block;
	padding: 5px 5px 5px 0.5em;
	border-left: 12px solid #FFFF00;
	border-right: 1px solid #FFFF00;
	background-color: #005500;
	color: #FFFFFF;
	text-decoration: none;
}
#navigation li a:hover {
	background-color: #FFFF00;
	border:solid 1px #005500;
	color: #005500;
}
#navigation ul ul {
	margin-left: 12px;
}
#navigation ul ul li {
	border-bottom: 1px solid #FFFF00;
	margin:0;
	background-color: #FFFF8F;
	color: #005500;
}
#navigation ul ul a:link, #navigation ul ul a:visited {
	background-color: #FFFF8F;
	color: #005500;
}
#navigation ul ul a:hover {
	background-color: #FFFF00;
	color: #005500;
}
#BelowNav
{
    width:150px;
	left: 2em;
}
/* Main Content */

#content 
{
	width:700px;
	position:relative;
	float:left;
	left: 2em;
	margin-top: 1em;
}
h1 {
	font: 150% Arial, Helvetica, Georgia, "Times New Roman", Times, serif;
}
#content p {
	font-size: 80%;
	line-height: 1.6em; 
}

#content ul {
	font-size: 80%;
	line-height: 1.6em; 
}
#footer {
    clear:both;
    width:1000px;
    text-align:center;
    background-color:#005500;
    color:#FFFFFF;
    height:20px;
    bottom:0;
}