/* SET YOUR PREFERENCES!!! */
div.multi_drop_menus {
	background-color:transparent;			/* colors the div - div fills the parent element for a horizontal menu - set to background-color:transparent; if not needed */
	text-transform: uppercase;
	font-size: 13px;
	margin:0px 0px 0px 0px;
}
div.multi_drop_menus ul {
	display:inline;										/* fixes margin-doubling bug in IE6 */
}
div.multi_drop_menus li {
	background: #e0e6d0 url(images/bg_main_menu_left.jpg) no-repeat top left;	/* background color of the level 1 menu items */
	padding: 0px 0px 0px 0px;
	text-transform: uppercase;
	text-align: center;
	line-height: 42px;
	height: 42px;
	width: 149px;
}																		/* border-right is automatically removed from vert menu below  */
div.multi_drop_menus li:hover {
	background: #e0e6d0;	/* background color of hovered menu items */
	line-height: 42px;
	height: 42px;
}
div.multi_drop_menus a {
	color:#888888;										/* sets the color of all menu type */
}
div.multi_drop_menus a:hover {
	color:#114e3c;										/* type color of a hovered menu choice */
}
div.multi_drop_menus ul li ul {
	width: 151px;											/* sets the width of menu levels 2 */
	margin: 0px 0px 0px 0px;
	border: 2px solid #dddddd;
}
div.multi_drop_menus li li {
	background-color: #e0e6d0;				/* background color of the level 1 menu items */
	background-image: none;
	border-bottom: 2px solid #dddddd;	/* lines between menu choices - set to 0px if not wanted */
	padding: 0px 0px 0px 10px;
	margin: 0px 0px 0px 0px;
	line-height: 20px;
	height: auto;
	font-size:13px;
	text-transform: none;
	text-align: left;
}																		/* border-right is automatically removed from vert menu below  */
div.multi_drop_menus li li:hover {
	background-color:#114e3c;					/* background color of hovered menu items */
	background-image: none;
	line-height: 20px;
	height: auto;
}
div.multi_drop_menus li li a {
	color:#888888;										/* sets the color of all menu type */
	padding: 0px 10px 0px 10px;				/*creates space top/bottom and left/right respectively around each menu item's text - set vert height in ems   */
	border-right: 2px solid #dddddd;
	border-left: 2px solid #dddddd;
}
div.multi_drop_menus li li a:hover {
	color:#ffffff;										/* type color of a hovered menu choice */
}
div.multi_drop_menus ul li ul li ul {
	border-top: 2px solid #dddddd;
	width: 250px;											/* sets the width of menu levels 3 - 4 */
}
div.multi_drop_menus li li li {
	line-height: 20px;
	height: auto;
}																		/* border-right is automatically removed from vert menu below  */
div.multi_drop_menus li li li:hover {
	line-height: 20px;
	height: auto;
}
/* END MENU PREFERENCES */
 
/* YOU ARE STONGLY ADVISED NOT TO MODIFY THE CODE THAT FOLLOWS : ) */
/* the menu mechanics start here */
div.multi_drop_menus {
	float:left;
	width:100%;
}
div.multi_drop_menus ul {
	float:left;												/* makes ul wrap li */
	font-size: 13px;									/* prevents inheritence from maiin text style sheet */
}
div.multi_drop_menus li {
	float:left;												/*causes the list to align horizontally instead of stack */
	list-style-type:none;							/* removes the bullet off each list item */
	position:relative;								/* positioning context for the absolutely positioned drop-down */
}
div.multi_drop_menus a {
	display:block;										/* makes link fill li so entire area is "hot" */
	text-decoration:none;							/* removes the underlining from the links */
}
/* the horizontal menu ends here */
/* the drop-downs starts here */
div.multi_drop_menus ul li ul { 
	position:absolute;								/* positions the drop-down ul in relation to its relatively positioned li parent */
	border:0;													/* stops inheritance from level 1 ul */
	margin-left:0px;									/* stops inheritance from level 1 ul */
}
div.multi_drop_menus ul li ul li {
	width:100%;
	padding:0;												/* stops inheritance */
	border-left:0;										/* stops inheritance */
	border-right:0;										/* stops inheritance */
}
div.multi_drop_menus ul li ul {
	display:none;											/* conceals the drop-down when menu not hovered */
}
div.multi_drop_menus ul li:hover ul {
	display:block;										/* shows the drop-down when the menu is hovered */
	z-index:1000;											/* Safari needs this to display menu on top of other page elements */
} 
/* pop-outs starts here */
body div.multi_drop_menus ul li ul li ul  {
	position:absolute;								/* associated menu with parent li positioning context */
	visibility:hidden;								/* ensures that level 3 menu is not reveal when level 2 is reveled */
	left:100%;
	top:-1px;													/* aligns level 3 and 4 pop-out with previous level */
}
div.multi_drop_menus ul li ul li:hover ul {
	visibility:visible;}							/* shows level 3 menu when associated level 2 li is hovered */
/* second and third level popouts here*/
div.multi_drop_menus ul li ul li:hover ul li ul {
	visibility:hidden;								/* ensures that level 4 is not reveal when level 3 is reveled */
}
div.multi_drop_menus ul li ul li ul li:hover ul {
	visibility:visible;								/* shows level 4 menu when associated level 3 li is hovered */
}
/* the drop-downs end here */

/* END MENU MECHANICS */

/* inevitable hacks for IE6  and < */
* html div.multi_drop_menus {
 z-index:1;													/* IE6 won't respect high z-index on abs-pos'd child (ul li ul) without this on its parent rel-pos'd element */
 }																	/* see http://www.last-child.com/conflicting-z-index-in-ie6/ */
* html div.multi_drop_menus ul li ul {
  z-index:400;											/*ensures menu is on top of other page elements */
 }
* html div.multi_drop_menus a {
/* cannot find a way to get the top level 'a' to fill the unwidthed menu choices without drop-down in IE : ( */
} 
* html div.multi_drop_menus.vertical a {
/* now hasLayout in IE - works on the vert menu as container has width */
 zoom:100%;
 } 
 * html div.multi_drop_menus ul ul a { /* second level of horiz menu */
 zoom:100%;													/* now IE 'haslayout" - IE now makes background hot in horizontal menus */
 }
 /* END OF LIST-BASED MENU */