/* this is the main UL element*/
.dropdown{
	
	margin:0;
	padding:0;
	
	z-index: 5;
	width: 820px;
	height: 22px;
}

/* these are the inner menus*/
.dropdown ul{
	margin: 0;
	padding: 0;
	display: block;
	position: absolute;
	z-index: 999;
	
	width: 250px;
	display: none;
	left: 0;

}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:5px;
	width:150px;
	background-image: url(../IMG/topbg3.png);
	cursor:pointer;
  
}

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

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

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #444;
	border-top:0;
	margin-left:0px;
	background-image: url(../IMG/topbg2.png);
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background-image: url(../IMG/topbg2.png);
	padding-left:10px;
	width:147px;
	
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#000 url('expand_right.gif') center right no-repeat;
	padding-right:20px;
	width:135px;
	
}