/* this is the main UL element*/
.dropdown {
	display:none;
	margin:0;
	padding:0;
	list-style:none;
}

/* these are the inner menus*/
.dropdown ul {
	margin:0;
	padding:0;
	border-top:none;
	list-style:none;
}

.dropdown ul li ul { margin:0px; }

/* these are all the LIs in the menu*/

.dropdown li{
	margin:0;
	cursor:pointer;
	opacity:0.9; filter:alpha(opacity=90);
}

.dropdown ul {
	border-top:1px solid #CCCCCC;
}

.dropdown ul li {
	width:inherit;
	background:#ffffff;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown ul a {
	display:block;
	width:inherit;
	padding:5px 0px 5px 0px;
	font-size:8pt;
	text-decoration:none;
	color:#333333;
}

.dropdown li.inactive span { color: #888888; }

.dropdown ul a span {
	font-size:inherit;
	margin-left:5px;
	margin-right:5px;
}

.dropdown ul a:hover{
	color:#ffffff;
	background-color:#F8C200;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #CCCCCC;
	border-top:0;
	margin-left:-1px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	visibility:visible;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#ffffff url('../_img/expand_right.gif') center right no-repeat;
}
