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

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	border-top:1px solid #454547;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:3px 9px;
	/* width:120px; */
	background-color:#3A6375;
	cursor:pointer;
	white-space: nowrap;
}

/* 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;
	width:100%;
}

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

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #454547;
	border-top:0;
	margin-left:-1px;
}

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

}

/* =================== */

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

/* these are the inner menus*/
.subdropdown ul{
	margin:0;
	padding:0;
	border-top:1px solid #454547;
	list-style:none;
}

/* these are all the LIs in the menu*/
.subdropdown li{
	margin:0;
	padding:3px 9px;
	/* width:120px; */
	background-color:#e6e6e6;
	cursor:pointer;
	white-space: nowrap;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.subdropdown a{
	text-decoration:none;
	color:#454547;
	width:100%;
}

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

/* these are the LIs that only belong to submenu*/
.subdropdown ul li{
	border:1px solid #454547;
	border-top:0;
	margin-left:-1px;
}

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

}

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

}

.subdropdown * form, .subdropdown * input, .subdropdown * img
{
	margin: 0;
}