@charset "utf-8";

    #upper_menu {
		list-style-type: none;      /* disable the display of the list item bullets */
		padding:0;
		margin:0;
        /* padding-left: 30px;                space within the list container */
        /*  padding-top: 10px;              space within the list container */
        position: static;           /* need this so that the z-index stuff works correctly */
        z-index: 1;
		margin-left: 225px; 
    }
    #upper_menu li p {
		padding:0;
		margin:0;
		text-transform:uppercase;
	}
    #upper_menu li{                      /* top-level menu element */
        list-style-type: none;      /* disable the display of the list item bullets */
        margin: 0;                /* spacing between main menu items */
        padding:0;               /* padding within main menu items */
        display: block;
		float:left;
    }
	
    #upper_menu 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;                /* space around the list container */
        list-style-type: none;      /* disable the display of the list item bullets */
        display: none;
        z-index: 99;                /* want to be sure this is above the rest of the menu */
        padding: 0;               /* This is for padding between menu items in the drop-downs */
        width: 15em;               /* should be the same as #upper_menu li width */
	}

    #upper_menu ul li{                   /* second-level or greater menu element links */
        background-color: #928334;     /* default background color for sub-menu container */
        padding: 5px;               /* This is for padding between menu items in the drop-downs */
        width: 15em;               /* should be the same as #upper_menu li width */
    }

    #upper_menu li a{                    /* top-level menu element links */
        display: block;
		text-decoration:none;
		color:#FFFFFF;
		padding: 10px;
		font-weight:normal;
   }
    #upper_menu li a:hover{                    /* top-level menu element links */
        text-align: center;         /* text alignment in main menu item links */
        display: block;
		color: #ffffff;
		background-color: #A7A070;
		text-decoration:none;
		text-align:left;
   }
    
    #upper_menu ul a {                   /* all the other level menu link elements */
        margin: 0;
		padding:0;
        display: block;
		text-decoration:none;
		text-align:left;
    }
    	
    #upper_menu a:hover,                 /* top-level hovering properties */
    #upper_menu li:hover,
	#upper_menu li:hover p {
        display: block;
		color: #fff;
		background-color: #A7A070;
		text-decoration:none;
   }
    
    #upper_menu ul li:hover,             /* higher level hovering properties */
    #upper_menu ul li a:hover{
        display: block;
		color: #fff;
		background-color: #A7A070;
		text-decoration:none;
    }

	   
    #upper_menu ul ul{                   /* higher-level list containers */
        display: none;              /* don't display by default */
        position: absolute;
        margin-left: 15em;         /* this should be the width of #upper_menu ul li */
        margin-top: -2em;           /* this will push the sub-menu up to the level of it's parent */
    }

    /* only non-MSIE browsers use this */
    #upper_menu ul li>ul,
    #upper_menu ul ul li>ul{
        margin-top: -2em;           /* should be set to the same as #upper_menu ul ul margin-top */
    }

    /* additional sub-menu levels in the next 2 blocks. (For up to 5 levels of drop menus) */
    #upper_menu li:hover ul ul,              
    #upper_menu li:hover ul ul ul,
    #upper_menu li:hover ul ul ul ul,
    #upper_menu li:hover ul ul ul ul ul{
        display:none;
    }

    #upper_menu li:hover ul,
    #upper_menu ul li:hover ul,
    #upper_menu ul ul li:hover ul,
    #upper_menu ul ul ul li:hover ul,
    #upper_menu 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;
    }

