 #dropdownnav {                         /* 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: #ff1c24;     /* the default background color within the main menu container */

        color: #FFF;                /* the default font color (not links) within the main menu container */

        z-index: 100;                /* 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! */

    }

#dropdownnav li {                      /* top-level menu element */
	list-style-type: none;      /* disable the display of the list item bullets */
	float: left;    /* border for each of the main menu items */
	width: 127px;               /* the width of each main menu item */
	display: block;
	background-color: #ff1c24;     /* main menu item background color */
	color: #000;              /* padding within main menu items */
	padding: 0px;
	border-right-width: 1px;
	border-right-style: none;
	border-right-color: #FFF;
	border-top-width: 1px;
	border-top-style: none;
	border-top-color: #FFF;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
    }



#dropdownnav 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: 127px;               /* should be the same as #dropdownnav li width */
	background-color: #ff1c24;     /* the border around the sub-menu list */
	color: #FFF;                /* sub-menu default font color (not links) */
	z-index: 100;
    }



#dropdownnav ul li {                   /* second-level or greater menu element links */
	background-color: #ff1c24;     /* default background color for sub-menu container */
	color: #FFF;               /* 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 */
	width: 127px;
	border-top-width: 1px;
	border-top-style: solid;
	border-top-color: #FFF;
	border-right-style: none;
    }
	
#dropdownnav li a {                    /* top-level menu element links */
	text-align: center;         /* text alignment in main menu item links */
	width: 127px;               /* set this to #dropdownnav ul width */
	display: block;
	color: #FFF;
	text-decoration: none;
	padding-top: 3px;
	padding-bottom: 3px;
    }

#dropdownnav ul li a {
	padding: 4px;
	margin: 0px;
	width: 119px;               /* (padding*2) must be subtracted from #dropdownnav ul li width and set for this one, or borders won't display properly. */
	display: block;
	height: auto;
}
    

    #dropdownnav ul a {                   /* all the other level menu link elements */
	padding: 4px;
	margin: 0px;
	              /* (padding*2) must be subtracted from #dropdownnav ul li width and set for this one, or borders won't display properly. */
	display: block;
	height: auto;
	width: 119px;
    }



    #dropdownnav a:hover {                /* top-level hovering properties */
	display: block;
	background-color: #c7191f;
	color: #FFF;

}
    #dropdownnav li:hover {                /* top-level hovering properties */
	display: block;
	background-color: #c7191f;
	color: #FFF;
	width: auto;
}


    

    #dropdownnav ul li:hover,             /* higher level hovering properties */

    #dropdownnav ul li a:hover{
	display: block;               /* should be set to the same value as #dropdownnav ul li width */
	background-color: #c7191f;
	color: #FFF;	

    }



    #dropdownnav ul ul{                   /* higher-level list containers */

        display: none;              /* don't display by default */

        position: absolute;

        margin-left: 127px;         /* this should be the width of #dropdownnav ul li */

        margin-top: -1.5em;           /* this will push the sub-menu up to the level of it's parent */

    }



    /* only non-MSIE browsers use this */

    #dropdownnav ul li>ul,

    #dropdownnav ul ul li>ul{

        margin-top: -1.5em;           /* should be set to the same as #dropdownnav ul ul margin-top */

    }



    /* additional sub-menu levels in the next 2 blocks. (For up to 5 levels of drop menus) */

    #dropdownnav li:hover ul ul,              

    #dropdownnav li:hover ul ul ul,

    #dropdownnav li:hover ul ul ul ul,

    #dropdownnav li:hover ul ul ul ul ul{

        display:none;

    }



    #dropdownnav li:hover ul,

    #dropdownnav ul li:hover ul,

    #dropdownnav ul ul li:hover ul,

    #dropdownnav ul ul ul li:hover ul,

    #dropdownnav ul ul ul ul li:hover ul{

        display:block;

    }



    li>ul {

        top: auto;

        left: auto;

    }