/* this is the main UL element*/
.dropdown{
	display:none;
	direction:ltr;
	margin:0;
	padding:0;
	list-style:none;
}


/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;
	text-align:left;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:5px;
	cursor:pointer;
	width:13%;
	text-align:left;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	text-decoration:none;
	font-family: Arial, Tahoma, Helvetica, sans-serif;
	font-size: 80%;
	font-weight:bold;
	color:#dbe6f1;
	width:100%;
}

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

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #29427e;
	border-top:0;
	margin-right:-1px;
	background:#1c336b;
	width:130px;
	text-align:left;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	padding-right:20px;
}
