/* this is the main UL element*/
.dropdown{
	display:none;
}

/* these are the inner menus*/
.dropdown ul{
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	
}

.dropdown a:hover{
	text-decoration:underline;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	
}