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

/* these are the inner menus*/
.dropdown ul{
	border-top:1px solid #6c6c6c;
	margin:0;
	padding:0;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0;
	padding:0px;
	height:32px;
	cursor:pointer;
	z-index:1000;
}

/* 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:white;
	padding:0;
	line-height:32px;
}

.dropdown a:hover{
	;
}


/* these are the LIs that only belong to submenu*/
.dropdown ul li{
	border-top:0;
	margin-left:0px;
	height:24px;
	width:180px;
}

.dropdown ul li div {
	background-color:#474747;
	height:24px;
	width:156px;
	padding-left:12px;
	padding-right:12px;
}

.dropdown ul li div a {
	line-height:24px;
	color:white;
}
.dropdown ul li div a:hover {
	text-decoration:underline;
}

