/* ================================================================ 
This copyright notice must be untouched at all times.

The original version of this stylesheet and the associated (x)html
is available at http://www.cssplay.co.uk/menus/basic_dd.html
Copyright (c) 2005-2007 Stu Nicholls. All rights reserved.
This stylesheet and the assocaited (x)html may be modified in any 
way to fit your requirements.
=================================================================== */
/* remove the bullets, padding and margins from the lists */

.menudrop {
	font-family: sans-serif, verdana, Arial;
	font-size: 12px;
	position: absolute;
	left: 200px;
	top: 50px;
	z-index: 999;
}
.menudrop .menuhead {
	margin: 0px;
	text-decoration: none;
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
	font-weight: bold;
	font-size: 14px;
}
.menudrop .menulinks {
	margin: 0px;
	text-decoration: none;
	padding-top: 2px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 5px;
}


.menudrop img {
	border-top-style: none;
	border-right-style: none;
	border-bottom-style: none;
	border-left-style: none;
	margin: 0px;
	padding: 0px;
}
.menudrop ul {
	list-style-type:none;
	padding:0;
	margin:0;
}
/* make the top level links horizontal and position relative so that we can position the sub level */
.menudrop li {
	float:left;
	position:relative;
	z-index:100;
	border-top-width: 0px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-top-style: none;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
	left: -1px;
}

/* use the table to position the dropdown list */
.menudrop table {
	position:absolute;
	border-collapse:collapse;
	z-index:900;
	left:-1px;
	top:24px;
}
/* style all the links */
.menudrop a, .menudrop :visited {
	display:block;
	font-size:12px;
	width:100px;
	color:#2E180A;
	text-decoration:none;
	text-align:left;
	background-color: #D6EDB9;
	height: 25px;
	padding: 0px;
}
/* style the links hover */
.menudrop :hover {
	color:#FFFFFF;
	background-color: #BBE18C;
}
/* hide the sub level links */
.menudrop ul ul {
	visibility:hidden;
	position:absolute;
	width:100px;
	height:0;
}
/* make the sub level visible on hover list or link */
.menudrop ul li:hover ul, .menudrop ul a:hover ul {
	visibility:visible;
}
