/* 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;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	border-right:2px solid #fcfdfe;
	height:31px;
	width:120px;
	cursor:pointer;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	font:bold 12px arial;
	text-decoration:none;
	color:#000;
	padding-top:8px;
	width:100%;
}

.dropdown a:hover{
	text-decoration:underline;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border-bottom:1px solid #c3e0f2;
	background:#f9fbfc;
	border-top:0;
	padding:0px;
	margin:0px;
	height:21px;
	margin-left:-1px;
	
}

.dropdown ul li a{
	height:21px; width:100%;
	padding:0; margin:0;
	
	font:bold 12px arial;
	color:#016cb5;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	
	padding-left:20px;
	width:120px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	
	padding-right:20px;
	width:120px;
}