/**************************************************/
/*	CSS DROPDOWN MENU STYLES					  */
/**************************************************/

    #navmenu {                         /* 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 */
        background-color: #1B4B70;     /* the default background color within the main menu container */
        color: #FFFFFF;                /* the default font color (not links) within the main menu container */
        z-index: 20;                /* push the menu up in the layer order a bit so it isn't hidden behind anything */
            /* Browser plug-ins like Flash or Quicktime may not allow you to overlap then with this menu! */
	font-size: 11px;
    }
    #navmenu 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 */
        display: block;
   	border-width: 0px 1px 0px 0px;
	border-style: dotted;
	border-color: #FDD734;
    }

	#navmenu a { 					/* top-level menu link */
	color: #FFFFFF;
	display:block;
	font-weight:bold;
	margin:0px;
	padding: 6px 14px;
	text-decoration:none;
}
    #navmenu a:hover,                 /* top-level hovering properties */
    #navmenu li:hover {
		display: block;
		color: #FCF1A7;
		background-color: #2B79B3;
}
    #navmenu 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;
        background-color: #2B79B3;     /* sub-menu default background color */
        z-index: 99;                /* want to be sure this is above the rest of the menu */
	   width: 128px;               /* should be the same as #navmenu li width */
	border-width: 0px 1px 1px 1px;
	border-style: solid;
	border-color: #1B4B70;
    }

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

    #navmenu li a {                    /* top-level menu element links */
        text-align: ;         /* text alignment in main menu item links */
        display: block;
    }
    
    #navmenu ul a {                   /* all the other level menu link elements */
         width: 100px;               /* (padding*2) must be subtracted from #navmenu ul li width and set for this one, or borders won't display properly. */
        padding: 5px 14px;
        margin: 0px;
        display: block;
    }
    
    #navmenu ul li:hover,             /* higher level hovering properties */
    #navmenu ul li a:hover {
        width: 100px;               /* should be set to the same value as #navmenu ul li width */
        display: block;
        background-color: ;
        color: #FCF1A7;
    }

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

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

    #navmenu li:hover ul,
    #navmenu ul li:hover ul,
    #navmenu ul ul li:hover ul,
    #navmenu ul ul ul li:hover ul,
    #navmenu ul ul ul ul li:hover ul{
        display:block;
    }
    
/********* END CSS DROPDOWN MENU STYLES *********/