		/*this is the css for the vertical version*/
		.vertical ul{
			list-style-type: none;
			padding:0px;
			margin:0px;
			width: 210px;
					}
		.vertical li a{
			display: block;
			width: 210px;
			text-decoration: none;
			height: 20px;
			padding: 1px;
			border-bottom:1px dotted;
			padding-top:5px;
		
				
		}
		.vertical li{
			/*Needed for IE. Don't ask me why, It was a lucky guess.*/
			display: inline;
						
		}
		.vertical li ul{
			position: absolute;
			margin-top: -27px;
			margin-left: 231px;
			
		}
	
				/*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: 0em;
		}
		.noshow{
			visibility: hidden;
		}
		/*colors for menu*/
		.blackwhite li a{
			background-color: white;
			color: black;
			border-color: black;
			padding-left:20px;
			font-weight:bold;
			font-size:12px;
		}
		.blackwhite li a:hover,.blackwhite li a.first:hover,.blackwhite .trail a.hover{
			background-color: black;
			color: white;
			border-color: black;
			padding-left:20px;
			font-weight:bold;
			font-size:12px;
		}
		.blackwhite li:first-child>a:hover{
			background-color: black;
			color: white;
			border-color: black;
			padding-left:20px;
			font-weight:bold;
			font-size:12px;
		}
		.blackwhite ul{
			border-color: black;
		}
		
		.arrow a span{
		padding-left: 160px;
		}
		
		.arrow a:hover span{
		padding-left: 160px;
		}
		.arrow a span.noshow{
			visibility: hidden;
			
		}
		