/* CSS Document */


    /* This is the part for the CSS menu - these settings are for a horizontal menu */
    #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:#000000;                /* 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 */
		border: 0px;
            /* Browser plug-ins like Flash or Quicktime may not allow you to overlap then with this menu! */
    }
    #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: black solid 1px;    /* border for each of the main menu items */
/*     background-color: #052C4D;     /* main menu item background color */
        color:#000000;                /* main menu item font color (not links) */
        margin: 0px;                /* spacing between main menu items */
        padding-left: 5px;              /* padding within main menu items */
		padding-right: 5px;
       width: auto;               /* !!!the width of each main menu item */
		display: block;
		border: 0px;
		text-align: left;
    }

    #dmenu ul {                     /* second-level (or greater) menu list details (ie. the whole list)*/
        position: absolute;         /* this is so that it doesn't push that page content around on hover */
        margin: 0px;                /* space around the list container. Setting this to anything but 0 means you can't roll onto the links (they're too far away and disappear) */
		padding-top:5px;			/*Padding to drop the second level nav away from the primary so it's not so cramped*/
        padding-left: 0px;               /* space within the list container */
        list-style-type: none;      /* disable the display of the list item bullets */
        display: none;
        width: 202px;            /* !!! should be the same as #dmenu li width */
        background-color:#BABABA;     /* sub-menu default background color */
/*	    border: #000000 solid 1px;     /* the border around the sub-menu list (note that having a border here won't allow you to have the subnav appear to have space between it and the primary nav as is achieved using the padding above)*/
        color:#ffffff;                /* sub-menu default font color (not links) */
        z-index: 99;                /* want to be sure this is above the rest of the menu */
		text-align: left;
		border-bottom:#3B4D71 1px solid;
    }

    #dmenu ul li{                   /* second-level or greater menu list element details (ie. within the list) */
      background-color:#FFFFFF;     /* default background color for sub-menu container */
        color: #052C4D;                /* default font color (not links) for sub-menu container */
/*		border-bottom: 1px;		*/	/* This border appears IN the list of sub links between or around menu items*/
		border-right: 1px;
		border-left: 1px;
		border-top:1px;
		border-style:solid;
		border-color:#3B4D71;
  /*    border: #000000 solid 1px;     /* sub-menu item border settings, see above */
        margin: 0px;                /* spacing between sub-menu containers */
        padding: 0px;               /* This is for padding between menu items in the drop-downs */
        width: 200px;               /* (padding*2) must be subtracted from #dmenu li width and set for this one, or borders won't display properly. This width affects the whole second level menu before rollover */
		text-align: left;
		
    }

    #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;
		text-align: left;
		color:#000000;
		text-decoration:none;
		font-family:Arial, Helvetica, sans-serif;
		font-size:14px;
		
    }
    
    #dmenu ul a {                   /* all the other level menu link elements */
        padding: 3px;
        margin: 0px;
       /* width: auto; */
		width:200px;              /* (padding*2) must be subtracted from #dmenu ul li width and set for this one, or borders won't display properly. This width seems to change the width BEFORE rollover?*/
        display: block;
		color:#000000;
		text-align: left;
		font-family:Arial, Helvetica, sans-serif;
		font-size:12px;   /*Eugene Change */
/*		border-right: 1px;
		border-left: 1px;
		border-top:1px;
		border-style:solid;
		border-color:#3B4D71;*/
    }

    #dmenu a:hover,                 /* top-level hovering properties */
    #dmenu li:hover{
        display: block;
/*        background-color: #8aa838; */
        color:#000000;
		text-decoration:underline;
		
    }
    
    #dmenu ul li:hover {
		width:200px;
	}             /* higher level hovering properties */
    #dmenu ul li a:hover{			/* THESE ARE THE ROLLOVER PROPERTIES FOR THE 1st LEVEL DROP DOWN */
  /*      display: block;*/
        width: 195px;               /* should be set to the same value as #dmenu ul li width */
        background-color: #052C4D;
        color: white;
/*		Border-color:#000000; */
/*		border:solid 0px #3B4D71;*/
/*		border-right: 1px;*/
		text-decoration:none;
/*		border-bottom: 1px;  */
		
    }
/* 3rd tier
    #dmenu ul ul{                   /* higher-level list containers */
        display: none;              /* don't display by default */
        position: absolute;
        margin-left: 125px;         /* this should be the width of #dmenu ul li */
        margin-top: ;           /* 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: ;           /* should be set to the same as #dmenu ul ul margin-top */
    }

    /* 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;
    }

    #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;
    }
