@charset "utf-8";
/* CSS Document */

/*this is the css for the horizontal version*/
		.horizontal ul{
			margin:0px;
			padding:0px;
			display: block;
			list-style-type: none;
		}
		.horizontal li{
			margin:0px;
			height:20px;
			padding-top:10px;
			padding-bottom:10px;
			float:left;
			display:inline;
		}
		.horizontal li a{
			margin:0px;
			padding:0px;
			
			padding-left:4px;
			padding-right:4px;
			padding-top:10px;
			padding-bottom:10px;
			margin-left:0px;
			
			color:#ffe9ba;
			font-size:11px;
			background:none;
		}
		
			.horizontal li a:hover{
				
			}
		
		.horizontal li li{
			padding:0px;
			margin:0px;			
			padding-top:4px;
			padding-bottom:3px;
		}
		
		.horizontal li li a{
			padding:0px;
			margin:0px;
			padding-top:7px;
			padding-bottom:3px;
			padding-left:5px;
			display: block;			
			color:#f5dca1;
			font:normal 14px georgia;
			text-decoration:none;
			background-color:#4e310a;
					
			
		}
		
			.horizontal li li a:hover{
				color:#2c1e11;
				background-color:#c79153;				
			}
			
		.horizontal li ul{
			position: absolute; 
			margin-top: -5px;
			margin-left: 0px;
			width: 129px;
			border: none;
			display: block;
			height: auto;
		}
		.horizontal li li ul{
			position: absolute;
			margin-top: .1em;
			margin-left: 125px;
			display:block;
			
		}
		.horizontal li ul li a{
			width: 125px;
			

		}
		/*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{
		padding-left: 1em;
		font-size: 85%;  
		}
		.arrow a:hover span{
		padding-left: 2em;
		}
		.arrow a span.noshow{
			visibility: hidden;
		}
		/*Plus code*/
		.plus a span{
			padding-left: .5em;
		}
		/*colors for menu*/
		.blackwhite li a{
			background-color: white;
			color: black;
			border-color: black;
		}
		.blackwhite li a:hover{
			background-color: black;
			color: white;
			border-color: black;
		}
		.blackwhite ul{
			border-color: black;
		}
		.bluewhite li a{
			background-color: white;
			color: #000033;
			border-color: #000033;
		}
		.bluewhite li a:hover{
			background-color: #000033;
			color: white;
			border-color: #000033;
		}
		.bluewhite ul{
			border-color: #000033;
		}