#dmenu{       
	width: 1000px;
	background-color: #2367A6;
	font: 11px Arial, Helvetica, sans-serif; 
	font-weight: bold;
	list-style-type: none;      /* disable the display of the list item bullets */
	color: white;                /* main menu item font color (not links) */
	overflow: overflow;
	height: 15px;
	margin: 0px;                /* space around the list container */
	padding: 0px;               /* space within the list container */
	padding-top: 1px;
	position: static;           /* need this so that the z-index stuff works correctly */
	z-index: 20;                /* push the menu up in the layer order a bit so it isn't hidden behind anything */
	white-space: nowrap;
	border-bottom: 1px solid #1C619D;
	border-top: 1px solid #286CAD;
}

#dmenu a { 
	color: white;                /* main menu item font color (not links) */
	text-decoration: none;
}

#dmenu a:hover,
#dmenu li:hover { 
	color: orange;
}

#dmenu li:hover ul li,
#dmenu li:hover a { 
	color: white;
 }

#dmenu li{                      /* top-level menu element */
	background-color: #2367A6;
	list-style-type: none;      /* disable the display of the list item bullets */
	width: 115px;               /* the width of each main menu item */
	float: left;                /* this is to allow for the horizontal main menu */
	height: 16px;
	margin: 0px 0px;                /* spacing between main menu items */
	padding: 0px 0px ;               /* padding within main menu items */
	padding-left: 2px;
}

#dmenu ul {                     /* third-level (or greater) menu element list elements */
	display: none;
	margin: 0px;                /* space around the list container */
	margin-left: -2px;
	padding: 0px;               /* space within the list container */
	width: 130px;               /* should be the same as #dmenu li width */
	z-index: 99;                /* want to be sure this is above the rest of the menu */
	top: 18px;
	position: absolute;         /* FF this is so that it doesn't push that page content around on hover */
}

#dmenu ul li{                   /* second-level or greater menu element links */
	width: 130px;
	background-color: #185A88;
	/*border-bottom: 1px solid #ffffff;*/
	padding-top: 2px;
	padding-bottom: 3px;
	padding-left: 20px;
	list-style-image: none;
	height: 12px;
}

#dmenu li a{                    /* top-level menu element links */
}
    
#dmenu ul a {                   /* all the other level menu link elements */
}

#dmenu a:hover,                 /* top-level hovering properties */
#dmenu li:hover{
	background-color: #185A88;

}

#dmenu ul li:hover,             /* higher level hovering properties */
#dmenu ul li a:hover{
}
	
#dmenu li ul li a:hover,
#dmenu li ul li:hover {
    background-color: #2367A6;
}

#dmenu ul ul{                   /* higher-level list containers */
	display: none;              /* don't display by default */
	position: relative; /*FF*/
	z-index: 99;
	width: 200px;

	margin-top: -35px;  /*FF*/
	margin-left: 130px;         /* FF this should be the width of #dmenu ul li */
}

#dmenu li ul li ul li {
	background-color: ;
	border-left: 1px solid #2367A6;
	width: 200px;
}

#dmenu li ul li ul li:hover,
#dmenu li ul li ul li a:hover {
	background-color: ;
}

#dmenu ul li>ul,
#dmenu ul ul li>ul{
}

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

