.vertical ul
{
	position: relative;
	padding: 0px;
	margin: 2px 0px 0px 0px;
			
	width: 214px;
			
	list-style-type: none;
}

.vertical li
{
	position: relative;
	margin-bottom: -1px;
			
	padding: 2px 0px;
	
	border: 0px;
}

.vertical li a
{
	display: block;
	
	padding: 9px 10px 9px 50px;
	
	height: 13px;
	
	font-family: verdana;
	font-weight: bold;
	font-size: 11px;
	
	text-decoration: none;
	
	letter-spacing: 1px;
	
	color: white;
}

.vertical li a:hover
{
	color: white;
}
		
.vertical li ul
{
	position: absolute;
	
	margin: 0px;
	padding: 0px;
	
	width: 170px;
	
	top: 0px;
	left: 215px;
	
	border-top: 1px solid white;
	border-right: 1px solid white;
	border-bottom: 1px solid white;
	
	background-color: white;
}
		
.vertical li a:hover
{
	background-color: #0e4997;
	
	background: url('menu-item-hover-bg.gif') repeat-x center center;
}


.vertical li ul li ul
{
	border-left: 1px solid white;
	left: 170px;
}
		
.vertical li ul li
{
	margin: 0px 0px 1px 0px;
	padding: 0px;
	
	font-family: verdana;
	font-weight: bold;
	font-size: 11px;
	
	text-decoration: none;
	
	color: white;
	
/*	border-bottom: 1px solid white; */
	
	background: url('menu-item-bg.gif') repeat-x center center;
}
		
.vertical li ul li.last
{
	margin: 0px;
	padding: 0px;
}

.vertical li ul li a
{
	padding-left: 10px;
}

.vertical li.long a
{
	margin: 0px;
	padding: 0px 0px 0px 10px;
	
	height: 30px;
}

.vertical ul.long li a
{
	margin: 0px;
	padding: 0px 0px 0px 10px;
	
	height: 30px;
}

.vertical.left ul ul ul,
.vertical .left ul
{
	left: -203px;
}

div.submenu
{
	display: block;
	
	padding: 9px 10px 9px 50px;
	
	height: 13px;
	
	font-family: verdana;
	font-weight: bold;
	font-size: 11px;
	
	text-decoration: none;
	
	letter-spacing: 1px;
	
	color: white;
}

div.submenu-hover
{
	display: block;
	
	padding: 9px 10px 9px 50px;
	
	height: 13px;
	
	font-family: verdana;
	font-weight: bold;
	font-size: 11px;
	
	text-decoration: none;
	
	letter-spacing: 1px;
	
	color: white;
	
	background: url('menu-item-hover-bg.gif') repeat-x center center;
}

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

.plus a span
{
	padding-left: .5em;
}

.noshow
{
	visibility: hidden;
}
