
	/*this is the css for the horizontal version*/
		
		a.navbutton{
		float:left;
		padding-top:11px;
		margin:0px;
		width: 120px;
		height: 25px;
		cursor: hand;
		font-size:12px;
		color:#ffffff;
		text-decoration:none;
		text-align:center;
		background-color:#51632C;
		}
	
		a.navbutton:hover{
		color: #ffffff;
		background-color:#50563a;}
		
		
		a.navbutton_sub{
		float:left;
		padding-top:5px;
		padding-left:5px;
		margin:0px;
		width: 155px;
		height: 20px;
		cursor: hand;
		font-size:12px;
		color:#ffffff;
		text-decoration:none;
		text-align:left;
		background-color:#51632C;
		}
	
		a.navbutton_sub:hover{
		color: #ffffff;
		background-color:#50563a;} 
		
		.vertical ul{
			list-style-type: none;
			padding: 0px;
			width: 258px;
		}
	
		.vertical li{
			/*Needed for IE. Don't ask me why, It was a lucky guess.*/
			display: inline;
		}
		
		
		/*Arrow code - looks like <a class="haschild" href="#">Text <span>Arrow</span></a> can be turned on/off with arrow class*/
		
		/*Plus code*/
		.plus a span{
			
		}
		
		
		.horizontal ul{
			list-style-type: none;
			padding: 0px;
			display: block;
		}
		
		.horizontal li{
			float: left;
			display: inline;
		}
	
		.horizontal li ul{
			position: absolute; 
			margin-top: 36px;
			margin-left: -1px;
			width: 258px;
			border: none;
			display: block;
			height: auto;
		}

		
		/*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;
		}
	
		.bluewhite ul{
		border:0px;
		}