/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
}

/* these are the inner menus*/
.dropdown ul{
	position: relative;
	width: 200px;
	margin:0;
	padding:0;
	list-style:none;
	background: #fff;
	z-index: 2;
	border-top: 1px solid #aab6cf;
	border-left: 1px solid #aab6cf;
	border-right: 1px solid #aab6cf;
}

/* these are all the LIs in the menu*/
.dropdown li{
	width: 200px;
	margin:0;
	padding:5px;
	cursor:pointer;
	border-top:0;
	z-index: 999;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	width: 200px;
	display: block;
	text-decoration:none;
	z-index: 999;
}

.dropdown a:hover{
	text-decoration:underline;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	position: absolute;
	width: 200px;
	border-top:0;
	z-index: 2;
	background: #fff;
}

.dropdown>li:first-child{
}
