/* CSS Document */

body {
	margin: 0;
	padding: 0;
	background: #fff;
	color: #006600;
	text-decoration: none;
}
a:link {
	color: #006600;
	text-decoration: underline;
}
a:hover {
	color: #006600;
	text-decoration: none;
}
a:active {
	color: #006600;
	text-decoration: underline;
}
a:visited {
	color: #006600;
	text-decoration: underline;
}
#main {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 14px;
	font-weight: normal;
	color: #009900;
	text-decoration: none;
	background-color: #FFFFFF;
	border: 1px solid #006600;
}

/* Drop Down Menu */
ul {
	padding: 0;
	margin: 0;
	list-style: none;
	}
li {
	float: left;
	position: relative;
	}
li ul {
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
	}
li > ul {
	top: 53px;
	left: auto;
	}
li:hover ul, li.over ul {
	display: block;
	width: 184px;
	height: 225px;
	top: 53px;
	left: 0px;
	background: url(nav/dd-bg.gif) no-repeat right bottom;
	text-indent: 12px;
	}