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

/* 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;
}

.dropdown ul {
	width:120px;
	border:1px solid #FFFFFF;
	background-color:#000000;
	cursor:pointer;
	margin-top:-15px;
	padding-left:5px;
	padding-right:15px;
	padding-bottom:10px;
}

/* these are anchor in the menu, if you want to style them differently from the rest of you website*/
.dropdown li ul a{
	
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size:12px;
	line-height:20px;
	
	text-decoration:none;
	color:#b1dfeb;
	width:100%;
	text-align:left;
	padding:10px;
	line-height:14px;
}

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

