    #dmenu{                         /* menu list container */
        list-style-type: none;      /* disable the display of the list item bullets */
        margin-left: 1px;                /* 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: #003366;     /* the default background color within the main menu container */
        background-color: #003CB6;
		color: black;                /* the default font color (not links) within the main menu container */
        z-index: 5;                /* push the menu up in the layer order a bit so it isn't hidden behind anything */
    }
    #dmenu 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 */
        border-top-width:1px;
		Border-top-style:solid;
		/*Border-top-color:white; */           /* border for each of the main menu items */
		background-color:#003CB6;
        color: black;                /* main menu item font color (not links) */
        margin: 0px;                /* spacing between main menu items */
        padding: 0px;               /* padding within main menu items */
        display: block;
    }
    #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: 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: 160px;                  /* should be the same as #dmenu li width */
        background-color:#003CB6;                              /* the border around the sub-menu list */
        color:black;                   /* sub-menu default font color (not links) */
        z-index: 99;                   /* want to be sure this is above the rest of the menu */
    }
    #dmenu ul li{                   /* second-level or greater menu element links */
        background-color:#003CB6; 
		color: black;	            /* default font color (not links) for sub-menu container */
        border-top-width:1px;
		Border-top-style:solid;
		Border-color:white;         /* 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 */
    }
    #dmenu li  a{                    /* top-level menu element links */
	 	  text-align: left;          /* text alignment in main menu item links */
      display: block;
	  padding: 0px;
}
    #dmenu ul a {                    /* all the other level menu link elements */
        padding: 0px;
        margin: 0px;
		width: 160px;               /* (padding*2) must be subtracted from #dmenu ul li width and set for this one, or borders won't display properly. */
        display: block;
    }
    #dmenu a:hover,                 /* top-level hovering properties */
    #dmenu li:hover{
        display: block;
		background-color:  #FF8801; 
        color: black;
    }
    #dmenu a:link,                 /* top-level link properties */
    #dmenu li:link{color: #ffffff; line-height:200%; font-size:8pt; font-weight:bold; font-family: tahoma; text-decoration: none;
        display: block;
    }
	 #dmenu a:visited,                 /* top-level link properties */
    #dmenu li:visited{color: #ffffff; line-height:200%; font-size:8pt; font-weight:bold; font-family: tahoma; text-decoration: none;
        display: block;
    }
	 #dmenu a:active,                 /* top-level visit properties */
    #dmenu li:active{color:#ffffff; line-height:200%; font-size:8pt; font-weight:bold; font-family: tahoma; text-decoration: none;
        display: block;
    }
	 #dmenu ul li:link,                 /* top-level link properties */
    #dmenu ul li a:link{color: #ffffff; line-height:200%; font-size:8pt; font-weight:bold; font-family: tahoma; text-decoration: none;
        display: block;
    }
		 #dmenu ul li:visited,                 /* top-level link properties */
    #dmenu ul li a:visited{color: #ffffff; line-height:200%; font-size:8pt; font-weight:bold; font-family: tahoma; text-decoration: none;
        display: block;
    }
		 #dmenu ul li:active,                 /* top-level link properties */
    #dmenu ul li a:active{color: #ffffff; line-height:200%; font-size:8pt; font-weight:bold; font-family: tahoma; text-decoration: none;
        display: block;
    }
    #dmenu ul li:hover,             /* higher level hovering properties */
    #dmenu ul li a:hover{
        display: block;
     width: 160px;               /* should be set to the same value as #dmenu ul li width */
		background-color: #FF8801; 
        color: black;
    }
    #dmenu ul ul{                   /* higher-level list containers */
        display: none;              /* don't display by default */
        position: absolute;
       margin-left: 120px;         /* this should be the width of #dmenu ul li */
       margin-top: -1em;           /* this will push the sub-menu up to the level of it's parent */
    }
    /* only non-MSIE browsers use this */
    #dmenu ul li>ul,
    #dmenu ul ul li>ul{
 /*      margin-top: -2em;           /* should be set to the same as #dmenu ul ul margin-top */
    }
    #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;
    }
    #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;
    }
    li>ul {
        top: auto;
        left: auto;
    }
	.content {                      /* This is used for the content that will appear below the menu */
        clear: left;
    }

