/**
  * @section hidden elements | Versteckte Elemente
  * @see www.yaml.de/en/documentation/basics/skip-links.html
  *
  * (de) Skip-Links und versteckte Inhalte
  */

  /* (de) Klassen für unsichtbare Elemente im Basislayout */
  .skip, .hideme, .print {
    position: absolute;
    top: -32768px;
    left: -32768px; /* LTR */
  }

  /* (de) Skip-Links für Tab-Navigation sichtbar schalten */
  .skip:focus,
  .skip:active {
    position: static;
    top: 0;
    left: 0;
  }

  /* skiplinks: technical setup */
  #skiplinks {
    position: absolute;
    top: 0px;
    left: -32768px;
    z-index: 1000;
    width:100%;
    margin: 0;
    padding: 0;
    list-style-type: none;   
  }
 
  #skiplinks a.skip:focus,
  #skiplinks a.skip:active {
    left: 32768px;
    outline: 0 none;
    position: absolute;
    width:100%;
  } 
  
  /**
  * Skiplinks
  *
  * (en) Visual styling for skiplink navigation
  * (de) Visuelle Gestaltung der Skiplink-Navigation
  *
  * @section content-skiplinks
  */
 
  #skiplinks a.skip:focus,
  #skiplinks a.skip:active {
    color:#fff;
    background:#333;
    border-bottom:1px #000 solid;
    padding:10px 0;
    text-decoration:none;
  }