		/*this is the css for the vertical version*/
		.vertical ul {
			list-style-type: none;
			padding: 0px;
		}
		
		.vertical li {
			position:relative;
		}		
			
		.vertical li li a{
			display: block;
			width: 180px;
			text-decoration: none;
			padding: 0 1px;
			border-top: 0px;
			background-color:#eee;
			border-bottom:1px solid #ccc;
			height:30px;
			line-height:30px;
		}
		
		.vertical li li a:hover {
			background-color: #BE1B20;
			color:#fff;
		}

		.vertical li ul{
			position: absolute;
			top:0px;
			left:178px;
			display:none;
			z-index:10000000;
		}
		
		.vertical li li ul {
			left:180px;
			top:0;
		}
		
		
		/*this is the css for the horizontal version*/

		#menunav li li {
			height:auto;
			margin:0;
			padding:0;
		}

		#menunav li {
			position:relative;
		}

		#menunav li li a{
			font-size:.9em;
			color:#fff;
			font-weight:normal;
			text-decoration: none;
			float: left;
			display: block;
			width: 150px;
			height:auto;
			line-height:1.2em;
			padding: .3em 5px;
			background-color: #EF292A;
			border-bottom: 1px solid #D11010;
		}

		#menunav li li a:hover {
			background-color: #AC0D0D;
		}

		#menunav li ul{
			padding-top:1px;
			position: absolute; 
			width: 150px;
			border: none;
			display:none;
			height: auto;
			top:30px;
			left:0px;
		}
		#menunav li li ul{
			padding-top:0;
			position: absolute;
			width:150px;
			top:0px;
			left:150px;
			padding-left:1px;
		}
		#menunav li ul li a{
		width: 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;
		}
		/*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;
		}
