

#dropdown-demo {
	position: absolute;
	top:20px;
	left:160px;
	width:860px;
	height:20px;
    z-index:300;

}

/* this is the main UL element*/
.dropdown{
	display:none;
	margin:0px;
	padding:0px;
    list-style:none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
    z-index:301;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	list-style:none;
	
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding-right:10px;
	background-color:#FFFFFF;
	cursor:pointer;
	text-align: left;	
}

/* 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:#666666;
	padding-right:10px;
	padding-left:5px;
	z-index:301;
}

.dropdown a:hover{
	color:#FF0000;
	text-decoration:underline;
	padding-right:10px;
	padding-left:5px;
	z-index:301;
}

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	width:140px;
	background:#FFFFFF;
	padding-top:5px;
	z-index:301;
}

/* these are the LIs that contains a submenu*/
.dropdown li.submenu-down{
	background:#FFFFFF;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown li.submenu-left{
	background:#FFFFFF;
}


	

