 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 ul {
 	   /* creates dividing line to left of level 1's first menu item, revealing div color to left of menu */
  height:30px;
  width:800px;
  padding-left:159px;
    background-color: transparent; background-image: url(_pgtres/button1.jpg); background-repeat: repeat;
  						/* fixes margin-doubling bug in IE6 */
 	}
              						    /* border-right is automatically removed from vert menu below  */


 div.multi_drop_menus a {
width:120px;
 height:8px;                    		/* sets the color of all menu type */
 padding:8px 0px 10px 0;          		/*creates space top/bottom and left/right respectively around each menu item's text - set vert height in ems   */
 color: rgb(255, 255, 255); font-family: Arial; font-style: normal; font-variant: normal; font-weight: bold; font-size: 9pt; line-height: normal; font-size-adjust: none; font-stretch: normal;  text-decoration: none;
 background-image:url("_pgtres/button1.jpg");
 }
 
 div.multi_drop_menus a:hover {
width:120px;
padding:8px 0px 7px 0px;
 height:15px;   
 background-image:url("_pgtres/button2.jpg"); 
 background-repeat:repeat;
 background-color: transparent;
 color: rgb(255, 255, 255); font-family: Arial; font-style: normal; font-variant: normal; font-weight: bold; font-size: 11pt; line-height: normal; font-size-adjust: none; font-stretch: normal;  text-decoration: none;  				 /* type color of a hovered menu choice */
 }
 


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 */
 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 */
 }

div.multi_drop_menus ul li ul li {
 width:100%;
 padding:0; /* stops inheritance */
 border-left:0; /* stops inheritance */
 border-right:0; /* stops inheritance */
 }




