@charset "UTF-8";
/* style the outer div to give it width */ 
.dropdownmenu {font-size:1.2em;padding-bottom:1px;margin-left: 1px;}

/* remove all the bullets, borders and padding from the default list styling */
.dropdownmenu ul {padding:0;margin:0;list-style-type:none; height:1.7em; background:#003366; 
  position: relative; z-index: 100;} 

/* style the sub-level lists */
.dropdownmenu ul ul {width:15em;font-size:1em;left: 100%; top:100%;}

/* float the top list items to make it horizontal and a relative positon so that you can control the dropdown menu positon */
.dropdownmenu ul li {float:left;height:1.5em;line-height:1.5em;}

/* style the sub level list items */
.dropdownmenu ul ul li {display:block;width:15em;height:auto; line-height:1.1em;}

/* style the links for the top level */
.dropdownmenu a, .dropdownmenu a:visited {display:block;float:left;height:100%;font-size:1em;text-decoration:none;color:#FFFFEA;background:#003366;font-weight: bold;padding:0 0.8em 0 0.8em; border:1px solid #003366;}

/* style the sub level links */
.dropdownmenu ul ul a, .dropdownmenu ul ul a:visited {display:block;float:none; background:#FFFFEA; color:#0F1A00;width:15em;height:100%;line-height:1em; padding:0.25em 1em;}
* html .dropdownmenu ul ul a, * html .dropdownmenu ul ul a:visited  {width:14em; w\idth:12em;}

/* style the table so that it takes no part in the layout - required for IE to work */
.dropdownmenu table {position:absolute; left:1px; top:0; width:0; height:0; font-size:1em; z-index:-1;}

/* style the third level background */
.dropdownmenu ul ul ul a, .dropdownmenu ul ul ul a:visited {background:#FFFFEA;}
/* style the fourth level background */
.dropdownmenu ul ul ul ul a, .dropdownmenu ul ul ul ul a:visited {background:#FFFFEA;}
/* style the sub level 1 background */
.dropdownmenu ul :hover a.sub1 {background:#CCCCCC;}
/* style the sub level 2 background */
.dropdownmenu ul ul :hover a.sub2 {background:#CCCCCC;}

/* style the level hovers */
/* first */
* html .dropdownmenu a:hover {color:#0F1A00;background:#FFFFEA; position:relative; z-index:100;}
.dropdownmenu li:hover {position:relative;}
.dropdownmenu :hover > a {color:#0F1A00;background:#FFFFEA;}
/* second */
* html .dropdownmenu ul ul a:hover{color:#0F1A00;background:#FFFFEA; position:relative; z-index:110;}
.dropdownmenu ul ul li:hover {position:relative;}
.dropdownmenu ul ul :hover > a {color:#0F1A00;background:#CCCCCC;}
/* third */
* html .dropdownmenu ul ul ul a:hover {background:#FFFFEA; position:relative; z-index:120;}
.dropdownmenu ul ul ul :hover > a {color:#0F1A00;background:#CCCCCC;}
/* fourth */
.dropdownmenu ul ul ul ul a:hover {background:#CCCCCC; position:relative; z-index:130;}

/* hide the sub levels and give them a positon absolute so that they take up no room */
.dropdownmenu ul ul {visibility:hidden;position:absolute;height:0;top:1.5em;left:0;width:14em;}

/* position the third level flyout menu */
.dropdownmenu ul ul ul{left:12em;top:0;width:14em;}

/* make the second level visible when hover on first level list OR link */
.dropdownmenu ul :hover ul{visibility:visible; height:auto; padding-bottom:2em; 
  background:transparent url(../Images/trans.gif);}
/* keep the third level hidden when you hover on first level list OR link */
.dropdownmenu ul :hover ul ul{visibility:hidden;}
/* keep the fourth level hidden when you hover on second level list OR link */
.dropdownmenu ul :hover ul :hover ul ul{visibility:hidden;}
/* make the third level visible when you hover over second level list OR link */
.dropdownmenu ul :hover ul :hover ul{visibility:visible;}
/* make the fourth level visible when you hover over third level list OR link */
.dropdownmenu ul :hover ul :hover ul :hover ul {visibility:visible;}
/* end of wx-menu.css */