
 div.multi_drop_menus * {
 margin:0; padding:0;     /* removes margin and padding off all list elements */

 }
/* SET YOUR PREFERENCES!!! */
/* set your menu's font and colors here - the MENU MECHANICS  follow below */
div.multi_drop_menus {
  behavior:url(csshover.htc);/* you must link to the hover.htc file for this menu to work in IE6 and earlier */
/* need a copy? go to http://www.xs4all.nl/~peterned/htc/csshover.htc - copy the code into a text file and save it as csshover.htc */
 font-family: serif;   /* font family for menu */
 font-size: 14px;
 font-weight: bold;
 margin:0px 0px 0px 0px;
 background-color:transparent;/*#12d544;     colors the div - div fills the parent element for a horizontal menu - set to background-color:transparent; if not needed */
 text-transform: uppercase;
 }
div.multi_drop_menus ul {
	display:inline;						/* fixes margin-doubling bug in IE6 */
	text-align:center;
}
div.multi_drop_menus li.left {
	background-color:rgb(140,34,0);/* #8c2200; */
	width: 106px;
	height: 44px;
	display:inline;
	border-bottom: 1px dashed #b82200;
	border-left: 1px dashed #b82200;
 }
 div.multi_drop_menus li.center
 {
	background-color:rgb(140,34,0);
	width: 106px;
	height: 44px;
	display:inline;
	border-bottom: 1px dashed #b82200;
	border-left: 1px dashed #b82200;
 }
div.multi_drop_menus li.right
 {
	background-color:rgb(140,34,0);
  	width: 106px;
	height: 44px;
	display:inline;
	border-bottom: 1px dashed #b82200;
	border-left: 1px dashed #b82200;
 }
div.multi_drop_menus li:hover {
 background-image: url(images/layout/menuHighlight.png);      /* background color of hovered menu items */
 background-repeat: no-repeat;
 }
 
 div.multi_drop_menus li.nohover:hover {
 background-image:none;      /* background color of hovered menu items */
 background-repeat: no-repeat;
 }
 div.multi_drop_menus a {
 color:#000000;                     		/* sets the color of all menu type */
 padding: 10px 3px;           		/*creates space top/bottom and left/right respectively around each menu item's text - set vert height in ems   */
 }
 
 div.multi_drop_menus a:hover {
 color: #b82200;        				 /* type color of a hovered menu choice */
 }
div.multi_drop_menus ul li ul {
 /* background: #8c2200; */
 text-align: left;
 background-image:url(images/layout/orname2.png);
 background-repeat: no-repeat;
 width:230px;   						/* sets the width of menu levels 2 - 4 */
 display: block;
 font-size: 10pt;
 }
 

 
/* 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:1em; /* 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 */
 }
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 */
 /* border-bottom: 1px dashed #b82200; */
 }
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 */
 }

/* levels 2 -4 width */
div.multi_drop_menus.vertical li li {
}
div.multi_drop_menus.vertical ul ul ul {
 left:100%;          /* align level 2 with level 3 and 3 with 4 - MUST match li width in selector above */
 }
 /* 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 {
	width: 125px;
/* 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/
   */
   
* html div.multi_drop_menus a
{
 float:left;
}

* html div.multi_drop_menus ul li ul {
 clear:both;
}
 /* END OF LIST-BASED MENU */
