﻿div.multi_drop_menus
{
    behavior:url(../js/csshover.htc);/* you must link to the hover.htc file for this menu to work in IE6 and earlier */
}

div.multi_drop_menus ul {
	display:inline;						/* fixes margin-doubling bug in IE6 */
	margin:0px;
	padding:0px;  
	z-index:1000;
	font-size:11px;
	 
 }
div.multi_drop_menus li 
{
    margin:0px;
    padding:0px; 
}
div.multi_drop_menus ul li ul 
{
    background-color:#7A7A7A;
    border-color:-moz-use-text-color #ADB1B4 #ADB1B4;
    border-style:solid;
    border-width:1px;
    padding:0;
    width:164px;
 }
div.multi_drop_menus ul li:hover
{
	background-color:#7A7A7A;
    border-color:#ADB1B4;
	}
	
div.multi_drop_menus ul li
{
    border-color:#222222;
    border-style:solid;
    border-width:1px;

	}	
	
div.multi_drop_menus ul li ul li
{
	border-style:none;
	} 
/* YOU ARE STONGLY ADVISED NOT TO MODIFY THE CODE THAT FOLLOWS : ) */
/* the menu mechanics start here */
div.multi_drop_menus {
	float:left;
}
div.multi_drop_menus ul {
 float:left; /* makes ul wrap li */
}

div.multi_drop_menus li {
 display: block;
 float:left;  /*causes the list to align horizontally instead of stack */
 list-style-type:none; /* removes the bullet off each list item */
 width:auto;
}
/* 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 */
 margin-left:-1px;        /* stops inheritance from level 1 ul */
 }
div.multi_drop_menus ul li ul li {
 padding:0; /* stops inheritance */
 width:100%; 
 }
div.multi_drop_menus ul li ul {display:block; visibility: hidden;} /* 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:1000000; /* Safari needs this to display menu on top of other page elements */
	visibility: visible;
} 

 
 /* 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:1000; /*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 */
 } 
 

