/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	background: none;
	border: none;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;
	background: none;
	border: none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	cursor: pointer;
	height: 15px;
	padding: 0px;
	margin: 0px;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
		font-family: Tahoma, Geneva, sans-serif;
		font-size: 12px;
		border-right: 1px solid #FFF;
		font-weight: bold;
		color: #FFF;
		background: none;
		padding: 1px 15px 0px 15px;
		position: relative;
		text-decoration: none;
		height: 16px;
}

.dropdown a:hover{
		color: #6c9543;
}

.dropdown a.selected{
		color: #6c9543;
}
/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #444;
	padding: 5px;
	width:115px;
	height: 16px;
	background: #0e0f11;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background: center right no-repeat;
	width:100px;
	height: 16px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background: #0e0f11 url('../g/expand_right.gif') center right no-repeat;
	padding: 5px;
	height: 16px;
	margin-top: 5px;
	width:115px;
}