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


#mymenu {
	display:block;
	float:left;
	width: 540px;
	color:#F8F7E4;
	/*height:40px;*/
	height:auto;
	margin-left: 15px;
                     
}

.horizontal ul{
	list-style-type: none;
	display:block;
	margin:8px 0px 10px 0px;
	padding:0px 3px 0px 3px;
	color:#F8F7E4;
	height:22px;
	/*width:480px;*/
}

.horizontal ul li a{
	color:#F8F7E4;
	font-weight:bold;
	text-align:center;
	height:22px;
}

.horizontal li a{
	text-decoration: none;
	font-size:107%;/*mine*/
	font-family:arial;/*mine*/
	float: left;
	display: block;
	width: 130px;
}

.horizontal li{
	float: left;
	display: inline;
}

.horizontal ul ul li a{
	color:black;
	font-weight:normal;
	margin-left:0px;
	font-size:92%;/*mine*/
	font-family:arial;/*mine*/
}

.horizontal li li a{
	border-top: none;
	background-color:#9C9B79;
	margin-left:0px;
}
.horizontal li ul{
	/*drop down*/
	position: absolute; 
	margin: 20px 0px 0px 5px;
	padding:2px 0px 2px 4px;
	/*margin-left: -1px;*/
	width: 150px;
	display: block;
	height: auto;
}
		
.horizontal li li ul{
	/*position: absolute;*/
	/*margin-top: 0px;*/
	/*margin-left: 125px;*/
}

.horizontal li ul li a{
		width: 130px;
		text-align:left;
		padding-left:10px;
		/*background:#9C9B79 url(../images/bullet.gif) center left no-repeat;*/
		
}
		/*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: none;
	color: #000033;
	border-color: #000033;
}
.bluewhite li a:hover{
	background-color: #000033;
	color: white;
	border-color: #000033;
}
.bluewhite ul{
	border-color: #000033;
}