		/*this is the css for the vertical version*/
		.vertical ul{
			list-style-type: none;
			padding: 0px;			
		}
		.vertical li a{
			display: block;
			text-decoration: none;			
		}
		.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.8em;
			margin-left: 120px;
		}
		.vertical li li ul{
			position: absolute;
			margin-top: -1.8em;
			margin-left: 150px;
		}
		/*this is the css for the horizontal version*/
		.horizontal ul{
			list-style-type: none;
			padding: 0px;
			margin: 0px;
			display: block;
		}
		.horizontal li{
			float: left;
			display: inline;
		}
		.horizontal li a{
			display: block;					
		}
		.horizontal li li a{
		}
		.horizontal li ul{
			position: absolute; 
			margin-left: -1px;
			width: 100px;
			border: none;
			display: block;			
		}
		.horizontal li li ul{
			position: absolute;
			margin-top: -16px;
			margin-left: 125px;
		}
		.horizontal li ul li a{
			
		}
		/*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;
		}
		/*Arrow code - looks like <a class="haschild" href="#">Text <span>Arrow</span></a> can be turned on/off with arrow class*/
		.arrow a span{
			font-size: 65%;  
		}
		.arrow a:hover span{
		
		}
		.arrow a span.noshow{
			visibility: hidden;
		}
		/*Plus code*/
		.plus a span{
			
		}
		