@charset "UTF-8";
/* ===============================================================
* NESTED MENU 
*
* Nested Menu basiert auf SmartMenus http://www.smartmenus.org/
* Das Stil Sheet bestehen aus drei Teilen, 
* 1. dem Core CSS von SmartMenus und 
* 2. einem Thema von SmartMenus, hier eine Modifikation von sm-clean.
* Alternative Themen gibt's unter http://vadikom.github.io/smartmenus/src/demo/
* Teil 3 beinhaltet spezifisch Anpassungen der Seite gegen´┐¢ber main.css, die nur das Men´┐¢ betreffen.
=============================================================== */
/* ---------------------------------------------------------------
  MEGA MENU TEIL 1:
  SmartMenus Core CSS (it's not recommended editing this)
---------------------------------------------------------------*/
.sm, .sm ul, .sm li {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: normal;
  direction: ltr; }

ul.sm li {
  position: relative; }

ul.sm a {
  position: relative;
  display: block; }

ul.sm a.disabled {
  cursor: default; }

ul.sm ul {
  position: absolute;
  top: -999999px;
  left: -800px;
  width: 100px; }

ul.sm li {
  float: left; }

ul.sm-rtl {
  direction: rtl; }

ul.sm-rtl li {
  float: right; }

ul.sm ul li, ul.sm-vertical li {
  float: none; }

ul.sm a {
  white-space: nowrap; }

ul.sm ul a, ul.sm-vertical a {
  white-space: normal; }

* html ul.sm-vertical li {
  float: left;
  width: 100%; }

* html ul.sm-vertical ul li {
  float: none;
  width: auto; }

*:first-child + html ul.sm-vertical > li {
  float: left;
  width: 100%; }

ul.sm ul.sm-nowrap > li > a {
  white-space: nowrap; }

ul.sm:after {
  content: "\00a0";
  display: block;
  height: 0;
  font: 0/0 serif;
  clear: both;
  visibility: hidden;
  overflow: hidden; }

* html ul.sm {
  height: 1px; }

*:first-child + html ul.sm {
  min-height: 1px; }

ul.sm li *, ul.sm li *:before, ul.sm li *:after {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

ul.sm {
  -webkit-tap-highlight-color: #fff; }

/* -------------------- END TEIL 1 -------------------- */
/* ---------------------------------------------------------------
  MEGA MENU TEIL 2:
  Stil Sheet der Navigation, eine Variation von sm-clean.css
---------------------------------------------------------------*/
/*
---------------------------------------------------------------
  Note that styles you apply to the main menu items are inherited by the sub menus items too.
  If you'd like to avoid this, you could use child selectors (not supported by IE6) - for example:
  .sm-clean > li > a { ... } instead of .sm-clean a { ... }
---------------------------------------------------------------*/
/* Menu box
===================*/
.sm-clean {
  /* background: $bgNavCol; */ }

.sm-clean-vertical {
  padding: 10px 0; }

.sm-clean ul {
  border: 1px solid #444;
  padding: 5px 0;
  background: #F0F3E3;
  box-shadow: 0 5px 9px rgba(0, 0, 0, 0.2); }

/* first sub level carets */
.sm-clean > li > ul:before {
  content: '';
  position: absolute;
  top: -18px;
  left: 30px;
  width: 0;
  height: 0;
  overflow: hidden;
  border-width: 9px;
  /* tweak size of the arrow */
  border-style: dashed dashed solid dashed;
  border-color: transparent transparent #444 transparent; }

.sm-clean > li > ul:after {
  content: '';
  position: absolute;
  top: -16px;
  left: 31px;
  width: 0;
  height: 0;
  overflow: hidden;
  border-width: 8px;
  border-style: dashed dashed solid dashed;
  border-color: transparent transparent #fff transparent; }

/* no carets for vertical main */
.sm-clean-vertical > li > ul:before, .sm-clean-vertical > li > ul:after {
  display: none; }

/* Menu items
===================*/
.sm-clean a {
  /*line-height: 1.8em;*/
  padding: 5px 10px 5px 10px;
  font-size: 14px;
  font-size: 0.875rem;
  text-transform: uppercase; }

.sm-clean a:hover, .sm-clean a:focus, .sm-clean a:active, .sm-clean a.highlighted {
  color: #444; }

.sm-clean a.has-submenu {
  padding-right: 25px; }

.sm-clean-vertical a, .sm-clean ul a {
  padding: 10px 20px; }

.sm-clean-vertical a.has-submenu, .sm-clean ul a.has-submenu {
  padding-right: 40px; }

.sm-clean ul a {
  font-size: 0.92rem; }

/* current items - add the class manually to some item or check the "markCurrentItem" script option */
.sm-clean a.current, .sm-clean a.current:hover, .sm-clean a.current:focus,
.sm-clean a.current:active {
  color: #444; }

/* Sub menu indicators
===================*/
.sm-clean a span.sub-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  margin-top: -3px;
  /* we will use one-side border to create a triangle so that we don't use a real background image, of course, you can use a real image if you like too */
  width: 0;
  height: 0;
  overflow: hidden;
  border-width: 4px;
  /* tweak size of the arrow */
  border-style: solid dashed dashed dashed;
  border-color: #084 transparent transparent transparent; }

.sm-clean-vertical a span.sub-arrow, .sm-clean ul a span.sub-arrow {
  right: 15px;
  top: 50%;
  margin-top: -5px;
  border-width: 5px;
  border-style: dashed dashed dashed solid;
  border-color: transparent transparent transparent #084; }

/* Scrolling arrows containers for tall sub menus - test sub menu: "Sub test" -> "more..." -> "more..." in the default download package
===================*/
.sm-clean span.scroll-up, .sm-clean span.scroll-down {
  position: absolute;
  display: none;
  visibility: hidden;
  overflow: hidden;
  background: #F0F3E3;
  height: 20px;
  /* width and position will be automatically set by the script */ }

.sm-clean span.scroll-up:hover, .sm-clean span.scroll-down:hover {
  background: #DEE3C9; }

.sm-clean span.scroll-up-arrow, .sm-clean span.scroll-down-arrow {
  position: absolute;
  top: 0;
  left: 50%;
  margin-left: -6px;
  /* we will use one-side border to create a triangle so that we don't use a real background image, of course, you can use a real image if you like too */
  width: 0;
  height: 0;
  overflow: hidden;
  border-width: 6px;
  /* tweak size of the arrow */
  border-style: dashed dashed solid dashed;
  border-color: transparent transparent #084 transparent; }

.sm-clean span.scroll-up:hover span.scroll-up-arrow {
  border-color: transparent transparent #084 transparent; }

.sm-clean span.scroll-down-arrow {
  top: 8px;
  border-style: solid dashed dashed dashed;
  border-color: #084 transparent transparent transparent; }

.sm-clean span.scroll-down:hover span.scroll-down-arrow {
  border-color: #084 transparent transparent transparent; }

/*
---------------------------------------------------------------
  Responsiveness
  These will make the sub menus collapsible when the screen width is too small.
---------------------------------------------------------------*/
/* ---------- MEDIA QUERIES CONTAINER GRID ELEMENTS---------- */
@media screen and (max-width: 32em) {
  /* The following will make the sub menus collapsible for small screen devices (it's not recommended editing these) */
  ul.sm-clean {
    width: auto !important; }

  ul.sm-clean ul {
    display: none;
    position: static !important;
    top: auto !important;
    left: auto !important;
    margin-left: 0 !important;
    margin-top: 0 !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important; }

  ul.sm-clean > li {
    float: none; }

  ul.sm-clean > li > a, ul.sm-clean ul.sm-nowrap > li > a {
    white-space: normal; }

  ul.sm-clean iframe {
    display: none; }

  /* Uncomment this rule to disable completely the sub menus for small screen devices */
  /*.sm-clean ul, .sm-clean span.sub-arrow, .sm-clean iframe {
  	display:none !important;
  }*/
  	/* Menu box
  ===================*/
  .sm-clean {
    padding: 0; }

  .sm-clean ul {
    border: 0;
    padding: 0;
    /* darken the background of the sub menus */
    background: #F0F3E3;
    box-shadow: none; }

  /* no carets */
  .sm-clean > li > ul:before, .sm-clean > li > ul:after {
    display: none; }

  	/* Menu items
  ===================*/
  .sm-clean a {
    padding: 13px 5px 13px 28px !important;
    color: #084 !important;
    background: #F0F3E3 !important;
    border-bottom: 1px solid #084; }

  .sm-clean a:hover {
    color: #444 !important;
    background: #DEE3C9 !important; }

  .sm-clean a.current {
    color: #444 !important; }

  /* add some text indentation for the 2+ level sub menu items */
  .sm-clean ul a {
    border-left: 8px solid transparent;
    border-bottom: none;
    background: #F0F3E3 !important; }

  .sm-clean ul ul a {
    border-left: 16px solid transparent;
    background: #F0F3E3 !important; }

  .sm-clean ul ul ul a {
    border-left: 24px solid transparent; }

  .sm-clean ul ul ul ul a {
    border-left: 32px solid transparent; }

  .sm-clean ul ul ul ul ul a {
    border-left: 40px solid transparent; }

  .sm-clean {
    margin: 0;
    background: #F0F3E3; }

  	/* Sub menu indicators
  ===================*/
  .sm-clean a span.sub-arrow, .sm-clean ul a span.sub-arrow {
    top: 50%;
    margin-top: -9px;
    right: auto;
    left: 6px;
    margin-left: 0;
    width: 17px;
    height: 17px;
    font: normal 16px/16px monospace !important;
    text-align: center;
    border: 0;
    text-shadow: none; }

  /* Hide sub indicator when item is expanded - we enable the item link when it's expanded */
  .sm-clean a.highlighted span.sub-arrow {
    display: none !important; }

  	/* Items separators
  ===================*/
  .sm-clean li {
    border-top: 1px solid #084; }

  .sm-clean > li:first-child {
    border-top: 0; } }
/* ---------- END MEDIA QUERIES CONTAINER GRID ELEMENTS---------- */
/* -------------------- END TEIL 2 -------------------- */
/* ---------------------------------------------------------------
  MEGA MENU TEIL 3:
  Spezifische Erg├ñnzungen und ├änderungen zum Haupt-CSS
---------------------------------------------------------------*/
nav {
  width: auto;
  margin-left: 160px;
  padding: 0px;
  z-index: 2;
  /* wg. IE7-bug: z-index higher than following elements eg. slider */ }

/* hide the menu when it has the "showMenu" class set by the script */
#main-menu {
  display: block; }

/* ---------- MEDIA QUERIES CONTAINER GRID ELEMENTS---------- */
#menu-button {
  display: none; }

@media screen and (max-width: 42em) {
  nav {
    margin-left: 100px; } }
@media screen and (max-width: 32em) {
  nav {
    display: block;
    margin: 0;
    padding: 0;
    width: 100%; }

  nav .icon {
    display: inline; }

  /* Button ├Âffnet Navigation auf kleinen Screens */
  #menu-button {
    display: inline;
    float: right;
    padding: 0.9em 1.6em;
    color: #084 !important;
    text-align: right;
    cursor: pointer; }

  #menu-button:hover {
    color: #444 !important; }

  #menu-button:active {
    color: #444 !important; }

  #menu-button:before {
    font-family: 'iconFont';
    font-size: 28px;
    content: "  \f0c9";
    text-align: right; }

  #menu-button.showMenu:before {
    font-family: 'iconFont';
    font-size: 28px;
    content: "  \f00d";
    text-align: right; }

  /* Men├╝ auf kleinen Screens ausgeblendet */
  #main-menu {
    display: none; }

  /* Blendet Men├╝ ein wenn class showMenu ├╝ber JS gesetzt */
  #main-menu.showMenu {
    display: block; } }
/* END Button */
/* -------------------- END TEIL 3 -------------------- */

/*# sourceMappingURL=menu.css.map */
