@charset "utf-8";
/* CSS Document */
html {
  font-size: 13px;
}
html, body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  font-family: 'Source Sans 3', sans-serif;
  color: #1e1e1e;
  margin: 0;
}
body.no-scroll {
  overflow: hidden;
}
p {
  line-height: 1.6;
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.wrapper {
  max-width: 1000px;
  margin: auto;
  position: relative;
  z-index: 2;
}
.container {
  width: 100%;
  height: auto;
  float: left;
  background-color: #fff;
  margin-top: 100px;
  margin-bottom: 100px;
}
.top {
  width: 100%;
  height: auto;
  float: left;
  padding: 40px 24px 30px 20%;
  background-color: #fff;
}
.logo {
  height: auto;
  width: 100%;
  float: left;
  padding-left: 24px;
}
.logo.small {
  display: none;
}
.logo img {
  max-width: 100%;
  height: auto;
  float: left;
}
.hero {
  width: 100%;
  height: auto;
  float: left;
  background-color: #efefef;
}
.navi {
  width: 100%;
  height: auto;
  float: left;
  padding: 0px 32px;
  position: relative;
}
.navi-inner {
  width: 100%;
  height: auto;
  float: left;
  padding-left: 20%;
  margin-bottom: 8px;
}
.wrap {
  width: 100%;
  height: auto;
  float: left;
  padding: 16px 16px 40px 16px;
}
.inner-row {
  width: 100%;
  height: auto;
  float: left;
}
.col {
  height: auto;
  float: left;
  padding: 8px;
}
.col-20 {
  width: 20%;
}
.col-30 {
  width: 30%;
}
.col-50 {
  width: 50%;
}
.col-80 {
  width: 80%;
}
.subnavi {
  padding-right: 0;
}
.footer {
  width: 100%;
  height: auto;
  float: left;
  background-color: #005EB8;
  padding-left: 20%;
}
@media (max-width: 1000px) {
  body {
    background-color: #005EB8;
  }
  body::before {
    content: '';
    width: 100%;
    height: 50%;
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 0;
    background-color: #fff;
  }
  div.bg-main {
    display: none;
  }
  .wrapper, .container {
    width: 100%;
    height: auto;
    float: left;
    padding: 0;
    margin: 0;
  }
  .wrap {
    padding: 8px;
  }
  .logo {
    padding-left: 16px;
  }
}
@media (max-width: 900px) {
  body.no-scroll {
    overflow: hidden;
  }
  .top {
    position: fixed;
    top: 0px;
    left: 0px;
    z-index: 999;
  }
  .logo {
    width: 600px;
  }
  .subnavi {
    display: none;
  }
  .col-80 {
    width: 100%;
  }
  .col-50 {
    width: 70%;
  }
  .top, .navi-inner {
    padding-left: 0;
  }
  .navi {
    padding-left: 16px;
    padding-right: 0px;
  }
  .wrap {
    padding: 0px;
  }
  .footer {
    width: 100%;
    float: left;
    padding-left: 0;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 1.3em;
  }
  .logo {
    width: auto;
  }
  .aside {
    width: 100%;
  }
  .content {
    width: 100%;
    padding-top: 36px;
  }
  .aside {
    padding-top: 36px;
  }
  .aside .teaser-frame {
    width: 33.3333%;
  }
}
@media (max-width: 760px) {
  .logo.general {
    display: none;
  }
  .logo.small {
    display: block;
    width: 200px;
    height: auto;
    float: left;
  }
}
@media (max-width: 570px) {
  .aside {
    padding-top: 36px;
  }
  .aside .teaser-frame {
    width: 100%;
  }

/* Grundregel fuer alle Bilder.
   Bisher gab es nur "figure.image img { max-width: 100% }" in typo3.css - das
   greift ausschliesslich bei Inhaltselementen mit Bild. Bilder in Teasern,
   News-Ausgaben und eigenen Templates konnten dadurch ueber ihren Container
   hinausragen, besonders auf schmalen Bildschirmen.
   height:auto haelt dabei das Seitenverhaeltnis, wenn die Breite begrenzt wird. */
img {
  max-width: 100%;
  height: auto;
}

/* Bilder in der News-Detailansicht fuellen die Spalte immer aus.
   f:image erzeugt feste Breiten (maxWidth=452) - ohne diese Regel bleiben
   kleinere Bilder schmal, groessere ragten frueher heraus.
   Bewusst NICHT global auf "img" gesetzt: Das wuerde Logo und Icons mitdehnen. */
.mediaelement-image img {
  width: 100%;
  height: auto;
}
