#listmenu4 * {margin:0; padding:0;} 

/* the horizontal menu starts here */
div#listmenu4 {
	width:147px;
	float:left;
	border-top:0px solid #FFFFFF;
	font-size:11px;
	background-color:#CCF;
	font-family: Arial, Helvetica, sans-serif;
	
	}
div#listmenu4 ul {
	margin:0 0 0 0px;
	width:147px;

}

/* hover - john */
#listmenu4 ul li a {
	display: block;
}

div#listmenu4 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:#85a1C2; /*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:0px solid #FFFFFF; /*dividers on the menu */	/*  *ADDED****/
	/* hover - john  - padding: 3px 3px 3px 6px; /*menu padding size */
	}
div#listmenu4 li:first-child {
	border-left:0px solid #FFFFFF; /*the first vertical line on the menu */
	
	}
div#listmenu4 li:hover {
	background-color:#85a1C2;
	
	}
div#listmenu4 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 */
	padding: 3px 3px 3px 6px; /* hover - john */

	}
div#listmenu4 a:hover {
	color:#FFFFFF;
	}
/* the horizontal menu ends here */

/* the drop-down starts here */
div#listmenu4 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#listmenu4 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#listmenu4 ul li ul li:hover {
	background-color:#CCD8E6; /* ADDED - sets the background of the submenu items */
	}
div#listmenu4 ul li ul li:first-child {
	border-top:0px solid #069;
	}
/* make the drop-down display as the menu is rolled over */
div#listmenu4 ul li ul {display:none;} /* conceals the drop-down when menu not hovered */
div#listmenu4 ul li:hover ul {display:block; } /* shows the drop-down when the menu is hovered */

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

div#listmenu4 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#listmenu4 ul li ul {
    border-top:0px solid #069; /*the top edge of the dropdown */
	}.bottomkeylinegrey {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #333333;
}

