/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0px;
	padding:0px;
	list-style:none;
	border-bottom:0px solid #444;
  font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 12px; 
  text-align:center;  
}

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

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0px;
	padding-top:5px;
  padding-bottom:5px;
	background-color:#E8E8E8;
	cursor:pointer;  
  padding-right:5px;
  padding-left:5px;
  text-align:center;
   width:115px;
}

/* 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:#000000;	
}

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

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border:1px solid #000066;
	border-top:0;
	margin-left:0px;
  width:120px;
}

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

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