@media print {


  /* ========================[ Basiselemente ]======================== */

  * {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
  }

  /* Remove shadow and background */
  *, *:before,
  *:after,
  p:first-letter,
  div:first-letter,
  blockquote:first-letter,
  li:first-letter,
  p:first-line,
  div:first-line,
  blockquote:first-line,
  li:first-line {
    background: transparent !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  /* ------------[ Pagebreak ]------------ */

  .page-break, .page-break-before {
    page-break-before: always;
  }

  .page-break-after {
    page-break-after: always;
  }

  .no-print {
    display: none;
  }

  /* ------------[ HTML ]------------ */

  html {
    font-size: 12px;
    padding: 0;
    margin: 0;
  }

  /* Section */
  article section {
    margin: 24px 0;
  }

  /* ------------[ Nummerierte Listen ]------------ */

  /* Placeholder WebKit browsers*/
  ::-webkit-input-placeholder {
    color: transparent;
  }

  /* Mozilla Firefox 4 to 18 */
  :-moz-placeholder {
    color: transparent;
  }

  /* Mozilla Firefox 19+ */
  ::-moz-placeholder {
    color: transparent;
  }

  /* Internet Explorer 10+*/
  :-ms-input-placeholder {
    color: transparent;
  }


  /* ========================[ Content-Bereich ]======================== */

  /* Padding */
  /* Colors*/
  /* Note: Black prints faster (http://www.sanbeiji.com/archives/953) (thanks to html5 boilerplate) */
  body {
    max-width: 21cm;
    font-family: arial;
    font-size: 12px;
    line-height: 16pt;
    color: #000 !important;
    background: #fff !important;
    padding: 24px;
    margin: 0 auto;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
  }

  /* ------------[ Header-Bereich ]------------ */

  header {
    position: relative;
  }

  /* Allgemein */
  .mainnav,
  .keyvisual-wrap,
  .nav-toggle-wrap {
    display: none;
  }


  /* ========================[ Schriften ]======================== */

  /* Font family Taken from bootstrap */
  /* Font size */
  /* Base */

  /* ------------[ Überschriften ]------------ */

  h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.2;
    color: #000;
    margin-top: 0;
    margin-bottom: 0.75rem;
  }

  h1 {
    font-size: 18px;
  }

  h2 {
    font-size: 16px;
  }

  h3 {
    font-size: 15px;
  }

  h4 {
    font-size: 14px;
  }

  h5 {
    font-size: 13px;
  }

  h6 {
    font-size: 12px;
  }

  /* ------------[ Absätze ]------------ */

  p, blockquote, table, ul, ol, dl {
    margin-top: 0;
    margin-bottom: 1.5rem; }

    p:last-child,
    ul:last-child,
    ol:last-child {
      margin-bottom: 0; }

  /* Intro */
  .intro {
    margin-bottom: 24px;
  }

  /* kleiner Text */
  .minitext {
    font-size: 13px;
  }


  /* ========================[ Contentelemente ]======================== */

  /* ------------[ Trennlinie ]------------ */

  hr {
    height: 0;
    border: 0;
    border-bottom: 2px solid #bbb;
    padding: 0;
    margin: 2.25rem 0;
  }

  /* ------------[ Links ]------------ */

  /* Links*/
  a, a:visited {
    color: #000;
    text-decoration: underline;
    word-wrap: break-word;
  }

  a.arrowlink {
    padding-left: 0;
  }

  .button {
    padding: 0;
  }

  /* ------------[ Bilder ]------------ */

  img.pic {
    display: block;
    max-width: 200px !important;
    border: 0;
    vertical-align: middle;
  }

  .pic-description {
    font-size: 14px;
  }

  .image-gallery li {
    display: inline-block;
    vertical-align: top;
  }

  /* ------------[ Tabellen ]------------ */

  table {
    border-collapse: collapse;
  }

  thead {
    display: table-header-group;
  }

  tr, .modern tr {
    border: none;
  }

  table, th, td, table.modern, .modern th, .modern td {
    border: 1px solid #bdbdbd;
  }

  td, th, .modern th, .modern td {
    padding: 7px 14px;
    page-break-inside: avoid;
  }


  /* ========================[ Sonderelmente ]======================== */

  /* ------------[ Infobox ]------------ */

  .infobox {
    border: 2px solid #e7e7e7;
    padding: 12px;
  }

  .infobox.rahmen {
    padding: 12px;
  }

  .infobox.hgColor, .infobox.hgColor a {
    color: #000;
  }

  /* ------------[ Teaser ]------------ */

  .teaser-flex .teaser {
    width: calc(100% / 2 - 48px);
    padding: 0;
    margin-right: 24px;
  }

  .teaser-flex .teaser-image {
    height: auto;
  }

  .teaser.clickbox {
    padding: 0;
  }

  .teaser.clickbox span.button {
    display: none;
  }

  /* ------------[ Akkordion ]------------ */

  .accordion .acc-item .title h2, .title h3 {
    font-size: 16px;
    color: #000;
  }

  /* ------------[ Call to Action ]------------ */

  .calltoaction {
    font-size: 1rem;
    text-align: left;
    padding: 0;
    margin: 0;
  }

  .calltoaction span {
    font-size: 1rem;
  }

  /* ========================[ Sonstiges ]======================== */

  /* ------------[ Others ]------------ */
  blockquote {
    border: 0;
    border-left: 5px solid #bbb;
    padding: 12px 1.5rem;
    margin-left: 1px;
  }

    [dir='rtl'] blockquote {
      border-left: 0;
      border-right: 5px solid #bbb;
      margin-left: 0;
      margin-right: 1px;
    }

    blockquote:first-child {
      margin-top: 0;
    }

      blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child {
        margin-bottom: 0;
      }

    blockquote footer {
      display: block;
      font-size: 80%;
    }

  /* ------------[ Others ]------------ */

  dt {
    font-weight: bold;
  }

  dd {
    margin: 0;
    margin-bottom: 0.75rem;
  }

    abbr[title], acronym[title] {
      border: 0;
      text-decoration: none;
    }

  abbr[title].no-reformat:after, acronym[title].no-reformat:after {
    content: '';
  }

  .no-reformat abbr:after, .no-reformat acronym:after, .no-reformat a:after {
    content: '';
  }

  /* ------------[ Code, Pre ]------------ */

  code, pre, kbd {
    font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
    font-size: 85%;
    border: 1px solid #bbb;
  }

  code, kbd {
    padding: 3px;
  }

  pre {
    padding: 10px 12px;
    margin-bottom: 1.5rem;
  }

  pre code, kbd {
    border: 0;
  }
}
