/* 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;
	width:186px;
	background-color:#000;
	cursor:pointer;
	height:18px;
	background-image:url(../images/menu_bg.jpg);
	text-align:center;
	padding:7px 0px 5px 0px;
}

/* 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%;
	font-size:12px;
	}

.dropdown li:hover{
	background-image:url(../images/menu_bg.jpg);
	background-position:0px 30px;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border-top:0;
	width:174px;
	border:1px solid #3158a0;
	background-image:none;
	background-color:#1c4798;
	text-align:left;
	height:auto;
	padding:8px 0px 8px 10px;
	/*margin-left:-1px;*/
}

.dropdown ul li:hover {
	background-image:none;
	background-color:#3e62a7;
	}

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

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
/*	padding-right:20px;
	width:105px;*/
}