/* this is the main UL element*/
.dropdown {
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
	border-bottom:0px solid #444;
	height: 18px;
	 
}

/* these are the inner menus*/
.dropdown ul{
	border-top:1px solid #2e2e2e;
	list-style:none;
	
}

/* these are all the LIs in the menu*/
.dropdown li{
background-color:#555555;
text-align:center;	
	width:130px;
	border-left: 1px solid #fff;
}

/* 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:#ffffff;
	width:100%;
	font-weight: bold;
	font-size:10px;
}

.dropdown a:hover{
	text-decoration:none;
	background-color:#555555;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #fff;
	border-bottom:0;	
	text-align:right;
	padding-right:3px;	
	width:135px;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	background-image:url(expand_down.gif);
	background-position:97% 50%;
	background-repeat:no-repeat;
	padding-right:10px;
	width:130px;
	
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	background-image:url('expand_right.gif');
	background-position:center;
	padding: 0;
	width:120px;
	
}