    /* This is the part for the CSS menu - these settings are for a horizontal menu */
    #dmenuList139{                         /* menu list container */
        list-style-type: none;      /* disable the display of the list item bullets */
        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 */
                                    /* Browser plug-ins like Flash or Quicktime may not allow you to overlap then with this menu! */
        
    }
    #dmenuList139 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 */
        display: block;
    }
    #dmenuList139 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 */
        display: none;
        width: 250px;
        margin-top: 0px;
        background-color: #7C828B;
        border-top: solid 1px #C8D2E1;
        z-index: 99;                /* want to be sure this is above the rest of the menu */
    }
    #dmenuList139 ul li
    {
        padding: 0px;               /* This is for padding between menu items in the drop-downs */
        width: 250px;
    }
    #dmenuList139 li a{                    /* top-level menu element links */
        display: block;
        color:#6A7178;
        padding: 10px 10px;
       
    }
    #dmenuList139 ul a {                   /* all the other level menu link elements */
        padding: 10px 20px;
        margin: 0px;
        display: block;
        color:White;
        width:210px;
        font-weight: normal; 
        border-bottom: solid 1px #6A7178;
    }
    #dmenuList139 a:hover,                 /* top-level hovering properties */
    #dmenuList139 li:hover{
        display: block;
        background: #7C828B url(../images/mmenubghover.jpg) repeat-x;
        color:White;
    }
    
    #dmenuList139 ul li:hover,             /* higher level hovering properties */
    #dmenuList139 ul li a:hover{
        display: block;
        background-color: #C8D2E1;
        color:#6A7178;
        background-image:none;
    }
    
   #dmenuList139 ul ul{                   /* higher-level list containers */
        display: none;              /* don't display by default */
        position: absolute;
        margin-top: -2em;           /* this will push the sub-menu up to the level of it's parent */
    }
    
    /* only non-MSIE browsers use this */
    #dmenuList139 ul li>ul,
    #dmenuList139 ul ul li>ul{
        margin-top: -2em;           /* should be set to the same as #dmenuList139 ul ul margin-top */
    }

    /* additional sub-menu levels in the next 2 blocks. (For up to 5 levels of drop menus) */
    #dmenuList139 li:hover ul ul,              
    #dmenuList139 li:hover ul ul ul,
    #dmenuList139 li:hover ul ul ul ul,
    #dmenuList139 li:hover ul ul ul ul ul{
        display:none;
    }

    #dmenuList139 li:hover ul,
    #dmenuList139 ul li:hover ul,
    #dmenuList139 ul ul li:hover ul,
    #dmenuList139 ul ul ul li:hover ul,
    #dmenuList139 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;
    }
    
    
    
    
    
