﻿		/*this is the css for the vertical version*/
		.vertical ul{
			list-style-type: none;
			padding: 0px;
            margin-right: 0px;
			border-top: 1px solid;
			width: 150px;
		}
		.vertical li a{
			display: block;
			width: 150px;
			text-decoration: none;
			height: 2.5em;
			padding: .1em 1px;
			border: 1px solid;
			border-top: 0px;
		}
		.vertical li{
			/*Needed for IE. Don't ask me why, It was a lucky guess.*/
			display: inline;
		}
		.vertical li ul{
			position: absolute;
			margin-top: -1.3em;
			margin-right: 150px;
		}
		/*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*/
		.blackwhite li a{
			background-color: #F7FFE0;
			color: #964C2A;
			border-color: #C8C16F;
		}
		.blackwhite li a:hover{
			background-color: #F7FFD3;
			color: #BF4300;
			border-color: #C8C16F;
		}
		.blackwhite ul{
			background-color: #F7FFD3;
			border-color: #C8C16F;
		}
