div.multi_drop_menus * {
	margin:0; padding:0;     /* removes margin and padding off all list elements */
}
div.multi_drop_menus {
	behavior:url(/scripts/csshover.htc);
	font-family: Arial, Helvetica, sans-serif;   /* font family for menu */
	font-size:80%; /* size of menu's type relative to parent element */
	float:left;
	width:100%;
	margin:0px 30px 0px 30px;
 background-color:transparent;    /* colors the div - div fills the parent element for a horizontal menu - set to background-color:transparent; if not needed */
}
div.multi_drop_menus ul {
	float:left;
	font-size:1em;
}
div.multi_drop_menus li {
	list-style-type:none;
	float:left;
	position:relative;
	background-color:rgb(33,70,36); /*green*/
}                						    
div.multi_drop_menus a {
	display:block;
	padding:.7em 10px;
	color:#fff;
	text-decoration:none;
}
div.multi_drop_menus a:hover {
	color:#fff;
	background-color:rgb(33,70,36); /*green*/
	text-decoration:underline;
}
div.multi_drop_menus ul li ul {
	position:absolute;
	display:none;
	width:14em;
	left:-1px;
	border:0;         			/* stops inheritance from level 1 ul */
 	margin-left:0px;        /* stops inheritance from level 1 ul */
} 
div.multi_drop_menus ul li:hover ul {
	display:block;
	z-index:1000; /* Safari needs this to display menu on top of other page elements */
}
div.multi_drop_menus ul li ul li{
	width:100%;
	padding:0; /* stops inheritance */
 	border-left:0; /* stops inheritance */
 	border-right:0; /* stops inheritance */
	border-bottom:1px solid #ebf7ff; /* lines between menu choices - set to 0px if not wanted */
} 

/* 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 */

  /* Want transparency on your menus? add the class 'transparent' to the multi_drop_menus div */
div.multi_drop_menus.transparent ul ul li {
 /* note: the lower the value, the greater the transparency */
  opacity:0.95; /* CSS3 - range 0 to 1 */     
  -moz-opacity:0.95; /* Firefox- range 0 to 1  */
  filter:alpha(opacity=95);  /* IE- range 0 to 100  */
  }
/* 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 */
 } 
  /* info on haslayout: 
  http://www.sitepoint.com/forums/showpost.php?p=2041209&postcount=24
  http://onhavinglayout.fwpf-webdesign.de/hack_management/
   */