
    #dmenu{                         /* 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: #fff;     /* the default background color within the main menu container */
        color: #666666;                /* 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 */
		cursor:pointer;
		overflow: hidden;
    }

    #dmenu li.menu{                      /* top-level menu element */
		padding:6px 8px 0 8px !important ;
		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 */
		background-color:#ECE9D8;
		position: relative;
		display: block;
    }
	
	#dmenu .menu a.menu{
		padding-bottom:5px !important;
		background-color:#ECE9D8
	}
	
    #dmenu 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 0 0 0;                /* space around the list container */
        padding: 2px;               /* space within the list container */
        list-style-type: none;      /* disable the display of the list item bullets */
        display: none;
                      /* should be the same as #dmenu li width */
		background:#ffffff url(./images/drop_down.gif) top left repeat-y;
        /*border: #000 solid 1px;     /* the border around the sub-menu list */
        color: #ffffff;                /* sub-menu default font color (not links) */
        z-index: 99;  
		width: 188px !important              /* want to be sure this is above the rest of the menu */

    }

    #dmenu ul li{                   /* second-level or greater menu element links */
       					     /* default background color for sub-menu container */
        color: #ffffff;                /* default font color (not links) for sub-menu container */
        /*border: 1px solid white;               /* sub-menu item border settings */
        margin: 0;                /* spacing between sub-menu containers */
        padding: 1px 1px 1px 26px;              /* This is for padding between menu items in the drop-downs */
       	position: relative;
		display: block;
    }

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

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

    #dmenu a:hover,                 /* top-level hovering properties */
    #dmenu li:hover{
        display: block;
        color: #000000;
		position: relative;
		display: block;
    }

             /* higher level hovering properties */
    #dmenu ul li a:hover{
        background-color: #c2d3ef;
        color:#000000;
    }
	#dmenu ul li:hover{
		margin: 0;                /* spacing between sub-menu containers */
        padding: 0 0 0 25px; 
		background-color: #c2d3ef;
		border: 1px solid #316ac5;
		position: relative;
		display: block;
	}

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

    #dmenu li:hover ul,
    #dmenu ul li:hover ul,
    #dmenu ul ul li:hover ul,
    #dmenu ul ul ul li:hover ul,
    #dmenu ul ul ul ul li:hover ul{
        display:block;
		position: fixed;
    }

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

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