/* Codes for multi-level drop-downs */
/* Based on 'Son of Suckerfish' */
/* http://htmldog.com/articles/suckerfish/dropdowns/ */
ul#nav {
	list-style: none;
	line-height: 1.25;
	font-weight: bold;
	padding: 0;
	padding-top: 3px;
	border-width: 2px 0;
	margin: 0;
	position: relative;
	height: 2em;
	font-size: 0.75em;
}

#nav a {
	display: block;
	color: #FFFFFF;
	text-decoration: none;
	font-weight: bold;
	padding-top: 0.5em;
	padding-right: 1em;
	padding-bottom: 0.5em;
	padding-left: 1em;
}

#nav a.homelink {
/*	width: 4em; */
}

#nav a.ddp {
	background: url("images/rightarrow.gif") center right no-repeat;
}

#nav li {
	float: left;
	padding: 0px;
	padding-right: 0.5em;
	border-left-width: 2px;
	border-left-style: solid;
	border-left-color: #004400;
	border-right-width: 2px;
	border-right-style: solid;
	border-right-color: #000000;
	list-style-type: none;
}

#nav li ul {
	position: absolute;
	left: -999em;
	height: auto;
	width: 18em;
	font-weight: normal;
	border-width: 2px;
	margin: 0;
}

#nav li li {
	padding-right: 1em;
	margin-left: -3.5em;
	width: 17em;
	background-color: #001100;
	filter:alpha(opacity=85);
	-moz-opacity:.85;
	opacity:.85;
	border: none;
}

#nav li li li {
	margin-left: -1em;
}

#nav li ul a {
	width: 16em;
}

#nav li ul ul {
	margin-top: -1.75em;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 15em;
}

#nav li:hover ul ul, #nav li:hover ul ul ul, #nav li.sfhover ul ul, #nav li.sfhover ul ul ul {
	left: -999em;
}

#nav li:hover ul, #nav li li:hover ul, #nav li li li:hover ul, #nav li.sfhover ul, #nav li li.sfhover ul, #nav li li li.sfhover ul {
	left: auto;
}

#nav li:hover, #nav li.sfhover {
	background: #004400;
	filter:alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
