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

	div.mlmenu .horizontal {white-space: nowrap;}
		.horizontal ul{
			list-style-type: none;
			padding: 0;
			border-left: 1px solid;
			display: block;
			height: 18px;
		}
		.horizontal li{
			float: left;
			display: inline;
		}
	div.mlmenu .horizontal li.top {width: 100px;}

		.horizontal li a{
			text-decoration: none;
			height: 18px;
			float: left;
			display: block;
			width: 90px;
			padding: 2px 5px 0 5px;
			border: 1px solid;
			border-left: none;
		}

		.horizontal li li a{
			border-top: none;
			border-left: 1px solid;
			width: 130px;
		}

		.horizontal li ul{
			position: absolute;
			margin-top: 1.5em;
			margin-left: -1px;
			width: 142px;
			border: none;
			display: block;
			height: auto;
			border-top: 1px solid;
		}

		.horizontal li li ul{
			position: absolute;
			margin-top: .1em;
			margin-left: 130px;
		}

		.horizontal li ul li a{
		width: 130px;
		}

		/*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*/
		/*Not sure if I recommend this or not*/
		.inaccesible li ul{
			display: none;
		}

		/*colors for menu*/

		.bluewhite li a{
			background: #1874CD url(/img/nav-bg.png) repeat-x;
			color: #fff;
			border-color: #000033;
		}
		.bluewhite li a:hover{
			background: #1874CD url(/img/nav-bg.png) repeat-x;
			color: gold;
			border-color: #000033;
		}
		.bluewhite ul{
			border-color: #000033;
		}