@charset "UTF-8";
/* the horizontal menu starts here */
#div_navside {
	width:130px; 	/*  *changed****/
	float:left; /*makes the div enclose the list */
	font-family:Arial, Helvetica, sans-serif;
	font-size:.75em;	/* SET FONT-SIZE HERE */
	font-weight:bold;
	margin-top:20px; /* TEMPORARY - pushes the div away from the top of the browser for clarity in this example*/
	}
#div_navside ul {margin:0 0 0 -40px;/* indents ul from edge of container - left changed to 0 */
	width:130px;
}
#div_navside li {
	/*float:left;	/* causes the list to align horizontally instead of stack */ 	/*  *changed****/
	width: 125px;
	position:relative; /* positioning context for the absolutely positioned drop-down */
	padding:6px 0 6px 0;
	list-style-type:none;	/* removes the bullet off each list item */
	/* border-left:1px solid #FFF; the first vertical line on the menu */	/*  *ADDED****/
	border-bottom:1px solid #000; /*dividers on the menu */	/*  *ADDED****/
	}
#div_navside li:first-child {
	/*border-left:1px solid #000; the first vertical line on the menu */
	}
#div_navside li:hover { 
	/*background-color:#FFF; sets the background of the menu items */
	}
#div_navside a {
	padding:0 8px; /*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_navside a:hover {
	color:#FFCC00;
	}
/* the horizontal menu ends here */

/* the drop-down starts here */
#div_navside ul li ul {
	margin:0; /* prevents the TEMP value inheriting from the horiz menu - OK to remove if you remove TEMP above */
	margin-left:8.5em; /*  *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:100%; /*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_navside ul li ul li {
	width:100%; /* makes the list items fill the list container (ul) */
	background-color:#003399; /* ADDED - sets the background of the submenu items */
	margin: 0 0 0 10px;
	}
#div_navside ul li ul li:first-child {
	border-top:1px solid #fff; /*the top edge of the dropdown */
	}
/* make the drop-down display as the menu is rolled over */
#div_navside ul li ul {display:none;} /* conceals the drop-down when menu not hovered */
#div_navside ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */

#div_navside ul li ul li:hover ul {display:block;} /* shows the sub-drop-down when drop-down menu is hovered */
#div_navside ul li:hover ul ul {display:none;} /* conceals the sub-drop-down when drop-down menu not hovered */

#div_navside ul li ul li ul {left:-4px;} /*aligns the sub-pop next to the pop - added for side version */
