div#menu {
	position:absolute;
	/* left:25px; /* was 25px */
	margin:0 0 0px 2.8em; /* adjust to center menu */
	padding:0;
	height:19px;
	width:930px;
	text-align:left;
	z-index: 1000; /* was 1030 this makes the horizontal dropdown dropdown over top the vertical menu, but now the vertical menu pops behind the horizontal, so will strategically rearrange items on vertical menu to avoid overlap problem */
	/* top: 198px; */
	/* top: 177px; */
}




/* ***********************************************************************************

Convertable Nestled list menu by DUNCAL Productions
© 2007 by Duncan Hill and Alan Gresley
http://

Converts from a verticle menu with flyout submenus or a horizontal menu, with dropdown 
and then flyout submenus with a few changes in style where ****CONVERT**** appears.

*********************************************************************************** */

ul#navigation{
font-family:verdana;
	font-size: 80%;
	position:absolute; /* was absolute */
	left:0;
}
ul#navigation, ul#navigation ul {
	padding: 0;
	margin: 0;
	list-style: none;
	border-left: 1px solid #66000;
	border-bottom: 0.04em solid #66000;
	/* z-index: 1030; /* could this be the right one??? */
}
ul#navigation li { 
	line-height : 1.35em;
	position: relative;
	float: left;
}
ul#navigation>li li { /* Needed for Opera 9, maybe because it's decent CSS. Hide from IE6 */
	float: none;
}

#navigation a {
	display: block;
	width: auto; /* "auto" makes adjust to contents of "cell" ****CHANGE MENU WIDTH**** */
	color: #FFF;
	background-color: #990000; /* was #b0efbe; */
	padding: 0px 0.5em; /* was 4px 0.5em; */
	text-decoration: none;
	border-top: 0.04em solid #660000;
	border-right: 1px solid #660000;
}
ul#navigation a:hover {
	color: #FFF;
	background-color: #802A2A; /* was #99e1b1; */
}

ul#navigation li li a {
	width: 11em; /*           ****CHANGE SUBMENU WIDTH**** */
	/* z-index: 1030; */
}

ul#navigation li li li a {
	width: 14em; /*           ****CHANGE SUBMENU WIDTH**** */
	/* z-index: 1030; */
}


ul#navigation li ul {
	position : absolute;
	left: -999em;
	/* z-index: 1030; */
}
#navigation li:hover ul ul, #navigation li.sfhover ul ul {
	left: -999em;
}

#navigation li:hover ul, #navigation li li:hover ul, #navigation li.sfhover ul, #navigation li li.sfhover ul {
	top: 0;
	left: -1px;
	margin-left: 100%;
}

/*					****DISPLAYS HORIZONTAL MENU**** */
#navigation li:active ul, #navigation li:hover ul, #navigation li.sfhover ul {
   	top: 100%;
	margin-left: 0;
}
