/*========= SUPERMENU STYLES =========*/
.supermenu,
.supermenu * {
  list-style: none;
}
.supermenu {
  position: relative;
  z-index: 80;
  margin: 0;
  padding: 0;
}
.supermenu ul {
  position: absolute;
  top: -999em;
  width: 10em;
  /* left offset of submenus need to match (see below) */

}
.supermenu ul li {
  width: 100%;
}
.supermenu li:hover {
  visibility: inherit;
  /* fixes IE7 'sticky bug' */

}
.supermenu li {
  position: relative;
  display: inline-block;
  background: #c3c3c3;
}
.supermenu a {
  position: relative;
}
.supermenu li:hover ul,
.supermenu li.sfHover ul {
  left: 0;
  top: auto;
  /* match top ul list item height */

  z-index: 99;
}
ul.supermenu li:hover li ul,
ul.supermenu li.sfHover li ul {
  top: -999em;
}
ul.supermenu li li:hover ul,
ul.supermenu li li.sfHover ul {
  left: 10em;
  /* match ul width */

  top: 0;
}
ul.supermenu li li:hover li ul,
ul.supermenu li li.sfHover li ul {
  top: -999em;
}
ul.supermenu li li li:hover ul,
ul.supermenu li li li.sfHover ul {
  left: 10em;
  /* match ul width */

  top: 0;
}
/*** adding sf-vertical in addition to supermenu creates a vertical menu ***/
/* this lacks ul at the start of the selector, so the styles from the main CSS file override it where needed */
.sf-vertical li:hover ul,
.sf-vertical li.sfHover ul {
  top: 0;
}
/*** alter arrow directions ***/
.sf-vertical .sf-sub-indicator {
  background-position: -10px 0;
}
/* IE6 gets solid image only */
.sf-vertical a > .sf-sub-indicator {
  background-position: 0 0;
}
/* use translucent arrow for modern browsers*/
/* hover arrow direction for modern browsers*/
.sf-vertical a:focus > .sf-sub-indicator,
.sf-vertical a:hover > .sf-sub-indicator,
.sf-vertical a:active > .sf-sub-indicator,
.sf-vertical li:hover > a > .sf-sub-indicator,
.sf-vertical li.sfHover > a > .sf-sub-indicator {
  background-position: -10px 0;
  /* arrow hovers for modern browsers*/

}
/*** arrows **/
.supermenu a.sf-with-ul {
  padding-right: 2.25em;
  min-width: 1px;
  /* trigger IE7 hasLayout so spans position accurately */

}
.sf-sub-indicator {
  position: absolute;
  display: block;
  right: .75em;
  top: 0.2em;
  /* IE6 only */

  width: 10px;
  height: 10px;
  text-indent: -999em;
  overflow: hidden;
  background: url('../img/arrows-ffffff.png') no-repeat -10px -100px;
  /* 8-bit indexed alpha png. IE6 gets solid image only */

}
a > .sf-sub-indicator {
  /* give all except IE6 the correct values */

  top: 4px;
  background-position: 0 -100px;
  /* use translucent arrow for modern browsers*/

}
/* apply hovers to modern browsers */
a:focus > .sf-sub-indicator,
a:hover > .sf-sub-indicator,
a:active > .sf-sub-indicator,
li:hover > a > .sf-sub-indicator,
li.sfHover > a > .sf-sub-indicator {
  background-position: -10px -100px;
  /* arrow hovers for modern browsers*/

}
/* point right for anchors in subs */
.supermenu ul .sf-sub-indicator {
  background-position: -10px 0;
}
.supermenu ul a > .sf-sub-indicator {
  background-position: 0 0;
}
/* apply hovers to modern browsers */
.supermenu ul a:focus > .sf-sub-indicator,
.supermenu ul a:hover > .sf-sub-indicator,
.supermenu ul a:active > .sf-sub-indicator,
.supermenu ul li:hover > a > .sf-sub-indicator,
.supermenu ul li.sfHover > a > .sf-sub-indicator {
  background-position: -10px 0;
  /* arrow hovers for modern browsers*/

}
.supermenu a.folder {
  cursor: default;
}
/*========= EINDE SUPERMENU STYLES =========*/