/*this is the css for the vertical version*/
.vertical ul{
	list-style-type: none;
	padding: 0;
	width: 210px;
	margin: 0;	
	position: relative;
	background-color:#FFFFFF;
}

.vertical li a{
	display: block;
	width: 210px;
	text-decoration: none;
	height: 26px;
	padding: 0px;
	margin: 0px;
	color: #336CA8;
	font-weight:bold;
	font-family: Tahoma,Verdana, Arial, sans-serif;
	font-size:11px;
	z-index:99;
}

.vertical li{
	position: relative;
	border-bottom: 1px solid #d4d4d4;
	line-height:26px;
} 

.vertical li:first-child>a{
}

.vertical a.first{
}

.vertical li ul{
	position: absolute;
	top: -1px;
	left: 211px;
	border-top:1px solid #cccccc;
	border-left:1px solid #cccccc;
	border-right:1px solid #cccccc;
}
.vertical.left ul ul ul,.vertical .left ul{
	left: -211px;
	border:1px solid #00FF00;
}

/*here we use a little CSS to make a basic/backup dropdown menu in modern browsers *cough* not IE6 or less *cough* if javascript is disabled.Flickering never happens in these browsers*/
.mlmenu li ul{
	display: none;
}

.mlmenu li:hover>ul{
	display: block;
}

/*This section makes the menu not work in non-javascript enabled browsers by not showing the menu by default-This can be worked around by making top level links point to a sitemap*/
.accessible li ul{
	display: block;
}

/*Code to show an element has a child*/
.mlmenu.plus li a:first-child:not(:last-child):after{
	content: ' ';
	z-index:99;
}

.plus a span{
	padding-left: .5em;
}

.noshow{
	visibility: hidden;
}

/*colors for menu*/
.blackwhite li a{
	background-image:url(../image/menu/menu/normalmenu.png);
	color: #336CA8;
	font-weight: bold;
  	font-size: 12px;
  	font-family:Tahoma,Verdana, Arial, sans-serif;
}

.blackwhite li a:hover,.blackwhite li a.first:hover,.blackwhite .trail a.hover{
	background-image:url(../image/menu/menu/hovermenu.png);
	color: white;
	font-weight:bold;
	font-size: 12px;
  	font-family:Tahoma,Verdana, Arial, sans-serif;
}

.blackwhite li:first-child>a:hover{
	color: white;
	font-weight:bold;
	font-size: 12px;
  	font-family:Tahoma,Verdana, Arial, sans-serif;
}

.blackwhite ul{
}

