/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: bold;
	position:absolute;
}

/* 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;
	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:#f3ffff;

	background-color:#043c77;
	
}

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

/* these are the LIs that only belong to submenu*/
.dropdown ul li{

	margin-left:-1px;
	
}


/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	background-image:url('expand_down.gif');
	background-position:center left;
	background-repeat:no-repeat;
	padding-top:0px;
}

/* these are the LIs that contains a submenu and which are in a sub-menu themselve*/
