/*******************************************************************************
* Level2
*******************************************************************************/
/* hide the sub levels and give them a positon absolute so that they take up no room */
#topnav ul ul,
#topnav ul ul ul {
  position: absolute;
  width: 225px;
  padding: 0;
  margin: 0;
  margin-top: -10000px;
}
/* style the second level links */
#topnav ul ul li {
  width: 225px;
  background: none;
}
#topnav ul ul li a {
  display: block;
  line-height: 30px;
}
/* make the second level visible when hover on first level list OR link */
#topnav ul li.drop:hover ul {
  margin: 0px 0 0 0;
}
#topnav ul li.drop:hover li.fly ul {
  margin-top: -10000px;
}

/* style the second level hover */
#topnav ul ul a:hover {}
#topnav ul ul a.drop {
  /* background: #000033 url(../images/topnav/plus3.gif) no-repeat 5px 4px; */
}
/* style the second level hover */
#topnav li.fly a {
  background: url(./graphics/subnavfly.png) no-repeat;
}
#topnav li.fly a:hover {
  background: url(./graphics/subnavfly.png) no-repeat left bottom;
}
#topnav li ul a:hover {}
/* remove level 1 background color on a-tag */
#topnav .topnav-act li a {
  background: #000033;
}

/* undg? farvning p? 3. niveau i IE */
#topnav li.topnav-act li.topnav-act li a {
  color: #FFFFFF;
}
#topnav li.topnav-act li.topnav-act li a:hover {
  color: #CC0000;
}

/*******************************************************************************
* Level3
*******************************************************************************/
#topnav ul li.drop:hover li.fly:hover ul {
  margin: -38px 0 0 130px;
}
/*******************************************************************************
* Show/hide
*******************************************************************************/
/* keep the third level hidden when you hover on first level list OR link */
/* make the third level visible when you hover over second level list OR link */
#topnav ul :hover ul :hover ul {
  visibility: visible;
}

/* IE - Hacks */
/* style the table so that it takes no ppart in the layout - required for IE to work */
#topnav table {
  position: absolute;
  top: 0;
  left: 0;
}