#dropdownnav {                         /* menu list container */
	list-style-type: none;      /* disable the display of the list item bullets */
	margin: 0px;               /* space within the list container */
	position: static;           /* need this so that the z-index stuff works correctly */
	background-color: #90b3d1;     /* the default background color within the main menu container */
	color: #ffffff;                /* 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-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	padding: 0px;            /* 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: 253px;               /* the width of each main menu item */
	display: block;
	background-color: #90b3d1;     /* main menu item background color */
	color: #ffffff;              /* padding within main menu items */
	padding: 0px;
	border-right-style: none;
	border-top-style: none;
	margin: 0px;
	border-left-style: none;
    }



#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;               /* should be the same as #dropdownnav li width */
	background-color: #000;     /* the border around the sub-menu list */
	color: #ffffff;                /* sub-menu default font color (not links) */
	z-index: 99;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #FFF;
	width: 253px;
	filter:alpha(opacity=70);
	-moz-opacity: .7;
	opacity: .7;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFF;
    }



#dropdownnav ul li {                   /* second-level or greater menu element links */
	background-color: #000;     /* default background color for sub-menu container */
	color: #ffffff;                /* spacing between sub-menu containers */
	padding: 0px;               /* This is for padding between menu items in the drop-downs */
	width: 253px;
	border-top-style: none;
	border-right-style: none;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
    }
	
#dropdownnav li a {                    /* top-level menu element links */
	text-align: center;               /* set this to #dropdownnav ul width */
	display: block;
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
	font-family: Verdana, Geneva, sans-serif;
	padding-top: 10px;
	padding-bottom: 12px;
	text-transform: capitalize;
	border-right-style: none;
	font-weight: normal;
	border-left-width: 1px;
	border-left-style: solid;
	border-left-color: #FFF;
    }
    
#dropdownnav ul li a {
	width: 252px;               /* (padding*2) must be subtracted from #dropdownnav ul li width and set for this one, or borders won't display properly. */
	display: block;
	padding-top: 12px;
	padding-right: 0px;
	padding-bottom: 12px;
	padding-left: 0px;
	margin: 0px;
	height: auto;
	border-top-width: 1px;
	border-right-width: 1px;
	border-left-width: 1px;
	border-top-style: solid;
	border-right-style: solid;
	border-left-style: solid;
	border-top-color: #FFF;
	border-right-color: #FFF;
	border-left-color: #FFF;
	filter:alpha(opacity=90);
	-moz-opacity: .9;
	opacity: .9;
}    
#dropdownnav ul li ul li a {
	width: 252px;               /* (padding*2) must be subtracted from #dropdownnav ul li width and set for this one, or borders won't display properly. */
	display: block;
	background-image: none;
	border-right-width: 1px;
	border-right-style: solid;
	border-bottom-style: none;
	border-left-style: none;
	border-right-color: #FFF;
	border-top-style: none;
	padding-top: 5px;
	padding-bottom: 5px;
	margin: 0px;
	padding-right: 0px;
	padding-left: 0px;
}    
    #dropdownnav ul a {                   /* all the other level menu link elements */
	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: 253px;
	padding-top: 4px;
	padding-right: 0px;
	padding-bottom: 4px;
	padding-left: 0px;
    }

#dropdownnav ul li ul {
	background-color: #000;
	display: block;
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-style: solid;
	border-right-style: none;
	border-bottom-style: solid;
	border-left-style: none;
	border-top-color: #FFF;
	border-bottom-color: #FFF;
}

#dropdownnav ul li ul li {
	background-color: #000;
	display: block;
}

    #dropdownnav a:hover {                /* top-level hovering properties */
	display: block;
	background-color: #467aa6;
	color: #ffffff;

}
    #dropdownnav li:hover {                /* top-level hovering properties */
	display: block;
	color: #ffffff;
	border-right-style: none;
	border-left-style: none;
}


    

    #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: #467aa6;
	color: #ffffff;
	width: 252px;
    }



    #dropdownnav ul ul{                   /* higher-level list containers */
	display: none;              /* don't display by default */
	position: absolute;
	margin-left: 253px;         /* 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 */
    }

    #dropdownnav li ul a,                 /* top-level hovering properties */
    #dropdownnav li ul li {
	display: block;
	background-color: #000;
	color: #ffffff;
	text-transform: uppercase;
	font-size: 12px;
    }
    #dropdownnav li ul a:hover,                 /* top-level hovering properties */
    #dropdownnav li ul li:hover{
	display: block;
	background-color: #467aa6;
	color: #ffffff;
    }

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

    }
#dropdownnav li.lastitem a {
	width: 251px;
	border-right-width: 1px;
	border-right-style: solid;
	border-right-color: #FFF;
}
#dropdownnav ul li.lastitem a {
	width: 252px;
}

