/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	
	width:972px; 
	background:#000 url('bg.gif') center left no-repeat;
}

/* these are the inner menus */
.dropdown ul{
	margin:0;
	padding:0;
	border-top:1px solid #DDDDDD;
	list-style:none;
	background-color:Transparent;
}

/* these are all the LIs in the menu, no sub menus */
.dropdown li{
	margin:0;
	padding-left:8px;
	padding-right:18px;
	
	cursor:pointer;
	height:33px; line-height:31px;
	background:#Transparent url('sep.gif') center right no-repeat;
	/*background-color:Transparent; */
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website */

.dropdown a:link{
	text-decoration:none;
	color:#fff; 
	font-size:14px; font-weight:bold;
}
.dropdown a:visited{
	text-decoration:none;
	color:#fff; 
	font-size:14px; font-weight:bold;
}
.dropdown a:hover{
	text-decoration:underline;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #DDDDDD;
	border-top:0;
	margin-left:-1px;
	background-color:#FDF8F3;
	padding-top:0px;
	height:23px; line-height:21px;
	width:108px;
}


.dropdown ul li a:link{
	text-decoration:none;
	color:#404040; 
	font-size:12px;
	font-weight:normal;
}

.dropdown ul li a:hover{
	text-decoration:underline;
	color:#404040; 
	font-size:12px;
}
.dropdown ul li a:visited{
	text-decoration:none;
	color:#404040; 
	font-size:12px;
	font-weight:normal;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background:url('expand_down.gif') no-repeat right 50%;
	padding-left:20px;
	margin-right:8px;
}


/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left {
	background:#FDF8F3 url('expand_right.gif') center right no-repeat;
	width:108px;
}