/* this is the main UL element*/
.dropdown{
	visibility:hidden;
	margin:0;
	padding:0;
	list-style:none;
	background-color:#6b85a6;
	font-size:11px;
	border-top:1px solid white;
	height:31px;
	
	
}

/* 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:4px 10px;
	width:98px;
	background-color:#6b85a6;
	cursor:pointer;
	border-left:1px solid #fff;
	color:#FFF;
}

.dropdown li:hover{
	background-color:#95a7bf;
}


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

}

.dropdown a:visited, a:hover, a:active{
	text-decoration:none;
	
	
}

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

/* these are the LIs that contains a submenu*/
.dropdown li.submenu{
	background-image:url('../images/expand_down.gif');
	background-position:95px 10px;
	background-repeat:no-repeat;
	padding-left:10px;
	width:98px;

	
}

