		/*this is the css for the vertical version*/
		.vertical ul{
			list-style-type:/*square*/none;
			padding:0;
			width: 204px;
			margin-left:30px;/*added 10/11/08*/
			position: relative;
			color:#fff;
		}
		
		/*added 10/11/08*/
		
		.vertical ul li ul li{
			list-style-type:none;
			padding: 0;
			width: 204px;
			margin-left:-30px;
			position: relative;
			border-top:1px solid #fff;
		}
		
		.vertical li a{
			display: block;
			width: 200px;
			text-decoration: none;
			/*ight: 3m;*/
			padding: .1em 1px;
			/*border: 1px solid;*/
			/*border-top: 1px solid;*/
		}
		.vertical li{
			position: relative;
			border-bottom: 1px solid transparent;
			margin-bottom: -1px;
			line-height:2em;

		} 
		.vertical li:first-child>a{
		/*border-top: 1px solid;*/
		}
		.vertical a.first{
			/*border-top: 1px solid;*/
		}
		.vertical li ul{
			position: absolute;
			top: -1px;
			left: 203px;
		}
		.vertical.left ul ul ul,.vertical .left ul{
			left: -203px;
		}
	
		/*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;
		}
		/*colors for menu*/
		.blackwhite li a{
			background-color: #0198CD;
			color: white;
			font-weight:bold;
			border-color: black;
		}
		.blackwhite li a:hover,.blackwhite li a.first:hover,.blackwhite .trail a.hover{
			background-color: black;
			color: white;
			border-color: black;
		}
		.blackwhite li:first-child>a:hover{
			background-color: black;
			color: white;
			border-color: black;
		}
		.blackwhite ul{
			border-color: black;
		}
		.bluewhite li a{
			background-color: white;
			color: #000033;
			border-color: #000033;
		}
		.bluewhite li a:hover,.bluewhite li a.first:hover,.bluewhite .trail a.hover{
			background-color: #000033;
			color: white;
			border-color: #000033;
		}
		.bluewhite li:first-child>a:hover{
			background-color: #000033;
			color: white;
			border-color: #000033;
		}
		.bluewhite ul{
			border-color: #000033;
		}