/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #393939;
	text-align: center;
	font-family: Helvetica, Verdana, Arial, sans-serif;
	text-shadow:rgba(0,0,0,0.01) 0 0 0;
	font-size: 12px;
	color: #FFFFFF;
	height: 25px;
	font-weight: bold;
}

/* these are the inner menus*/
.dropdown ul{
	margin:0;
	padding:0;
	border-top:1px solid #393939;
	list-style:none;
	background-color: #4C4C4C;
	font-size: 11px;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:0px;
	width:85px;
	cursor:pointer;
	height: 25px;
	line-height: 25px;
}

/* 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:#FFFFFF;
	width:100%;
}

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

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

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	padding-left:5px;
	width:82px;
	height: 25px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
.dropdown ul li.submenu{
	background-position:right center;
	padding:0px;
	background-repeat: no-repeat;
	width: 85px;
}
.dropdown  ul li.submenu:hover {
	text-decoration:none;
	background-color: #333333;
}
