<style type="text/css">
body {font-family: verdana, arial, sans-serif; font-size:100%; behavior:url(csshover.htc);}
 

/* the horizontal menu starts here */
div#listmenu {
	width:19em; 	/*  *changed****/
	float:left; /*makes the div enclose the list */
	border-top:1px solid #333;	/* draws line on top edge of div */
	/*border-bottom:1px solid #333;	 /* draws line on bottom edge of div - removed as we now have dividers */
	font-size:.6em;	/* SET FONT-SIZE HERE */
	font-weight:bold;	/* Adding Bold */
	background-color:#CCC; /* colors the div */
	margin-top:1px; /* TEMPORARY - pushes the div away from the top of the browser for clarity in this example*/
	line-height: 15px;
	}
div#listmenu ul {margin:0 0 0 0px;/* indents ul from edge of container - left changed to 0 */
	width:19em;
	padding:0;
}
div#listmenu li {
	/*float:left;	/* causes the list to align horizontally instead of stack */ 	/*  *changed****/
	position:relative; /* positioning context for the absolutely positioned drop-down */
	list-style-type:none;	/* removes the bullet off each list item */
	background-image:url(navbg.jpg);
	background-repeat:repeat-x;
	background-color:#DDD; /*sets the background of the menu items */
	border-right:1px solid #333; /* creates dividing lines between the li elements */
	border-left:1px solid #333; /*the first vertical line on the menu */	/*  *ADDED****/
	border-bottom:1px solid #333; /*dividers on the menu */	/*  *ADDED****/
	}
div#listmenu li:first-child {
	border-left:1px solid #333; /*the first vertical line on the menu */
	}
div#listmenu li:hover { 
	background-color:#99A; /*sets the background of the menu items */
	}
div#listmenu a {
	/*display:block;*/
	padding:0px 2px; /*creates space each side of menu item's text */
	text-decoration:none;	 /* removes the underlining of the link */
	color:#333333;	/* sets the type color */
	}
div#listmenu a:hover {
	color:blue;
	}
/* the horizontal menu ends here */

/* the drop-down starts here */
div#listmenu ul li ul {
	margin:2; /* prevents the TEMP value inheriting from the horiz menu - OK to remove if you remove TEMP above */
	margin-left:19em; /*  *ADDED**MOVES THE SUBMENU OVER TO BE TO THE RIGHT OF THE MAIN MENU **/
	position:absolute; /* positions the drop-down ul in relation to its relatively positioned li parent */
	width:15em; /*sets the width of the menu - in combo with the li's 100% width, makes the menu stack*/
	top:-1px; /* ADDED - ALLIGNS THE POP-OUT WITH ITS PARENT */
	left:-2px; /*aligns the drop exactly under the menu */
	}
div#listmenu ul li ul li {
	width:100%; /* makes the list items fill the list container (ul) */
	border-left:8px solid #870201; /*  three sides of each drop-down item */
	border-bottom:1px solid #000;
	border-right:1px solid #000;
	background-color:#EEE; /* ADDED - sets the background of the submenu items */
	}
div#listmenu ul li ul li:first-child {
	border-top:1px solid #000; /*the top edge of the dropdown */
	border-left:8px solid #870201; /*  three sides of each drop-down item */
	}
/* make the drop-down display as the menu is rolled over */
div#listmenu ul li ul {display:none;} /* conceals the drop-down when menu not hovered */
div#listmenu ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */

div#listmenu ul li ul li:hover ul {display:block;} /* shows the sub-drop-down when drop-down menu is hovered */
div#listmenu ul li:hover ul ul {display:none;} /* conceals the sub-drop-down when drop-down menu not hovered */

div#listmenu ul li ul li ul {left:0px;} /*aligns the sub-pop next to the pop - added for side version */

/* HACK ZONE - on hack only for IE */
* html div#listmenu ul li ul {
    border-top:1px solid #000; /*the top edge of the dropdown */
	}

/* END OF LIST-BASED MENU */
</style>
