/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0px;
	padding:0px;
	list-style:none;
	border-bottom:0px solid #444;
	z-index:111;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0px;
	padding:0px;
	border-top:0px solid #444;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0px;
	padding:0px;
	width:auto;
	background-color:transparent;
	cursor:pointer;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a:link, .dropdown a:active, .dropdown a:visited {
	text-decoration:none;
	color: #FFFFFF;
}

.dropdown a:hover{
	color:#94b701;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:0px solid #444;
	background-color:#000000;
	width:180px;
}

.dropdown ul li a {
	padding:0px 3px 10px 8px;
	font-size:10px;
}

.dropdown ul li a:acitve span, .dropdown ul li a:link span, .dropdown ul li a:visited span { visibility:hidden; }
.dropdown ul li a:hover span, .dropdown ul li a.on:active span,  .dropdown ul li a.on:link span , .dropdown ul li a.on:visited span { visibility:visible; }

.dropdown ul li a.on:link, .dropdown ul li a.on:active, .dropdown ul li a.on:visited { color:#94b701;  }


.dropdown ul { border-bottom:1px solid #aaaaaa; }


/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	
	/*padding-left:20px;
	width:105px;*/
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	/*background-image:url('expand_right.gif');
	background-position:center right;
	padding:5px;
	width:120px;*/
}