/* CSS Document */

.style1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: small;
	font-weight: bold;
	margin: 10px;
	color: #556B2F;
}
.style2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: #556B2F;
	font-size: small;
}
.style3 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: large;
	font-weight: bold;
	margin: 10px;
	color: #556B2F;
}
.style4 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: x-small;
	font-weight: bold;
	margin: 10px;
	color: #556B2F;
}
.style5 {font-size: small}

.style6 {color: #FFFFFF}

.style7 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: medium;
	font-weight: bold;
	margin: 10px;
	color: #556B2F;
}

a {
	text-decoration: none;
}

a:link {
	color: #FFFFFF;
}

a:visited {
	color: #FFFFFF;
}

a:active {
	color: #556B2F;
}

a:hover {
	text-decoration: none;
	color: #556B2F;
}
ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

li { /* all list items */
	float: left;
	position: relative;
	width: 110px;
	text-align:center;
}

li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
}

li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
	background-color: #999966;
}

li:hover ul, li.over ul { /* lists nested under hovered list items */
	display: block;
}

#nav {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: x-small;
	font-weight: normal;
	color: #FFFFFF;
}
#nav a {
	font-weight: normal;
	color: white;
}

#nav a {
	text-decoration: none;
}

#nav li li a {
	display: block;
	font-weight: normal;
	color: white;
	padding: 0.2em 10px;
	border-bottom: ridge;
	border-color:#FFFFFF;
}

#nav li li a:hover {
	padding: 0.2em 5px;
	border: 5px solid #000000;
	border-width: 0 5px;
	border-bottom:ridge;
	border-color:#FFFFFF;
}

#content {
	clear: left;
}
