/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0px;
	padding:0px;
	list-style:none;
}

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

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0px;
	padding:0px;
	height:24px;
	width:140px;
	background-color:#Ff6600;
	cursor:pointer;
	font-family:Arial, Helvetica, sans-serif;
	padding:0px;
    white-space:nowrap;
	
}

/* 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:#fff;
	width:auto;
	font-size: 14px;
	height:15px;
	padding-left:5px;
	padding-top:5px;
    
}

.dropdown a:hover{
	text-decoration:underline;
}

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

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{

	background-repeat:no-repeat;
	padding-left:20px;
	height:10px;
	width:115px;
	padding:0px;
	margin:0px;
}



/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{

	height:15px;
	width:120px;
}