/* this is the main UL element*/
.dropdown {
	visibility:hidden;
	font-family: Tahoma, Arial, Helvetica, sans-serif;
	font-size: 12px;
}

/* these are the inner menus*/
.dropdown ul.dp,
.dropdown ul.dpe {
	display: none;
	margin:-2px 0px 0px 0px;
	padding:0;
	border-top:2px solid #047FFF;
	/*border-left: 1px solid #6E96D5;
	border-right: 1px solid #2B71BE;
	border-bottom: 1px solid #2B71BE;*/
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown ul.dp li,
.dropdown ul.dp li.end{
	margin:0;
	padding:5px;
	width:150px;
	display: block;
	background-color:#047FFF;
	cursor:pointer;
	position: relative;
	z-index: 10;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	display: block;
	text-decoration:none;
	color:#FFFFFF;
	width:100%;
}

.dropdown a:hover{
	text-decoration:underline;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul.dp li{
	border-left:1px solid #02076B;
	border-right: 1px solid #02076B;
	border-top:0;
	margin-left:-1px;
}

.dropdown ul.dp li.end{
	border-left:1px solid #02076B;
	border-right: 1px solid #02076B;
	border-bottom: 1px solid #02076B;
	border-top:0;
	margin-left:-1px;
}

/* these are the LIs that contains a submenu*/
.dropdown ul.dp li.submenu{
	background-image:url('expand_down.gif');
	background-position:center left;
	background-repeat:no-repeat;
	padding-left:20px;
	width:auto;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul.dp li.submenu{
	background-image:url('expand_right.gif');
	background-position:center right;
	padding:5px;
	width:auto;
}