
#qmenu {				/* menu list container */
        list-style-type: none;      /* disable the display of the list item bullets */
        margin: 0px;                /* space around the list container */
        padding: 0px;               /* space within the list container */
        position: static;           /* need this so that the z-index stuff works correctly */
        z-index: 20;                /* push the menu up in the layer order a bit so it isn't hidden behind anything */
}
#qmenu li{                      /* top-level menu element */
        list-style-type: none;      /* disable the display of the list item bullets */
        float: left;                /* this is to allow for the horizontal main menu */
        margin: 0px;                /* spacing between main menu items */
        padding: 0px;               /* padding within main menu items */
        width: 124px;               /* the width of each main menu item */
        display: block;
}

#qmenu ul {                     /* third-level (or greater) menu element list elements */
        position: absolute;         /* this is so that it doesn't push that page content around on hover */
        margin: 0px;                /* space around the list container */
        padding: 0px;               /* space within the list container */
        list-style-type: none;      /* disable the display of the list item bullets */
        display: none;
        width: 132px;               /* should be the same as #dmenu li width */
        border: #000 solid 1px;     /* the border around the sub-menu list */
        z-index: 2000;              /* want to be sure this is above the rest of the menu */
	background-color: white ;
}

#qmenu ul li{                   /* second-level or greater menu element links */
        border: none;           /* sub-menu item border settings */
        margin: 0px;            /* spacing between sub-menu containers */
        padding: 3px;           /* This is for padding between menu items in the drop-downs */
        width: 118px;           /* (padding*2) must be subtracted from #dmenu li width and set 
				/* for this one, or borders won't display properly. */
}

#qmenu li a{                    /* top-level menu element links */
        text-align: center;         /* text alignment in main menu item links */
        width: 124px;               /* set this to #dmenu ul width */
        display: block;
}

    
#qmenu ul a {                   /* all the other level menu link elements */
        padding: 3px;
        margin: 0px;
        width: 118px ;           /* (padding*2) must be subtracted from #dmenu ul li width 
        display: block; 	/* and set for this one, or borders won't display properly. */
}

#qmenu a {
	font-size: 110% ;
	font-size: 1.5em ;
	font-family: Arial, Sans ;
	color: #b70004 ;
	color: #aaaaaa ;
	color: lightseagreen ;
	color: cadetblue ;
	color: black ;
	background-color: white ;
	text-decoration: none ;
}

#qmenu a:hover,                 /* top-level hovering properties */
#qmenu li:hover{
        display: block;
	color: white ;
	background-color: #aaaaaa ;
	background-color: #b70004 ;
	background-color: lightseagreen ;
	background-color: teal ;
	font-weight: bold ;
}
    
#qmenu ul li:hover,             /* higher level hovering properties */
#qmenu ul li a:hover{
        display: block;
        width: 124px;               /* should be set to the same value as #dmenu ul li width */
}

#qmenu ul ul{                   /* higher-level list containers */
        display: none;              /* don't display by default */
        position: absolute;
        margin-left: 124px;         /* this should be the width of #dmenu ul li */
        margin-top: -2em;           /* this will push the sub-menu up to the level of it's parent */
}

/* only non-MSIE browsers use this */
#qmenu ul li>ul,
#qmenu ul ul li>ul{
        margin-top: -2em;           /* should be set to the same as #dmenu ul ul margin-top */
}

    /* additional sub-menu levels in the next 2 blocks. (For up to 5 levels of drop menus) */
#qmenu li:hover ul ul,              
#qmenu li:hover ul ul ul,
#qmenu li:hover ul ul ul ul,
#qmenu li:hover ul ul ul ul ul{
        display:none;
}

#qmenu li:hover ul,
#qmenu ul li:hover ul,
#qmenu ul ul li:hover ul,
#qmenu ul ul ul li:hover ul,
#qmenu ul ul ul ul li:hover ul{
        display:block;
}

li>ul {
        top: auto;
        left: auto;
}

.content {                      /* This is used for the content that will appear below the menu */
        clear: left;
}

