		/*this is the css for the horizontal version*/

		.horizontal ul{
			border: none;
			list-style-type: none;
			padding: 0;
			margin: 0;
		}
		.horizontal ul li{
			float: left;
			position: relative;
			margin: 0;
			padding-bottom: 3px;
		}
		.horizontal ul li a{
			display: block;
			text-decoration: none;
			padding: 5px;
			padding-right: 9px;
			padding-left: 10px;
			border: 1px solid white;
			border-left: none;
			font-family: arial;
			font-size: 14px;
			background-color: #003366;
			color: white;
			font-weight: bold;
			margin: 0;
		}
		.horizontal li li{
			float: none;
			border-bottom: 1px solid #003366;
			margin: 0;
		}
		.horizontal li li.last{
	
		}
		.horizontal ul li ul{
			position: absolute;
			top: 1.9em;
			left: -1px;
			margin: 0;
			padding: 0;
		}

		.horizontal ul ul li {
			margin-top: -3px;
			padding: 0;
			border-bottom: none;
		}

		.horizontal ul ul ul{
			top: 2px;
			left: 170px;
			margin-top: 0;
		}
		.horizontal.left ul ul ul,.horizontal .left ul ul{
			top: -1px;
			left: -128px;
		}
		.horizontal ul li li a{
			border: 1px solid #003366;
			border-top: none;
			width: 150px;
			color: #003366;
			font-size: 12px;
			background-color: white;
			margin: 0;
		}
		.horizontal ul li:first-child>a{
			border-left: 1px solid;
		}
		.horizontal ul li a.first{
			border-left: 1px solid;
		}
		.horizontal ul li li a.first{
			border-top: 1px solid;
		}
		.horizontal ul li li:first-child>a{
			border-top: 1px solid;
		}
		div.horizontal ul li.pixelfix ul{
			left: 0;
		}
		div.horizontal ul li.pixelfix ul ul{
			left: 128px;
		}
		/*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: white;
			color: #003366;
			border-color: white;
		}
		.blackwhite li a:hover,.blackwhite li a.first:hover,.blackwhite .trail a.hover{
			background-color: #003366;
			color: white;
			border-color: white;
		}
		.blackwhite li:first-child>a:hover{
			background-color: #003366;
			color: white;
			border-color: white;
		}
		.blackwhite ul{
			border-color: #003366;
		}