    /* This is the part for the CSS menu - these settings are for a horizontal menu */
    #dmenu{                         /* menu list container */      
        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: transparent;*/     /* the default background color within the main menu container */
        color: #000;                /* the default font color (not links) within the main menu container */
        z-index: 20;   
		height: 18px;             /* 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! */
    }
    #dmenu td{                      /* top-level menu element */      
        
        border: #999999 solid 1px; 	/* border for each of the main menu items */
       /* background-color: transparent; */    /* main menu item background color */
        color: #FFFFFF;                /* main menu item font color (not links) */
        margin: 0px;                /* spacing between main menu items */
        padding: 0px;               /* padding within main menu items */     
       
		height: 18px;
    }
    #dmenu td a{    
		color: #000000;
		text-decoration: none;
		font-size: 12px;                /* top-level menu element links */
        text-align: center;         /* text alignment in main menu item links */        
        display: block;

    }
	#dmenu td a:hover{    
		color: #ff0000;
		text-decoration:underline;

    }
    #dmenu td ul{                   /* sub-menu list container */
       position: absolute;		         /* this is so that it doesn't push that page content around on hover */      
		/*margin: 1px;  */             /* space around the list container */
		vertical-align:top;
		text-align: left;
		margin-left: 0px;
		margin-top: 1px;		
        padding: 0px;               /* space within the list container */
        list-style-type: none;      /* disable the display of the list item bullets */
        display: none;      
        border: black solid 1px;    /* sub-menu borders */
        background-color: #CCCCCC;     /* sub-menu default background color */
        color: Red;                /* sub-menu default font color (not links) */
		z-index: 120;
    }
    #dmenu td ul li{                /* sub-menu element links */
        background-color: #CCCCCC;     /* default background color for sub-menu container */
        color: #517F7C;                /* default font color (not links) for sub-menu container */
        border: #a7a7a7 solid 1px;               /* sub-menu item border settings */
        margin: 0px;                /* spacing between sub-menu containers */
        padding: 3px;               /* This is for padding between menu items in the drop-downs */
        width: 160px;               /* (padding*2 - 5) must be subtracted from #dmenu li ul -> width and set for this one, or borders won't display properly...
                                       not sure where the other 5 pixels come from... Maybe it's actually padding*4 instead? I'll find out some other time */
    }
    #dmenu td ul li a{
        display: block;
		font-family:Verdana, Arial, Helvetica, sans-serif;
		font-size:12;
        width: 160px; 				/* should be set to the same value as #dmenu li ul li -> width */
		padding: 1px; 
		text-align: left; 
		color: #517F7C;           
    }
    #dmenu td ul li a:hover{
        background: #CCCCCC;
        color: Black;
    }
    #dmenu td:hover ul, #dmenu td.over ul{ /* lists nested under hovered list items */
        display: block;
    }
    .content {
        clear: left;
    }
	
	 #dmenu td table td{                      /* top-level menu element */      
        
        border: #CCCCCC solid 1px; 	/* border for each of the main menu items */
       /* background-color: transparent; */    /* main menu item background color */
        color: #FFFFFF;                /* main menu item font color (not links) */
        margin: 0px;                /* spacing between main menu items */
        padding: 0px;               /* padding within main menu items */     
       
		height: 18px;
    }
