		/*this is the css for the horizontal version*/
		.horizontal ul{
			list-style-type: none;
			padding: 0px;
			border: 0px;
			display: block;
			height: 40px;
			text-align:center;
			background:#5a5a5a url(images/menubg.jpg) left center repeat-x;
		}
		.horizontal li{
			float: left;
			display: inline;
		}
		.horizontal li a{
			text-decoration: none;
			height: 1.6em;
			float: left;
			display: block;
			width: 155px;
			padding: 6px 2px 10px 2px;
			border: 0px;
		}
		.horizontal li li a{
			border: 0px;
		}
		.horizontal li ul{
			position: absolute; 
			margin-top: 3em;
			margin-left: 0px;
			width: 155px;
			border: none;
			display: block;
			height: auto;
			text-align:left;
			border: 0px;
		}
		.horizontal li li ul{
			position: absolute;
			margin-top: .5em;
			margin-left: 155px;
		}
		.horizontal li ul li a{
		width: 145px;
		padding-left:10px;
		text-decoration:none;
		border: 1px solid #252525;
		border-top-width:0px;
		background:#6e6e6e;
		}
		.horizontal li ul li a:hover{
		color:#fafafa;
		width: 145px;
		padding-left:10px;
		text-decoration:none;
		border: 1px solid #252525;
		border-top-width:0px;
		}
		
		/*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;
		}
		/*colors for menu*/
		.bluewhite li a{
			background-color: #5a5a5a;
			color: white;
			font-family:Tahoma, Geneva, sans-serif;
			text-transform:lowercase;
			font-weight:bold;
			border: none;
			text-shadow: 1px 1px #000;
			filter: progid:DXImageTransform.Microsoft.dropShadow(color=#000000, offX=1, offY=1, positive=true);
		}
		.bluewhite li a.select{
			color: #fafafa;
			font-family:Tahoma, Geneva, sans-serif;
			text-decoration:underline;
			text-transform:lowercase;
			font-weight:bold;
			text-shadow: 1px 1px #252525;
			filter: progid:DXImageTransform.Microsoft.dropShadow(color=#000000, offX=1, offY=1, positive=true);
			background:#5a5a5a;
		}
		.bluewhite li a:hover{
			color: #fafafa;
			border: none;
			text-shadow: 1px 1px #000;
			filter: progid:DXImageTransform.Microsoft.dropShadow(color=#000000, offX=1, offY=1, positive=true);
			background:#7e7e7e;
		}
		.bluewhite ul{
			border: none;
		}