/* LEVEL ONE */
ul.dropdown {
	position: relative;
	list-style: none;
	margin: 0;
	padding: 0;
	z-index:2;
}

ul.dropdown li {
	font-weight: bold;
	float: left;
}

ul.dropdown a:hover {
	color: #000;
}

ul.dropdown a:active {
	color: #ffa500;
}

ul.dropdown li a {
	display: block;
	padding: 4px 8px;
}

ul.dropdown li a.top {
	display: block;
	color: #000;
	height: 45px;
	text-align: center;
	line-height: 45px;
	padding: 0;
	font-size: 12px;
	font-weight: bold;
}

ul.dropdown li.hover {
	position: relative;
	background: url('../gfx/menu-arrow.png') center top no-repeat;
}

ul.dropdown li.hover a {
	text-decoration: none;
	color: #fff;
}

/* LEVEL TWO */
ul.dropdown ul {
	width: 140px;
	visibility: hidden;
	position: absolute;
	top: 100%;
	left: 0;
	list-style: none;
	margin: 0;
	padding: 3px;
	border: 2px solid #396802;
	opacity: 0.9;
	background: #498800;
}

ul.dropdown ul li { 
	font-weight: normal;
	color: #000;
	border-bottom: 1px dashed #264601;
	float: none;
}

ul.dropdown ul li a	{/* IE 6 & 7 Needs Inline Block */
	border-right: none;
	width: 80%;
	display: inline-block;
	color: #eee;
	background: none;
	padding-left: 22px;
	background-position: 2px center;
	background-repeat: no-repeat;
}

ul.dropdown ul li.hover {
	position: relative;
	background: #264601;
}

ul.dropdown ul li.fly {
	position: relative;
	background-image: url('../gfx/arrow.gif');
	background-position: 130px center;
	background-repeat: no-repeat;
}

ul.dropdown ul li.hover a {
	color: #fff;
}


/* LEVEL THREE */
ul.dropdown ul ul {
	left: 100%;
	top: 0;
	list-style: none;
	margin: 0;
	padding: 3px;
}

ul.dropdown li:hover > ul {
	visibility: visible;
}
