/* CSS Document for reference: http://www.bbd.com/stylin/the_files_revised/fig7.27_as_sidemenu.htm  */body { behavior:url(csshover.htc);} /*MY NOTE: NEEDS TO BE IN EVERY FOLDER or FIX THIS PATH*/* {margin:0; padding:0;} /* the horizontal menu starts here */div#listmenu {	font-family: verdana, arial, sans-serif; font-size:100%;	width:120px; 	/*  *changed****/	float:left; /*makes the div enclose the list */	border-top:1px solid #069;	/* draws line on top edge of div */	/*border-bottom:1px solid #069;	 /* draws line on bottom edge of div - removed as we now have dividers */	font-size:.8em;	/* SET FONT-SIZE HERE */	background-color:#003366; /* colors the div */	margin:0; padding:0;	}div#listmenu ul {margin:0 0 0 0px;/* indents ul from edge of container - left changed to 0 */	width:120px;}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:#FFA; /*sets the background of the menu items */	border-right:1px solid #069; /* creates dividing lines between the li elements */	border-left:1px solid #069; /*the first vertical line on the menu */	/*  *ADDED****/	border-bottom:1px solid #069; /*dividers on the menu */	/*  *ADDED****/	background-image: url(images/menu-bkg.gif); /* MY ADD */	background-repeat: repeat-x;		padding:5px 0px; /* MY ADD */	}div#listmenu li:first-child {	border-left:1px solid #069; /*the first vertical line on the menu */	}div#listmenu li:hover { 	background-image: url(images/menu-bkg-over.gif); /* MY ADD */	background-repeat: repeat-x;; /*sets the background of the menu items */	}div#listmenu a {	padding:0 6px; /*creates space each side of menu item's text */	text-decoration:none;	 /* removes the underlining of the link */	color:#FFF;	/* sets the type color */	}div#listmenu a:hover {	color:#FFF;	}/* the VERTICAL menu ends here *//* the drop-down starts here */div#listmenu ul li ul {	margin-left:120px; /*  *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:18em; /* CHANGED fROM 10!!! 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:1px solid #069; /*  three sides of each drop-down item */	border-bottom:1px solid #069;	border-right:1px solid #069;	background-color:#EFF; /* ADDED - sets the background of the submenu items */	padding:5px 0px; /* MY ADD */	}div#listmenu ul li ul li:first-child {	border-top:1px solid #069; /*the top edge of the dropdown */	}/* 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 #069; /*the top edge of the dropdown */	}