/**************************************************/
/*	CSS DROPDOWN MENU STYLES					  */
/**************************************************/

    #navmenu {                         /* menu list container */
        list-style-type: none;      /* disable the display of the list item bullets */
        margin: 0;                /* space around the list container */
        padding: 0;               /* space within the list container */
        position: static;           /* need this so that the z-index stuff works correctly */
        background-color: #B90000;     /* the default background color within the main menu container */
        color: ;                /* the default font color (not links) within the main menu container */
        z-index: 200;                /* 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! */
	   width: 740px;
	   float: left;
	 	border-width: 1px 0;
		border-style: solid;
		border-color: #FFFFFF;
		}
   
    #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: 0;                /* spacing between main menu items */
        padding: 0;             /* padding within main menu items */
        display: block;
        position: relative;
    }

	#navmenu a { 					/* top-level menu link */
	color: #FFFFFF;
	display:block;
	margin: 0;
	padding: 0;
	text-decoration:none;
	
}

    #navmenu a:hover,                 /* top-level hovering properties */
    #navmenu li:hover  {
		display: block;
		color: #FFFFFF;
		position: static;		
		
}
    #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: 0;                /* space around the list container. DO NOT SET TOP MARGIN. */
        padding: 0 0 7px 0;               /* space within the list container */
		list-style-type: none;      /* disable the display of the list item bullets */
        display: none;
        background-color: #B90000;     /* sub-menu default background color */
        z-index: 99;                /* want to be sure this is above the rest of the menu */
	   width: 183px;               /* should be the same as #navmenu li width */
	   	border-width: 0 1px 1px 1px;
		border-style: solid;
		border-color: #FF6262;
    }

    #navmenu ul li {                   /* second-level or greater menu element links */
        border: none;               /* sub-menu item border settings */
        margin: 0;                /* spacing between sub-menu containers */
        padding: 0;               /* This is for padding between menu items in the drop-downs */
        width: 165px;               /* (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: 163px;               /* (padding*2) must be subtracted from #navmenu ul li width and set for this one, or borders won't display properly. */
        padding: 3px 10px;
        margin: 0;
        display: block;
	   color: #FFFFFF;
    }
    
  /*REMOVED  #navmenu ul li:hover,              higher level hovering properties */
    #navmenu ul li a:hover {
        width: 163px;               /* should be set to the same value as #navmenu ul a width */
        display: block;
	   color: #FFFFFF;
        background-color: #3C3C3C;
    }

    #navmenu ul ul{                   /* higher-level list containers */
        display: none;              /* don't display by default */
        position: absolute;
        margin-left: 165px;         /* 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.over ul ul,              
    #navmenu li.over ul ul ul,
    #navmenu li.over ul ul ul ul,
    #navmenu li.over 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;
    }
	
    #navmenu li.over ul,
    #navmenu ul li.over ul,
    #navmenu ul ul li.over ul,
    #navmenu ul ul ul li.over ul,
    #navmenu ul ul ul ul li.over ul{
        display:block;
    }
    */
/********* END CSS DROPDOWN MENU STYLES *********/