/* this is the main UL element - Horizontal Menu*/
.topmenudropdown{
	display:none;
	margin:0;
	padding:0;
	list-style:none;
	direction:ltr;
	/*border-bottom:1px solid #444;*/
}

/* these are the inner menus*/
.topmenudropdown ul{
	margin:0;
	padding:0;
	border-top:1px solid #444;
	list-style:none;
}

/* these are all the LIs in the menu*/
.topmenudropdown li{
	margin:0;		
	padding:5px;	
	cursor:pointer;
	border-top:0;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.topmenudropdown a{
	text-decoration:none;
	color:#FFB119;
}

.topmenudropdown a:hover{
	text-decoration:underline;	
}

/* these are the LIs that only belong to submenu*/
.topmenudropdown ul li{
	border:1px solid #444;
	border-top:0;
	margin-left:-1px;
	background-color:Gray;
	width:120px;
}
