#listmenu * {margin:0; padding:0;} /* the horizontal menu starts here */div#listmenu {	width:147px;	float:left;	border-top:0px solid #FFFFFF;	font-size:11px;	background-color:#CCF;	margin:0; padding:0;	font-family: Arial, Helvetica, sans-serif;		}div#listmenu ul {margin:0 0 0 0px;/* indents ul from edge of container - left changed to 0 */	width:147px;	}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-color:#CCD8E6; /*sets the background of the menu items */	border-right:0px solid #FFFFFF; /* creates dividing lines between the li elements */	border-left:0px solid #FFFFFF; /*the first vertical line on the menu */	/*  *ADDED****/	border-bottom:1px solid #FFFFFF; /*dividers on the menu */	/*  *ADDED****/	margin:0; 	padding: 4px 3px 10px 6px; /*menu padding size */	}div#listmenu li:first-child {	border-left:0px solid #FFFFFF; /*the first vertical line on the menu */		}div#listmenu li:hover {	background-color:#394F71;		}div#listmenu a {	padding:0 px; /*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:#000000;	}/* the horizontal menu ends here *//* the drop-down starts here */div#listmenu ul li ul {	margin:0; /* prevents the TEMP value inheriting from the horiz menu - OK to remove if you remove TEMP above */	margin-left:145px; /*  *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:155px; /*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:-3px; /*aligns the drop exactly under the menu */	}div#listmenu ul li ul li {	width:100%; /* makes the list items fill the list container (ul) */	top:1px; /* ADDED - ALLIGNS THE POP-OUT WITH ITS PARENT */	left:-1px; /*aligns the drop exactly under the menu */	background-color:#FFF9D3; /* ADDED - sets the background of the submenu items */	}div#listmenu ul li ul li:hover {	background-color:#CCD8E6; /* ADDED - sets the background of the submenu items */	}div#listmenu ul li ul li:first-child {	border-top:0px solid #069;	}/* 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:0px solid #069; /*the top edge of the dropdown */	}
