/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	background:#00a7d9;
	list-style:none;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	background:#00a7d9;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	background-color:#00a7d9;
	cursor:pointer;
	font-family: Arial, Helvetica, Verdana;
	font-size: 13px;
}

/* 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:#fff;
}

.dropdown a:visited{
	text-decoration:none;
	color:#fff;
}

.dropdown a:hover{
	color:#000;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	margin-top:-3px;
	border:1px solid #3ec4ee;
	padding:6px 12px 6px 12px;
	width:150px;
}

/* 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{
}