.primemenu{
	height:65px;
	background:none;
	position:relative;
}		
		/*this is the css for the vertical version*/
		.vertical ul{
			list-style-type: none;
			padding: 0px;
			border-top: 1px solid;
			width: 204px;
		}
		.vertical li a{
			display: block;
			width: 200px;
			text-decoration: none;
			height: 1em;
			padding: .1em 1px;
			border: 1px solid;
			border-top: 0px;
		}
		.vertical li{
			/*Needed for IE. Don't ask me why, It was a lucky guess.*/
			display: inline;
		}
		.vertical li ul{
			position: relative;
			margin-top: -1.3em;
			margin-left: 200px;
		}
		/*this is the css for the horizontal version*/
		.horizontal ul{
			list-style-type: none;
			padding: 0px;
			position:relative;
			height: 1.4em;
		}
		
		.horizontal li{
			float: left;
			display: inline;
		}
		.horizontal li a{
			text-decoration: none;
			height: auto;
			float: left;
			display: block;
			width: 125px;
			padding: 5px 5px 5px 5px;
			border:1px solid #000;

		}
		.horizontal a.first{
			text-decoration: none;
			height: auto;
			float: left;
			display: block;
			width: 125px;
			padding: 5px 5px 5px 5px;
		}
		.horizontal li li a{
			border-top: none;
			height:auto;
		}
		.horizontal li ul{
			position: absolute; 
			margin-top: 25px;
			margin-left: -1px;
			width: 129px;
			border: none;
			display: block;
			height: auto;

		}
		.horizontal li li ul{
			position: relative;

		}
		.horizontal li ul li a{
			width: 125px;

		}
		.horizontal li ul li ul li a{
			width: 125px;
			margin-left:135px;
			float:left;
margin-top:-10px;

		}

		/*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;
		}
