/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;
	background-color:#6d6c6c;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:5px;
	width:95px;
	cursor:pointer;
}


/* these are all the LIs in the menu*/
li.dropdown-narrower{
	margin:0;
	padding:5px;
	width:60px;
	cursor:pointer;
}
/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
	color:#e2e2e2;
}

.dropdown a:hover{
	text-decoration:none;
	font-weight:bold;
	color:#FFFFFF;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border-top:0;
	margin-left:-1px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	background-image: url(img/downarrow-off.gif);
	background-position:center right;
	background-repeat:no-repeat;
	margin-right:20px;
	background-color:#6d6c6c;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	background-image:url(img/ddrightarrow.gif);
	background-position:center right;
	padding:5px;
	background-color:#6d6c6c;
}
