/* 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;
	border-top:0px solid #444;
	list-style:none;
}

/* these are all the LIs in the menu*/
.dropdown li{
	margin:0px;
	padding:0px;
	cursor:pointer;


}

/* 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;
	margin:0px;
	padding:0px;
	font-weight:bold;
	font-family:Tahoma, Verdana;
	font-size:12px;
}

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

/* these are the LIs that only belong to submenu*/
.dropdown ul li{
border:1px solid #ffffff;
background-color:#3c9000;
width:150px;
text-align:left;
height:20px;


}
