/*this is the css for the vertical version*/
		.vertical ul{
			list-style-type: none;
			padding: 0px;
		/*	border-top: 1px solid; */
			border-bottom: 1px solid; 
			border-right: 1px solid; 
			border-color: #000; /* vertical Cell border all menus */
			width: 190px; /* very top border submenu */
			height: 1em;
			padding-left: 0px; /* locates links from left to right on pad */
			padding-right: 0px;
			margin-left: 0px; /* distance left table menu */
			margin-top: 0px; /* distance between table menus */
			margin-bottom: 10px; /* distance between table menus */
			background-color: #FFFF99; /* vertical main color in all menus yellow*/
		}
		.vertical li a{
			display: block;
			width: 190px; /* size of both menus */
			text-decoration: none;
			height: 1.3em;
			padding: 10em 20px;
		/*	border: 1px solid; */
			border-bottom: 1px solid; 
			border-right: 1px solid; 
			border-color: #000; /* vertical Cell border all menus */
			border-top: 0px;
			margin-top: 0px; /* distance between table menus */
			margin-bottom: 0px; /* distance between table menus */
		}
		.vertical li{
			/*Needed for IE. Don't ask me why, It was a lucky guess.*/
			display: inline; /* centers main menu table */
		}
		.vertical li ul{
			position: absolute;
			margin-top: -1.6em; /* adjust heigth lign up among menus */
			margin-left: 191px; /* distance between table menus */
		}




		/*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: 0em; /* moves arrow away from text  */
		font-size: 100%;  
		}
		.arrow a:hover span{
		padding-left: 0em;
		}
		.arrow a span.noshow{
			visibility: hidden;
		}
		/*Plus code*/
		.plus a span{
			padding-left: .5em;
		}
		/*colors for menu*/
		.blackwhite li a{
			background-color: #FFFF99; /* vertical main color in all menus yellow */
			color: #005681; /* green font*/
			text-transform: none;   /* none uppercase lowercase capitalise none*/
			border-color: #CCCCFF; /* vertical Cell border all menus ccc*/
			padding: 3px 5px;
		}
		.blackwhite li a:visited{
			background-color: #FFFF99; /* green*/
			color: #005681; /* white font*/
			text-transform: none;   /* none uppercase lowercase capitalise none*/
			border-color: #BBBBBB; /* ccc*/
			padding: 3px 5px;
		}
		.blackwhite li a:hover{
			background-color: #B5DD0B; /* green*/
			color: #660066; /* white font*/
			text-transform: none;   /* none uppercase lowercase capitalise none*/
			border-color: #CCCCFF; /* ccc*/
			padding: 3px 5px;
		}
		.blackwhite ul{
			border-color: #CCCCFF; /* vertical very top border submenu ccc*/
		}