@charset "UTF-8";
/* Alpen CSS - KRZN Version 10.12.2015 08.23
Import der Schriftart :
https://www.google.com/fonts#UsePlace:use/Collection:Ubuntu:400,400italic,700,700italic,500,500italic
*/
@import url(fonts-custom.css);
/* import core styles | Basis-Stylesheets einbinden */
@media all {
  /**
   *  @section Normalisation Module
   */
  /* (en) Global reset of paddings and margins for all HTML elements */
  /* (de) Globales Zurücksetzen der Innen- und Außenabstände für alle HTML-Elemente */
  * {
    margin: 0;
    padding: 0;
  }

  /* (en) Correction: margin/padding reset caused too small select boxes. */
  /* (de) Korrektur: Das Zurücksetzen der Abstände verursacht zu kleine Selectboxen. */
  option {
    padding-left: 0.4em;
  }

  select {
    padding: 1px;
  }

  /*
  * (en) Global fix of the Italics bugs in IE 5.x and IE 6
  * (de) Globale Korrektur des Italics Bugs des IE 5.x und IE 6
  *
  * @bugfix
  * @affected   IE 5.x/Win, IE6
  * @css-for    IE 5.x/Win, IE6
  * @valid      yes
  */
  * html body * {
    overflow: visible;
  }

  /*
  * (en) Fix for rounding errors when scaling font sizes in older versions of Opera browser
  *      Standard values for colors and text alignment
  *
  * (de) Beseitigung von Rundungsfehler beim Skalieren von Schriftgrößen in älteren Opera Versionen
  *      Vorgabe der Standardfarben und Textausrichtung
  */
  body {
    font-size: 100%;
    background: #fff;
    color: #000;
    text-align: left;
  }

  /* (en) avoid visible outlines on DIV and h[x] elements in Webkit browsers */
  /* (de) Vermeidung sichtbarer Outline-Rahmen in Webkit-Browsern */
  div:target,
  h1:target,
  h2:target,
  h3:target,
  h4:target,
  h5:target,
  h6:target {
    outline: 0 none;
  }

  /* (en) HTML5 - adjusting visual formatting model to block level */
  /* (de) HTML5 - Elements werden als Blockelemente definiert */
  article,
  aside,
  details,
  figcaption,
  figure,
  footer,
  header,
  main,
  nav,
  section,
  summary {
    display: block;
  }

  /* (en) HTML5 - default media element styles */
  /* (de) HTML5 - Standard Eigenschaften für Media-Elemente */
  audio,
  canvas,
  video {
    display: inline-block;
  }

  /* (en) HTML5 - don't show <audio> element if there aren't controls */
  /* (de) HTML5 - <audio> ohne Kontrollelemente sollten nicht angezeigt werden */
  audio:not([controls]) {
    display: none;
  }

  /* (en) HTML5 - add missing styling in IE & old FF for hidden attribute */
  /* (de) HTML5 - Eigenschaften für das hidden-Attribut in älteren IEs und FF nachrüsten */
  [hidden] {
    display: none;
  }

  /* (en) Prevent iOS text size adjust after orientation change, without disabling user zoom. */
  /* (de) Verdindert die automatische Textanpassung bei Orientierungswechsel, ohne Zoom zu blockieren */
  html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }

  /* (en) set correct box-modell in IE8/9 plus remove padding */
  /* (de) Setze das richtige Box-Modell im IE8/9 und entferne unnötiges Padding */
  input[type="checkbox"],
  input[type="radio"] {
    box-sizing: border-box;
    padding: 0;
  }

  /* (en) force consistant appearance of input[type="search"] elements in all browser */
  /* (de) Einheitliches Erscheinungsbild für input[type="search"] Elemente erzwingen */
  input[type="search"] {
    -webkit-appearance: textfield;
    box-sizing: content-box;
  }

  input[type="search"]::-webkit-search-cancel-button,
  input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
  }

  /* (en) Correct overflow displayed oddly in IE 9 */
  /* (de) Korrigiert fehlerhafte overflow Voreinstellung des IE 9 */
  svg:not(:root) {
    overflow: hidden;
  }

  /* (en) Address margin not present in IE 8/9 and Safari 5 */
  /* (en) Ergänzt fehlenden Margin in IE 8/9 und Safari 5 */
  figure {
    margin: 0;
  }

  /* (en) Clear borders for <fieldset> and <img> elements */
  /* (de) Rahmen für <fieldset> und <img> Elemente löschen */
  fieldset,
  img {
    border: 0 solid;
  }

  /* (en) new standard values for lists, blockquote, cite and tables */
  /* (de) Neue Standardwerte für Listen, Zitate und Tabellen */
  ul,
  ol,
  dl {
    margin: 0 0 1em 1em;
  }

  li {
    line-height: 1.5em;
    margin-left: 0.8em;
  }

  dt {
    font-weight: bold;
  }

  dd {
    margin: 0 0 1em 0.8em;
  }

  blockquote {
    margin: 0 0 1em 0.8em;
  }

  q {
    quotes: none;
  }

  blockquote:before,
  blockquote:after,
  q:before,
  q:after {
    content: '';
    content: none;
  }

  table {
    border-collapse: collapse;
    border-spacing: 0;
  }

  /**
  * @section Float Handling Module
  */
  /* (en) clearfix method for clearing floats */
  /* (de) Clearfix-Methode zum Clearen der Float-Umgebungen */
  .ym-clearfix:before {
    content: "";
    display: table;
  }

  .ym-clearfix:after {
    clear: both;
    content: ".";
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden;
  }

  /* (en) alternative solutions to contain floats */
  /* (de) Alternative Methoden zum Einschließen von Float-Umgebungen */
  .ym-contain-dt {
    display: table;
    table-layout: fixed;
    width: 100%;
  }

  .ym-contain-oh {
    display: block;
    overflow: hidden;
    width: 100%;
  }

  .ym-contain-fl {
    float: left;
    width: 100%;
  }

  /**
  * @section Column Module
  *
  * default column config:
  * |-------------------------------|
  * | col1    | col3      | col2    |
  * | 20%     | flexible  | 20%     |
  * |-------------------------------|
  */
  .ym-column {
    display: table;
    table-layout: fixed;
    width: 100%;
  }

  .ym-col1 {
    float: left;
    width: 20%;
  }

  .ym-col2 {
    float: right;
    width: 20%;
  }

  .ym-col3 {
    width: auto;
    margin: 0 20%;
  }

  .ym-cbox {
    padding: 0 10px;
  }

  .ym-cbox-left {
    padding: 0 10px 0 0;
  }

  .ym-cbox-right {
    padding: 0 0 0 10px;
  }

  /* (en) IE-Clearing: Only used in Internet Explorer, switched on in iehacks.css */
  /* (de) IE-Clearing: Benötigt nur der Internet Explorer und über iehacks.css zugeschaltet */
  .ym-ie-clearing {
    display: none;
  }

  /**
  * @section Grid Module
  */
  .ym-grid {
    display: table;
    table-layout: fixed;
    width: 100%;
    list-style-type: none;
    padding-left: 0;
    padding-right: 0;
    margin-left: 0;
    margin-right: 0;
  }

  .ym-gl {
    float: left;
    margin: 0;
  }

  .ym-gr {
    float: right;
    margin: 0 0 0 -5px;
  }

  .ym-g20 {
    width: 20%;
  }

  .ym-g40 {
    width: 40%;
  }

  .ym-g60 {
    width: 60%;
  }

  .ym-g80 {
    width: 80%;
  }

  .ym-g25 {
    width: 25%;
  }

  .ym-g33 {
    width: 33.333%;
  }

  .ym-g50 {
    width: 50%;
  }

  .ym-g66 {
    width: 66.666%;
  }

  .ym-g75 {
    width: 75%;
  }

  .ym-g38 {
    width: 38.2%;
  }

  .ym-g62 {
    width: 61.8%;
  }

  .ym-gbox {
    padding: 0 10px;
  }

  .ym-gbox-left {
    padding: 0 10px 0 0;
  }

  .ym-gbox-right {
    padding: 0 0 0 10px;
  }

  .ym-equalize {
    overflow: hidden;
  }

  .ym-equalize > [class*="ym-g"] {
    display: table-cell;
    float: none;
    margin: 0;
    vertical-align: top;
  }

  .ym-equalize > [class*="ym-g"] > [class*="ym-gbox"] {
    padding-bottom: 10000px;
    margin-bottom: -10000px;
  }

  /**
  * @section Form Module
  */
  /** Vertical-Forms - technical base (standard)
  *
  * |-------------------------------|
  * | form                          |
  * |-------------------------------|
  * |   label                       |
  * |   input / select / textarea   |
  * |-------------------------------|
  * | /form                         |
  * |-------------------------------|
  *
  * (en) Styling of forms where both label and input/select/textarea are styled with display:block;
  * (de) Formulargestaltung, bei der sowohl label als auch input/select/textarea mit display:block; gestaltet werden
  */
  .ym-form,
  .ym-form fieldset {
    overflow: hidden;
  }

  .ym-form div {
    position: relative;
  }
  .ym-form label,
  .ym-form .ym-label,
  .ym-form .ym-message {
    position: relative;
    line-height: 1.5;
    display: block;
  }
  .ym-form .ym-message {
    clear: both;
  }
  .ym-form .ym-fbox-check label {
    display: inline;
  }
  .ym-form input,
  .ym-form textarea {
    cursor: text;
  }
  .ym-form .ym-fbox-check input,
  .ym-form input[type="image"],
  .ym-form input[type="radio"],
  .ym-form input[type="checkbox"],
  .ym-form select,
  .ym-form label {
    cursor: pointer;
  }
  .ym-form textarea {
    overflow: auto;
  }
  .ym-form input.hidden,
  .ym-form input[type=hidden] {
    display: none !important;
  }
  .ym-form .ym-fbox:before,
  .ym-form .ym-fbox-text:before,
  .ym-form .ym-fbox-select:before,
  .ym-form .ym-fbox-check:before,
  .ym-form .ym-fbox-button:before {
    content: "";
    display: table;
  }
  .ym-form .ym-fbox:after,
  .ym-form .ym-fbox-text:after,
  .ym-form .ym-fbox-select:after,
  .ym-form .ym-fbox-check:after,
  .ym-form .ym-fbox-button:after {
    clear: both;
    content: ".";
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden;
  }
  .ym-form .ym-fbox-check input:focus,
  .ym-form .ym-fbox-check input:hover,
  .ym-form .ym-fbox-check input:active,
  .ym-form input[type="radio"]:focus,
  .ym-form input[type="radio"]:hover,
  .ym-form input[type="radio"]:active,
  .ym-form input[type="checkbox"]:focus,
  .ym-form input[type="checkbox"]:hover,
  .ym-form input[type="checkbox"]:active {
    border: 0 none;
  }
  .ym-form input,
  .ym-form textarea,
  .ym-form select {
    display: block;
    position: relative;
    box-sizing: border-box;
    width: 70%;
  }
  .ym-form .ym-fbox-check input,
  .ym-form input[type="radio"],
  .ym-form input[type="checkbox"] {
    display: inline;
    margin-left: 0;
    margin-right: 0.5ex;
    width: auto;
    height: auto;
  }
  .ym-form input[type="image"] {
    border: 0;
    display: inline;
    height: auto;
    margin: 0;
    padding: 0;
    width: auto;
  }
  .ym-form label,
  .ym-form .ym-label {
    box-sizing: border-box;
  }
  .ym-form .ym-fbox-button input {
    display: inline;
    overflow: visible;
    width: auto;
  }
  .ym-form .ym-inline {
    display: inline-block;
    float: none;
    margin-right: 0;
    width: auto;
    vertical-align: baseline;
  }

  /* default form wrapper width */
  .ym-fbox-wrap {
    display: table;
    table-layout: fixed;
    width: 70%;
  }
  .ym-fbox-wrap input,
  .ym-fbox-wrap textarea,
  .ym-fbox-wrap select {
    width: 100%;
  }
  .ym-fbox-wrap input[type="image"] {
    width: auto;
  }
  .ym-fbox-wrap input[type="radio"],
  .ym-fbox-wrap input[type="checkbox"] {
    display: inline;
    width: auto;
    margin-left: 0;
    margin-right: 0.5ex;
  }
  .ym-fbox-wrap label,
  .ym-fbox-wrap .ym-label {
    display: inline;
  }

  .ym-full input,
  .ym-full textarea,
  .ym-full select {
    width: 100%;
  }
  .ym-full .ym-fbox-wrap {
    width: 100%;
  }

  /**
  *  Columnar forms display - technical base (optional)
  *
  *  |-------------------------------------------|
  *  | form                                      |
  *  |-------------------------------------------|
  *  |                                           |
  *  |   label   |   input / select / textarea   |
  *  |                                           |
  *  |-------------------------------------------|
  *  | /form                                     |
  *  |-------------------------------------------|
  *
  *  (en) Styling of forms where label floats left of form-elements
  *  (de) Formulargestaltung, bei der die label-Elemente nach links fließen
  */
  .ym-columnar input,
  .ym-columnar textarea,
  .ym-columnar select {
    float: left;
    margin-right: -3px;
  }
  .ym-columnar label,
  .ym-columnar .ym-label {
    display: inline;
    float: left;
    width: 30%;
    z-index: 1;
  }
  .ym-columnar .ym-fbox-check input,
  .ym-columnar .ym-message {
    margin-left: 30%;
  }
  .ym-columnar .ym-fbox-wrap {
    margin-left: 30%;
    margin-right: -3px;
  }
  .ym-columnar .ym-fbox-wrap .ym-message {
    margin-left: 0%;
  }
  .ym-columnar .ym-fbox-wrap label {
    float: none;
    width: auto;
    z-index: 1;
    margin-left: 0;
  }
  .ym-columnar .ym-fbox-wrap input {
    margin-left: 0;
    position: relative;
  }
  .ym-columnar .ym-fbox-check {
    position: relative;
  }
  .ym-columnar .ym-fbox-check label,
  .ym-columnar .ym-fbox-check .ym-label {
    padding-top: 0;
  }
  .ym-columnar .ym-fbox-check input {
    top: 3px;
  }
  .ym-columnar .ym-fbox-button input {
    float: none;
    margin-right: 1em;
  }

  .ym-fbox-wrap + .ym-fbox-wrap {
    margin-top: 0.5em;
  }

  /* global and local columnar settings for button alignment */
  .ym-columnar fieldset .ym-fbox-button,
  fieldset.ym-columnar .ym-fbox-button {
    padding-left: 30%;
  }

  /**
  * @section Accessibility Module
  *
  * (en) skip links and hidden content
  * (de) Skip-Links und versteckte Inhalte
  */
  /* (en) classes for invisible elements in the base layout */
  /* (de) Klassen für unsichtbare Elemente im Basislayout */
  .ym-skip,
  .ym-hideme,
  .ym-print {
    position: absolute;
    top: -32768px;
    left: -32768px;
  }

  /* (en) make skip links visible when using tab navigation */
  /* (de) Skip-Links für Tab-Navigation sichtbar schalten */
  .ym-skip:focus,
  .ym-skip:active {
    position: static;
    top: 0;
    left: 0;
  }

  /* skiplinks:technical setup */
  .ym-skiplinks {
    position: absolute;
    top: 0px;
    left: -32768px;
    z-index: 1000;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
  }
  .ym-skiplinks .ym-skip:focus,
  .ym-skiplinks .ym-skip:active {
    left: 32768px;
    outline: 0 none;
    position: absolute;
    width: 100%;
  }
}
@media print {
  /**
  * @section print adjustments for core modules
  *
  * (en) float containment for grids. Uses display:table to avoid bugs in FF & IE
  * (de) Floats in Grids einschließen. Verwendet display:table, um Darstellungsprobleme im FF & IE zu vermeiden
  *
  * @bugfix
  * @since     3.0
  * @affected  FF2.0, FF3.0, IE7
  * @css-for   all browsers
  * @valid     yes
  */
  .ym-grid > .ym-gl,
  .ym-grid > .ym-gr {
    overflow: visible;
    display: table;
    table-layout: fixed;
  }

  /* (en) make .ym-print class visible */
  /* (de) .ym-print-Klasse sichtbar schalten */
  .ym-print {
    position: static;
    left: 0;
  }

  /* (en) generic class to hide elements for print */
  /* (de) Allgemeine CSS Klasse, um beliebige Elemente in der Druckausgabe auszublenden */
  .ym-noprint {
    display: none !important;
  }
}
/* import screen layout | Screen-Layout einbinden */
@media all {
  .ym-hlist {
    /* (en) containing floats in IE */
    /* (de) Einfassen der Floats im IE */
    line-height: 1em;
    overflow: hidden;
    position: relative;
    width: 100%;
  }
  .ym-hlist ul {
    display: inline;
    float: left;
    margin: 0;
    padding: 0;
  }
  header .ym-hlist ul {
    border-bottom: 8px solid transparent;
    /* damit das bg bild angezeigt wird */
  }
  .ym-hlist ul li {
    display: inline;
    float: left;
    font-size: 1em;
    line-height: 1;
    list-style-type: none;
    margin: 0 0.25em 0 0;
    padding: 0;
  }
  .ym-hlist ul li a, .ym-hlist ul li strong {
    background: transparent;
    color: #272726;
    display: block;
    font-size: 142.85714%;
    font-weight: normal;
    line-height: 60px;
    padding: 0 20px;
    text-decoration: none;
    width: auto;
  }
  #ym-nav-meta .ym-hlist ul li a, #ym-nav-meta .ym-hlist ul li strong {
    color: #ffffff;
    font-size: 87.5%;
    line-height: 40px;
    padding: 0 10px;
    text-decoration: underline;
  }
  .ym-hlist ul li a:focus,
  .ym-hlist ul li a:hover,
  .ym-hlist ul li a:active {
    background: #fde6a3;
    color: #272726;
    outline: 0 none;
    text-decoration: underline;
  }
  #ym-nav-meta .ym-hlist ul li a:focus, #ym-nav-meta
  .ym-hlist ul li a:hover, #ym-nav-meta
  .ym-hlist ul li a:active {
    background-color: #ffffff;
    color: #000000;
  }
  .ym-hlist ul li.active {
    background: transparent;
    color: #272726;
    position: relative;
  }
  .ym-hlist ul li.active:after {
    background: transparent url("../images/hauptnavigation-aktiv.png") no-repeat center bottom;
    bottom: -10px;
    content: '';
    display: block;
    height: 30px;
    left: 50%;
    margin-left: -15px;
    position: absolute;
    width: 29px;
  }
  .ym-hlist ul li.active strong {
    background: transparent;
    color: #272726;
    font-weight: bold;
    text-decoration: none;
  }
  .ym-hlist ul li.active a:focus,
  .ym-hlist ul li.active a:hover,
  .ym-hlist ul li.active a:active {
    background: #fde6a3;
    color: #272726;
    text-decoration: none;
  }
  #ym-nav-meta .ym-hlist ul li.active {
    background: #ffffff;
    color: #272726;
  }
  #ym-nav-meta .ym-hlist ul li.active strong {
    font-weight: normal;
  }
  #ym-nav-meta .ym-hlist ul li.active:after {
    display: none;
  }
  #ym-nav-meta .ym-hlist ul li.active strong,
  #ym-nav-meta .ym-hlist ul li.active a:focus,
  #ym-nav-meta .ym-hlist ul li.active a:hover,
  #ym-nav-meta .ym-hlist ul li.active a:active {
    background: #ffffff;
    color: #272726;
    text-decoration: none;
  }
}
@media all {
  /* 5 navigation levels defined */
  .ym-vlist {
    background: #ffffff;
    border-right: 20px solid #ffffff;
    margin: 0 0 1.5em 0;
    list-style-type: none;
    /* Damit die Navigation mindestens so hoch ist wie das Bild */
  }
  .ym-col1 .ym-vlist {
    min-height: 292px;
  }
  .ym-vlist ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow: hidden;
  }
  .ym-vlist ul ul {
    border: 0 none;
  }
  .ym-vlist li {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
  }
  .ym-vlist a,
  .ym-vlist strong,
  .ym-vlist span {
    border-bottom: 1px solid #ffffff;
    border-top: 1px solid #ffffff;
    color: #272726;
    display: block;
    padding: 3px 0 3px 10%;
    text-decoration: none;
  }
  .ym-vlist a,
  .ym-vlist a:visited {
    color: #272726;
  }
  .ym-vlist li span {
    display: block;
    font-weight: bold;
  }
  .ym-vlist li.active {
    color: #272726;
    background-color: #fde6a3;
  }
  .ym-vlist li.active:before {
    background: #ffffff;
    border: 1px solid #000000;
    display: block;
    content: "";
    float: left;
    height: 10px;
    left: 3%;
    position: relative;
    top: 8px;
    width: 10px;
  }
  .ym-vlist li.active a.active,
  .ym-vlist li.active strong {
    font-weight: bold;
    border-bottom: 1px solid #fabb00;
    border-top: 1px solid #fabb00;
  }
  .ym-vlist li.active strong {
    background-color: #fabb00;
  }
  .ym-vlist li.active:before {
    left: 3%;
  }
  .ym-vlist li a,
  .ym-vlist li strong,
  .ym-vlist li span {
    padding-left: 10%;
    width: 90%;
  }
  .ym-vlist li a:focus,
  .ym-vlist li a:hover,
  .ym-vlist li a:active {
    background-color: #fde6a3;
    color: #272726;
    outline: none;
  }
  .ym-vlist li ul li.active:before {
    left: 8%;
  }
  .ym-vlist li ul li a,
  .ym-vlist li ul li strong,
  .ym-vlist li ul li span {
    width: 85%;
    padding-left: 15%;
  }
  .ym-vlist li ul li ul li.active:before {
    left: 13%;
  }
  .ym-vlist li ul li ul li a,
  .ym-vlist li ul li ul li strong,
  .ym-vlist li ul li ul li span {
    width: 80%;
    padding-left: 20%;
  }
  .ym-vlist li ul li ul li ul li.active:before {
    left: 18%;
  }
  .ym-vlist li ul li ul li ul li a,
  .ym-vlist li ul li ul li ul li strong,
  .ym-vlist li ul li ul li ul li span {
    width: 75%;
    padding-left: 25%;
  }
  .ym-vlist li ul li ul li ul li ul li.active:before {
    left: 21%;
  }
  .ym-vlist li ul li ul li ul li ul li a,
  .ym-vlist li ul li ul li ul li ul li strong,
  .ym-vlist li ul li ul li ul li ul li span {
    width: 70%;
    padding-left: 30%;
  }

  /* title */
  .ym-vtitle {
    width: 90%;
    padding: 3px 0 3px 10%;
    margin: 0;
    color: #272726;
    background-color: #ffffff;
  }
}
@media screen, projection {
  /* Sitemap v-list spezial */
  #cat99 .ym-col3 section .ym-sitemap {
    /* title */
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist {
    background: transparent;
    border: none;
    margin: 0 0 1.5em 0;
    list-style-type: none;
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist ul {
    background: #fef1cc;
    border-bottom: 1px solid #fabb00;
    border-left: 1px solid #fabb00;
    border-right: 1px solid #fabb00;
    border-top: 1px solid #ffffff;
    width: auto;
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist ul ul {
    border: none;
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li {
    background-color: #fef1cc;
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist a,
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist strong,
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist span {
    border-top: none;
    color: #272726;
    display: block;
    padding: 3px 0 3px 10%;
    text-decoration: none;
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist a,
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist a:visited {
    color: #272726;
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li span {
    display: block;
    font-weight: bold;
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li.active:before {
    left: 3%;
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li a,
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li strong,
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li span {
    padding-left: 10%;
    width: 90%;
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li a:focus,
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li a:hover,
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li a:active {
    background-color: #fabb00;
    color: #272726;
    outline: none;
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li ul li.active:before {
    left: 8%;
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li ul li a,
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li ul li strong,
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li ul li span {
    width: 85%;
    padding-left: 15%;
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li ul li ul li.active:before {
    left: 13%;
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li ul li ul li a,
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li ul li ul li strong,
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li ul li ul li span {
    width: 80%;
    padding-left: 20%;
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li ul li ul li ul li.active:before {
    left: 18%;
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li ul li ul li ul li a,
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li ul li ul li ul li strong,
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li ul li ul li ul li span {
    width: 75%;
    padding-left: 25%;
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li ul li ul li ul li ul li.active:before {
    left: 21%;
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li ul li ul li ul li ul li a,
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li ul li ul li ul li ul li strong,
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist li ul li ul li ul li ul li span {
    width: 70%;
    padding-left: 30%;
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vtitle {
    border-bottom: 1px solid #fabb00;
    border-left: 1px solid #fabb00;
    border-right: 1px solid #fabb00;
    border-top: 1px solid #fabb00;
    width: 100%;
    padding: 0 0;
    margin: 0;
    color: #272726;
    background-color: #fabb00;
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vtitle a {
    border-bottom: none;
    border-top: none;
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vtitle a:active, #cat99 .ym-col3 section .ym-sitemap .ym-vtitle a:hover, #cat99 .ym-col3 section .ym-sitemap .ym-vtitle a:focus {
    background-color: #fef1cc;
    color: #272726;
  }
}
@media all {
  /* Pagination */
  .ym-col3 section .ym-paging {
    display: table;
    padding: 0.5em 0 2em 0;
    table-layout: fixed;
    width: 100%;
  }
  .ym-col3 section .ym-paging ul {
    margin-left: 0;
  }
  .ym-col3 section .ym-paging ul li {
    display: inline;
    float: left;
    list-style-type: none;
    margin-bottom: .5em;
    margin-right: 5px;
    margin-left: 0;
    /* Den gelben Kasten wieder entfernen */
  }
  .ym-col3 section .ym-paging ul li:before {
    display: none;
  }
  .ym-col3 section .ym-paging a, .ym-col3 section .ym-paging strong {
    background-color: #fabb00;
    display: block;
    line-height: 21px;
    border: 1px solid #fabb00;
    text-align: center;
    text-decoration: none;
    width: 21px;
  }
  .ym-col3 section .ym-paging li.ym-active strong,
  .ym-col3 section .ym-paging a:focus,
  .ym-col3 section .ym-paging a:hover,
  .ym-col3 section .ym-paging a:active {
    background: #fde6a3;
    color: #272726;
    text-decoration: none;
  }
  .ym-col3 section .ym-paging a:focus {
    outline: 2px solid #000000;
  }
  .ym-col3 section .ym-paging li.ym-active strong {
    font-weight: normal;
  }
  .ym-col3 section .ym-paging li.next {
    margin-left: 10px;
  }
  .ym-col3 section .ym-paging li.previous {
    margin-right: 15px;
    margin-left: 15px;
  }
  .ym-col3 section .ym-paging li.previous a,
  .ym-col3 section .ym-paging li.next a {
    background: transparent;
    border: none;
    text-decoration: underline;
    width: auto;
  }
  .ym-col3 section .ym-paging li.previous a:focus, .ym-col3 section .ym-paging li.previous a:hover, .ym-col3 section .ym-paging li.previous a:active,
  .ym-col3 section .ym-paging li.next a:focus,
  .ym-col3 section .ym-paging li.next a:hover,
  .ym-col3 section .ym-paging li.next a:active {
    background: #fde6a3;
    color: #272726;
    text-decoration: none;
  }

  /* Ende - Pagination */
}
@media all {
  /* Breadcrumb */
  #ym-breadcrumb {
    display: table;
    /*! font-size: 12px; */
    font-size: 85.71429%;
    line-height: 1.66667;
    margin-top: 8px;
    padding: 0 0 20px 0;
    table-layout: fixed;
    width: 100%;
  }
  #ym-breadcrumb ol {
    margin: 0;
    padding: 0;
    display: inline;
    float: left;
  }
  #ym-breadcrumb ol li {
    display: inline;
    float: left;
    font-size: 1.0em;
    line-height: 1.5em;
    list-style-type: none;
    margin: 0 5px 0 0;
    padding: 0;
  }
  #ym-breadcrumb ol li:before {
    content: "/ ";
    display: inline;
  }
  #ym-breadcrumb ol li:first-child:before {
    content: "";
    display: none;
  }
  #ym-breadcrumb ol a {
    display: inline-block;
    text-decoration: underline;
  }
  #ym-breadcrumb ol li.active strong,
  #ym-breadcrumb ol a:focus,
  #ym-breadcrumb ol a:hover,
  #ym-breadcrumb ol a:active {
    text-decoration: none;
  }
  #ym-breadcrumb ol li.active strong {
    font-weight: normal;
  }

  /* Ende - Breadcrump */
}
@media all {
  /* Ankernavigation und Inhalte -> Kontakt / Downloads / Links */
  /* Inhalte Accordion */
  .ym-nav-anker-content > div:first-child {
    border-top: 1px solid #fabb00;
  }

  #ym-contacts address {
    line-height: 1.42857;
    margin: 0 0 1.42857em 0;
  }

  #ym-contacts,
  #ym-downloads,
  #ym-links {
    border-bottom: 1px solid #fabb00;
    padding-left: 35px;
    /* Nur wenn JS aktiv ist, wird das togglen angezeigt */
  }
  #ym-contacts h4,
  #ym-downloads h4,
  #ym-links h4 {
    margin-top: 1em;
    font-weight: bold;
    position: relative;
  }
  #ym-contacts h4 a,
  #ym-downloads h4 a,
  #ym-links h4 a {
    text-decoration: none;
  }
  #ym-contacts h4 a:active, #ym-contacts h4 a:hover, #ym-contacts h4 a:active,
  #ym-downloads h4 a:active,
  #ym-downloads h4 a:hover,
  #ym-downloads h4 a:active,
  #ym-links h4 a:active,
  #ym-links h4 a:hover,
  #ym-links h4 a:active {
    color: #000000;
    cursor: default;
    outline: none;
    background: none;
  }
  #ym-contacts h4:active, #ym-contacts h4:hover, #ym-contacts h4:active,
  #ym-downloads h4:active,
  #ym-downloads h4:hover,
  #ym-downloads h4:active,
  #ym-links h4:active,
  #ym-links h4:hover,
  #ym-links h4:active {
    color: #000000;
    cursor: default;
    outline: none;
    background: none;
  }
  .js #ym-contacts h4:before, .js
  #ym-downloads h4:before, .js
  #ym-links h4:before {
    background: transparent url("../images/accordion_ohne.png") no-repeat 0 0;
    display: block;
    content: "";
    float: left;
    height: 35px;
    left: -35px;
    position: absolute;
    top: -5px;
    width: 35px;
  }
  .js #ym-contacts h4.open:before, .js
   #ym-downloads h4.open:before, .js
  #ym-links h4.open:before {
    background: transparent url("../images/accordion_minus.png") no-repeat 0 0;
  }
  #ym-contacts h4 span,
  #ym-downloads h4 span,
  #ym-links h4 span {
    font-weight: normal;
  }
  #ym-contacts .ym-closed,
  #ym-contacts .ym-open,
  #ym-downloads .ym-closed,
  #ym-downloads .ym-open,
  #ym-links .ym-closed,
  #ym-links .ym-open {
    display: none;
  }

  /* skiplinks kontakt + downloads + links als hlist (unter h3) */
  .ym-col3 section .ym-nav-anker {
    background-color: #fef1cc;
    border-bottom: 1px solid #fabb00;
    display: table;
    margin-bottom: 2em;
    margin-top: -1.5em;
    padding: 1em 0 1em 20px;
    table-layout: fixed;
    width: 100%;
  }
  .ym-col3 section .ym-nav-anker ul {
    margin: 0;
    padding: 0;
    display: inline;
    float: left;
  }
  .ym-col3 section .ym-nav-anker ul li {
    display: inline;
    float: left;
    font-size: 1.0em;
    line-height: 1.5em;
    list-style-type: none;
    margin: 0 20px 0 0;
    padding: 0;
    /* Den gelben Kasten wieder entfernen */
  }
  .ym-col3 section .ym-nav-anker ul li:before {
    display: none;
  }
  .ym-col3 section .ym-nav-anker a {
    display: inline-block;
    text-decoration: underline;
  }
  .ym-col3 section .ym-nav-anker a:focus,
  .ym-col3 section .ym-nav-anker a:hover,
  .ym-col3 section .ym-nav-anker a:active {
    text-decoration: none;
  }

  /* Ende - skiplinks kontakt + downloads + links als hlist (unter h3) */
}
@media all {
  /* News / Veranstaltungen - Liste */
  #cat00 .ym-h-events,
  #cat00 .ym-h-news {
    /* Startseite ohne ol listenpunkte */
  }
  body#cat00 #cat00 .ym-h-events ol, body#cat00
  #cat00 .ym-h-news ol {
    list-style-type: none;
  }
  #cat00 .ym-h-events li,
  #cat00 .ym-h-news li {
    margin-bottom: 10px;
    margin-left: 0;
  }
  #cat00 .ym-h-events time,
  #cat00 .ym-h-news time {
    display: block;
  }
  #cat00 .ym-h-events a,
  #cat00 .ym-h-news a {
    text-decoration: underline;
  }
  #cat00 .ym-h-events a:focus,
  #cat00 .ym-h-events a:hover,
  #cat00 .ym-h-events a:active,
  #cat00 .ym-h-news a:focus,
  #cat00 .ym-h-news a:hover,
  #cat00 .ym-h-news a:active {
    background: #272726;
    color: #ffffff;
    text-decoration: none;
  }

  dl.ym-press-list dt,
  dl.ym-news-list dt,
  dl.ym-events-list dt {
    margin-top: 20px;
    margin-bottom: 10px;
  }
  dl.ym-press-list dd,
  dl.ym-news-list dd,
  dl.ym-events-list dd {
    margin-bottom: 0;
  }

  /* Ende - News / Veranstaltungen - Liste */
}
@media screen {
  .ym-form {
    background: #f4f5dc;
    border-bottom: 1px dashed;
    border-left: 1px solid #000000;
    border-right: 1px solid #000000;
    border-top: 1px dashed;
    padding-left: 10px;
    padding-right: 10px;
    margin: 0;
    margin-bottom: 10px;
  }
  .ym-form fieldset {
    position: static;
    background: transparent;
    margin: 0.75em 0 0.75em 0;
    padding: 0 0.5em;
  }
  .ym-form legend {
    font-size: 142.85714%;
    line-height: 1.5;
    margin: 1em 0 0;
    padding: 0 0 1em;
    background: transparent;
    color: #272726;
    font-weight: normal;
  }
  .ym-form label,
  .ym-form .ym-label {
    color: #272726;
    line-height: 1.5;
    padding-top: 0.25em;
  }
  .ym-form .ym-fbox {
    padding: 0 1em;
    margin: 1em 0 0.5em 0;
  }
  .ym-form .ym-fbox-footer {
    background: transparent;
    border-top: 1px #272726 solid;
    padding: 1.5em 1em;
    margin: 0;
  }
  .ym-form .ym-fbox + .ym-fbox {
    margin: 0.5em 0;
  }
  .ym-form .ym-fbox:last-child {
    margin-bottom: 1em;
  }
  .ym-form .ym-fbox + .ym-fbox-footer {
    margin: 1em 0 0 0;
  }
  .ym-form .ym-fbox :last-child,
  .ym-form .ym-fbox-footer :last-child {
    margin-bottom: 0;
  }
  .ym-form .ym-fbox-heading {
    font-size: 100%;
    color: #000000;
    margin: 1em;
  }
  .ym-form .ym-fbox-check:focus + label {
    color: #000000;
  }
  .ym-form .ym-gbox-left {
    padding: 0 4px 0 0;
  }
  .ym-form .ym-gbox-right {
    padding: 0 0 0 4px;
  }
  .ym-form .ym-gbox {
    padding: 0 2px 0 2px;
  }

  /**
  * @section styling form elements
  *
  */
  .ym-form input,
  .ym-form textarea {
    border: 1px solid #000000;
    line-height: 1em;
    font-family: Arial, Helvetica, sans-serif;
  }
  .ym-form input,
  .ym-form textarea {
    padding: 4px 0.3em;
  }
  .ym-form select {
    padding: 3px 2px 3px 1px;
    background: #ffffff;
  }
  .ym-form input:focus,
  .ym-form textarea:focus,
  .ym-form text:focus,
  .ym-form input:hover,
  .ym-form textarea:hover,
  .ym-form text:hover,
  .ym-form input:active,
  .ym-form textarea:active,
  .ym-form text:active {
    border: 1px #fabb00 solid;
    background: #fef1cc;
  }
  .ym-form input:focus,
  .ym-form textarea:focus,
  .ym-form text:focus,
  .ym-form select:focus {
    outline: 2px solid #000000;
  }
  .ym-form input:focus:focus::-moz-focus-inner,
  .ym-form textarea:focus:focus::-moz-focus-inner,
  .ym-form text:focus:focus::-moz-focus-inner,
  .ym-form select:focus:focus::-moz-focus-inner {
    border: none;
  }
  .ym-form optgroup {
    font-family: Arial, Helvetica, sans-serif;
    font-style: normal;
    font-weight: bold;
  }
  .ym-form .ym-fbox-check input,
  .ym-form input[type="image"],
  .ym-form input[type="radio"],
  .ym-form input[type="checkbox"] {
    border: 0 none !important;
    background: transparent !important;
  }
  .ym-form .ym-message {
    color: #272726;
    margin-bottom: 0.5em;
  }
  .ym-form .ym-required {
    color: #880000;
    font-weight: bold;
  }
  .ym-form .ym-error {
    background-color: lightpink;
  }
  .ym-form .ym-error label {
    color: #880000;
    font-weight: normal;
  }
  .ym-form .ym-error input,
  .ym-form .ym-error textarea {
    border: 1px #880000 solid;
  }
  .ym-form .ym-error input:hover,
  .ym-form .ym-error input:focus,
  .ym-form .ym-error textarea:hover,
  .ym-form .ym-error textarea:focus {
    border: 1px #880000 solid !important;
  }
  .ym-form .ym-error .ym-message {
    color: #880000;
    font-weight: bold;
    margin-top: 0;
  }

  .ym-fbox-text,
  .ym-fbox-select,
  .ym-fbox-check,
  .ym-fbox-button {
    margin: 0 0 1.42857em 0;
  }

  /**
  * @section Buttons
  * inspired from: Catalin Rosu (http://www.red-team-design.com/just-another-awesome-css3-buttons)
  */
  .ym-button,
  .ym-form button,
  .ym-form input[type="button"],
  .ym-form input[type="reset"],
  .ym-form input[type="submit"] {
    background: #fabb00;
    display: inline-block;
    white-space: nowrap;
    border: none;
    color: #272726 !important;
    cursor: pointer;
    font: normal 1em/2em Arial, Helvetica;
    margin: 0 0.75em 0 0;
    padding: 0 1.5em;
    overflow: visible;
    /* removes extra side spacing in IE */
    text-decoration: none !important;
  }
  .ym-button:hover,
  .ym-form button:hover,
  .ym-form input[type="button"]:hover,
  .ym-form input[type="reset"]:hover,
  .ym-form input[type="submit"]:hover {
    background-color: #fde6a3;
  }
  .ym-button:active,
  .ym-form button:active,
  .ym-form input[type="button"]:active,
  .ym-form input[type="reset"]:active,
  .ym-form input[type="submit"]:active {
    position: relative;
    top: 1px;
  }
  .ym-button:focus,
  .ym-form button:focus,
  .ym-form input[type="button"]:focus,
  .ym-form input[type="reset"]:focus,
  .ym-form input[type="submit"]:focus {
    outline: 2px solid #000000;
    background: #fef1cc;
  }
  .ym-button:focus:focus::-moz-focus-inner,
  .ym-form button:focus:focus::-moz-focus-inner,
  .ym-form input[type="button"]:focus:focus::-moz-focus-inner,
  .ym-form input[type="reset"]:focus:focus::-moz-focus-inner,
  .ym-form input[type="submit"]:focus:focus::-moz-focus-inner {
    border: none;
  }

  /* If line-height can't be modified, then fix Firefox spacing with padding */
  .ym-form input[type=button]::-moz-focus-inner,
  .ym-form input[type=reset]::-moz-focus-inner,
  .ym-form input[type=submit]::-moz-focus-inner {
    padding: .4em;
  }

  /* The disabled styles */
  .ym-form button[disabled],
  .ym-form button[disabled]:hover,
  .ym-form input[type=button][disabled],
  .ym-form input[type=button][disabled]:hover,
  .ym-form input[type=reset][disabled],
  .ym-form input[type=reset][disabled]:hover,
  .ym-form input[type=submit][disabled],
  .ym-form input[type=submit][disabled]:hover,
  .ym-button.ym-disabled,
  .ym-button.ym-disabled:hover {
    background: #EEEEEE;
    color: #AAAAAA !important;
    border-color: #AAAAAA;
    cursor: default;
    text-shadow: none;
    position: static;
    box-shadow: none;
  }
}
@media all {
  /*
  * @section global typography settings
  *
  * vertical rhythm settings (based on em-unit)
  * -------------------------------------------
  * basefont-size:  14px (87.5%)
  * line-height  :  20px (factor: 1.42857) */
  /* (en) reset font size for all elements to standard (16 Pixel) */
  /* (de) Alle Schriftgrößen auf Standardgröße (16 Pixel) zurücksetzen */
  html * {
    font-size: 100%;
  }

  /**
  * (en) reset monospaced elements to font size 16px in all browsers
  * (de) Schriftgröße von monospaced Elemente in allen Browsern auf 16 Pixel setzen
  *
  * @see: http://webkit.org/blog/67/strange-medium/
  */
  textarea,
  pre,
  code,
  kbd,
  samp,
  var,
  tt {
    font-family: Consolas, "Lucida Console", "Andale Mono", "Bitstream Vera Sans Mono", "Courier New", Courier;
  }

  /* font-size: 14px; */
  body {
    font-family: "Ubuntu", sans-serif;
    font-size: 87.5%;
    color: #272726;
  }

  /*--- Headings | Überschriften ------------------------------------------------------------------------*/
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: "Ubuntu", sans-serif;
    font-weight: 600;
    color: #272726;
    margin: 0;
  }

  h2 {
    /* font-size: 32px; */
    font-size: 228.57143%;
    line-height: 1.25;
    margin: 0 0 0.625em 0;
  }

  h1 {
    /* font-size: 20px; */
    font-size: 142.85714%;
    line-height: 2;
    margin: 0 0 1em 0;
    padding: 0 0 1em;
    position: relative;
    /* h3 auf der Startseite */
  }
  main h1 {
    border-bottom: 1px solid #fabb00;
    line-height: 1.5;
    padding-left: 30px;
  }
  footer h3 {
    font-weight: normal;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  #cat00 main h1 {
    border-bottom: 0;
    font-weight: normal;
    line-height: 38px;
    padding-left: 50px;
    padding-bottom: 0;
  }
  #cat00 main h1 a {
    text-decoration: underline;
  }
  #cat00 main h1:before {
    height: 38px;
    top: 0;
    width: 38px;
  }
  #cat00 main .ym-v-links h1 {
    background-color: #fabb00;
    padding-bottom: 0;
  }
  #cat00 main .ym-v-links h1:before {
    background: transparent url("../images/schnellzugriff.png") repeat-x 0 0;
    content: '';
    display: block;
    height: 32px;
    left: 5px;
    top: 2px;
    width: 32px;
  }
  main h1:before {
    background: #fabb00;
    display: inline-block;
    content: '';
    float: left;
    height: 20px;
    left: 0;
    position: absolute;
    top: 0.2em;
    width: 20px;
  }

  h4 {
    /* font-size: 18px; */
    font-size: 128.57143%;
    line-height: 1.11111;
    margin: 0 0 1.11111em 0;
  }

  h5 {
    /* font-size: 16px; */
    font-size: 114.28571%;
    line-height: 1.25;
    margin: 0 0 1.25em 0;
  }

  h6 {
    /* font-size: 14px; */
    font-size: 100%;
    font-weight: bold;
    line-height: 1.42857;
    margin: 0 0 1.42857em 0;
  }

  footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
    color: #ffffff;
  }

  /* --- Lists | Listen  -------------------------------------------------------------------------------- */
  ul,
  ol,
  dl {
    font-size: 100%;
    line-height: 1.42857;
    margin: 0 0 1.42857em 0;
  }

  ul {
    list-style-type: none;
  }

  ol {
    list-style-type: decimal;
  }

  ul ul {
    list-style-type: none;
    margin-top: 0;
  }

  ol ol {
    list-style-type: lower-latin;
    margin-top: 0;
  }

  ol ul {
    list-style-type: none;
    margin-top: 0;
  }

  li {
    font-size: 100%;
    line-height: 1.42857;
    margin-left: 1.3em;
  }

  .ym-col3 section ul li {
    position: relative;
  }

  .ym-col3 section ol li:before {
    display: none;
  }

  #cat00 .ym-h-events ol,
  #cat00 .ym-h-news ol {
    list-style-type: none;
  }

  dt {
    font-weight: 500;
    /* font-size: 16px; */
    font-size: 114.28571%;
    line-height: 1.25;
  }

  dd {
    margin: 0 0 1.42857em 0.8em;
  }

  dd.ym-aside {
    font-style: italic;
  }

  /* --- general text formatting | Allgemeine Textauszeichnung ------------------------------------------ */
  p {
    font-size: 100%;
    line-height: 1.42857;
    margin: 0 0 1.42857em 0;
  }

  blockquote,
  cite,
  q {
    font-family: "Ubuntu", sans-serif;
    font-style: italic;
  }

  blockquote {
    background: transparent;
    color: #272726;
    margin: 1.42857em 0 0 1.5em;
  }

  strong,
  b {
    font-weight: bold;
  }

  em,
  i {
    font-style: italic;
  }

  big {
    /* font-size: 16px; */
    font-size: 114.28571%;
    line-height: 1.25;
  }

  small {
    /* font-size: 12px; */
    font-size: 85.71429%;
    line-height: 1.66667;
  }

  pre,
  code,
  kbd,
  tt,
  samp,
  var {
    font-size: 100%;
  }

  pre {
    font-size: 100%;
    line-height: 1.42857;
    margin: 0 0 1.42857em 0;
    white-space: pre;
    white-space: pre-wrap;
    word-wrap: break-word;
  }

  pre,
  code {
    color: #272726;
  }

  kbd,
  samp,
  var,
  tt {
    color: #272726;
    font-weight: bold;
  }

  var,
  dfn {
    font-style: italic;
  }

  acronym,
  abbr {
    border-bottom: 1px #272726 dotted;
    text-decoration: none;
    /* Browser CSS unterdrücken, damit alle nur die border-bottom haben */
    cursor: help;
    letter-spacing: .07em;
  }
  footer acronym, footer
  abbr {
    border-bottom: 1px #ffffff dotted;
  }

  sub,
  sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
  }

  sup {
    top: -0.5em;
  }

  sub {
    bottom: -0.25em;
  }

  mark {
    background: #fef1cc;
    color: #272726;
  }

  address {
    font-style: normal;
  }

  hr {
    color: #ffffff;
    background: transparent;
    margin: 0 0 0.71429em 0;
    padding: 0 0 0.64286em 0;
    border: 0;
    border-bottom: 1px #fabb00 solid;
  }

  /*--- Links ----------------------------------------------------------------------------------------- */
  a {
    color: #272726;
    background: transparent;
    text-decoration: underline;
  }

  a:active,
  a:focus,
  a:hover {
    outline: none;
  }

  /*h1 a {
    position: absolute;
    display: inline-block;
    height: 125px;
    top: 2.5em;
    right: 20px;
    z-index: 100;
    width: 293px;
  }*/
  h1 a:active,
  h1 a:focus,
  h1 a:hover {
    outline: 2px solid #fabb00;
  }

  /* externe und interne Links kennzeichnen */
  /* externe Links */
  .ym-col3 section a[href^="http:"],
  .ym-col3 section a[href^="https:"],
  .ym-col3 section a[href^="ftp:"] {
    background: url("../images/link_extern.png") 2px 50% no-repeat;
    padding-left: 13px;
  }

  /* interne Links */
  .ym-col3 section a[href^="http://alpen.de"],
  .ym-col3 section a[href^="https://alpen.de"],
  .ym-col3 section a[href^="http://www.alpen.de"],
  .ym-col3 section a[href^="https://www.alpen.de"] {
    background: url("../images/link_intern.png") 3px 50% no-repeat;
    padding-left: 15px;
  }

  /* /externe und interne Links kennzeichnen */
  /* Überschreiben von internen links */
  .ym-col3 section a.ym-lightbox,
  .ym-col3 section .ym-search-list a {
    background-image: none;
    display: inline-block;
    padding-left: 0;
    text-decoration: none;
  }

  #cat99 .ym-sitemap a {
    background-image: none;
    display: inline-block;
    text-decoration: none;
  }

  .ym-col3 section a:active,
  a:active {
    outline: 2px solid #000000;
  }


  footer .ym-accordion a:active,
  footer .ym-accordion a:focus,
  footer .ym-accordion a:hover {
    cursor: default;
    outline: none;
  }

  /* Bilder mit Lightbox bekommen eine Lupe, damit man sieht, das die vergrößert angeschaut werden können */
  .ym-col3 section figure {
    position: relative;
  }

  .ym-col3 section a.ym-lightbox:after {
    background-color: #fde6a3;
    border: 1px solid #fabb00;
    color: #000000;
    content: "+";
    font-size: 1.5em;
    line-height: 1ex;
    padding: 1px 4px 5px 4px;
    position: absolute;
    right: 2px;
    text-decoration: none;
    top: 2px;
  }

  /* Bilder mit Lightbox bekommen eine Lupe bei hover */
  .ym-col3 section a.ym-lightbox:active,
  .ym-col3 section a.ym-lightbox:hover,
  .ym-col3 section a.ym-lightbox:focus {
    background: #ffffff url("../images/img-hover.png") no-repeat scroll 50% 50%;
  }

  /* Bilder mit Lightbox werden tranzparent angezeigt, damit die Lupe sichtbar ist */
  .ym-col3 section a.ym-lightbox:active img,
  .ym-col3 section a.ym-lightbox:hover img,
  .ym-col3 section a.ym-lightbox:focus img {
    opacity: 0.50;
  }

  /* Footer h3 links nicht als solche anzeigen */
  footer h3 a {
    text-decoration: none;
  }

  /* --- images ------------------ */
  img,
  figure {
    line-height: 0;
    margin: 0;
  }

  .flexible,
  .flexible img {
    max-width: 100%;
    height: auto;
  }

  /* IE6 workaround - 2% space for possible borders */
  * html .flexible {
    width: 98%;
  }

  .bordered {
    border-bottom: 8px solid #fabb00;
  }

  img,
  .bordered {
    margin-bottom: 1em;
  }

  /* Damit die border am Bild sitzt und die galerie + slider haben keinen Abstand der nicht gewollt ist */
  .bordered img,
  .ym-img-links img,
  .ym-slider-img img,
  .ym-keyvisual img,
  .ym-col3 section ul.ym-gallery-sub img,
  .ym-col3 section ul.ym-gallery-sub .bordered,
  .ym-col3 section ul.ym-gallery-slider img {
    margin-bottom: 0;
  }

  /* näher an das Bild. Aber nicht zu nah */
  figcaption {
    margin-top: -0.5em;
  }

  /* Galerien - Liste */
  .ym-col3 section ul.ym-gallery-sub li,
  .ym-col3 section ul.ym-gallery-slider li {
    /* Den gelben Kasten wieder entfernen */
  }
  .ym-col3 section ul.ym-gallery-sub li:before,
  .ym-col3 section ul.ym-gallery-slider li:before {
    display: none;
  }

  /* Galerie (immer drei Bilder in einer Reihe */
  .ym-col3 section ul.ym-gallery-sub {
    overflow: hidden;
    margin: 0;
    padding: 0;
    list-style-type: none;
    /* margin-right für das letzte Bild entfernen */
    /* clear */
  }
  .ym-col3 section ul.ym-gallery-sub:after {
    content: "";
    display: table;
    clear: both;
  }
  .ym-col3 section ul.ym-gallery-sub li {
    float: left;
    margin: 0 2% 2% 0;
    padding: 0;
    list-style-type: none;
    width: 32%;
  }
  .ym-col3 section ul.ym-gallery-sub li figure,
  .ym-col3 section ul.ym-gallery-sub li a,
  .ym-col3 section ul.ym-gallery-sub li img,
  .ym-col3 section ul.ym-gallery-sub li .flexible img {
    height: auto;
    width: 100%;
  }
  .ym-col3 section ul.ym-gallery-sub li:nth-child(3n+3) {
    margin-right: 0;
    float: right;
  }

  /**
  * ----------------------------------------------------------------------- #
  *
  * Generic Content Classes
  *
  * (en) standard classes for positioning and highlighting
  * (de) Standardklassen zur Positionierung und Hervorhebung
  *
  * @section content-generic-classes
  */
  .highlight {
    color: #cc3300;
  }

  .dimmed {
    color: #ffffff;
  }

  .box {
    border-radius: 0.3em;
    border-width: 1px;
    border-style: solid;
    border-color: #888888;
    border-color: rgba(0, 0, 0, 0.3);
    box-shadow: inset 1px 1px 3px rgba(0, 0, 0, 0.2);
    color: #444444;
    color: rgba(0, 0, 0, 0.8);
    padding: 1.35714em;
    margin: 0 0 1.42857em 0;
  }
  .box > *:last-child {
    margin-bottom: 0;
  }

  .label {
    font-family: Verdana, Geneva, sans-serif;
    padding: 1px 6px 2px;
    display: inline-block;
    vertical-align: middle;
    letter-spacing: normal;
    white-space: nowrap;
    border-radius: 3px;
    background: #0066cc;
    color: #ffffff;
    font-size: 10px;
    line-height: 12px;
  }

  .info {
    background: #fef1cc;
  }

  .success {
    background: #88cc88;
  }

  .warning {
    background: #fabb00;
  }

  .error {
    background: #880000;
  }

  section.info,
  section.success,
  section.warning,
  section.error {
    display: table;
    table-layout: fixed;
    width: 100%;
    margin-bottom: 20px;
  }
  section.info .ym-wbox,
  section.success .ym-wbox,
  section.warning .ym-wbox,
  section.error .ym-wbox {
    border-right: none;
    padding: 20px 20px 0 20px;
  }
  section.info .ym-img.float-left,
  section.success .ym-img.float-left,
  section.warning .ym-img.float-left,
  section.error .ym-img.float-left {
    margin-left: -20px;
  }
  section.info .ym-img.float-right,
  section.success .ym-img.float-right,
  section.warning .ym-img.float-right,
  section.error .ym-img.float-right {
    margin-right: -20px;
  }
  section.info .ym-img:first-child,
  section.success .ym-img:first-child,
  section.warning .ym-img:first-child,
  section.error .ym-img:first-child {
    margin-top: -20px;
  }

  .float-left {
    float: left;
    display: inline;
    margin-right: 1em;
  }

  .float-right {
    float: right;
    display: inline;
    margin-left: 1em;
  }

  .ym-center {
    display: block;
    text-align: center;
    margin-right: auto;
    margin-left: auto;
  }

  /**
  * ------------------------------------------------------------------------------------------------- #
  *
  * Tables | Tabellen
  *
  * (en) Generic classes for table-width and design definition
  * (de) Generische Klassen für die Tabellenbreite und Gestaltungsvorschriften für Tabellen
  *
  * @section content-tables
  */
  table {
    margin: 0 0 1.42857em 0;
  }

  th,
  td {
    line-height: 1.42857em;
    padding-left: 0;
    padding-right: 1em;
    text-align: left;
    vertical-align: top;
  }
  footer th, footer
  td {
    padding-bottom: 0;
    padding-top: 0;
  }

  table.ym-table-highlight {
    border-bottom: 1px #fabb00 solid;
    border-collapse: collapse;
    border-top: 1px #fabb00 solid;
    color: #272726;
    margin: 0 0 1.28571em 0;
    width: 100%;
    /* Überschreiben, damit das margin-bottom von center keine Probleme macht */
  }
  table.ym-table-highlight .center {
    text-align: center;
  }
  table.ym-table-highlight.narrow {
    margin: 0 0 1.35714em 0;
  }
  table.ym-table-highlight.narrow th,
  table.ym-table-highlight.narrow td {
    padding: 0.67857em 0.5em;
    line-height: 1.35714;
  }
  table.ym-table-highlight th,
  table.ym-table-highlight td {
    padding: 0.67857em 0.5em;
  }
  table.ym-table-highlight.fixed {
    table-layout: fixed;
  }

  caption {
    font-variant: small-caps;
  }

  th *:first-child,
  td *:first-child {
    margin-top: 0;
  }

  th.nowrap,
  td.nowrap {
    white-space: nowrap;
  }

  main .ym-table-highlight thead th {
    background-color: #fabb00;
    border-bottom: none;
    border-right: 1px #fef1cc solid;
    color: #272726;
    text-align: left;
  }

  main .ym-table-highlight tbody th {
    background-color: #fabb00;
    border-top: 1px solid #fef1cc;
    text-align: left;
  }
  main .ym-table-highlight tbody tr.ym-row0 {
    background-color: #fef1cc;
  }
  main .ym-table-highlight tbody tr.ym-row1 {
    background-color: #fde6a3;
  }
  main .ym-table-highlight tbody td {
    text-align: left;
    border-bottom: 1px solid #fabb00;
    border-right: 1px #fabb00 solid;
  }
  main .ym-table-highlight tbody td:last-child {
    border-right: none;
  }

  footer table {
    border-bottom: 20px solid transparent;
    /* Trick um einen Abstand nach unten zu bekommen, da Margin hier nicht geht */
    color: #ffffff;
  }
  footer table td {
    border: none;
  }
  footer table th {
    border: none;
    font-weight: normal;
  }

  table.ym-simple td {
    padding: 0 0.5em;
  }
  table.ym-simple th {
    font-weight: normal;
    padding: 0 0.5em 0 0;
  }

  /* für große Tabellen */
  .mediaTableMenu {
    display: none;
    /* bei großen Bildschrimen */
  }
  .mediaTableMenu ul li:before {
    display: none !important;
  }

  .mediaTableMenuClosed {
    margin-bottom: 1em;
  }
  .mediaTableMenuClosed ul {
    display: none;
  }

  /* Microformat Button */
  .ym-col3 section a.ym-micro {
    background: #fabb00;
    display: inline-block;
    border: none;
    color: #272726;
    cursor: pointer;
    margin: 1em 0;
    padding: 0.5em 1.5em;
    text-decoration: none;
  }
  .ym-col3 section a.ym-micro:hover {
    background-color: #fde6a3;
  }
  .ym-col3 section a.ym-micro:active {
    position: relative;
    top: 1px;
  }
  .ym-col3 section a.ym-micro:focus {
    outline: 2px solid #000000;
    background: #fef1cc;
  }
}
@media screen {
  /* force vertical scrollbar */
  body {
    overflow-y: scroll;
  }

  /* Layout Module Configuration */
  .ym-wrapper {
    margin: 0 auto;
    max-width: 960px;
  }

  .ym-wbox {
    padding: 20px 0;
  }

  /* fallback for missing media queries support*/
  body > header, body > main, body > footer {
    min-width: 760px;
  }

  /* Basic Element Styling */
  header {
    background: transparent url("../images/bg-header.png") repeat-x 0 0;
    color: #272726;
  }
  header .ym-wbox {
    padding: 0 20px 0 0;
    position: relative;
  }

  .ym-logo {
    position: absolute;
    right: 20px;
    top: 2.5em;
    z-index: 100;
    /* Damit das immer über dem Slider liegt */
  }
  .ym-logo .ym-logo-text {
    background: transparent url("../images/alpen-logo.png") no-repeat 0 0;
    display: block;
    height: 125px;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    width: 293px;
  }
  .ym-logo strong,
  .ym-logo a {
    background: transparent;
    display: inline-block;
  }

  .ym-logo-footer {
    background: transparent url("../images/alpen-logo_negativ.png") no-repeat 0 0;
    display: block;
    float: right;
    text-indent: 100%;
    overflow: hidden;
    height: 125px;
    white-space: nowrap;
    width: 293px;
  }

  footer .ym-box-right {
    position: relative;
  }

  nav {
    background: transparent;
  }

  main {
    background: transparent url("../images/bg-main.png") repeat-x 0 0;
  }
  main .ym-wbox {
    border-right: 20px solid #ffffff;
    padding: 20px 0 40px 20px;
  }

 /*
* |-------------------------------------------------------|
* | navigation      |    content                          |
* | col 1 | fixed   |    col 3 | flexible                 |
* |                 |                                     |
* |-------------------------------------------------------|
*/
  .ym-col1 {
    float: left;
    width: 250px;
  }

  /* sidebar */
  .ym-col3 {
    margin: 0 0 0 0;
    overflow: hidden;
  }

  /* content */
  #cat99 .ym-col3 {
    margin-left: 250px;
  }

  /* Hervorgehobene Schnellzugriff Links auf der Startseite */
  .ym-v-links {
    background-color: #fde6a3;
  }
  .ym-v-links .ym-vlist {
    background-color: transparent;
    border-right: none;
    padding-bottom: 20px;
  }
  .ym-v-links .ym-vlist li {
    background-color: transparent;
    position: relative;
  }
  .ym-v-links .ym-vlist li:before {
    background: #fabb00;
    display: inline-block;
    content: "";
    float: left;
    height: 10px;
    left: 10px;
    position: absolute;
    top: 8px;
    width: 10px;
  }
  .ym-v-links .ym-vlist a {
    background-color: transparent;
    border: none;
    text-decoration: underline;
  }
  .ym-v-links .ym-vlist a:focus, .ym-v-links .ym-vlist a:hover, .ym-v-links .ym-vlist a:active {
    background: #272726;
    color: #fef1cc;
    text-decoration: none;
  }

  /* positionierung, damit Suche an der passenden Stelle ist */
  main .ym-wbox {
    position: relative;
  }

  .ym-searchform {
    position: absolute;
    right: 20px;
    top: 0;
  }

  /* ------- search form -------- */
  .ym-searchform {
    display: inline;
    float: right;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 2em;
    padding: 1.3em 0 0;
  }
  .ym-searchform #ym-q {
    -webkit-appearance: none;
    background: #ffffff;
    border: solid 1px #272726;
    border-radius: 15px;
    color: #000000;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 87.5%;
    line-height: 1em;
    outline: none;
    padding: 6px 0 5px 1em;
    width: 10em;
  }
  .ym-searchform button {
    -webkit-appearance: none;
    background: transparent;
    border: none;
    color: #fabb00;
    cursor: pointer;
    display: inline-block;
    font-size: 1em;
    height: 17px;
    line-height: 1;
    padding: 0;
    position: absolute;
    right: 10px;
    top: 23px;
    width: 17px;
  }
  .ym-searchform button img {
    margin-bottom: 0;
  }
  .ym-searchform button:focus {
    outline: 2px solid #000000;
  }
  .ym-searchform button:focus:focus::-moz-focus-inner {
    border: none;
  }

  /* Meta Navigation ueber Footer */
  #ym-nav-meta {
    background: #272726;
    color: #ffffff;
  }
  #ym-nav-meta .ym-wbox {
    padding: 0 20px 0 0;
  }
  #ym-nav-meta .ym-hlist ul li:first-child a {
    padding-left: 20px;
  }

  /* Footer */
  footer {
    background: #676767;
    color: #ffffff;
  }
  footer .ym-wbox {
    padding: 20px;
  }
  footer p {
    margin: 0;
  }
  footer a {
    color: #ffffff;
    text-decoration: underline;
  }
  footer a:active,
  footer a:hover,
  footer a:focus {
    background-color: transparent;
    outline: 2px solid #ffffff;
  }

  .ym-gbox {
    padding: 0 6px;
  }

  .ym-gbox-left {
    padding: 0 12px 0 0;
  }

  .ym-gbox-right {
    padding: 0 0 0 12px;
  }

  /* Für den Schnellzugriff auf der Startseite */
  #cat00 .ym-v-links.ym-gbox-right {
    padding-left: 0;
  }

  /* skip links styling */
  .ym-skiplinks a.ym-skip:focus,
  .ym-skiplinks a.ym-skip:active {
    background: #333333;
    border-bottom: 1px #000000 solid;
    color: #FFFFFF;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
  }

  /* Smartphone Buttons */
  button.ym-open-accordion-menu {
    display: none;
  }

  /* Smartphone Navigation */
  #ym-small {
    display: none;
  }
}
@media all {
  .bx-wrapper {
    position: relative;
  }

  #ym-sliderbox {
    margin-bottom: 40px;
  }

  #ym-slider {
    margin: 0;
    padding: 0;
  }

  #ym-slider li {
    margin: 0;
  }

  .ym-slider-img {
    float: right;
    position: relative;
  }

  .ym-slider-txt {
    font-size: 142.85714%;
    line-height: 1.5;
    margin: 0 627px 0 0;
    padding-top: 20px;
    position: relative;
    z-index: 20;
  }
  .ym-slider-txt:after {
    background: transparent url("../images/sprechblase.png") no-repeat 0 0;
    content: '';
    display: block;
    height: 233px;
    position: absolute;
    right: -99px;
    top: 0;
    width: 204px;
    z-index: -1;
  }
  .ym-slider-txt h4 {
    font-size: 100% !important;
    font-weight: bold;
    margin-bottom: 0;
  }

  #ym-sliderbox .bx-controls {
    background-color: rgba(255, 255, 255, 0.8);
    bottom: 0;
    line-height: 38px;
    padding: 0;
    position: absolute;
    right: 0;
    width: 607px;
    z-index: 60;
  }

  #ym-sliderbox .bx-pager-item a,
  #ym-sliderbox .bx-controls-auto-item a {
    float: left;
    margin: 0 0.5em;
    padding: 0;
  }

  #ym-sliderbox .bx-pager-item a {
    background-color: #000000;
    border: 2px solid #000000;
    border-radius: 100%;
    display: block;
    height: 24px;
    overflow: hidden;
    text-indent: -1000px;
    width: 24px;
  }
  #ym-sliderbox .bx-pager-item a.active, #ym-sliderbox .bx-pager-item a:active, #ym-sliderbox .bx-pager-item a:hover, #ym-sliderbox .bx-pager-item a:focus {
    background-color: #ffffff;
  }
  #ym-sliderbox .bx-pager-item a:hover, #ym-sliderbox .bx-pager-item a:focus {
    outline: 2px solid #000000;
  }

  #ym-sliderbox .bx-controls-auto-item a:active, #ym-sliderbox .bx-controls-auto-item a:hover, #ym-sliderbox .bx-controls-auto-item a:focus {
    outline: 2px solid #000000;
  }

  #ym-sliderbox .bx-controls::before {
    content: '';
    display: table;
  }

  #ym-sliderbox .bx-controls::after {
    clear: both;
    content: '.';
    display: block;
    font-size: 0;
    height: 0;
    visibility: hidden;
  }

  .bx-start,
  .bx-stop {
    display: block;
  }

  .bx-start.active,
  .bx-stop.active {
    display: none;
  }

  /* durch bilder ersetzen */
  .bx-start,
  .bx-stop {
    display: block;
    height: 26px;
    line-height: 38px;
    overflow: hidden;
    padding: 0;
    text-indent: -1000px;
    width: 26px;
  }
  .bx-start:active, .bx-start:hover, .bx-start:focus,
  .bx-stop:active,
  .bx-stop:hover,
  .bx-stop:focus {
    background-color: transparent;
    outline: 2px solid #000000;
  }

  .bx-start {
    background: transparent url("../images/slider_start.png") no-repeat center center;
  }

  .bx-stop {
    background: transparent url("../images/slider_pause.png") no-repeat center center;
  }

  /* Ausrichten nach rechts */
  .bx-pager,
  .bx-controls-auto {
    float: right;
    padding: 5px 0;
  }

  .bx-pager-item {
    float: left;
  }
}
@media all {
  /* Startseite Links mit Bild + Überschrift */
  .ym-img-links {
    margin-top: 40px;
  }
  .ym-img-links a {
    position: relative;
    border-bottom: 5px solid #fabb00;
    display: block;
  }
  .ym-img-links a h3 {
    background-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.9);
    bottom: 0;
    left: 0;
    padding-bottom: 0;
    padding-left: 5% !important;
    position: absolute;
    margin-bottom: 0;
    width: 95%;
  }
  .ym-img-links a h3:before {
    display: none;
  }
  .ym-img-links a:focus, .ym-img-links a:hover, .ym-img-links a:active {
    background-color: #fabb00;
    outline: 2px solid #000000;
  }

  /* Ende - Startseite Links mit Bild + Überschrift */
}
@media screen, projection {
  /* Tabs auf Suchergebnisseite */
  .tabs {
    margin: 0 0 1.5em 0;
  }
  .tabs ul.tabs-list {
    font-size: 1em;
    display: table;
    table-layout: fixed;
    list-style-type: none;
    margin: 0;
    position: relative;
    z-index: 1;
  }
  .tabs ul.tabs-list li {
    margin: 0 4px 0 0;
    border: 0 none;
    display: inline;
    float: left;
    padding: 0;
  }
  .tabs ul.tabs-list li:before {
    display: none;
  }
  .tabs ul.tabs-list li a {
    font-size: 1em;
    line-height: 1.5;
    padding: 0.75em;
    background: transparent;
    display: block;
    float: left;
    font-weight: normal;
    margin: 0;
  }
  .tabs ul.tabs-list li a:focus, .tabs ul.tabs-list li a:hover, .tabs ul.tabs-list li a:active {
    background: #ffe49a;
    color: #000000;
    font-weight: normal;
    outline: 0 none;
    text-decoration: none;
  }
  .tabs ul.tabs-list li.current a,
  .tabs ul.tabs-list li.current a:focus,
  .tabs ul.tabs-list li.current a:hover,
  .tabs ul.tabs-list li.current a:active {
    background: #ffe49a;
    color: #000000;
    border-bottom: 0 none;
    font-weight: bold;
    text-decoration: none;
  }
  .tabs .content {
    background: #ffe49a;
    clear: both;
    padding: 20px;
    position: relative;
    top: -1px;
    margin-bottom: -1px;
  }
  .tabs .content dd.ym-aside {
    margin-top: -1em;
  }

  /* hiding texts visually */
  .tabs .tabhead {
    position: absolute;
    left: -32768px;
  }

  .tabs .current-info,
  .tabs .accessibletabsanchor {
    left: -999em;
    position: absolute;
  }

 /** Avoid margin collapsing to enable correct sync of all tabs
  *
  * @workaround
  * @affected all browsers
  * @css-for all browsers
  * @valid yes
*/
  .tabs .tab-content {
    *overflow: hidden;
  }
}
/* Make tabs printable */
@media print {
  .tabs .tabs-list {
    display: none !important;
  }
  .tabs .tabbody,
  .tabs .tabhead {
    display: block !important;
  }
}
@media screen, projection {
  /* colorbox config */
  #colorbox, #cboxOverlay, #cboxWrapper {
    left: 0px;
    overflow: hidden;
    position: absolute;
    top: 0px;
    z-index: 9999;
  }

  #cboxWrapper {
    max-width: none;
  }

  #cboxOverlay {
    height: 100%;
    position: fixed;
    width: 100%;
  }

  #cboxMiddleLeft, #cboxBottomLeft {
    clear: left;
  }

  #cboxContent {
    position: relative;
  }

  #cboxLoadedContent {
    overflow: auto;
  }

  #cboxTitle {
    margin: 0px;
  }

  #cboxLoadingOverlay, #cboxLoadingGraphic {
    height: 100%;
    left: 0px;
    position: absolute;
    top: 0px;
    width: 100%;
  }

  #cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
    cursor: pointer;
  }

  .cboxPhoto {
    border: 0px none;
    display: block;
    float: left;
    margin: auto;
    max-width: none;
  }

  .cboxIframe {
    border: 0px none;
    display: block;
    height: 100%;
    width: 100%;
  }

  #colorbox, #cboxContent, #cboxLoadedContent {
    box-sizing: content-box;
  }

  #cboxOverlay {
    background: transparent url("../images/cbox-overlay.png") repeat scroll 0px 0px;
  }

  #colorbox {
    outline: 0px none;
  }

  #cboxContent {
    background: #FFFFFF none repeat scroll 0% 0%;
    border: 10px solid #FFFFFF;
    overflow: hidden;
    padding-bottom: 3.5em;
  }

  .cboxIframe {
    background: #FFFFFF none repeat scroll 0% 0%;
  }

  #cboxError {
    border: 1px solid #272726;
    padding: 50px;
  }

  #cboxLoadedContent {
    margin-bottom: 0.5em;
  }

  #cboxTitle {
    color: #272726;
    padding-left: 0.1em;
    text-align: left;
    width: 100%;
  }

  #cboxCurrent {
    bottom: 0.333em;
    color: #272726;
    font-size: 0.857em;
    left: 5em;
    position: absolute;
  }

  #cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
    background: transparent none repeat scroll 0% 0%;
    border: 0px none;
    margin: 0px;
    overflow: visible;
    padding: 0px;
    width: auto;
  }

  #cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
    outline: 0px none;
  }

  #cboxSlideshow {
    bottom: 4px;
    color: #272726;
    position: absolute;
    right: 30px;
  }

  #cboxPrevious {
    background: transparent url("../images/cbox-controls.png") no-repeat scroll -75px 0px;
    bottom: 0px;
    height: 25px;
    left: 0px;
    position: absolute;
    text-indent: -9999px;
    width: 25px;
  }

  #cboxPrevious:hover, #cboxPrevious:focus {
    background-position: -75px -25px;
  }

  #cboxNext {
    background: transparent url("../images/cbox-controls.png") no-repeat scroll -50px 0px;
    bottom: 0px;
    height: 25px;
    left: 27px;
    position: absolute;
    text-indent: -9999px;
    width: 25px;
  }

  #cboxNext:hover, #cboxNext:focus {
    background-position: -50px -25px;
  }

  #cboxClose {
    background: transparent url("../images/cbox-controls.png") no-repeat scroll -25px 0px;
    bottom: 0px;
    height: 25px;
    position: absolute;
    right: 0px;
    text-indent: -9999px;
    width: 25px;
  }

  #cboxClose:hover, #cboxClose:focus {
    background-position: -25px -25px;
  }

  #cboxPrevious:focus,
  #cboxNext:focus,
  #cboxClose:focus {
    outline: 2px solid #000000;
  }
  #cboxPrevious:focus:focus::-moz-focus-inner,
  #cboxNext:focus:focus::-moz-focus-inner,
  #cboxClose:focus:focus::-moz-focus-inner {
    border: none;
  }
}
/* reset fallback values in modern browsers */
@media screen and (min-width: 0px) {
  body > header,
  body > nav,
  body > main,
  body > footer {
    min-width: 0;
  }
}
@media screen and (min-width: 801px) {
  /* formatieren von Selectfeldern, wegen Bug von Android 4-1-2 ->
  http://stackoverflow.com/questions/14744437/html-select-box-not-showing-drop-down-arrow-on-android-version-4-0-when-set-with
*/
  .ym-form select {
    border: 1px solid #000000;
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1em;
  }

  .ym-form select:focus,
  .ym-form select:hover,
  .ym-form select:active {
    background: #fef1cc;
    border: 1px #fabb00 solid;
  }

  .ym-form .ym-error select {
    border: 1px #880000 solid;
  }

  .ym-form .ym-error select:hover,
  .ym-form .ym-error select:focus {
    border: 1px #880000 solid !important;
  }
}
@media screen and (max-width: 820px) {
  footer .linearize-level-1, footer .linearize-level-1 > [class*="ym-c"], footer .linearize-level-1 > [class*="ym-g"] {
    /* linearization for grids and columns module */
    display: block;
    float: none;
    padding: 0;
    margin: 0;
    width: auto !important;
  }
  footer .linearize-level-1 > [class*="ym-c"] > [class*="ym-cbox"], footer .linearize-level-1 > [class*="ym-g"] > [class*="ym-gbox"] {
    /* reset defined gutter values */
    margin: 0;
    padding: 0;
    /* optional for containing floats */
    overflow: hidden;
  }

  .ym-col1 {
    float: none;
    padding-bottom: 20px !important;
    width: 100%;
  }

  /* Seite mit Sitemap hat sonst margin-left */
  #cat99 .ym-col3 {
    margin-left: 0;
  }

  footer .ym-wbox,
  .ym-wbox {
    padding-left: 20px;
    padding-right: 20px;
  }

  .ym-hlist ul {
    float: none;
  }

  #ym-nav .ym-hlist {
    padding-right: 0;
  }

  nav .ym-hlist ul {
    padding-left: 0;
    padding-right: 0;
  }

  header {
    background-image: none;
  }

  h1 {
    display: block;
    text-align: right;
  }

  .ym-logo {
    height: auto;
    max-width: 100%;
    position: static;
  }

  .ym-keyvisual,
  .ym-keyvisual img {
    height: auto;
    max-width: 100%;
  }

  /* positionierung, damit Suche an der passenden Stelle ist */
  main .ym-wbox {
    position: relative;
  }

  .ym-searchform {
    position: relative;
    right: 0;
    top: 0;
  }

  /* Haupt und Subnavigation */
  #ym-small {
    display: block;
  }

  #ym-small .ym-hlist {
    overflow: visible;
    /* damit die outline zu sehen ist */
  }

  #ym-small .ym-hlist ul li.active strong {
    border: 1px solid #000000;
  }

  #ym-small .ym-vlist ul li.active strong {
    background-color: #ffe18a;
  }

  #ym-nav .ym-hlist-inner,
  #ym-nav-sub {
    display: none;
  }

  button.ym-open-accordion-menu {
    background: #fabb00 url("../images/navigation_closed.png") no-repeat 95% 8px;
    border: 0;
    color: #000000;
    font-size: 142.85714%;
    line-height: 2;
    margin: 0;
    padding: 0 0 0 10px;
  }
  button.ym-open-accordion-menu.open {
    background: #fabb00 url("../images/navigation_open.png") no-repeat 95% 8px;
    border-bottom: 1px solid #fef1cc;
  }

  header .ym-hlist ul a {
    background-color: #ffde7b !important;
  }

  #ym-nav-sub-small li {
    background-color: #fff7e1;
  }

  .ym-col1 .ym-vlist ul li {
    background-color: transparent;
  }

  .ym-vlist a,
  .ym-vlist strong,
  .ym-vlist span {
    border-bottom: 1px solid #fef1cc;
    border-top: 1px solid #fabb00;
  }

  .ym-vlist li.active a.active,
  .ym-vlist li.active strong {
    border-bottom: 1px solid #fef1cc;
  }

  .ym-hlist ul li.active:after {
    display: none;
  }

  header .ym-hlist ul {
    border-bottom: 0;
  }

  header .ym-hlist ul li {
    margin: 0;
  }

  header .ym-hlist ul a {
    background-color: #fabb00;
    border-bottom: 1px solid #fef1cc;
  }

  header .ym-hlist ul li.active strong {
    background-color: #fef1cc;
    border-bottom: 1px solid #fde6a3;
  }

  header .ym-hlist ul li.active a {
    font-weight: bold;
  }

  header .ym-hlist ul li strong a {
    background-color: #fef1cc;
    font-weight: bold;
  }

  .ym-searchform {
    display: block;
    float: none;
    margin-top: 1.5em;
    margin-left: 20px;
    padding-bottom: 0;
    padding-top: 0;
    text-align: right;
    width: auto;
  }

  .ym-searchform #ym-q {
    border-radius: 25px;
    font-size: 142.85714%;
    height: 2em;
    padding: 0 2%;
    width: 95%;
  }

  .ym-searchform button {
    height: 25px;
    right: 20px;
    top: 8px;
    width: 25px;
  }

  main {
    background-image: none;
  }

  .ym-col1 .ym-vlist {
    margin-bottom: 0;
    min-height: 0;
  }

  .ym-vlist {
    border-right: 0;
  }

  .ym-vlist {
    /* level 1 */
    /* level 2 */
    /* level 3 */
    /* level 4 */
    /* level 5 */
    /* level 6 */
  }
  .ym-vlist ul {
    font-size: 142.85714%;
    line-height: 2;
  }
  .ym-v-links .ym-vlist ul {
    font-size: 100%;
  }
  .ym-v-links .ym-vlist ul li.active:before {
    top: 12px;
  }
  .ym-v-links .ym-vlist ul li a,
  .ym-v-links .ym-vlist ul li strong,
  .ym-v-links .ym-vlist ul li span {
    padding-left: 12%;
    width: 88%;
  }
  #cat99 .ym-col3 section .ym-sitemap .ym-vlist ul {
    /* font size von sitemap normal lassen */
    font-size: 100%;
  }
  .ym-vlist ul ul {
    font-size: 100%;
  }
  .ym-vlist li.active:before {
    top: 12px;
  }
  .ym-vlist li a,
  .ym-vlist li strong,
  .ym-vlist li span {
    padding-left: 6%;
    width: 94%;
  }
  .ym-vlist li ul li a,
  .ym-vlist li ul li strong,
  .ym-vlist li ul li span {
    padding-left: 11%;
    width: 89%;
  }
  .ym-vlist li ul li ul li a,
  .ym-vlist li ul li ul li strong,
  .ym-vlist li ul li ul li span {
    padding-left: 16%;
    width: 84%;
  }
  .ym-vlist li ul li ul li ul li a,
  .ym-vlist li ul li ul li ul li strong,
  .ym-vlist li ul li ul li ul li span {
    padding-left: 21%;
    width: 79%;
  }
  .ym-vlist li ul li ul li ul li ul li.active:before {
    left: 23%;
  }
  .ym-vlist li ul li ul li ul li ul li a,
  .ym-vlist li ul li ul li ul li ul li strong,
  .ym-vlist li ul li ul li ul li ul li span {
    padding-left: 26%;
    width: 74%;
  }
  .ym-vlist li ul li ul li ul li ul li ul li a,
  .ym-vlist li ul li ul li ul li ul li ul li strong,
  .ym-vlist li ul li ul li ul li ul li ul li span {
    padding-left: 31%;
    width: 69%;
  }
  .ym-vlist li.active strong {
    background-color: #fef1cc;
  }

  .ym-img-links {
    margin-top: 2em;
  }
  .ym-img-links a {
    margin-bottom: 2em;
  }

  footer {
    background-color: #272726;
  }

  footer .ym-wbox {
    padding: 0;
  }

  footer .ym-gl {
    border-top: 1px solid #676767;
  }

  #ym-nav-meta button,
  .ym-accordion h3 {
    background: transparent url("../images/footer-accordion_open.png") no-repeat 100% 8px;
  }

  #ym-nav-meta button.open,
  .ym-accordion h3.open {
    background: transparent url("../images/footer-accordion_closed.png") no-repeat 100% 8px;
  }

  #ym-nav-meta .ym-hlist ul li {
    margin: 0;
  }
  #ym-nav-meta .ym-hlist ul li a, #ym-nav-meta .ym-hlist ul li:first-child a {
    padding: 0 20px !important;
  }

  /* nach oben öffnen wenn js aktiv ist */
  html.js #ym-nav-meta .ym-wrapper,
  html.js footer .ym-g33 {
    position: relative;
  }



  #ym-nav-meta .ym-hlist,
  footer .ym-accordion-inner,
  footer .ym-accordion-inner {
    background-color: #272726;
  }

  footer .ym-accordion-inner {
    width: 100%;
  }
  footer .ym-accordion-inner > * {
    margin: 20px;
  }

  /* nach oben öffnen */
  .ym-logo-footer {
    display: none;
  }

  /* Menüanzeige */
  button.ym-open-accordion-menu {
    display: block;
    text-align: left;
    width: 100%;
  }
  button.ym-open-accordion-menu:focus {
    outline: 2px solid #000000;
  }
  button.ym-open-accordion-menu:focus:focus::-moz-focus-inner {
    border: 0;
  }

  #ym-nav,
  #ym-small {
    padding-left: 20px;
    padding-right: 0;
  }

  #ym-nav-meta .ym-wbox {
    padding: 0 20px;
  }

  #ym-nav-meta .ym-hlist ul {
    padding-left: 20px;
    padding-right: 20px;
  }

  #ym-nav-meta .ym-hlist ul li a,
  #ym-nav-meta .ym-hlist ul li strong {
    font-size: 100%;
  }

  .ym-hlist ul li {
    display: block;
    float: none;
  }

  #ym-nav-meta .ym-hlist ul li:first-child a {
    padding-left: 10px;
  }

  #ym-nav-meta button {
    border: 0;
    color: #ffffff;
    font-size: 142.85714%;
    line-height: 2;
    margin: 0;
    padding: 0;
  }
  #ym-nav-meta button:focus {
    outline: 2px solid #fabb00;
  }
  #ym-nav-meta button:focus:focus::-moz-focus-inner {
    border: 0;
  }

  #ym-nav-meta li.ym-top a:active,
  #ym-nav-meta li.ym-top a:hover,
  #ym-nav-meta li.ym-top a:focus {
    background: #272726 !important;
    color: #ffffff !important;
  }

  footer address,
  footer table {
    padding-bottom: 2em;
  }

  footer table {
    margin-bottom: 0;
  }

  footer .ym-accordion {
    padding-left: 20px;
    padding-right: 20px;
  }
  footer .ym-accordion a:active,
  footer .ym-accordion a:focus,
  footer .ym-accordion a:hover {
    outline: 2px solid #ffffff;
  }

  /* Tabellen scrollbar machen */
  .ym-table,
  .ym-large-table {
    overflow-x: scroll;
    margin-bottom: 2em;
  }

  .ym-table::-webkit-scrollbar,
  .ym-large-table::-webkit-scrollbar {
    width: 100%;
    height: 10px;
  }

  .ym-table::-webkit-scrollbar-track,
  .ym-large-table::-webkit-scrollbar-track {
    background-color: #ffffff;
  }

  .ym-table::-webkit-scrollbar-thumb,
  .ym-large-table::-webkit-scrollbar-thumb {
    background-color: #272726;
  }

  .mediaTableMenu {
    display: block;
  }

  .mediaTableMenu ul {
    margin: 20px 0;
  }
  .mediaTableMenu ul li {
    margin-left: 0;
  }
  .mediaTableMenu ul li.closer {
    margin-top: 10px;
  }

  .ym-accordion h3,
  button {
    cursor: pointer;
  }

  .ym-col3 section .ym-paging li.previous {
    margin-bottom: 1.5em;
  }

  .ym-columnar label, .ym-columnar .ym-label,
  .ym-columnar input, .ym-columnar textarea, .ym-columnar select {
    float: none;
  }

  .ym-columnar .ym-fbox-check input, .ym-columnar .ym-message {
    margin-left: 0;
  }

  .ym-form input, .ym-form textarea, .ym-form select,
  .ym-columnar label, .ym-columnar .ym-label {
    width: 100%;
  }

  /* slider wird anders ausgerichtet */
  #ym-sliderbox {
    background-color: #fabb00;
  }

  #ym-slider li {
    background-color: #fabb00;
  }

  .ym-slider-img,
  .ym-slider-img .flexible img {
    float: none;
    width: 100%;
    height: auto;
  }

  .ym-slider-txt {
    margin-right: 0;
    padding: 5% 5% 10% 5%;
    width: 90%;
  }
  .ym-slider-txt:after {
    display: none;
  }

  #ym-sliderbox .bx-controls-auto {
    float: left;
    padding: 5px 0 0 20px;
  }

  #ym-sliderbox .bx-controls {
    background-color: #fabb00;
    float: none;
    text-align: center;
    width: 100%;
  }

  #ym-sliderbox .bx-pager {
    background-color: transparent;
    display: inline-block;
    float: none;
    text-align: center;
    width: auto;
    padding-left: 0;
  }

  .ym-keyvisual img {
    height: auto;
    width: 100%;
  }

  /* Formular ausrichtung */
  .ym-columnar fieldset .ym-fbox-button, fieldset.ym-columnar .ym-fbox-button {
    padding-left: 0;
  }

  /* Tab Anpassungen */
  .tabs ul.tabs-list li {
    margin-bottom: 0.5em;
  }

  #ym-contacts h4 a:active, #ym-contacts h4 a:hover, #ym-contacts h4 a:active,
  #ym-downloads h4 a:active,
  #ym-downloads h4 a:hover,
  #ym-downloads h4 a:active,
  #ym-links h4 a:active,
  #ym-links h4 a:hover,
  #ym-links h4 a:active {
    color: #ffffff;
    cursor: pointer;
    outline: none;
    background: #000000;
  }
  #ym-contacts h4:active, #ym-contacts h4:hover, #ym-contacts h4:active,
  #ym-downloads h4:active,
  #ym-downloads h4:hover,
  #ym-downloads h4:active,
  #ym-links h4:active,
  #ym-links h4:hover,
  #ym-links h4:active {
    cursor: pointer;
  }
  .js #ym-contacts h4:before, .js
  #ym-downloads h4:before, .js
  #ym-links h4:before {
    background: transparent url("../images/accordion_plus.png") no-repeat 0 0;
  }

  /* Nur wenn JS aktiv ist, wird das togglen angezeigt von Kontakt */
  .js #ym-contacts .ym-closed, .js
  #ym-downloads .ym-closed, .js
  #ym-links .ym-closed {
    display: inline-block;
  }
  .js #ym-contacts h4.open .ym-closed, .js
  #ym-downloads h4.open .ym-closed, .js
  #ym-links h4.open .ym-closed {
    display: none;
  }
  .js #ym-contacts h4.open .ym-open, .js
  #ym-downloads h4.open .ym-open, .js
  #ym-links h4.open .ym-open {
    display: inline-block;
  }
}
@media screen and (max-width: 700px) {
  /* Linearisation for Grid- and Column-Module, based on CSS class .linearize-level-1 */
  main .ym-img-links.linearize-level-1 .ym-gl {
    width: 50%;
  }
  main .ym-img-links.linearize-level-1 .ym-gr {
    float: left;
    width: 50%;
    margin-left: 0;
  }
  main .ym-img-links.linearize-level-1 .ym-gl,
  main .ym-img-links.linearize-level-1 .ym-gr {
    margin-bottom: 1em;
  }
  main .ym-img-links.linearize-level-1 .ym-gbox-right {
    padding: 0 12px 0 0;
  }
  main .ym-img-links.linearize-level-1 .flexible,
  main .ym-img-links.linearize-level-1 .flexible img {
    width: 100%;
  }

  main .ym-equalize.linearize-level-1, main .ym-equalize.linearize-level-1 > [class*="ym-c"], main .ym-equalize.linearize-level-1 > [class*="ym-g"] {
    /* linearization for grids and columns module */
    display: block;
    float: none;
    padding: 0;
    margin: 0;
    width: auto !important;
  }
  main .ym-equalize.linearize-level-1 > [class*="ym-c"] > [class*="ym-cbox"], main .ym-equalize.linearize-level-1 > [class*="ym-g"] > [class*="ym-gbox"] {
    /* reset defined gutter values */
    margin: 0;
    padding: 0;
    /* optional for containing floats */
    overflow: hidden;
  }
  main .ym-equalize.linearize-level-1 .ym-gl {
    float: left;
    width: 50% !important;
  }
  main .ym-equalize.linearize-level-1 .ym-gr {
    clear: left;
  }

  main .ym-v-links .ym-vlist ul li a {
    padding-left: 6%;
    width: 94%;
  }
}
@media screen and (max-width: 565px) {
  main .ym-equalize.linearize-level-1, main .ym-equalize.linearize-level-1 > [class*="ym-c"], main .ym-equalize.linearize-level-1 > [class*="ym-g"] {
    /* linearization for grids and columns module */
    display: block;
    float: none;
    padding: 0;
    margin: 0;
    width: auto !important;
  }
  main .ym-equalize.linearize-level-1 > [class*="ym-c"] > [class*="ym-cbox"], main .ym-equalize.linearize-level-1 > [class*="ym-g"] > [class*="ym-gbox"] {
    /* reset defined gutter values */
    margin: 0;
    padding: 0;
    /* optional for containing floats */
    overflow: hidden;
  }
  main .ym-equalize.linearize-level-1 .ym-gl,
  main .ym-equalize.linearize-level-1 .ym-gr {
    margin-bottom: 1em;
  }
  main .ym-equalize.linearize-level-1 .ym-gr {
    float: none;
    width: 100%;
  }

  .ym-vlist {
    /* level 1 */
    /* level 2 */
    /* level 3 */
    /* level 4 */
    /* level 5 */
    /* level 6 */
  }
  .ym-vlist li a,
  .ym-vlist li strong,
  .ym-vlist li span {
    padding-left: 7%;
    width: 93%;
  }
  .ym-vlist li ul li a,
  .ym-vlist li ul li strong,
  .ym-vlist li ul li span {
    padding-left: 12%;
    width: 88%;
  }
  .ym-vlist li ul li ul li a,
  .ym-vlist li ul li ul li strong,
  .ym-vlist li ul li ul li span {
    padding-left: 17%;
    width: 83%;
  }
  .ym-vlist li ul li ul li ul li a,
  .ym-vlist li ul li ul li ul li strong,
  .ym-vlist li ul li ul li ul li span {
    padding-left: 22%;
    width: 78%;
  }
  .ym-vlist li ul li ul li ul li ul li.active:before {
    left: 23%;
  }
  .ym-vlist li ul li ul li ul li ul li a,
  .ym-vlist li ul li ul li ul li ul li strong,
  .ym-vlist li ul li ul li ul li ul li span {
    padding-left: 27%;
    width: 73%;
  }
  .ym-vlist li ul li ul li ul li ul li ul li a,
  .ym-vlist li ul li ul li ul li ul li ul li strong,
  .ym-vlist li ul li ul li ul li ul li ul li span {
    padding-left: 31%;
    width: 69%;
  }
}
@media screen and (max-width: 550px) {
  main .ym-img-links.linearize-level-1, main .ym-img-links.linearize-level-1 > [class*="ym-c"], main .ym-img-links.linearize-level-1 > [class*="ym-g"],
  main .linearize-level-1,
  main .linearize-level-1 > [class*="ym-c"],
  main .linearize-level-1 > [class*="ym-g"] {
    /* linearization for grids and columns module */
    display: block;
    float: none;
    padding: 0;
    margin: 0;
    width: auto !important;
  }
  main .ym-img-links.linearize-level-1 > [class*="ym-c"] > [class*="ym-cbox"], main .ym-img-links.linearize-level-1 > [class*="ym-g"] > [class*="ym-gbox"],
  main .linearize-level-1 > [class*="ym-c"] > [class*="ym-cbox"],
  main .linearize-level-1 > [class*="ym-g"] > [class*="ym-gbox"] {
    /* reset defined gutter values */
    margin: 0;
    padding: 0;
    /* optional for containing floats */
    overflow: hidden;
  }
  main .ym-img-links.linearize-level-1 .ym-gl,
  main .ym-img-links.linearize-level-1 .ym-gr,
  main .linearize-level-1 .ym-gl,
  main .linearize-level-1 .ym-gr {
    margin-bottom: 1em;
  }
  main .ym-img-links.linearize-level-1 .ym-gr,
  main .linearize-level-1 .ym-gr {
    float: none;
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .ym-col3 section ul.ym-gallery-sub {
    /* margin-right für das letzte Bild entfernen */
    /* clear */
  }
  .ym-col3 section ul.ym-gallery-sub li {
    margin: 0 2% 2% 0;
    width: 49%;
  }
  .ym-col3 section ul.ym-gallery-sub li:nth-child(3n+3) {
    margin-right: 2%;
    float: left;
  }
  .ym-col3 section ul.ym-gallery-sub li:nth-child(2n+2) {
    margin-right: 0;
    float: right;
  }
  .ym-col3 section ul.ym-gallery-sub li:nth-child(2n+3) {
    content: "";
    display: table;
    clear: both;
  }
}
@media screen and (max-width: 460px) {
  .ym-v-links .ym-vlist ul li a {
    padding-left: 10%;
    width: 90%;
  }
}
@media screen and (max-width: 400px) {
  .ym-vlist {
    /* level 1 */
    /* level 2 */
    /* level 3 */
    /* level 4 */
    /* level 5 */
    /* level 6 */
  }
  .ym-vlist li a,
  .ym-vlist li strong,
  .ym-vlist li span {
    padding-left: 9%;
    width: 91%;
  }
  .ym-vlist li ul li a,
  .ym-vlist li ul li strong,
  .ym-vlist li ul li span {
    padding-left: 14%;
    width: 86%;
  }
  .ym-vlist li ul li ul li a,
  .ym-vlist li ul li ul li strong,
  .ym-vlist li ul li ul li span {
    padding-left: 19%;
    width: 81%;
  }
  .ym-vlist li ul li ul li ul li a,
  .ym-vlist li ul li ul li ul li strong,
  .ym-vlist li ul li ul li ul li span {
    padding-left: 24%;
    width: 76%;
  }
  .ym-vlist li ul li ul li ul li ul li.active:before {
    left: 23%;
  }
  .ym-vlist li ul li ul li ul li ul li a,
  .ym-vlist li ul li ul li ul li ul li strong,
  .ym-vlist li ul li ul li ul li ul li span {
    padding-left: 29%;
    width: 71%;
  }
  .ym-vlist li ul li ul li ul li ul li ul li a,
  .ym-vlist li ul li ul li ul li ul li ul li strong,
  .ym-vlist li ul li ul li ul li ul li ul li span {
    padding-left: 33%;
    width: 67%;
  }
}
@media screen and (max-width: 400px) {
  /* img in ganzer Breite anzeigen */
  figure,
  img,
  figure.flexible,
  figure.flexible img,
  img.flexible {
    height: auto;
    width: 100%;
  }

  .ym-col3 section a.ym-lightbox,
  .ym-col3 section .ym-search-list a,
  .ym-col3 section a.ym-lightbox,
  .ym-col3 section .ym-search-list a,
  .ym-img-links a {
    width: 100%;
  }

  .float-left,
  .float-right {
    float: none;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-top: 0 !important;
  }

  /* img in ganzer Breite anzeigen */
}
@media screen and (max-width: 400px) {
  .ym-logo {
    margin-bottom: 10px;
  }

  .ym-logo .ym-logo-text,
  .ym-logo-footer {
    width: 146px !important;
    height: 62px !important;
    background-size: 146px 62px !important;
  }

  .ym-form fieldset.ym-fieldset-check {
    padding: 0;
  }

  .ym-col3 section .ym-paging li.previous {
    clear: left;
    display: block;
    float: left;
    margin-left: 0;
  }

  #ym-sliderbox .bx-controls-auto {
    display: none;
  }

  main .ym-v-links .ym-vlist ul li a {
    padding-left: 10%;
    width: 90%;
  }
}
@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (-moz-min-device-pixel-ratio: 2), only screen and (min-device-pixel-ratio: 2), only screen and (min-resolution: 192dpi), only screen and (min-resolution: 2dppx) {
  /* styles for Retina-type displays */
  .ym-logo .ym-logo-text {
    background: transparent url("../images/alpen-logo@2.png") no-repeat 0 0;
    background-size: 293px 125px;
  }

  .ym-logo-footer {
    background: transparent url("../images/alpen-logo_negativ@2.png") no-repeat 0 0;
    background-size: 293px 125px;
  }

  .ym-col3 section a.ym-lightbox:active,
  .ym-col3 section a.ym-lightbox:hover,
  .ym-col3 section a.ym-lightbox:focus {
    background: #ffffff url("../images/img-hover.png") no-repeat scroll 50% 50%;
    background-size: 74px 74px;
  }

  /* externe und interne Links kennzeichnen */
  /* externe Links */
  .ym-col3 section a[href^="http:"],
  .ym-col3 section a[href^="https:"],
  .ym-col3 section a[href^="ftp:"] {
    background: url("../images/link_extern.png") 2px 50% no-repeat;
    background-size: 9px 9px;
  }

  /* interne Links */
  .ym-col3 section a[href^="http://alpen.de"],
  .ym-col3 section a[href^="https://alpen.de"],
  .ym-col3 section a[href^="http://www.alpen.de"],
  .ym-col3 section a[href^="https://www.alpen.de"] {
    background: url("../images/link_intern@2.png") 3px 50% no-repeat;
    background-size: 11px 11px;
  }

  /* /externe und interne Links kennzeichnen */
  .ym-col3 section a.ym-lightbox,
  .ym-col3 section .ym-search-list a {
    background-image: none !important;
  }

  #cat00 main .ym-v-links h1:before {
    background: transparent url("../images/schnellzugriff@2.png") repeat-x 0 0;
    background-size: 32px 31px;
  }

  #ym-nav .ym-hlist button.ym-open-accordion-menu,
  .ym-col1 .ym-vlist button,
  #ym-small button.ym-open-accordion-menu {
    background: #fabb00 url("../images/navigation_closed@2.png") no-repeat 95% 8px;
    background-size: 25px 25px;
  }
  #ym-nav .ym-hlist button.ym-open-accordion-menu.open,
  .ym-col1 .ym-vlist button.open,
  #ym-small button.ym-open-accordion-menu.open {
    background: #fabb00 url("../images/navigation_open@2.png") no-repeat 95% 8px;
    background-size: 25px 25px;
  }

  #ym-nav-meta button,
  .ym-accordion h3 {
    background: transparent url("../images/footer-accordion_open@2.png") no-repeat 100% 8px;
    background-size: 25px 25px;
  }

  #ym-nav-meta button.open,
  .ym-accordion h3.open {
    background: transparent url("../images/footer-accordion_closed@2.png") no-repeat 100% 8px;
    background-size: 25px 25px;
  }

  .js #ym-contacts:before, .js
  #ym-downloads:before, .js
  #ym-links:before {
    background: transparent url("../images/accordion_ohne@2.png") no-repeat 0 0;
    background-size: 23px 30px;
  }
  .js #ym-contacts.open:before, .js
  #ym-downloads.open:before, .js
  #ym-links.open:before {
    background: transparent url("../images/accordion_minus@2.png") no-repeat 0 0;
    background-size: 23px 30px;
  }

  .bx-start {
    background: transparent url("../images/slider_start@2.png") no-repeat center center;
    background-size: 26px 26px;
  }

  .bx-stop {
    background: transparent url("../images/slider_pause@2.png") no-repeat center center;
    background-size: 26px 26px;
  }

  .ym-slider-txt:after {
    background: transparent url("../images/sprechblase@2.png") no-repeat center center;
    background-size: 204px 233px;
  }
}
@media only screen and (max-width: 820px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 820px) and (-moz-min-device-pixel-ratio: 2), only screen and (max-width: 820px) and (min-device-pixel-ratio: 2), only screen and (max-width: 820px) and (min-resolution: 192dpi), only screen and (max-width: 820px) and (min-resolution: 2dppx) {
  .js #ym-contacts:before, .js
  #ym-downloads:before, .js
  #ym-links:before {
    background: transparent url("../images/accordion_plus@2.png") no-repeat 0 0;
    background-size: 23px 30px;
  }
}
/* import print layout | Druck-Layout einbinden */
@media print {
  /**
  * @section basic layout preparation
  */
  /* (en) change font size unit to [pt] - avoids problems with [px] in Gecko based browsers */
  /* (de) Wechsel der der Schriftgrößen-Maßheinheit zu [pt] - Probleme mit [px] in Gecko-Browsern vermeiden */
  body {
    font-size: 10pt;
    padding: 0 5px;
  }

  /* (en) Hide unneeded container of the screenlayout in print layout */
  /* (de) Für den Druck nicht benötigte Container des Layouts abschalten */
  nav,
  .ym-searchform {
    display: none;
  }

  /*------------------------------------------------------------------------------------------------------*/
  /* (en) Avoid page breaks right after headings */
  /* (de) Vermeidung von Seitenumbrüchen direkt nach einer Überschrift */
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    page-break-after: avoid;
  }

  /* Spezifische Angaben für Printausgabe */
  .ym-col1,
  h1 img,
  #ym-sliderbox,
  #ym-nav-meta,
  .ym-col3 .ym-nav-anker {
    display: none !important;
  }

  h1 {
    margin-bottom: 0.5em;
  }

  .ym-col3 {
    margin-left: 0;
    width: 100%;
  }

  h1 .ym-print,
  .ym-accordion {
    display: block !important;
    margin-bottom: 1em;
  }

  main h1 {
    border-bottom: none;
    padding-left: 0;
  }
  main h1:before {
    display: none;
  }

  .ym-grid .ym-gl,
  .ym-grid .ym-gr {
    float: none;
    width: 100%;
  }

  .ym-img-links a,
  .bordered {
    border-bottom: none;
  }

  /* Bildergalerien mit passenden abständen versorgen (da mehr Bilder in eine Reihe passen) */
  .ym-col3 section ul.ym-gallery-sub {
    /* margin-right für das letzte Bild wider hinzufügen */
  }
  .ym-col3 section ul.ym-gallery-sub.ym-row-1 li.ym-gallery-sub-1 {
    margin-right: 12px;
  }
  .ym-col3 section ul.ym-gallery-sub.ym-row-2 li.ym-gallery-sub-2 {
    margin-right: 12px;
  }
  .ym-col3 section ul.ym-gallery-sub.ym-row-3 li.ym-gallery-sub-3 {
    margin-right: 12px;
  }
  .ym-col3 section ul.ym-gallery-sub.ym-row-4 li.ym-gallery-sub-4 {
    margin-right: 12px;
  }
  .ym-col3 section ul.ym-gallery-sub.ym-row-5 li.ym-gallery-sub-5 {
    margin-right: 12px;
  }

  /* listen wieder passend mit style-type */
  ul,
  ol ul {
    list-style-type: disc !important;
  }

  .ym-col3 ul li:before {
    display: none !important;
  }

  #ym-contacts {
    border-top: none;
  }

  #ym-contacts,
  #ym-downloads,
  #ym-links {
    border-bottom: none;
    padding-left: 0;
  }

  .ym-closed,
  .ym-open,
  .ym-logo-footer {
    display: none !important;
  }
}
