/* this is the main UL element*/
.dropdown{
	display:none;
	float:left;
	height:10px;
	margin:0;
	padding:0;
	list-style:none;
	
	
}

/* these are the inner menus*/
.dropdown ul{
	display:block;
	float:left;
	height:20px;
	margin:0;
	padding:0;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:2px;
	background-color:#999999;
	cursor:pointer;
	padding-right:8px;
	padding-left:4px;
	width:80px;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown a{
	font-family:sans-serif;
	text-decoration:none;
	color:#FFFFFF;
	font-size:14px;
	line-height:20px;
	width:100%;
}

.dropdown a:visited{
	text-decoration:none;
	color:#FFFFFF;

}
.dropdown a:hover{
	text-decoration:none;
	color:#FFFF00;
}


/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	margin-left:-1px;
	width:200px;
	border-color:#666666;
	border-style:solid;
	border-width:1px;
	border-top-width:0px;
}


/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background:#999999;
	width:80px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#999999;
}