@charset "UTF-8";
/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* DEFAULT SETTINGS
*
* --------------------------------------------------------------------------- */
/* @link https://utopia.fyi/type/calculator?c=375,18,1.2,1600,20,1.25,5,2,&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l&g=s,l,xl,12 */
:root {
  --fluidTypeStep--3: clamp(0.5364rem, 0.5928rem + -0.0601vw, 0.5787rem);
  --fluidTypeStep--2: clamp(0.6866rem, 0.697rem + -0.0111vw, 0.6944rem);
  --fluidTypeStep--1: clamp(0.8333rem, 0.8181rem + 0.0648vw, 0.8789rem);
  --fluidTypeStep-0: clamp(1rem, 0.9583rem + 0.1778vw, 1.125rem);
  --fluidTypeStep-1: clamp(1.2rem, 1.12rem + 0.3413vw, 1.44rem);
  --fluidTypeStep-2: clamp(1.44rem, 1.3056rem + 0.5734vw, 1.8432rem);
  --fluidTypeStep-3: clamp(1.728rem, 1.5176rem + 0.8978vw, 2.3593rem);
  --fluidTypeStep-4: clamp(2.0736rem, 1.7582rem + 1.3458vw, 3.0199rem);
  --fluidTypeStep-5: clamp(2.4883rem, 2.0293rem + 1.9586vw, 3.8655rem);
}

/* @link https://utopia.fyi/space/calculator?c=375,18,1.2,1600,20,1.333,6,5,&s=0.75|0.5|0.25,1.5|2|3|4|6,s-l&g=s,2xl,xl,12 */
:root {
  --fluidSpaceStep--3xs: clamp(0.3125rem, 0.3125rem + 0vw, 0.3125rem);
  --fluidSpaceStep--2xs: clamp(0.5625rem, 0.5473rem + 0.0647vw, 0.625rem);
  --fluidSpaceStep--xs: clamp(0.875rem, 0.8598rem + 0.0647vw, 0.9375rem);
  --fluidSpaceStep--s: clamp(1.125rem, 1.0947rem + 0.1294vw, 1.25rem);
  --fluidSpaceStep--m: clamp(1.6875rem, 1.642rem + 0.1942vw, 1.875rem);
  --fluidSpaceStep--l: clamp(2.25rem, 2.1893rem + 0.2589vw, 2.5rem);
  --fluidSpaceStep--xl: clamp(3.375rem, 3.284rem + 0.3883vw, 3.75rem);
  --fluidSpaceStep--2xl: clamp(4.5rem, 4.3786rem + 0.5178vw, 5rem);
  --fluidSpaceStep--3xl: clamp(11.25rem, 10.9466rem + 1.2945vw, 12.5rem);
  --fluidSpaceStep--3xs-2xs: clamp(0.3125rem, 0.2367rem + 0.3236vw, 0.625rem);
  --fluidSpaceStep--2xs-xs: clamp(0.5625rem, 0.4715rem + 0.3883vw, 0.9375rem);
  --fluidSpaceStep--xs-s: clamp(0.875rem, 0.784rem + 0.3883vw, 1.25rem);
  --fluidSpaceStep--s-m: clamp(1.125rem, 0.943rem + 0.7767vw, 1.875rem);
  --fluidSpaceStep--m-l: clamp(1.6875rem, 1.4903rem + 0.8414vw, 2.5rem);
  --fluidSpaceStep--l-xl: clamp(2.25rem, 1.8859rem + 1.5534vw, 3.75rem);
  --fluidSpaceStep--xl-2xl: clamp(3.375rem, 2.9806rem + 1.6828vw, 5rem);
  --fluidSpaceStep--2xl-3xl: clamp(4.5rem, 2.5583rem + 8.2848vw, 12.5rem);
}

:root {
  --color-black: #161616;
  --color-white: #FFFFFF;
  --color-copytext: #323B47;
  --color-primary-lighter: #FD9444;
  --color-primary-light: #FF7621;
  --color-primary: #F75605;
  --color-primary-dark: #E13E00;
  --color-primary-darker: #CC3000;
  --color-secondary-lighter: #B8CFD6;
  --color-secondary-light: #6697A7;
  --color-secondary: #00526C;
  --color-secondary-dark: #003D57;
  --color-secondary-darker: #002D45;
  --color-tertiary-lighter: #FBCE70;
  --color-tertiary-light: #F9BE40;
  --color-tertiary: #F8AA00;
  --color-tertiary-dark: #F19403;
  --color-tertiary-darker: #EB7E06;
  --color-fourth: #F8AA00;
  --color-fond-lightest: #F5F7F7;
  --color-fond-light: #EDF1F3;
  --color-fond-medium: #E5EDF1;
  --color-fond-dark: #CCDCE5;
  --color-line: #CCD7DE;
  --color-line-dark: #00526C;
  --color-link: #00526C;
  --color-link--focus: #E13E00;
  --color-link--active: #F75605;
  --color-link--visited: #003D57;
  --color-focus: #E13E00;
  --color-highlight: #F8AA00;
  --color-warning: #F75605;
  --color-error: #E13E00;
  --color-success: #75BB0F;
  --color-disabled: #808080;
  --color-A-GS-2025:#00A09A;
  --color-B-SK-2025:#EF7A18;
  --color-C-EW-2025:#E92E09;
  --color-D-KR-2025:#C51A48;
  --color-E-UT-2025:#3E9E25;
  --color-F-KJ-2025:#C75AAA;
  --color-G-IV-2025:#B4BC00;
  --color-H-SE-2025:#2A76B9;
  --color-A-GS-2026:#00A09A;
  --color-B-SK-2026:#EF7A18;
  --color-C-EW-2026:#E92E09;
  --color-D-KR-2026:#C51A48;
  --color-E-UT-2026:#3E9E25;
  --color-F-KJ-2026:#C75AAA;
  --color-G-IV-2026:#B4BC00;
  --color-H-SE-2026:#2A76B9;
}

.a-color__A-GS-2025 {
  color: var(--color-A-GS-2025) !important;
}
.a-color__A-GS-2025--bg {
  background-color: var(--color-A-GS-2025) !important;
}
.a-color__B-SK-2025 {
  color: var(--color-B-SK-2025) !important;
}
.a-color__B-SK-2025--bg {
  background-color: var(--color-B-SK-2025) !important;
}
.a-color__C-EW-2025 {
  color: var(--color-C-EW-2025) !important;
}
.a-color__C-EW-2025--bg {
  background-color: var(--color-C-EW-2025) !important;
}
.a-color__D-KR-2025 {
  color: var(--color-D-KR-2025) !important;
}
.a-color__D-KR-2025--bg {
  background-color: var(--color-D-KR-2025) !important;
}
.a-color__E-UT-2025 {
  color: var(--color-E-UT-2025) !important;
}
.a-color__E-UT-2025--bg {
  background-color: var(--color-E-UT-2025) !important;
}
.a-color__F-KJ-2025 {
  color: var(--color-F-KJ-2025) !important;
}
.a-color__F-KJ-2025--bg {
  background-color: var(--color-F-KJ-2025) !important;
}
.a-color__G-IV-2025 {
  color: var(--color-G-IV-2025) !important;
}
.a-color__G-IV-2025--bg {
  background-color: var(--color-G-IV-2025) !important;
}
.a-color__H-SE-2025 {
  color: var(--color-H-SE-2025) !important;
}
.a-color__H-SE-2025--bg {
  background-color: var(--color-H-SE-2025) !important;
}
.a-color__A-GS-2026 {
  color: var(--color-A-GS-2026) !important;
}
.a-color__A-GS-2026--bg {
  background-color: var(--color-A-GS-2026) !important;
}
.a-color__B-SK-2026 {
  color: var(--color-B-SK-2026) !important;
}
.a-color__B-SK-2026--bg {
  background-color: var(--color-B-SK-2026) !important;
}
.a-color__C-EW-2026 {
  color: var(--color-C-EW-2026) !important;
}
.a-color__C-EW-2026--bg {
  background-color: var(--color-C-EW-2026) !important;
}
.a-color__D-KR-2026 {
  color: var(--color-D-KR-2026) !important;
}
.a-color__D-KR-2026--bg {
  background-color: var(--color-D-KR-2026) !important;
}
.a-color__E-UT-2026 {
  color: var(--color-E-UT-2026) !important;
}
.a-color__E-UT-2026--bg {
  background-color: var(--color-E-UT-2026) !important;
}
.a-color__F-KJ-2026 {
  color: var(--color-F-KJ-2026) !important;
}
.a-color__F-KJ-2026--bg {
  background-color: var(--color-F-KJ-2026) !important;
}
.a-color__G-IV-2026 {
  color: var(--color-G-IV-2026) !important;
}
.a-color__G-IV-2026--bg {
  background-color: var(--color-G-IV-2026) !important;
}
.a-color__H-SE-2026 {
  color: var(--color-H-SE-2026) !important;
}
.a-color__H-SE-2026--bg {
  background-color: var(--color-H-SE-2026) !important;
}

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* -----------------------------------------------------------------------------
*
* ELEMENTS ROOT
*
* ----------------------------------------------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
}

html,
body {
  height: 100%;
}

body {
  background-color: transparent;
  margin: 0;
  color: green;
  -webkit-overflow-scrolling: touch;
  -webkit-text-size-adjust: none;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 2rem;
  color: red;
  font-weight: 600;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

:root {
  --tobii-base-font-size: 1rem; /* also update --tobii-slide-max-height */
  --tobii-transition-duration: 0.3s;
  --tobii-transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  --tobii-zoom-icon-background: hsla(210, 38%, 16%, 0.94);
  --tobii-zoom-icon-color: #ffffff;
  --tobii-lightbox-background: rgba(0,0,0,0.85);
  --tobii-lightbox-z-index: 1337;
  --tobii-caption-background: rgba(0,0,0,0.8);
  --tobii-caption-color: #eeeeee;
  --tobii-counter-background: transparent;
  --tobii-counter-color: #ffffff;
  --tobii-button-background: transparent;
  --tobii-button-navigation-background: rgba(0,0,0,0.5);
  --tobii-button-color: #ffffff;
  --tobii-loader-color: #ffffff;
  --tobii-slide-max-height: calc(100vh - 3.125em);
  --tobii-slide-max-width: 100vw;
}

/**
 * Lightbox link
 *
 */
.tobii-zoom {
  border: 0;
  box-shadow: none;
  display: inline-block;
  position: relative;
  text-decoration: none;
}
.tobii-zoom img {
  display: block;
}
.tobii-zoom__icon {
  align-items: center;
  background-color: var(--zoom-icon-background, var(--tobii-zoom-icon-background));
  top: 0.5em;
  color: var(--zoom-icon-color, var(--tobii-zoom-icon-color));
  display: flex;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 0.5em;
  width: 1.78em;
  height: 1.78em;
}
.tobii-zoom__icon svg {
  fill: none;
  height: 1.5em;
  pointer-events: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  stroke: currentColor;
  width: 1.5em;
}

.tobii-is-open {
  overflow-y: hidden;
}

.tobii-is-open,
.tobii-image {
  touch-action: none;
}

/**
 * Lightbox
 *
 */
.tobii {
  background-color: var(--lightbox-background, var(--tobii-lightbox-background));
  bottom: 0;
  box-sizing: border-box;
  contain: strict;
  font-size: var(--base-font-size, var(--tobii-base-font-size));
  left: 0;
  line-height: 1.5;
  overflow: hidden;
  position: fixed;
  right: 0;
  top: 0;
  z-index: var(--lightbox-z-index, var(--tobii-lightbox-z-index));
}
.tobii[aria-hidden=true] {
  display: none;
}
.tobii *, .tobii *::before, .tobii *::after {
  box-sizing: inherit;
}

/**
 * Slider
 *
 */
.tobii__slider {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 3.125em;
  will-change: transform;
}
.tobii__slider[aria-hidden=true] {
  display: none;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .tobii__slider--animate:not(.tobii__slider--is-dragging) {
    transition-duration: var(--transition-duration, var(--tobii-transition-duration));
    transition-property: transform;
    transition-timing-function: var(--transition-timing-function, var(--tobii-transition-timing-function));
  }
}
.tobii__slider--is-draggable [data-type] {
  cursor: grab;
}
.tobii__slider--is-dragging [data-type] {
  cursor: grabbing;
}

/**
 * Slide
 *
 */
.tobii__slide {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
  width: 100%;
}
.tobii__slide:not(.tobii__slide--is-active) {
  visibility: hidden;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .tobii__slide:not(.tobii__slide--is-active) {
    transition-duration: var(--transition-duration, var(--tobii-transition-duration));
    transition-property: visibility;
    transition-timing-function: var(--timing-function, var(--tobii-transition-timing-function));
  }
}
.tobii__slide [data-type] {
  max-height: 100%;
  max-width: var(--slide-max-width, var(--tobii-slide-max-width));
  overflow: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.tobii__slide iframe, .tobii__slide video {
  display: block !important;
}
.tobii__slide figure {
  margin: 0;
  position: relative;
}
.tobii__slide figure > img {
  display: block;
  height: auto;
  max-height: var(--slide-max-height, var(--tobii-slide-max-height));
  max-width: var(--slide-max-width, var(--tobii-slide-max-width));
  width: auto;
}
.tobii__slide figure > figcaption {
  background-color: var(--caption-background, var(--tobii-caption-background));
  bottom: 0;
  color: var(--caption-color, var(--tobii-caption-color));
  padding: 0.25em 0.5em;
  position: absolute;
  white-space: pre-wrap;
  width: 100%;
  font-size: 1.125em;
}
.tobii__slide [data-type=html] video {
  cursor: auto;
  max-height: var(--slide-max-height, var(--tobii-slide-max-height));
  max-width: var(--slide-max-width, var(--tobii-slide-max-width));
}
.tobii__slide [data-type=html] audio {
  max-width: 100%;
}
.tobii__slide [data-type=iframe] {
  /* Fix iframe scrolling on iOS */
  -webkit-overflow-scrolling: touch;
  transform: translate3d(0, 0, 0);
}
.tobii__slide [data-type=iframe] iframe {
  height: var(--slide-max-height, var(--tobii-slide-max-height));
  width: var(--slide-max-width, var(--tobii-slide-max-width));
}

/**
 * Buttons
 *
 */
.tobii__btn {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: var(--button-background, var(--tobii-button-background));
  border: 1px solid transparent;
  color: var(--button-color, var(--tobii-button-color));
  cursor: pointer;
  font: inherit;
  line-height: 1;
  margin: 0;
  opacity: 0.5;
  padding: 0;
  position: absolute;
  touch-action: manipulation;
  will-change: opacity;
  z-index: 1;
}
.tobii__btn:hover {
  opacity: 1;
}
@media screen and (prefers-reduced-motion: no-preference) {
  .tobii__btn {
    transition-duration: var(--transition-duration, var(--tobii-transition-duration));
    transition-property: opacity, transform;
    transition-timing-function: var(--transition-timing-function, var(--tobii-transition-timing-function));
    will-change: opacity, transform;
  }
}
.tobii__btn svg {
  fill: none;
  height: 3.75em;
  pointer-events: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1;
  stroke: currentColor;
  width: 3.75em;
}
.tobii__btn--previous, .tobii__btn--next {
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--button-navigation-background, var(--tobii-button-navigation-background));
  border-radius: 5px;
}
.tobii__btn--previous {
  left: 1em;
}
.tobii__btn--next {
  right: 1em;
}
.tobii__btn--close {
  right: 0.25em;
  top: 0.25em;
  width: 2.5em;
  height: 2.5em;
  opacity: 0.75;
}
.tobii__btn--close svg {
  transform: scale(1.4);
  width: 100%;
  height: 100%;
}
.tobii__btn:disabled, .tobii__btn[aria-hidden=true] {
  visibility: hidden;
  cursor: default;
}

/**
 * Counter
 *
 */
.tobii__counter {
  background-color: var(--counter-background, var(--tobii-counter-background));
  color: var(--counter-color, var(--tobii-counter-color));
  font-size: 1.25em;
  left: 0.875em;
  line-height: 1;
  position: absolute;
  top: 0.875em;
  z-index: 1;
  opacity: 0.8;
}
.tobii__counter[aria-hidden=true] {
  display: none;
}

/**
 * Loader
 *
 */
.tobii__loader {
  display: inline-block;
  height: 6em;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6em;
}
.tobii__loader::before {
  animation: spin 1s infinite;
  border-radius: 100%;
  border: 2px solid #949ba3;
  border-top-color: var(--loader-color, var(--tobii-loader-color));
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.tobii__slide .tobii-html {
  background: #ffffff;
  padding: 10px 20px;
  max-width: 800px;
  font-size: 1.125em;
}

.c-faqAccordion__trigger:checked + .c-faqAccordion__header:after, .c-astlrList__trigger:checked + .c-astlrList__header:after {
  transition: transform 0.3s cubic-bezier(0.5, 0, 0.5, 1);
  transform: translateY(-50%) rotate(0deg);
}
.c-faqAccordion__header:after, .c-astlrList__header:after {
  transition: transform 0.3s cubic-bezier(0.5, 0, 0.5, 1);
  transform: translateY(-50%) rotate(-180deg);
}
.c-lightbox__link > img {
  transform: scale(1);
  transition: transform 0.08s ease-out;
}
.c-lightbox__link:hover > img {
  transform: scale(1.1);
  transition: transform 0.12s ease-in;
}
.c-astlrSummary__raumplanZoom .c-astlrSummary__raumplan {
  transform: scale(1);
  transition: transform 0.08s ease-out;
}
.c-astlrSummary__raumplanZoom:hover .c-astlrSummary__raumplan {
  transform: scale(1.05);
  transition: transform 0.12s ease-in;
}

/* -----------------------------------------------------------------------------
*
* COMPONTENT BUTTON
*
* --------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
*
* EXTENDS TYPOGRAPHY
*
* --------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
*
* EXTENDS ICONS
*
* --------------------------------------------------------------------------- */
@font-face {
  font-family: "MFM2023 Icon Font Regular";
  font-style: normal;
  font-weight: 400;
  src: url("/webfonts/MFM2023IconFont-Regular-v2.woff") format("woff");
  src: url("/webfonts/MFM2023IconFont-Regular-v2.woff2") format("woff2");
  font-display: swap;
}
.c-videoEmbed__stage:before, .c-testimonial:before, .c-naviMobile__trigger:before, .c-naviMobile__trigger.-state--active:before, .c-naviMobile__link-e1--es:after, .c-naviMain__link-e1--es:after, .c-mediathekCard__frame:after, .c-icons__kurzfristigEng:before, .c-icons__digitalesEng:before, .c-icons__bfd:before,
.c-icons__legendhead--kurzfristigEng:before,
.c-icons__legendhead--digitalesEng:before,
.c-icons__legendhead--bfd:before, .c-heroHome__link:after, .c-footer__icon--twitter:before, .c-footer__icon--fb:before, .c-footer__icon--rss:before, .c-footer__icon--instagram:before, .c-faqAccordion__trigger:checked + .c-faqAccordion__header:after, .c-faqAccordion__header:after, .c-astlrTabs__trigger:before, .c-astlrTabs__trigger.-state--active:before, .c-astlrSlider__prev:before, .c-astlrSlider__next:before, .c-astlrList__trigger:checked + .c-astlrList__header:after, .c-astlrList__header:after, .c-astlrVideoDates__accordionHeader:after, .c-astlrVideoDates__orgaName:before, .c-astlrCopy__accordionHeader:after, .c-astlrCopy__accordionHeader.-state--active:after, .c-astlrVideoDates__accordionHeader.-state--active:after, .c-form__dropdown:after, .c-button__link--ghost:after, .c-button__download--ghost:after, .c-elementalPublikationen__copystage > p > strong > a[href^=mailto]:before, .dropzone-holder.uploadable > p > strong > a[href^=mailto]:before, .c-schedule__copy > strong > a[href^=mailto]:before, .c-lightbox__subline > strong > a[href^=mailto]:before, .tobii__counter > strong > a[href^=mailto]:before, .tobii-image figure > figcaption > strong > a[href^=mailto]:before, .c-form .btn-toolbar > p > strong > a[href^=mailto]:before, .c-books__autor > strong > a[href^=mailto]:before, .c-books__copy > strong > a[href^=mailto]:before, .c-books__verlag > strong > a[href^=mailto]:before, .c-books__jahr > strong > a[href^=mailto]:before, .c-books__isbn > strong > a[href^=mailto]:before, .c-books__preis > strong > a[href^=mailto]:before, .c-books__link > strong > a[href^=mailto]:before, .c-astlrVideoDates__copy > strong > a[href^=mailto]:before, .c-astlrFileItems__link > strong > a[href^=mailto]:before, .c-astlrCopy__fieldname > strong > a[href^=mailto]:before, .c-astlrCopy__field > strong > a[href^=mailto]:before, .c-astlrCopy > p > strong > a[href^=mailto]:before, .c-astlrCopy__accordionHeader > strong > a[href^=mailto]:before, .c-astlrCopy__accordionField > strong > a[href^=mailto]:before, .c-astlrStage__note > p > strong > a[href^=mailto]:before, .c-astlrStage__uploader > p > strong > a[href^=mailto]:before, .c-anncmts__body > strong > a[href^=mailto]:before, .typography p > strong > a[href^=mailto]:before, .c-form label > strong > a[href^=mailto]:before, .c-form input.text > strong > a[href^=mailto]:before, .c-form input.textarea > strong > a[href^=mailto]:before,
.c-form textarea.text > strong > a[href^=mailto]:before,
.c-form textarea.textarea > strong > a[href^=mailto]:before, .c-form input[type=text] > strong > a[href^=mailto]:before,
.c-form input[type=password] > strong > a[href^=mailto]:before,
.c-form input[type=email] > strong > a[href^=mailto]:before,
.c-form input[type=url] > strong > a[href^=mailto]:before,
.c-form input[type=date] > strong > a[href^=mailto]:before,
.c-form input[type=month] > strong > a[href^=mailto]:before,
.c-form input[type=time] > strong > a[href^=mailto]:before,
.c-form input[type=datetime] > strong > a[href^=mailto]:before,
.c-form input[type=datetime-local] > strong > a[href^=mailto]:before,
.c-form input[type=week] > strong > a[href^=mailto]:before,
.c-form input[type=number] > strong > a[href^=mailto]:before,
.c-form input[type=search] > strong > a[href^=mailto]:before,
.c-form input[type=tel] > strong > a[href^=mailto]:before,
.c-form input[type=color] > strong > a[href^=mailto]:before,
.c-form textarea > strong > a[href^=mailto]:before, .c-form__checkbox label > strong > a[href^=mailto]:before, .c-form__dropdown > strong > a[href^=mailto]:before, .c-form__dropdown select > option > strong > a[href^=mailto]:before, .c-form__dropdown > label > strong > a[href^=mailto]:before,
.c-elementalPublikationen__copystage > p > em > a[href^=mailto]:before,
.dropzone-holder.uploadable > p > em > a[href^=mailto]:before,
.c-schedule__copy > em > a[href^=mailto]:before,
.c-lightbox__subline > em > a[href^=mailto]:before,
.tobii__counter > em > a[href^=mailto]:before,
.tobii-image figure > figcaption > em > a[href^=mailto]:before,
.c-form .btn-toolbar > p > em > a[href^=mailto]:before,
.c-books__autor > em > a[href^=mailto]:before,
.c-books__copy > em > a[href^=mailto]:before,
.c-books__verlag > em > a[href^=mailto]:before,
.c-books__jahr > em > a[href^=mailto]:before,
.c-books__isbn > em > a[href^=mailto]:before,
.c-books__preis > em > a[href^=mailto]:before,
.c-books__link > em > a[href^=mailto]:before,
.c-astlrVideoDates__copy > em > a[href^=mailto]:before,
.c-astlrFileItems__link > em > a[href^=mailto]:before,
.c-astlrCopy__fieldname > em > a[href^=mailto]:before,
.c-astlrCopy__field > em > a[href^=mailto]:before,
.c-astlrCopy > p > em > a[href^=mailto]:before,
.c-astlrCopy__accordionHeader > em > a[href^=mailto]:before,
.c-astlrCopy__accordionField > em > a[href^=mailto]:before,
.c-astlrStage__note > p > em > a[href^=mailto]:before,
.c-astlrStage__uploader > p > em > a[href^=mailto]:before,
.c-anncmts__body > em > a[href^=mailto]:before,
.typography p > em > a[href^=mailto]:before,
.c-form label > em > a[href^=mailto]:before,
.c-form input.text > em > a[href^=mailto]:before,
.c-form input.textarea > em > a[href^=mailto]:before,
.c-form textarea.text > em > a[href^=mailto]:before,
.c-form textarea.textarea > em > a[href^=mailto]:before,
.c-form input[type=text] > em > a[href^=mailto]:before,
.c-form input[type=password] > em > a[href^=mailto]:before,
.c-form input[type=email] > em > a[href^=mailto]:before,
.c-form input[type=url] > em > a[href^=mailto]:before,
.c-form input[type=date] > em > a[href^=mailto]:before,
.c-form input[type=month] > em > a[href^=mailto]:before,
.c-form input[type=time] > em > a[href^=mailto]:before,
.c-form input[type=datetime] > em > a[href^=mailto]:before,
.c-form input[type=datetime-local] > em > a[href^=mailto]:before,
.c-form input[type=week] > em > a[href^=mailto]:before,
.c-form input[type=number] > em > a[href^=mailto]:before,
.c-form input[type=search] > em > a[href^=mailto]:before,
.c-form input[type=tel] > em > a[href^=mailto]:before,
.c-form input[type=color] > em > a[href^=mailto]:before,
.c-form textarea > em > a[href^=mailto]:before,
.c-form__checkbox label > em > a[href^=mailto]:before,
.c-form__dropdown > em > a[href^=mailto]:before,
.c-form__dropdown select > option > em > a[href^=mailto]:before,
.c-form__dropdown > label > em > a[href^=mailto]:before, .c-elementalPublikationen__copystage > p > strong > a[href^="https://"]:before, .dropzone-holder.uploadable > p > strong > a[href^="https://"]:before, .c-schedule__copy > strong > a[href^="https://"]:before, .c-lightbox__subline > strong > a[href^="https://"]:before, .tobii__counter > strong > a[href^="https://"]:before, .tobii-image figure > figcaption > strong > a[href^="https://"]:before, .c-form .btn-toolbar > p > strong > a[href^="https://"]:before, .c-books__autor > strong > a[href^="https://"]:before, .c-books__copy > strong > a[href^="https://"]:before, .c-books__verlag > strong > a[href^="https://"]:before, .c-books__jahr > strong > a[href^="https://"]:before, .c-books__isbn > strong > a[href^="https://"]:before, .c-books__preis > strong > a[href^="https://"]:before, .c-books__link > strong > a[href^="https://"]:before, .c-astlrVideoDates__copy > strong > a[href^="https://"]:before, .c-astlrFileItems__link > strong > a[href^="https://"]:before, .c-astlrCopy__fieldname > strong > a[href^="https://"]:before, .c-astlrCopy__field > strong > a[href^="https://"]:before, .c-astlrCopy > p > strong > a[href^="https://"]:before, .c-astlrCopy__accordionHeader > strong > a[href^="https://"]:before, .c-astlrCopy__accordionField > strong > a[href^="https://"]:before, .c-astlrStage__note > p > strong > a[href^="https://"]:before, .c-astlrStage__uploader > p > strong > a[href^="https://"]:before, .c-anncmts__body > strong > a[href^="https://"]:before, .typography p > strong > a[href^="https://"]:before, .c-form label > strong > a[href^="https://"]:before, .c-form input.text > strong > a[href^="https://"]:before, .c-form input.textarea > strong > a[href^="https://"]:before,
.c-form textarea.text > strong > a[href^="https://"]:before,
.c-form textarea.textarea > strong > a[href^="https://"]:before, .c-form input[type=text] > strong > a[href^="https://"]:before,
.c-form input[type=password] > strong > a[href^="https://"]:before,
.c-form input[type=email] > strong > a[href^="https://"]:before,
.c-form input[type=url] > strong > a[href^="https://"]:before,
.c-form input[type=date] > strong > a[href^="https://"]:before,
.c-form input[type=month] > strong > a[href^="https://"]:before,
.c-form input[type=time] > strong > a[href^="https://"]:before,
.c-form input[type=datetime] > strong > a[href^="https://"]:before,
.c-form input[type=datetime-local] > strong > a[href^="https://"]:before,
.c-form input[type=week] > strong > a[href^="https://"]:before,
.c-form input[type=number] > strong > a[href^="https://"]:before,
.c-form input[type=search] > strong > a[href^="https://"]:before,
.c-form input[type=tel] > strong > a[href^="https://"]:before,
.c-form input[type=color] > strong > a[href^="https://"]:before,
.c-form textarea > strong > a[href^="https://"]:before, .c-form__checkbox label > strong > a[href^="https://"]:before, .c-form__dropdown > strong > a[href^="https://"]:before, .c-form__dropdown select > option > strong > a[href^="https://"]:before, .c-form__dropdown > label > strong > a[href^="https://"]:before,
.c-elementalPublikationen__copystage > p > em > a[href^="https://"]:before,
.dropzone-holder.uploadable > p > em > a[href^="https://"]:before,
.c-schedule__copy > em > a[href^="https://"]:before,
.c-lightbox__subline > em > a[href^="https://"]:before,
.tobii__counter > em > a[href^="https://"]:before,
.tobii-image figure > figcaption > em > a[href^="https://"]:before,
.c-form .btn-toolbar > p > em > a[href^="https://"]:before,
.c-books__autor > em > a[href^="https://"]:before,
.c-books__copy > em > a[href^="https://"]:before,
.c-books__verlag > em > a[href^="https://"]:before,
.c-books__jahr > em > a[href^="https://"]:before,
.c-books__isbn > em > a[href^="https://"]:before,
.c-books__preis > em > a[href^="https://"]:before,
.c-books__link > em > a[href^="https://"]:before,
.c-astlrVideoDates__copy > em > a[href^="https://"]:before,
.c-astlrFileItems__link > em > a[href^="https://"]:before,
.c-astlrCopy__fieldname > em > a[href^="https://"]:before,
.c-astlrCopy__field > em > a[href^="https://"]:before,
.c-astlrCopy > p > em > a[href^="https://"]:before,
.c-astlrCopy__accordionHeader > em > a[href^="https://"]:before,
.c-astlrCopy__accordionField > em > a[href^="https://"]:before,
.c-astlrStage__note > p > em > a[href^="https://"]:before,
.c-astlrStage__uploader > p > em > a[href^="https://"]:before,
.c-anncmts__body > em > a[href^="https://"]:before,
.typography p > em > a[href^="https://"]:before,
.c-form label > em > a[href^="https://"]:before,
.c-form input.text > em > a[href^="https://"]:before,
.c-form input.textarea > em > a[href^="https://"]:before,
.c-form textarea.text > em > a[href^="https://"]:before,
.c-form textarea.textarea > em > a[href^="https://"]:before,
.c-form input[type=text] > em > a[href^="https://"]:before,
.c-form input[type=password] > em > a[href^="https://"]:before,
.c-form input[type=email] > em > a[href^="https://"]:before,
.c-form input[type=url] > em > a[href^="https://"]:before,
.c-form input[type=date] > em > a[href^="https://"]:before,
.c-form input[type=month] > em > a[href^="https://"]:before,
.c-form input[type=time] > em > a[href^="https://"]:before,
.c-form input[type=datetime] > em > a[href^="https://"]:before,
.c-form input[type=datetime-local] > em > a[href^="https://"]:before,
.c-form input[type=week] > em > a[href^="https://"]:before,
.c-form input[type=number] > em > a[href^="https://"]:before,
.c-form input[type=search] > em > a[href^="https://"]:before,
.c-form input[type=tel] > em > a[href^="https://"]:before,
.c-form input[type=color] > em > a[href^="https://"]:before,
.c-form textarea > em > a[href^="https://"]:before,
.c-form__checkbox label > em > a[href^="https://"]:before,
.c-form__dropdown > em > a[href^="https://"]:before,
.c-form__dropdown select > option > em > a[href^="https://"]:before,
.c-form__dropdown > label > em > a[href^="https://"]:before, .c-elementalPublikationen__copystage > p > strong > a[href^="http://"]:before, .dropzone-holder.uploadable > p > strong > a[href^="http://"]:before, .c-schedule__copy > strong > a[href^="http://"]:before, .c-lightbox__subline > strong > a[href^="http://"]:before, .tobii__counter > strong > a[href^="http://"]:before, .tobii-image figure > figcaption > strong > a[href^="http://"]:before, .c-form .btn-toolbar > p > strong > a[href^="http://"]:before, .c-books__autor > strong > a[href^="http://"]:before, .c-books__copy > strong > a[href^="http://"]:before, .c-books__verlag > strong > a[href^="http://"]:before, .c-books__jahr > strong > a[href^="http://"]:before, .c-books__isbn > strong > a[href^="http://"]:before, .c-books__preis > strong > a[href^="http://"]:before, .c-books__link > strong > a[href^="http://"]:before, .c-astlrVideoDates__copy > strong > a[href^="http://"]:before, .c-astlrFileItems__link > strong > a[href^="http://"]:before, .c-astlrCopy__fieldname > strong > a[href^="http://"]:before, .c-astlrCopy__field > strong > a[href^="http://"]:before, .c-astlrCopy > p > strong > a[href^="http://"]:before, .c-astlrCopy__accordionHeader > strong > a[href^="http://"]:before, .c-astlrCopy__accordionField > strong > a[href^="http://"]:before, .c-astlrStage__note > p > strong > a[href^="http://"]:before, .c-astlrStage__uploader > p > strong > a[href^="http://"]:before, .c-anncmts__body > strong > a[href^="http://"]:before, .typography p > strong > a[href^="http://"]:before, .c-form label > strong > a[href^="http://"]:before, .c-form input.text > strong > a[href^="http://"]:before, .c-form input.textarea > strong > a[href^="http://"]:before,
.c-form textarea.text > strong > a[href^="http://"]:before,
.c-form textarea.textarea > strong > a[href^="http://"]:before, .c-form input[type=text] > strong > a[href^="http://"]:before,
.c-form input[type=password] > strong > a[href^="http://"]:before,
.c-form input[type=email] > strong > a[href^="http://"]:before,
.c-form input[type=url] > strong > a[href^="http://"]:before,
.c-form input[type=date] > strong > a[href^="http://"]:before,
.c-form input[type=month] > strong > a[href^="http://"]:before,
.c-form input[type=time] > strong > a[href^="http://"]:before,
.c-form input[type=datetime] > strong > a[href^="http://"]:before,
.c-form input[type=datetime-local] > strong > a[href^="http://"]:before,
.c-form input[type=week] > strong > a[href^="http://"]:before,
.c-form input[type=number] > strong > a[href^="http://"]:before,
.c-form input[type=search] > strong > a[href^="http://"]:before,
.c-form input[type=tel] > strong > a[href^="http://"]:before,
.c-form input[type=color] > strong > a[href^="http://"]:before,
.c-form textarea > strong > a[href^="http://"]:before, .c-form__checkbox label > strong > a[href^="http://"]:before, .c-form__dropdown > strong > a[href^="http://"]:before, .c-form__dropdown select > option > strong > a[href^="http://"]:before, .c-form__dropdown > label > strong > a[href^="http://"]:before,
.c-elementalPublikationen__copystage > p > em > a[href^="http://"]:before,
.dropzone-holder.uploadable > p > em > a[href^="http://"]:before,
.c-schedule__copy > em > a[href^="http://"]:before,
.c-lightbox__subline > em > a[href^="http://"]:before,
.tobii__counter > em > a[href^="http://"]:before,
.tobii-image figure > figcaption > em > a[href^="http://"]:before,
.c-form .btn-toolbar > p > em > a[href^="http://"]:before,
.c-books__autor > em > a[href^="http://"]:before,
.c-books__copy > em > a[href^="http://"]:before,
.c-books__verlag > em > a[href^="http://"]:before,
.c-books__jahr > em > a[href^="http://"]:before,
.c-books__isbn > em > a[href^="http://"]:before,
.c-books__preis > em > a[href^="http://"]:before,
.c-books__link > em > a[href^="http://"]:before,
.c-astlrVideoDates__copy > em > a[href^="http://"]:before,
.c-astlrFileItems__link > em > a[href^="http://"]:before,
.c-astlrCopy__fieldname > em > a[href^="http://"]:before,
.c-astlrCopy__field > em > a[href^="http://"]:before,
.c-astlrCopy > p > em > a[href^="http://"]:before,
.c-astlrCopy__accordionHeader > em > a[href^="http://"]:before,
.c-astlrCopy__accordionField > em > a[href^="http://"]:before,
.c-astlrStage__note > p > em > a[href^="http://"]:before,
.c-astlrStage__uploader > p > em > a[href^="http://"]:before,
.c-anncmts__body > em > a[href^="http://"]:before,
.typography p > em > a[href^="http://"]:before,
.c-form label > em > a[href^="http://"]:before,
.c-form input.text > em > a[href^="http://"]:before,
.c-form input.textarea > em > a[href^="http://"]:before,
.c-form textarea.text > em > a[href^="http://"]:before,
.c-form textarea.textarea > em > a[href^="http://"]:before,
.c-form input[type=text] > em > a[href^="http://"]:before,
.c-form input[type=password] > em > a[href^="http://"]:before,
.c-form input[type=email] > em > a[href^="http://"]:before,
.c-form input[type=url] > em > a[href^="http://"]:before,
.c-form input[type=date] > em > a[href^="http://"]:before,
.c-form input[type=month] > em > a[href^="http://"]:before,
.c-form input[type=time] > em > a[href^="http://"]:before,
.c-form input[type=datetime] > em > a[href^="http://"]:before,
.c-form input[type=datetime-local] > em > a[href^="http://"]:before,
.c-form input[type=week] > em > a[href^="http://"]:before,
.c-form input[type=number] > em > a[href^="http://"]:before,
.c-form input[type=search] > em > a[href^="http://"]:before,
.c-form input[type=tel] > em > a[href^="http://"]:before,
.c-form input[type=color] > em > a[href^="http://"]:before,
.c-form textarea > em > a[href^="http://"]:before,
.c-form__checkbox label > em > a[href^="http://"]:before,
.c-form__dropdown > em > a[href^="http://"]:before,
.c-form__dropdown select > option > em > a[href^="http://"]:before,
.c-form__dropdown > label > em > a[href^="http://"]:before, .c-elementalPublikationen__copystage > p > strong > a[href$=".png"]:before, .dropzone-holder.uploadable > p > strong > a[href$=".png"]:before, .c-schedule__copy > strong > a[href$=".png"]:before, .c-lightbox__subline > strong > a[href$=".png"]:before, .tobii__counter > strong > a[href$=".png"]:before, .tobii-image figure > figcaption > strong > a[href$=".png"]:before, .c-form .btn-toolbar > p > strong > a[href$=".png"]:before, .c-books__autor > strong > a[href$=".png"]:before, .c-books__copy > strong > a[href$=".png"]:before, .c-books__verlag > strong > a[href$=".png"]:before, .c-books__jahr > strong > a[href$=".png"]:before, .c-books__isbn > strong > a[href$=".png"]:before, .c-books__preis > strong > a[href$=".png"]:before, .c-books__link > strong > a[href$=".png"]:before, .c-astlrVideoDates__copy > strong > a[href$=".png"]:before, .c-astlrFileItems__link > strong > a[href$=".png"]:before, .c-astlrCopy__fieldname > strong > a[href$=".png"]:before, .c-astlrCopy__field > strong > a[href$=".png"]:before, .c-astlrCopy > p > strong > a[href$=".png"]:before, .c-astlrCopy__accordionHeader > strong > a[href$=".png"]:before, .c-astlrCopy__accordionField > strong > a[href$=".png"]:before, .c-astlrStage__note > p > strong > a[href$=".png"]:before, .c-astlrStage__uploader > p > strong > a[href$=".png"]:before, .c-anncmts__body > strong > a[href$=".png"]:before, .typography p > strong > a[href$=".png"]:before, .c-form label > strong > a[href$=".png"]:before, .c-form input.text > strong > a[href$=".png"]:before, .c-form input.textarea > strong > a[href$=".png"]:before,
.c-form textarea.text > strong > a[href$=".png"]:before,
.c-form textarea.textarea > strong > a[href$=".png"]:before, .c-form input[type=text] > strong > a[href$=".png"]:before,
.c-form input[type=password] > strong > a[href$=".png"]:before,
.c-form input[type=email] > strong > a[href$=".png"]:before,
.c-form input[type=url] > strong > a[href$=".png"]:before,
.c-form input[type=date] > strong > a[href$=".png"]:before,
.c-form input[type=month] > strong > a[href$=".png"]:before,
.c-form input[type=time] > strong > a[href$=".png"]:before,
.c-form input[type=datetime] > strong > a[href$=".png"]:before,
.c-form input[type=datetime-local] > strong > a[href$=".png"]:before,
.c-form input[type=week] > strong > a[href$=".png"]:before,
.c-form input[type=number] > strong > a[href$=".png"]:before,
.c-form input[type=search] > strong > a[href$=".png"]:before,
.c-form input[type=tel] > strong > a[href$=".png"]:before,
.c-form input[type=color] > strong > a[href$=".png"]:before,
.c-form textarea > strong > a[href$=".png"]:before, .c-form__checkbox label > strong > a[href$=".png"]:before, .c-form__dropdown > strong > a[href$=".png"]:before, .c-form__dropdown select > option > strong > a[href$=".png"]:before, .c-form__dropdown > label > strong > a[href$=".png"]:before,
.c-elementalPublikationen__copystage > p > em > a[href$=".png"]:before,
.dropzone-holder.uploadable > p > em > a[href$=".png"]:before,
.c-schedule__copy > em > a[href$=".png"]:before,
.c-lightbox__subline > em > a[href$=".png"]:before,
.tobii__counter > em > a[href$=".png"]:before,
.tobii-image figure > figcaption > em > a[href$=".png"]:before,
.c-form .btn-toolbar > p > em > a[href$=".png"]:before,
.c-books__autor > em > a[href$=".png"]:before,
.c-books__copy > em > a[href$=".png"]:before,
.c-books__verlag > em > a[href$=".png"]:before,
.c-books__jahr > em > a[href$=".png"]:before,
.c-books__isbn > em > a[href$=".png"]:before,
.c-books__preis > em > a[href$=".png"]:before,
.c-books__link > em > a[href$=".png"]:before,
.c-astlrVideoDates__copy > em > a[href$=".png"]:before,
.c-astlrFileItems__link > em > a[href$=".png"]:before,
.c-astlrCopy__fieldname > em > a[href$=".png"]:before,
.c-astlrCopy__field > em > a[href$=".png"]:before,
.c-astlrCopy > p > em > a[href$=".png"]:before,
.c-astlrCopy__accordionHeader > em > a[href$=".png"]:before,
.c-astlrCopy__accordionField > em > a[href$=".png"]:before,
.c-astlrStage__note > p > em > a[href$=".png"]:before,
.c-astlrStage__uploader > p > em > a[href$=".png"]:before,
.c-anncmts__body > em > a[href$=".png"]:before,
.typography p > em > a[href$=".png"]:before,
.c-form label > em > a[href$=".png"]:before,
.c-form input.text > em > a[href$=".png"]:before,
.c-form input.textarea > em > a[href$=".png"]:before,
.c-form textarea.text > em > a[href$=".png"]:before,
.c-form textarea.textarea > em > a[href$=".png"]:before,
.c-form input[type=text] > em > a[href$=".png"]:before,
.c-form input[type=password] > em > a[href$=".png"]:before,
.c-form input[type=email] > em > a[href$=".png"]:before,
.c-form input[type=url] > em > a[href$=".png"]:before,
.c-form input[type=date] > em > a[href$=".png"]:before,
.c-form input[type=month] > em > a[href$=".png"]:before,
.c-form input[type=time] > em > a[href$=".png"]:before,
.c-form input[type=datetime] > em > a[href$=".png"]:before,
.c-form input[type=datetime-local] > em > a[href$=".png"]:before,
.c-form input[type=week] > em > a[href$=".png"]:before,
.c-form input[type=number] > em > a[href$=".png"]:before,
.c-form input[type=search] > em > a[href$=".png"]:before,
.c-form input[type=tel] > em > a[href$=".png"]:before,
.c-form input[type=color] > em > a[href$=".png"]:before,
.c-form textarea > em > a[href$=".png"]:before,
.c-form__checkbox label > em > a[href$=".png"]:before,
.c-form__dropdown > em > a[href$=".png"]:before,
.c-form__dropdown select > option > em > a[href$=".png"]:before,
.c-form__dropdown > label > em > a[href$=".png"]:before, .c-elementalPublikationen__copystage > p > strong > a[href$=".PNG"]:before, .dropzone-holder.uploadable > p > strong > a[href$=".PNG"]:before, .c-schedule__copy > strong > a[href$=".PNG"]:before, .c-lightbox__subline > strong > a[href$=".PNG"]:before, .tobii__counter > strong > a[href$=".PNG"]:before, .tobii-image figure > figcaption > strong > a[href$=".PNG"]:before, .c-form .btn-toolbar > p > strong > a[href$=".PNG"]:before, .c-books__autor > strong > a[href$=".PNG"]:before, .c-books__copy > strong > a[href$=".PNG"]:before, .c-books__verlag > strong > a[href$=".PNG"]:before, .c-books__jahr > strong > a[href$=".PNG"]:before, .c-books__isbn > strong > a[href$=".PNG"]:before, .c-books__preis > strong > a[href$=".PNG"]:before, .c-books__link > strong > a[href$=".PNG"]:before, .c-astlrVideoDates__copy > strong > a[href$=".PNG"]:before, .c-astlrFileItems__link > strong > a[href$=".PNG"]:before, .c-astlrCopy__fieldname > strong > a[href$=".PNG"]:before, .c-astlrCopy__field > strong > a[href$=".PNG"]:before, .c-astlrCopy > p > strong > a[href$=".PNG"]:before, .c-astlrCopy__accordionHeader > strong > a[href$=".PNG"]:before, .c-astlrCopy__accordionField > strong > a[href$=".PNG"]:before, .c-astlrStage__note > p > strong > a[href$=".PNG"]:before, .c-astlrStage__uploader > p > strong > a[href$=".PNG"]:before, .c-anncmts__body > strong > a[href$=".PNG"]:before, .typography p > strong > a[href$=".PNG"]:before, .c-form label > strong > a[href$=".PNG"]:before, .c-form input.text > strong > a[href$=".PNG"]:before, .c-form input.textarea > strong > a[href$=".PNG"]:before,
.c-form textarea.text > strong > a[href$=".PNG"]:before,
.c-form textarea.textarea > strong > a[href$=".PNG"]:before, .c-form input[type=text] > strong > a[href$=".PNG"]:before,
.c-form input[type=password] > strong > a[href$=".PNG"]:before,
.c-form input[type=email] > strong > a[href$=".PNG"]:before,
.c-form input[type=url] > strong > a[href$=".PNG"]:before,
.c-form input[type=date] > strong > a[href$=".PNG"]:before,
.c-form input[type=month] > strong > a[href$=".PNG"]:before,
.c-form input[type=time] > strong > a[href$=".PNG"]:before,
.c-form input[type=datetime] > strong > a[href$=".PNG"]:before,
.c-form input[type=datetime-local] > strong > a[href$=".PNG"]:before,
.c-form input[type=week] > strong > a[href$=".PNG"]:before,
.c-form input[type=number] > strong > a[href$=".PNG"]:before,
.c-form input[type=search] > strong > a[href$=".PNG"]:before,
.c-form input[type=tel] > strong > a[href$=".PNG"]:before,
.c-form input[type=color] > strong > a[href$=".PNG"]:before,
.c-form textarea > strong > a[href$=".PNG"]:before, .c-form__checkbox label > strong > a[href$=".PNG"]:before, .c-form__dropdown > strong > a[href$=".PNG"]:before, .c-form__dropdown select > option > strong > a[href$=".PNG"]:before, .c-form__dropdown > label > strong > a[href$=".PNG"]:before,
.c-elementalPublikationen__copystage > p > em > a[href$=".PNG"]:before,
.dropzone-holder.uploadable > p > em > a[href$=".PNG"]:before,
.c-schedule__copy > em > a[href$=".PNG"]:before,
.c-lightbox__subline > em > a[href$=".PNG"]:before,
.tobii__counter > em > a[href$=".PNG"]:before,
.tobii-image figure > figcaption > em > a[href$=".PNG"]:before,
.c-form .btn-toolbar > p > em > a[href$=".PNG"]:before,
.c-books__autor > em > a[href$=".PNG"]:before,
.c-books__copy > em > a[href$=".PNG"]:before,
.c-books__verlag > em > a[href$=".PNG"]:before,
.c-books__jahr > em > a[href$=".PNG"]:before,
.c-books__isbn > em > a[href$=".PNG"]:before,
.c-books__preis > em > a[href$=".PNG"]:before,
.c-books__link > em > a[href$=".PNG"]:before,
.c-astlrVideoDates__copy > em > a[href$=".PNG"]:before,
.c-astlrFileItems__link > em > a[href$=".PNG"]:before,
.c-astlrCopy__fieldname > em > a[href$=".PNG"]:before,
.c-astlrCopy__field > em > a[href$=".PNG"]:before,
.c-astlrCopy > p > em > a[href$=".PNG"]:before,
.c-astlrCopy__accordionHeader > em > a[href$=".PNG"]:before,
.c-astlrCopy__accordionField > em > a[href$=".PNG"]:before,
.c-astlrStage__note > p > em > a[href$=".PNG"]:before,
.c-astlrStage__uploader > p > em > a[href$=".PNG"]:before,
.c-anncmts__body > em > a[href$=".PNG"]:before,
.typography p > em > a[href$=".PNG"]:before,
.c-form label > em > a[href$=".PNG"]:before,
.c-form input.text > em > a[href$=".PNG"]:before,
.c-form input.textarea > em > a[href$=".PNG"]:before,
.c-form textarea.text > em > a[href$=".PNG"]:before,
.c-form textarea.textarea > em > a[href$=".PNG"]:before,
.c-form input[type=text] > em > a[href$=".PNG"]:before,
.c-form input[type=password] > em > a[href$=".PNG"]:before,
.c-form input[type=email] > em > a[href$=".PNG"]:before,
.c-form input[type=url] > em > a[href$=".PNG"]:before,
.c-form input[type=date] > em > a[href$=".PNG"]:before,
.c-form input[type=month] > em > a[href$=".PNG"]:before,
.c-form input[type=time] > em > a[href$=".PNG"]:before,
.c-form input[type=datetime] > em > a[href$=".PNG"]:before,
.c-form input[type=datetime-local] > em > a[href$=".PNG"]:before,
.c-form input[type=week] > em > a[href$=".PNG"]:before,
.c-form input[type=number] > em > a[href$=".PNG"]:before,
.c-form input[type=search] > em > a[href$=".PNG"]:before,
.c-form input[type=tel] > em > a[href$=".PNG"]:before,
.c-form input[type=color] > em > a[href$=".PNG"]:before,
.c-form textarea > em > a[href$=".PNG"]:before,
.c-form__checkbox label > em > a[href$=".PNG"]:before,
.c-form__dropdown > em > a[href$=".PNG"]:before,
.c-form__dropdown select > option > em > a[href$=".PNG"]:before,
.c-form__dropdown > label > em > a[href$=".PNG"]:before, .c-elementalPublikationen__copystage > p > strong > a[href$=".gif"]:before, .dropzone-holder.uploadable > p > strong > a[href$=".gif"]:before, .c-schedule__copy > strong > a[href$=".gif"]:before, .c-lightbox__subline > strong > a[href$=".gif"]:before, .tobii__counter > strong > a[href$=".gif"]:before, .tobii-image figure > figcaption > strong > a[href$=".gif"]:before, .c-form .btn-toolbar > p > strong > a[href$=".gif"]:before, .c-books__autor > strong > a[href$=".gif"]:before, .c-books__copy > strong > a[href$=".gif"]:before, .c-books__verlag > strong > a[href$=".gif"]:before, .c-books__jahr > strong > a[href$=".gif"]:before, .c-books__isbn > strong > a[href$=".gif"]:before, .c-books__preis > strong > a[href$=".gif"]:before, .c-books__link > strong > a[href$=".gif"]:before, .c-astlrVideoDates__copy > strong > a[href$=".gif"]:before, .c-astlrFileItems__link > strong > a[href$=".gif"]:before, .c-astlrCopy__fieldname > strong > a[href$=".gif"]:before, .c-astlrCopy__field > strong > a[href$=".gif"]:before, .c-astlrCopy > p > strong > a[href$=".gif"]:before, .c-astlrCopy__accordionHeader > strong > a[href$=".gif"]:before, .c-astlrCopy__accordionField > strong > a[href$=".gif"]:before, .c-astlrStage__note > p > strong > a[href$=".gif"]:before, .c-astlrStage__uploader > p > strong > a[href$=".gif"]:before, .c-anncmts__body > strong > a[href$=".gif"]:before, .typography p > strong > a[href$=".gif"]:before, .c-form label > strong > a[href$=".gif"]:before, .c-form input.text > strong > a[href$=".gif"]:before, .c-form input.textarea > strong > a[href$=".gif"]:before,
.c-form textarea.text > strong > a[href$=".gif"]:before,
.c-form textarea.textarea > strong > a[href$=".gif"]:before, .c-form input[type=text] > strong > a[href$=".gif"]:before,
.c-form input[type=password] > strong > a[href$=".gif"]:before,
.c-form input[type=email] > strong > a[href$=".gif"]:before,
.c-form input[type=url] > strong > a[href$=".gif"]:before,
.c-form input[type=date] > strong > a[href$=".gif"]:before,
.c-form input[type=month] > strong > a[href$=".gif"]:before,
.c-form input[type=time] > strong > a[href$=".gif"]:before,
.c-form input[type=datetime] > strong > a[href$=".gif"]:before,
.c-form input[type=datetime-local] > strong > a[href$=".gif"]:before,
.c-form input[type=week] > strong > a[href$=".gif"]:before,
.c-form input[type=number] > strong > a[href$=".gif"]:before,
.c-form input[type=search] > strong > a[href$=".gif"]:before,
.c-form input[type=tel] > strong > a[href$=".gif"]:before,
.c-form input[type=color] > strong > a[href$=".gif"]:before,
.c-form textarea > strong > a[href$=".gif"]:before, .c-form__checkbox label > strong > a[href$=".gif"]:before, .c-form__dropdown > strong > a[href$=".gif"]:before, .c-form__dropdown select > option > strong > a[href$=".gif"]:before, .c-form__dropdown > label > strong > a[href$=".gif"]:before,
.c-elementalPublikationen__copystage > p > em > a[href$=".gif"]:before,
.dropzone-holder.uploadable > p > em > a[href$=".gif"]:before,
.c-schedule__copy > em > a[href$=".gif"]:before,
.c-lightbox__subline > em > a[href$=".gif"]:before,
.tobii__counter > em > a[href$=".gif"]:before,
.tobii-image figure > figcaption > em > a[href$=".gif"]:before,
.c-form .btn-toolbar > p > em > a[href$=".gif"]:before,
.c-books__autor > em > a[href$=".gif"]:before,
.c-books__copy > em > a[href$=".gif"]:before,
.c-books__verlag > em > a[href$=".gif"]:before,
.c-books__jahr > em > a[href$=".gif"]:before,
.c-books__isbn > em > a[href$=".gif"]:before,
.c-books__preis > em > a[href$=".gif"]:before,
.c-books__link > em > a[href$=".gif"]:before,
.c-astlrVideoDates__copy > em > a[href$=".gif"]:before,
.c-astlrFileItems__link > em > a[href$=".gif"]:before,
.c-astlrCopy__fieldname > em > a[href$=".gif"]:before,
.c-astlrCopy__field > em > a[href$=".gif"]:before,
.c-astlrCopy > p > em > a[href$=".gif"]:before,
.c-astlrCopy__accordionHeader > em > a[href$=".gif"]:before,
.c-astlrCopy__accordionField > em > a[href$=".gif"]:before,
.c-astlrStage__note > p > em > a[href$=".gif"]:before,
.c-astlrStage__uploader > p > em > a[href$=".gif"]:before,
.c-anncmts__body > em > a[href$=".gif"]:before,
.typography p > em > a[href$=".gif"]:before,
.c-form label > em > a[href$=".gif"]:before,
.c-form input.text > em > a[href$=".gif"]:before,
.c-form input.textarea > em > a[href$=".gif"]:before,
.c-form textarea.text > em > a[href$=".gif"]:before,
.c-form textarea.textarea > em > a[href$=".gif"]:before,
.c-form input[type=text] > em > a[href$=".gif"]:before,
.c-form input[type=password] > em > a[href$=".gif"]:before,
.c-form input[type=email] > em > a[href$=".gif"]:before,
.c-form input[type=url] > em > a[href$=".gif"]:before,
.c-form input[type=date] > em > a[href$=".gif"]:before,
.c-form input[type=month] > em > a[href$=".gif"]:before,
.c-form input[type=time] > em > a[href$=".gif"]:before,
.c-form input[type=datetime] > em > a[href$=".gif"]:before,
.c-form input[type=datetime-local] > em > a[href$=".gif"]:before,
.c-form input[type=week] > em > a[href$=".gif"]:before,
.c-form input[type=number] > em > a[href$=".gif"]:before,
.c-form input[type=search] > em > a[href$=".gif"]:before,
.c-form input[type=tel] > em > a[href$=".gif"]:before,
.c-form input[type=color] > em > a[href$=".gif"]:before,
.c-form textarea > em > a[href$=".gif"]:before,
.c-form__checkbox label > em > a[href$=".gif"]:before,
.c-form__dropdown > em > a[href$=".gif"]:before,
.c-form__dropdown select > option > em > a[href$=".gif"]:before,
.c-form__dropdown > label > em > a[href$=".gif"]:before, .c-elementalPublikationen__copystage > p > strong > a[href$=".GIF"]:before, .dropzone-holder.uploadable > p > strong > a[href$=".GIF"]:before, .c-schedule__copy > strong > a[href$=".GIF"]:before, .c-lightbox__subline > strong > a[href$=".GIF"]:before, .tobii__counter > strong > a[href$=".GIF"]:before, .tobii-image figure > figcaption > strong > a[href$=".GIF"]:before, .c-form .btn-toolbar > p > strong > a[href$=".GIF"]:before, .c-books__autor > strong > a[href$=".GIF"]:before, .c-books__copy > strong > a[href$=".GIF"]:before, .c-books__verlag > strong > a[href$=".GIF"]:before, .c-books__jahr > strong > a[href$=".GIF"]:before, .c-books__isbn > strong > a[href$=".GIF"]:before, .c-books__preis > strong > a[href$=".GIF"]:before, .c-books__link > strong > a[href$=".GIF"]:before, .c-astlrVideoDates__copy > strong > a[href$=".GIF"]:before, .c-astlrFileItems__link > strong > a[href$=".GIF"]:before, .c-astlrCopy__fieldname > strong > a[href$=".GIF"]:before, .c-astlrCopy__field > strong > a[href$=".GIF"]:before, .c-astlrCopy > p > strong > a[href$=".GIF"]:before, .c-astlrCopy__accordionHeader > strong > a[href$=".GIF"]:before, .c-astlrCopy__accordionField > strong > a[href$=".GIF"]:before, .c-astlrStage__note > p > strong > a[href$=".GIF"]:before, .c-astlrStage__uploader > p > strong > a[href$=".GIF"]:before, .c-anncmts__body > strong > a[href$=".GIF"]:before, .typography p > strong > a[href$=".GIF"]:before, .c-form label > strong > a[href$=".GIF"]:before, .c-form input.text > strong > a[href$=".GIF"]:before, .c-form input.textarea > strong > a[href$=".GIF"]:before,
.c-form textarea.text > strong > a[href$=".GIF"]:before,
.c-form textarea.textarea > strong > a[href$=".GIF"]:before, .c-form input[type=text] > strong > a[href$=".GIF"]:before,
.c-form input[type=password] > strong > a[href$=".GIF"]:before,
.c-form input[type=email] > strong > a[href$=".GIF"]:before,
.c-form input[type=url] > strong > a[href$=".GIF"]:before,
.c-form input[type=date] > strong > a[href$=".GIF"]:before,
.c-form input[type=month] > strong > a[href$=".GIF"]:before,
.c-form input[type=time] > strong > a[href$=".GIF"]:before,
.c-form input[type=datetime] > strong > a[href$=".GIF"]:before,
.c-form input[type=datetime-local] > strong > a[href$=".GIF"]:before,
.c-form input[type=week] > strong > a[href$=".GIF"]:before,
.c-form input[type=number] > strong > a[href$=".GIF"]:before,
.c-form input[type=search] > strong > a[href$=".GIF"]:before,
.c-form input[type=tel] > strong > a[href$=".GIF"]:before,
.c-form input[type=color] > strong > a[href$=".GIF"]:before,
.c-form textarea > strong > a[href$=".GIF"]:before, .c-form__checkbox label > strong > a[href$=".GIF"]:before, .c-form__dropdown > strong > a[href$=".GIF"]:before, .c-form__dropdown select > option > strong > a[href$=".GIF"]:before, .c-form__dropdown > label > strong > a[href$=".GIF"]:before,
.c-elementalPublikationen__copystage > p > em > a[href$=".GIF"]:before,
.dropzone-holder.uploadable > p > em > a[href$=".GIF"]:before,
.c-schedule__copy > em > a[href$=".GIF"]:before,
.c-lightbox__subline > em > a[href$=".GIF"]:before,
.tobii__counter > em > a[href$=".GIF"]:before,
.tobii-image figure > figcaption > em > a[href$=".GIF"]:before,
.c-form .btn-toolbar > p > em > a[href$=".GIF"]:before,
.c-books__autor > em > a[href$=".GIF"]:before,
.c-books__copy > em > a[href$=".GIF"]:before,
.c-books__verlag > em > a[href$=".GIF"]:before,
.c-books__jahr > em > a[href$=".GIF"]:before,
.c-books__isbn > em > a[href$=".GIF"]:before,
.c-books__preis > em > a[href$=".GIF"]:before,
.c-books__link > em > a[href$=".GIF"]:before,
.c-astlrVideoDates__copy > em > a[href$=".GIF"]:before,
.c-astlrFileItems__link > em > a[href$=".GIF"]:before,
.c-astlrCopy__fieldname > em > a[href$=".GIF"]:before,
.c-astlrCopy__field > em > a[href$=".GIF"]:before,
.c-astlrCopy > p > em > a[href$=".GIF"]:before,
.c-astlrCopy__accordionHeader > em > a[href$=".GIF"]:before,
.c-astlrCopy__accordionField > em > a[href$=".GIF"]:before,
.c-astlrStage__note > p > em > a[href$=".GIF"]:before,
.c-astlrStage__uploader > p > em > a[href$=".GIF"]:before,
.c-anncmts__body > em > a[href$=".GIF"]:before,
.typography p > em > a[href$=".GIF"]:before,
.c-form label > em > a[href$=".GIF"]:before,
.c-form input.text > em > a[href$=".GIF"]:before,
.c-form input.textarea > em > a[href$=".GIF"]:before,
.c-form textarea.text > em > a[href$=".GIF"]:before,
.c-form textarea.textarea > em > a[href$=".GIF"]:before,
.c-form input[type=text] > em > a[href$=".GIF"]:before,
.c-form input[type=password] > em > a[href$=".GIF"]:before,
.c-form input[type=email] > em > a[href$=".GIF"]:before,
.c-form input[type=url] > em > a[href$=".GIF"]:before,
.c-form input[type=date] > em > a[href$=".GIF"]:before,
.c-form input[type=month] > em > a[href$=".GIF"]:before,
.c-form input[type=time] > em > a[href$=".GIF"]:before,
.c-form input[type=datetime] > em > a[href$=".GIF"]:before,
.c-form input[type=datetime-local] > em > a[href$=".GIF"]:before,
.c-form input[type=week] > em > a[href$=".GIF"]:before,
.c-form input[type=number] > em > a[href$=".GIF"]:before,
.c-form input[type=search] > em > a[href$=".GIF"]:before,
.c-form input[type=tel] > em > a[href$=".GIF"]:before,
.c-form input[type=color] > em > a[href$=".GIF"]:before,
.c-form textarea > em > a[href$=".GIF"]:before,
.c-form__checkbox label > em > a[href$=".GIF"]:before,
.c-form__dropdown > em > a[href$=".GIF"]:before,
.c-form__dropdown select > option > em > a[href$=".GIF"]:before,
.c-form__dropdown > label > em > a[href$=".GIF"]:before, .c-elementalPublikationen__copystage > p > strong > a[href$=".jpg"]:before, .dropzone-holder.uploadable > p > strong > a[href$=".jpg"]:before, .c-schedule__copy > strong > a[href$=".jpg"]:before, .c-lightbox__subline > strong > a[href$=".jpg"]:before, .tobii__counter > strong > a[href$=".jpg"]:before, .tobii-image figure > figcaption > strong > a[href$=".jpg"]:before, .c-form .btn-toolbar > p > strong > a[href$=".jpg"]:before, .c-books__autor > strong > a[href$=".jpg"]:before, .c-books__copy > strong > a[href$=".jpg"]:before, .c-books__verlag > strong > a[href$=".jpg"]:before, .c-books__jahr > strong > a[href$=".jpg"]:before, .c-books__isbn > strong > a[href$=".jpg"]:before, .c-books__preis > strong > a[href$=".jpg"]:before, .c-books__link > strong > a[href$=".jpg"]:before, .c-astlrVideoDates__copy > strong > a[href$=".jpg"]:before, .c-astlrFileItems__link > strong > a[href$=".jpg"]:before, .c-astlrCopy__fieldname > strong > a[href$=".jpg"]:before, .c-astlrCopy__field > strong > a[href$=".jpg"]:before, .c-astlrCopy > p > strong > a[href$=".jpg"]:before, .c-astlrCopy__accordionHeader > strong > a[href$=".jpg"]:before, .c-astlrCopy__accordionField > strong > a[href$=".jpg"]:before, .c-astlrStage__note > p > strong > a[href$=".jpg"]:before, .c-astlrStage__uploader > p > strong > a[href$=".jpg"]:before, .c-anncmts__body > strong > a[href$=".jpg"]:before, .typography p > strong > a[href$=".jpg"]:before, .c-form label > strong > a[href$=".jpg"]:before, .c-form input.text > strong > a[href$=".jpg"]:before, .c-form input.textarea > strong > a[href$=".jpg"]:before,
.c-form textarea.text > strong > a[href$=".jpg"]:before,
.c-form textarea.textarea > strong > a[href$=".jpg"]:before, .c-form input[type=text] > strong > a[href$=".jpg"]:before,
.c-form input[type=password] > strong > a[href$=".jpg"]:before,
.c-form input[type=email] > strong > a[href$=".jpg"]:before,
.c-form input[type=url] > strong > a[href$=".jpg"]:before,
.c-form input[type=date] > strong > a[href$=".jpg"]:before,
.c-form input[type=month] > strong > a[href$=".jpg"]:before,
.c-form input[type=time] > strong > a[href$=".jpg"]:before,
.c-form input[type=datetime] > strong > a[href$=".jpg"]:before,
.c-form input[type=datetime-local] > strong > a[href$=".jpg"]:before,
.c-form input[type=week] > strong > a[href$=".jpg"]:before,
.c-form input[type=number] > strong > a[href$=".jpg"]:before,
.c-form input[type=search] > strong > a[href$=".jpg"]:before,
.c-form input[type=tel] > strong > a[href$=".jpg"]:before,
.c-form input[type=color] > strong > a[href$=".jpg"]:before,
.c-form textarea > strong > a[href$=".jpg"]:before, .c-form__checkbox label > strong > a[href$=".jpg"]:before, .c-form__dropdown > strong > a[href$=".jpg"]:before, .c-form__dropdown select > option > strong > a[href$=".jpg"]:before, .c-form__dropdown > label > strong > a[href$=".jpg"]:before,
.c-elementalPublikationen__copystage > p > em > a[href$=".jpg"]:before,
.dropzone-holder.uploadable > p > em > a[href$=".jpg"]:before,
.c-schedule__copy > em > a[href$=".jpg"]:before,
.c-lightbox__subline > em > a[href$=".jpg"]:before,
.tobii__counter > em > a[href$=".jpg"]:before,
.tobii-image figure > figcaption > em > a[href$=".jpg"]:before,
.c-form .btn-toolbar > p > em > a[href$=".jpg"]:before,
.c-books__autor > em > a[href$=".jpg"]:before,
.c-books__copy > em > a[href$=".jpg"]:before,
.c-books__verlag > em > a[href$=".jpg"]:before,
.c-books__jahr > em > a[href$=".jpg"]:before,
.c-books__isbn > em > a[href$=".jpg"]:before,
.c-books__preis > em > a[href$=".jpg"]:before,
.c-books__link > em > a[href$=".jpg"]:before,
.c-astlrVideoDates__copy > em > a[href$=".jpg"]:before,
.c-astlrFileItems__link > em > a[href$=".jpg"]:before,
.c-astlrCopy__fieldname > em > a[href$=".jpg"]:before,
.c-astlrCopy__field > em > a[href$=".jpg"]:before,
.c-astlrCopy > p > em > a[href$=".jpg"]:before,
.c-astlrCopy__accordionHeader > em > a[href$=".jpg"]:before,
.c-astlrCopy__accordionField > em > a[href$=".jpg"]:before,
.c-astlrStage__note > p > em > a[href$=".jpg"]:before,
.c-astlrStage__uploader > p > em > a[href$=".jpg"]:before,
.c-anncmts__body > em > a[href$=".jpg"]:before,
.typography p > em > a[href$=".jpg"]:before,
.c-form label > em > a[href$=".jpg"]:before,
.c-form input.text > em > a[href$=".jpg"]:before,
.c-form input.textarea > em > a[href$=".jpg"]:before,
.c-form textarea.text > em > a[href$=".jpg"]:before,
.c-form textarea.textarea > em > a[href$=".jpg"]:before,
.c-form input[type=text] > em > a[href$=".jpg"]:before,
.c-form input[type=password] > em > a[href$=".jpg"]:before,
.c-form input[type=email] > em > a[href$=".jpg"]:before,
.c-form input[type=url] > em > a[href$=".jpg"]:before,
.c-form input[type=date] > em > a[href$=".jpg"]:before,
.c-form input[type=month] > em > a[href$=".jpg"]:before,
.c-form input[type=time] > em > a[href$=".jpg"]:before,
.c-form input[type=datetime] > em > a[href$=".jpg"]:before,
.c-form input[type=datetime-local] > em > a[href$=".jpg"]:before,
.c-form input[type=week] > em > a[href$=".jpg"]:before,
.c-form input[type=number] > em > a[href$=".jpg"]:before,
.c-form input[type=search] > em > a[href$=".jpg"]:before,
.c-form input[type=tel] > em > a[href$=".jpg"]:before,
.c-form input[type=color] > em > a[href$=".jpg"]:before,
.c-form textarea > em > a[href$=".jpg"]:before,
.c-form__checkbox label > em > a[href$=".jpg"]:before,
.c-form__dropdown > em > a[href$=".jpg"]:before,
.c-form__dropdown select > option > em > a[href$=".jpg"]:before,
.c-form__dropdown > label > em > a[href$=".jpg"]:before, .c-elementalPublikationen__copystage > p > strong > a[href$=".JPG"]:before, .dropzone-holder.uploadable > p > strong > a[href$=".JPG"]:before, .c-schedule__copy > strong > a[href$=".JPG"]:before, .c-lightbox__subline > strong > a[href$=".JPG"]:before, .tobii__counter > strong > a[href$=".JPG"]:before, .tobii-image figure > figcaption > strong > a[href$=".JPG"]:before, .c-form .btn-toolbar > p > strong > a[href$=".JPG"]:before, .c-books__autor > strong > a[href$=".JPG"]:before, .c-books__copy > strong > a[href$=".JPG"]:before, .c-books__verlag > strong > a[href$=".JPG"]:before, .c-books__jahr > strong > a[href$=".JPG"]:before, .c-books__isbn > strong > a[href$=".JPG"]:before, .c-books__preis > strong > a[href$=".JPG"]:before, .c-books__link > strong > a[href$=".JPG"]:before, .c-astlrVideoDates__copy > strong > a[href$=".JPG"]:before, .c-astlrFileItems__link > strong > a[href$=".JPG"]:before, .c-astlrCopy__fieldname > strong > a[href$=".JPG"]:before, .c-astlrCopy__field > strong > a[href$=".JPG"]:before, .c-astlrCopy > p > strong > a[href$=".JPG"]:before, .c-astlrCopy__accordionHeader > strong > a[href$=".JPG"]:before, .c-astlrCopy__accordionField > strong > a[href$=".JPG"]:before, .c-astlrStage__note > p > strong > a[href$=".JPG"]:before, .c-astlrStage__uploader > p > strong > a[href$=".JPG"]:before, .c-anncmts__body > strong > a[href$=".JPG"]:before, .typography p > strong > a[href$=".JPG"]:before, .c-form label > strong > a[href$=".JPG"]:before, .c-form input.text > strong > a[href$=".JPG"]:before, .c-form input.textarea > strong > a[href$=".JPG"]:before,
.c-form textarea.text > strong > a[href$=".JPG"]:before,
.c-form textarea.textarea > strong > a[href$=".JPG"]:before, .c-form input[type=text] > strong > a[href$=".JPG"]:before,
.c-form input[type=password] > strong > a[href$=".JPG"]:before,
.c-form input[type=email] > strong > a[href$=".JPG"]:before,
.c-form input[type=url] > strong > a[href$=".JPG"]:before,
.c-form input[type=date] > strong > a[href$=".JPG"]:before,
.c-form input[type=month] > strong > a[href$=".JPG"]:before,
.c-form input[type=time] > strong > a[href$=".JPG"]:before,
.c-form input[type=datetime] > strong > a[href$=".JPG"]:before,
.c-form input[type=datetime-local] > strong > a[href$=".JPG"]:before,
.c-form input[type=week] > strong > a[href$=".JPG"]:before,
.c-form input[type=number] > strong > a[href$=".JPG"]:before,
.c-form input[type=search] > strong > a[href$=".JPG"]:before,
.c-form input[type=tel] > strong > a[href$=".JPG"]:before,
.c-form input[type=color] > strong > a[href$=".JPG"]:before,
.c-form textarea > strong > a[href$=".JPG"]:before, .c-form__checkbox label > strong > a[href$=".JPG"]:before, .c-form__dropdown > strong > a[href$=".JPG"]:before, .c-form__dropdown select > option > strong > a[href$=".JPG"]:before, .c-form__dropdown > label > strong > a[href$=".JPG"]:before,
.c-elementalPublikationen__copystage > p > em > a[href$=".JPG"]:before,
.dropzone-holder.uploadable > p > em > a[href$=".JPG"]:before,
.c-schedule__copy > em > a[href$=".JPG"]:before,
.c-lightbox__subline > em > a[href$=".JPG"]:before,
.tobii__counter > em > a[href$=".JPG"]:before,
.tobii-image figure > figcaption > em > a[href$=".JPG"]:before,
.c-form .btn-toolbar > p > em > a[href$=".JPG"]:before,
.c-books__autor > em > a[href$=".JPG"]:before,
.c-books__copy > em > a[href$=".JPG"]:before,
.c-books__verlag > em > a[href$=".JPG"]:before,
.c-books__jahr > em > a[href$=".JPG"]:before,
.c-books__isbn > em > a[href$=".JPG"]:before,
.c-books__preis > em > a[href$=".JPG"]:before,
.c-books__link > em > a[href$=".JPG"]:before,
.c-astlrVideoDates__copy > em > a[href$=".JPG"]:before,
.c-astlrFileItems__link > em > a[href$=".JPG"]:before,
.c-astlrCopy__fieldname > em > a[href$=".JPG"]:before,
.c-astlrCopy__field > em > a[href$=".JPG"]:before,
.c-astlrCopy > p > em > a[href$=".JPG"]:before,
.c-astlrCopy__accordionHeader > em > a[href$=".JPG"]:before,
.c-astlrCopy__accordionField > em > a[href$=".JPG"]:before,
.c-astlrStage__note > p > em > a[href$=".JPG"]:before,
.c-astlrStage__uploader > p > em > a[href$=".JPG"]:before,
.c-anncmts__body > em > a[href$=".JPG"]:before,
.typography p > em > a[href$=".JPG"]:before,
.c-form label > em > a[href$=".JPG"]:before,
.c-form input.text > em > a[href$=".JPG"]:before,
.c-form input.textarea > em > a[href$=".JPG"]:before,
.c-form textarea.text > em > a[href$=".JPG"]:before,
.c-form textarea.textarea > em > a[href$=".JPG"]:before,
.c-form input[type=text] > em > a[href$=".JPG"]:before,
.c-form input[type=password] > em > a[href$=".JPG"]:before,
.c-form input[type=email] > em > a[href$=".JPG"]:before,
.c-form input[type=url] > em > a[href$=".JPG"]:before,
.c-form input[type=date] > em > a[href$=".JPG"]:before,
.c-form input[type=month] > em > a[href$=".JPG"]:before,
.c-form input[type=time] > em > a[href$=".JPG"]:before,
.c-form input[type=datetime] > em > a[href$=".JPG"]:before,
.c-form input[type=datetime-local] > em > a[href$=".JPG"]:before,
.c-form input[type=week] > em > a[href$=".JPG"]:before,
.c-form input[type=number] > em > a[href$=".JPG"]:before,
.c-form input[type=search] > em > a[href$=".JPG"]:before,
.c-form input[type=tel] > em > a[href$=".JPG"]:before,
.c-form input[type=color] > em > a[href$=".JPG"]:before,
.c-form textarea > em > a[href$=".JPG"]:before,
.c-form__checkbox label > em > a[href$=".JPG"]:before,
.c-form__dropdown > em > a[href$=".JPG"]:before,
.c-form__dropdown select > option > em > a[href$=".JPG"]:before,
.c-form__dropdown > label > em > a[href$=".JPG"]:before, .c-elementalPublikationen__copystage > p > strong > a[href$=".pdf"]:before, .dropzone-holder.uploadable > p > strong > a[href$=".pdf"]:before, .c-schedule__copy > strong > a[href$=".pdf"]:before, .c-lightbox__subline > strong > a[href$=".pdf"]:before, .tobii__counter > strong > a[href$=".pdf"]:before, .tobii-image figure > figcaption > strong > a[href$=".pdf"]:before, .c-form .btn-toolbar > p > strong > a[href$=".pdf"]:before, .c-books__autor > strong > a[href$=".pdf"]:before, .c-books__copy > strong > a[href$=".pdf"]:before, .c-books__verlag > strong > a[href$=".pdf"]:before, .c-books__jahr > strong > a[href$=".pdf"]:before, .c-books__isbn > strong > a[href$=".pdf"]:before, .c-books__preis > strong > a[href$=".pdf"]:before, .c-books__link > strong > a[href$=".pdf"]:before, .c-astlrVideoDates__copy > strong > a[href$=".pdf"]:before, .c-astlrFileItems__link > strong > a[href$=".pdf"]:before, .c-astlrCopy__fieldname > strong > a[href$=".pdf"]:before, .c-astlrCopy__field > strong > a[href$=".pdf"]:before, .c-astlrCopy > p > strong > a[href$=".pdf"]:before, .c-astlrCopy__accordionHeader > strong > a[href$=".pdf"]:before, .c-astlrCopy__accordionField > strong > a[href$=".pdf"]:before, .c-astlrStage__note > p > strong > a[href$=".pdf"]:before, .c-astlrStage__uploader > p > strong > a[href$=".pdf"]:before, .c-anncmts__body > strong > a[href$=".pdf"]:before, .typography p > strong > a[href$=".pdf"]:before, .c-form label > strong > a[href$=".pdf"]:before, .c-form input.text > strong > a[href$=".pdf"]:before, .c-form input.textarea > strong > a[href$=".pdf"]:before,
.c-form textarea.text > strong > a[href$=".pdf"]:before,
.c-form textarea.textarea > strong > a[href$=".pdf"]:before, .c-form input[type=text] > strong > a[href$=".pdf"]:before,
.c-form input[type=password] > strong > a[href$=".pdf"]:before,
.c-form input[type=email] > strong > a[href$=".pdf"]:before,
.c-form input[type=url] > strong > a[href$=".pdf"]:before,
.c-form input[type=date] > strong > a[href$=".pdf"]:before,
.c-form input[type=month] > strong > a[href$=".pdf"]:before,
.c-form input[type=time] > strong > a[href$=".pdf"]:before,
.c-form input[type=datetime] > strong > a[href$=".pdf"]:before,
.c-form input[type=datetime-local] > strong > a[href$=".pdf"]:before,
.c-form input[type=week] > strong > a[href$=".pdf"]:before,
.c-form input[type=number] > strong > a[href$=".pdf"]:before,
.c-form input[type=search] > strong > a[href$=".pdf"]:before,
.c-form input[type=tel] > strong > a[href$=".pdf"]:before,
.c-form input[type=color] > strong > a[href$=".pdf"]:before,
.c-form textarea > strong > a[href$=".pdf"]:before, .c-form__checkbox label > strong > a[href$=".pdf"]:before, .c-form__dropdown > strong > a[href$=".pdf"]:before, .c-form__dropdown select > option > strong > a[href$=".pdf"]:before, .c-form__dropdown > label > strong > a[href$=".pdf"]:before,
.c-elementalPublikationen__copystage > p > em > a[href$=".pdf"]:before,
.dropzone-holder.uploadable > p > em > a[href$=".pdf"]:before,
.c-schedule__copy > em > a[href$=".pdf"]:before,
.c-lightbox__subline > em > a[href$=".pdf"]:before,
.tobii__counter > em > a[href$=".pdf"]:before,
.tobii-image figure > figcaption > em > a[href$=".pdf"]:before,
.c-form .btn-toolbar > p > em > a[href$=".pdf"]:before,
.c-books__autor > em > a[href$=".pdf"]:before,
.c-books__copy > em > a[href$=".pdf"]:before,
.c-books__verlag > em > a[href$=".pdf"]:before,
.c-books__jahr > em > a[href$=".pdf"]:before,
.c-books__isbn > em > a[href$=".pdf"]:before,
.c-books__preis > em > a[href$=".pdf"]:before,
.c-books__link > em > a[href$=".pdf"]:before,
.c-astlrVideoDates__copy > em > a[href$=".pdf"]:before,
.c-astlrFileItems__link > em > a[href$=".pdf"]:before,
.c-astlrCopy__fieldname > em > a[href$=".pdf"]:before,
.c-astlrCopy__field > em > a[href$=".pdf"]:before,
.c-astlrCopy > p > em > a[href$=".pdf"]:before,
.c-astlrCopy__accordionHeader > em > a[href$=".pdf"]:before,
.c-astlrCopy__accordionField > em > a[href$=".pdf"]:before,
.c-astlrStage__note > p > em > a[href$=".pdf"]:before,
.c-astlrStage__uploader > p > em > a[href$=".pdf"]:before,
.c-anncmts__body > em > a[href$=".pdf"]:before,
.typography p > em > a[href$=".pdf"]:before,
.c-form label > em > a[href$=".pdf"]:before,
.c-form input.text > em > a[href$=".pdf"]:before,
.c-form input.textarea > em > a[href$=".pdf"]:before,
.c-form textarea.text > em > a[href$=".pdf"]:before,
.c-form textarea.textarea > em > a[href$=".pdf"]:before,
.c-form input[type=text] > em > a[href$=".pdf"]:before,
.c-form input[type=password] > em > a[href$=".pdf"]:before,
.c-form input[type=email] > em > a[href$=".pdf"]:before,
.c-form input[type=url] > em > a[href$=".pdf"]:before,
.c-form input[type=date] > em > a[href$=".pdf"]:before,
.c-form input[type=month] > em > a[href$=".pdf"]:before,
.c-form input[type=time] > em > a[href$=".pdf"]:before,
.c-form input[type=datetime] > em > a[href$=".pdf"]:before,
.c-form input[type=datetime-local] > em > a[href$=".pdf"]:before,
.c-form input[type=week] > em > a[href$=".pdf"]:before,
.c-form input[type=number] > em > a[href$=".pdf"]:before,
.c-form input[type=search] > em > a[href$=".pdf"]:before,
.c-form input[type=tel] > em > a[href$=".pdf"]:before,
.c-form input[type=color] > em > a[href$=".pdf"]:before,
.c-form textarea > em > a[href$=".pdf"]:before,
.c-form__checkbox label > em > a[href$=".pdf"]:before,
.c-form__dropdown > em > a[href$=".pdf"]:before,
.c-form__dropdown select > option > em > a[href$=".pdf"]:before,
.c-form__dropdown > label > em > a[href$=".pdf"]:before, .c-elementalPublikationen__copystage > p > a[href^=mailto]:before, .dropzone-holder.uploadable > p > a[href^=mailto]:before, .c-schedule__copy > a[href^=mailto]:before, .c-lightbox__subline > a[href^=mailto]:before, .tobii__counter > a[href^=mailto]:before, .tobii-image figure > figcaption > a[href^=mailto]:before, .c-form .btn-toolbar > p > a[href^=mailto]:before, .c-books__autor > a[href^=mailto]:before, .c-books__copy > a[href^=mailto]:before, .c-books__verlag > a[href^=mailto]:before, .c-books__jahr > a[href^=mailto]:before, .c-books__isbn > a[href^=mailto]:before, .c-books__preis > a[href^=mailto]:before, .c-books__link > a[href^=mailto]:before, .c-astlrVideoDates__copy > a[href^=mailto]:before, .c-astlrFileItems__link > a[href^=mailto]:before, .c-astlrCopy__fieldname > a[href^=mailto]:before, .c-astlrCopy__field > a[href^=mailto]:before, .c-astlrCopy > p > a[href^=mailto]:before, .c-astlrCopy__accordionHeader > a[href^=mailto]:before, .c-astlrCopy__accordionField > a[href^=mailto]:before, .c-astlrStage__note > p > a[href^=mailto]:before, .c-astlrStage__uploader > p > a[href^=mailto]:before, .c-anncmts__body > a[href^=mailto]:before, .typography p > a[href^=mailto]:before, .c-form label > a[href^=mailto]:before, .c-form input.text > a[href^=mailto]:before, .c-form input.textarea > a[href^=mailto]:before,
.c-form textarea.text > a[href^=mailto]:before,
.c-form textarea.textarea > a[href^=mailto]:before, .c-form input[type=text] > a[href^=mailto]:before,
.c-form input[type=password] > a[href^=mailto]:before,
.c-form input[type=email] > a[href^=mailto]:before,
.c-form input[type=url] > a[href^=mailto]:before,
.c-form input[type=date] > a[href^=mailto]:before,
.c-form input[type=month] > a[href^=mailto]:before,
.c-form input[type=time] > a[href^=mailto]:before,
.c-form input[type=datetime] > a[href^=mailto]:before,
.c-form input[type=datetime-local] > a[href^=mailto]:before,
.c-form input[type=week] > a[href^=mailto]:before,
.c-form input[type=number] > a[href^=mailto]:before,
.c-form input[type=search] > a[href^=mailto]:before,
.c-form input[type=tel] > a[href^=mailto]:before,
.c-form input[type=color] > a[href^=mailto]:before,
.c-form textarea > a[href^=mailto]:before, .c-form__checkbox label > a[href^=mailto]:before, .c-form__dropdown > a[href^=mailto]:before, .c-form__dropdown select > option > a[href^=mailto]:before, .c-form__dropdown > label > a[href^=mailto]:before, .c-elementalPublikationen__copystage > p > a[href^="https://"]:before, .dropzone-holder.uploadable > p > a[href^="https://"]:before, .c-schedule__copy > a[href^="https://"]:before, .c-lightbox__subline > a[href^="https://"]:before, .tobii__counter > a[href^="https://"]:before, .tobii-image figure > figcaption > a[href^="https://"]:before, .c-form .btn-toolbar > p > a[href^="https://"]:before, .c-books__autor > a[href^="https://"]:before, .c-books__copy > a[href^="https://"]:before, .c-books__verlag > a[href^="https://"]:before, .c-books__jahr > a[href^="https://"]:before, .c-books__isbn > a[href^="https://"]:before, .c-books__preis > a[href^="https://"]:before, .c-books__link > a[href^="https://"]:before, .c-astlrVideoDates__copy > a[href^="https://"]:before, .c-astlrFileItems__link > a[href^="https://"]:before, .c-astlrCopy__fieldname > a[href^="https://"]:before, .c-astlrCopy__field > a[href^="https://"]:before, .c-astlrCopy > p > a[href^="https://"]:before, .c-astlrCopy__accordionHeader > a[href^="https://"]:before, .c-astlrCopy__accordionField > a[href^="https://"]:before, .c-astlrStage__note > p > a[href^="https://"]:before, .c-astlrStage__uploader > p > a[href^="https://"]:before, .c-anncmts__body > a[href^="https://"]:before, .typography p > a[href^="https://"]:before, .c-form label > a[href^="https://"]:before, .c-form input.text > a[href^="https://"]:before, .c-form input.textarea > a[href^="https://"]:before,
.c-form textarea.text > a[href^="https://"]:before,
.c-form textarea.textarea > a[href^="https://"]:before, .c-form input[type=text] > a[href^="https://"]:before,
.c-form input[type=password] > a[href^="https://"]:before,
.c-form input[type=email] > a[href^="https://"]:before,
.c-form input[type=url] > a[href^="https://"]:before,
.c-form input[type=date] > a[href^="https://"]:before,
.c-form input[type=month] > a[href^="https://"]:before,
.c-form input[type=time] > a[href^="https://"]:before,
.c-form input[type=datetime] > a[href^="https://"]:before,
.c-form input[type=datetime-local] > a[href^="https://"]:before,
.c-form input[type=week] > a[href^="https://"]:before,
.c-form input[type=number] > a[href^="https://"]:before,
.c-form input[type=search] > a[href^="https://"]:before,
.c-form input[type=tel] > a[href^="https://"]:before,
.c-form input[type=color] > a[href^="https://"]:before,
.c-form textarea > a[href^="https://"]:before, .c-form__checkbox label > a[href^="https://"]:before, .c-form__dropdown > a[href^="https://"]:before, .c-form__dropdown select > option > a[href^="https://"]:before, .c-form__dropdown > label > a[href^="https://"]:before, .c-elementalPublikationen__copystage > p > a[href^="http://"]:before, .dropzone-holder.uploadable > p > a[href^="http://"]:before, .c-schedule__copy > a[href^="http://"]:before, .c-lightbox__subline > a[href^="http://"]:before, .tobii__counter > a[href^="http://"]:before, .tobii-image figure > figcaption > a[href^="http://"]:before, .c-form .btn-toolbar > p > a[href^="http://"]:before, .c-books__autor > a[href^="http://"]:before, .c-books__copy > a[href^="http://"]:before, .c-books__verlag > a[href^="http://"]:before, .c-books__jahr > a[href^="http://"]:before, .c-books__isbn > a[href^="http://"]:before, .c-books__preis > a[href^="http://"]:before, .c-books__link > a[href^="http://"]:before, .c-astlrVideoDates__copy > a[href^="http://"]:before, .c-astlrFileItems__link > a[href^="http://"]:before, .c-astlrCopy__fieldname > a[href^="http://"]:before, .c-astlrCopy__field > a[href^="http://"]:before, .c-astlrCopy > p > a[href^="http://"]:before, .c-astlrCopy__accordionHeader > a[href^="http://"]:before, .c-astlrCopy__accordionField > a[href^="http://"]:before, .c-astlrStage__note > p > a[href^="http://"]:before, .c-astlrStage__uploader > p > a[href^="http://"]:before, .c-anncmts__body > a[href^="http://"]:before, .typography p > a[href^="http://"]:before, .c-form label > a[href^="http://"]:before, .c-form input.text > a[href^="http://"]:before, .c-form input.textarea > a[href^="http://"]:before,
.c-form textarea.text > a[href^="http://"]:before,
.c-form textarea.textarea > a[href^="http://"]:before, .c-form input[type=text] > a[href^="http://"]:before,
.c-form input[type=password] > a[href^="http://"]:before,
.c-form input[type=email] > a[href^="http://"]:before,
.c-form input[type=url] > a[href^="http://"]:before,
.c-form input[type=date] > a[href^="http://"]:before,
.c-form input[type=month] > a[href^="http://"]:before,
.c-form input[type=time] > a[href^="http://"]:before,
.c-form input[type=datetime] > a[href^="http://"]:before,
.c-form input[type=datetime-local] > a[href^="http://"]:before,
.c-form input[type=week] > a[href^="http://"]:before,
.c-form input[type=number] > a[href^="http://"]:before,
.c-form input[type=search] > a[href^="http://"]:before,
.c-form input[type=tel] > a[href^="http://"]:before,
.c-form input[type=color] > a[href^="http://"]:before,
.c-form textarea > a[href^="http://"]:before, .c-form__checkbox label > a[href^="http://"]:before, .c-form__dropdown > a[href^="http://"]:before, .c-form__dropdown select > option > a[href^="http://"]:before, .c-form__dropdown > label > a[href^="http://"]:before, .c-elementalPublikationen__copystage > p > a[href$=".png"]:before, .dropzone-holder.uploadable > p > a[href$=".png"]:before, .c-schedule__copy > a[href$=".png"]:before, .c-lightbox__subline > a[href$=".png"]:before, .tobii__counter > a[href$=".png"]:before, .tobii-image figure > figcaption > a[href$=".png"]:before, .c-form .btn-toolbar > p > a[href$=".png"]:before, .c-books__autor > a[href$=".png"]:before, .c-books__copy > a[href$=".png"]:before, .c-books__verlag > a[href$=".png"]:before, .c-books__jahr > a[href$=".png"]:before, .c-books__isbn > a[href$=".png"]:before, .c-books__preis > a[href$=".png"]:before, .c-books__link > a[href$=".png"]:before, .c-astlrVideoDates__copy > a[href$=".png"]:before, .c-astlrFileItems__link > a[href$=".png"]:before, .c-astlrCopy__fieldname > a[href$=".png"]:before, .c-astlrCopy__field > a[href$=".png"]:before, .c-astlrCopy > p > a[href$=".png"]:before, .c-astlrCopy__accordionHeader > a[href$=".png"]:before, .c-astlrCopy__accordionField > a[href$=".png"]:before, .c-astlrStage__note > p > a[href$=".png"]:before, .c-astlrStage__uploader > p > a[href$=".png"]:before, .c-anncmts__body > a[href$=".png"]:before, .typography p > a[href$=".png"]:before, .c-form label > a[href$=".png"]:before, .c-form input.text > a[href$=".png"]:before, .c-form input.textarea > a[href$=".png"]:before,
.c-form textarea.text > a[href$=".png"]:before,
.c-form textarea.textarea > a[href$=".png"]:before, .c-form input[type=text] > a[href$=".png"]:before,
.c-form input[type=password] > a[href$=".png"]:before,
.c-form input[type=email] > a[href$=".png"]:before,
.c-form input[type=url] > a[href$=".png"]:before,
.c-form input[type=date] > a[href$=".png"]:before,
.c-form input[type=month] > a[href$=".png"]:before,
.c-form input[type=time] > a[href$=".png"]:before,
.c-form input[type=datetime] > a[href$=".png"]:before,
.c-form input[type=datetime-local] > a[href$=".png"]:before,
.c-form input[type=week] > a[href$=".png"]:before,
.c-form input[type=number] > a[href$=".png"]:before,
.c-form input[type=search] > a[href$=".png"]:before,
.c-form input[type=tel] > a[href$=".png"]:before,
.c-form input[type=color] > a[href$=".png"]:before,
.c-form textarea > a[href$=".png"]:before, .c-form__checkbox label > a[href$=".png"]:before, .c-form__dropdown > a[href$=".png"]:before, .c-form__dropdown select > option > a[href$=".png"]:before, .c-form__dropdown > label > a[href$=".png"]:before, .c-elementalPublikationen__copystage > p > a[href$=".PNG"]:before, .dropzone-holder.uploadable > p > a[href$=".PNG"]:before, .c-schedule__copy > a[href$=".PNG"]:before, .c-lightbox__subline > a[href$=".PNG"]:before, .tobii__counter > a[href$=".PNG"]:before, .tobii-image figure > figcaption > a[href$=".PNG"]:before, .c-form .btn-toolbar > p > a[href$=".PNG"]:before, .c-books__autor > a[href$=".PNG"]:before, .c-books__copy > a[href$=".PNG"]:before, .c-books__verlag > a[href$=".PNG"]:before, .c-books__jahr > a[href$=".PNG"]:before, .c-books__isbn > a[href$=".PNG"]:before, .c-books__preis > a[href$=".PNG"]:before, .c-books__link > a[href$=".PNG"]:before, .c-astlrVideoDates__copy > a[href$=".PNG"]:before, .c-astlrFileItems__link > a[href$=".PNG"]:before, .c-astlrCopy__fieldname > a[href$=".PNG"]:before, .c-astlrCopy__field > a[href$=".PNG"]:before, .c-astlrCopy > p > a[href$=".PNG"]:before, .c-astlrCopy__accordionHeader > a[href$=".PNG"]:before, .c-astlrCopy__accordionField > a[href$=".PNG"]:before, .c-astlrStage__note > p > a[href$=".PNG"]:before, .c-astlrStage__uploader > p > a[href$=".PNG"]:before, .c-anncmts__body > a[href$=".PNG"]:before, .typography p > a[href$=".PNG"]:before, .c-form label > a[href$=".PNG"]:before, .c-form input.text > a[href$=".PNG"]:before, .c-form input.textarea > a[href$=".PNG"]:before,
.c-form textarea.text > a[href$=".PNG"]:before,
.c-form textarea.textarea > a[href$=".PNG"]:before, .c-form input[type=text] > a[href$=".PNG"]:before,
.c-form input[type=password] > a[href$=".PNG"]:before,
.c-form input[type=email] > a[href$=".PNG"]:before,
.c-form input[type=url] > a[href$=".PNG"]:before,
.c-form input[type=date] > a[href$=".PNG"]:before,
.c-form input[type=month] > a[href$=".PNG"]:before,
.c-form input[type=time] > a[href$=".PNG"]:before,
.c-form input[type=datetime] > a[href$=".PNG"]:before,
.c-form input[type=datetime-local] > a[href$=".PNG"]:before,
.c-form input[type=week] > a[href$=".PNG"]:before,
.c-form input[type=number] > a[href$=".PNG"]:before,
.c-form input[type=search] > a[href$=".PNG"]:before,
.c-form input[type=tel] > a[href$=".PNG"]:before,
.c-form input[type=color] > a[href$=".PNG"]:before,
.c-form textarea > a[href$=".PNG"]:before, .c-form__checkbox label > a[href$=".PNG"]:before, .c-form__dropdown > a[href$=".PNG"]:before, .c-form__dropdown select > option > a[href$=".PNG"]:before, .c-form__dropdown > label > a[href$=".PNG"]:before, .c-elementalPublikationen__copystage > p > a[href$=".gif"]:before, .dropzone-holder.uploadable > p > a[href$=".gif"]:before, .c-schedule__copy > a[href$=".gif"]:before, .c-lightbox__subline > a[href$=".gif"]:before, .tobii__counter > a[href$=".gif"]:before, .tobii-image figure > figcaption > a[href$=".gif"]:before, .c-form .btn-toolbar > p > a[href$=".gif"]:before, .c-books__autor > a[href$=".gif"]:before, .c-books__copy > a[href$=".gif"]:before, .c-books__verlag > a[href$=".gif"]:before, .c-books__jahr > a[href$=".gif"]:before, .c-books__isbn > a[href$=".gif"]:before, .c-books__preis > a[href$=".gif"]:before, .c-books__link > a[href$=".gif"]:before, .c-astlrVideoDates__copy > a[href$=".gif"]:before, .c-astlrFileItems__link > a[href$=".gif"]:before, .c-astlrCopy__fieldname > a[href$=".gif"]:before, .c-astlrCopy__field > a[href$=".gif"]:before, .c-astlrCopy > p > a[href$=".gif"]:before, .c-astlrCopy__accordionHeader > a[href$=".gif"]:before, .c-astlrCopy__accordionField > a[href$=".gif"]:before, .c-astlrStage__note > p > a[href$=".gif"]:before, .c-astlrStage__uploader > p > a[href$=".gif"]:before, .c-anncmts__body > a[href$=".gif"]:before, .typography p > a[href$=".gif"]:before, .c-form label > a[href$=".gif"]:before, .c-form input.text > a[href$=".gif"]:before, .c-form input.textarea > a[href$=".gif"]:before,
.c-form textarea.text > a[href$=".gif"]:before,
.c-form textarea.textarea > a[href$=".gif"]:before, .c-form input[type=text] > a[href$=".gif"]:before,
.c-form input[type=password] > a[href$=".gif"]:before,
.c-form input[type=email] > a[href$=".gif"]:before,
.c-form input[type=url] > a[href$=".gif"]:before,
.c-form input[type=date] > a[href$=".gif"]:before,
.c-form input[type=month] > a[href$=".gif"]:before,
.c-form input[type=time] > a[href$=".gif"]:before,
.c-form input[type=datetime] > a[href$=".gif"]:before,
.c-form input[type=datetime-local] > a[href$=".gif"]:before,
.c-form input[type=week] > a[href$=".gif"]:before,
.c-form input[type=number] > a[href$=".gif"]:before,
.c-form input[type=search] > a[href$=".gif"]:before,
.c-form input[type=tel] > a[href$=".gif"]:before,
.c-form input[type=color] > a[href$=".gif"]:before,
.c-form textarea > a[href$=".gif"]:before, .c-form__checkbox label > a[href$=".gif"]:before, .c-form__dropdown > a[href$=".gif"]:before, .c-form__dropdown select > option > a[href$=".gif"]:before, .c-form__dropdown > label > a[href$=".gif"]:before, .c-elementalPublikationen__copystage > p > a[href$=".GIF"]:before, .dropzone-holder.uploadable > p > a[href$=".GIF"]:before, .c-schedule__copy > a[href$=".GIF"]:before, .c-lightbox__subline > a[href$=".GIF"]:before, .tobii__counter > a[href$=".GIF"]:before, .tobii-image figure > figcaption > a[href$=".GIF"]:before, .c-form .btn-toolbar > p > a[href$=".GIF"]:before, .c-books__autor > a[href$=".GIF"]:before, .c-books__copy > a[href$=".GIF"]:before, .c-books__verlag > a[href$=".GIF"]:before, .c-books__jahr > a[href$=".GIF"]:before, .c-books__isbn > a[href$=".GIF"]:before, .c-books__preis > a[href$=".GIF"]:before, .c-books__link > a[href$=".GIF"]:before, .c-astlrVideoDates__copy > a[href$=".GIF"]:before, .c-astlrFileItems__link > a[href$=".GIF"]:before, .c-astlrCopy__fieldname > a[href$=".GIF"]:before, .c-astlrCopy__field > a[href$=".GIF"]:before, .c-astlrCopy > p > a[href$=".GIF"]:before, .c-astlrCopy__accordionHeader > a[href$=".GIF"]:before, .c-astlrCopy__accordionField > a[href$=".GIF"]:before, .c-astlrStage__note > p > a[href$=".GIF"]:before, .c-astlrStage__uploader > p > a[href$=".GIF"]:before, .c-anncmts__body > a[href$=".GIF"]:before, .typography p > a[href$=".GIF"]:before, .c-form label > a[href$=".GIF"]:before, .c-form input.text > a[href$=".GIF"]:before, .c-form input.textarea > a[href$=".GIF"]:before,
.c-form textarea.text > a[href$=".GIF"]:before,
.c-form textarea.textarea > a[href$=".GIF"]:before, .c-form input[type=text] > a[href$=".GIF"]:before,
.c-form input[type=password] > a[href$=".GIF"]:before,
.c-form input[type=email] > a[href$=".GIF"]:before,
.c-form input[type=url] > a[href$=".GIF"]:before,
.c-form input[type=date] > a[href$=".GIF"]:before,
.c-form input[type=month] > a[href$=".GIF"]:before,
.c-form input[type=time] > a[href$=".GIF"]:before,
.c-form input[type=datetime] > a[href$=".GIF"]:before,
.c-form input[type=datetime-local] > a[href$=".GIF"]:before,
.c-form input[type=week] > a[href$=".GIF"]:before,
.c-form input[type=number] > a[href$=".GIF"]:before,
.c-form input[type=search] > a[href$=".GIF"]:before,
.c-form input[type=tel] > a[href$=".GIF"]:before,
.c-form input[type=color] > a[href$=".GIF"]:before,
.c-form textarea > a[href$=".GIF"]:before, .c-form__checkbox label > a[href$=".GIF"]:before, .c-form__dropdown > a[href$=".GIF"]:before, .c-form__dropdown select > option > a[href$=".GIF"]:before, .c-form__dropdown > label > a[href$=".GIF"]:before, .c-elementalPublikationen__copystage > p > a[href$=".jpg"]:before, .dropzone-holder.uploadable > p > a[href$=".jpg"]:before, .c-schedule__copy > a[href$=".jpg"]:before, .c-lightbox__subline > a[href$=".jpg"]:before, .tobii__counter > a[href$=".jpg"]:before, .tobii-image figure > figcaption > a[href$=".jpg"]:before, .c-form .btn-toolbar > p > a[href$=".jpg"]:before, .c-books__autor > a[href$=".jpg"]:before, .c-books__copy > a[href$=".jpg"]:before, .c-books__verlag > a[href$=".jpg"]:before, .c-books__jahr > a[href$=".jpg"]:before, .c-books__isbn > a[href$=".jpg"]:before, .c-books__preis > a[href$=".jpg"]:before, .c-books__link > a[href$=".jpg"]:before, .c-astlrVideoDates__copy > a[href$=".jpg"]:before, .c-astlrFileItems__link > a[href$=".jpg"]:before, .c-astlrCopy__fieldname > a[href$=".jpg"]:before, .c-astlrCopy__field > a[href$=".jpg"]:before, .c-astlrCopy > p > a[href$=".jpg"]:before, .c-astlrCopy__accordionHeader > a[href$=".jpg"]:before, .c-astlrCopy__accordionField > a[href$=".jpg"]:before, .c-astlrStage__note > p > a[href$=".jpg"]:before, .c-astlrStage__uploader > p > a[href$=".jpg"]:before, .c-anncmts__body > a[href$=".jpg"]:before, .typography p > a[href$=".jpg"]:before, .c-form label > a[href$=".jpg"]:before, .c-form input.text > a[href$=".jpg"]:before, .c-form input.textarea > a[href$=".jpg"]:before,
.c-form textarea.text > a[href$=".jpg"]:before,
.c-form textarea.textarea > a[href$=".jpg"]:before, .c-form input[type=text] > a[href$=".jpg"]:before,
.c-form input[type=password] > a[href$=".jpg"]:before,
.c-form input[type=email] > a[href$=".jpg"]:before,
.c-form input[type=url] > a[href$=".jpg"]:before,
.c-form input[type=date] > a[href$=".jpg"]:before,
.c-form input[type=month] > a[href$=".jpg"]:before,
.c-form input[type=time] > a[href$=".jpg"]:before,
.c-form input[type=datetime] > a[href$=".jpg"]:before,
.c-form input[type=datetime-local] > a[href$=".jpg"]:before,
.c-form input[type=week] > a[href$=".jpg"]:before,
.c-form input[type=number] > a[href$=".jpg"]:before,
.c-form input[type=search] > a[href$=".jpg"]:before,
.c-form input[type=tel] > a[href$=".jpg"]:before,
.c-form input[type=color] > a[href$=".jpg"]:before,
.c-form textarea > a[href$=".jpg"]:before, .c-form__checkbox label > a[href$=".jpg"]:before, .c-form__dropdown > a[href$=".jpg"]:before, .c-form__dropdown select > option > a[href$=".jpg"]:before, .c-form__dropdown > label > a[href$=".jpg"]:before, .c-elementalPublikationen__copystage > p > a[href$=".JPG"]:before, .dropzone-holder.uploadable > p > a[href$=".JPG"]:before, .c-schedule__copy > a[href$=".JPG"]:before, .c-lightbox__subline > a[href$=".JPG"]:before, .tobii__counter > a[href$=".JPG"]:before, .tobii-image figure > figcaption > a[href$=".JPG"]:before, .c-form .btn-toolbar > p > a[href$=".JPG"]:before, .c-books__autor > a[href$=".JPG"]:before, .c-books__copy > a[href$=".JPG"]:before, .c-books__verlag > a[href$=".JPG"]:before, .c-books__jahr > a[href$=".JPG"]:before, .c-books__isbn > a[href$=".JPG"]:before, .c-books__preis > a[href$=".JPG"]:before, .c-books__link > a[href$=".JPG"]:before, .c-astlrVideoDates__copy > a[href$=".JPG"]:before, .c-astlrFileItems__link > a[href$=".JPG"]:before, .c-astlrCopy__fieldname > a[href$=".JPG"]:before, .c-astlrCopy__field > a[href$=".JPG"]:before, .c-astlrCopy > p > a[href$=".JPG"]:before, .c-astlrCopy__accordionHeader > a[href$=".JPG"]:before, .c-astlrCopy__accordionField > a[href$=".JPG"]:before, .c-astlrStage__note > p > a[href$=".JPG"]:before, .c-astlrStage__uploader > p > a[href$=".JPG"]:before, .c-anncmts__body > a[href$=".JPG"]:before, .typography p > a[href$=".JPG"]:before, .c-form label > a[href$=".JPG"]:before, .c-form input.text > a[href$=".JPG"]:before, .c-form input.textarea > a[href$=".JPG"]:before,
.c-form textarea.text > a[href$=".JPG"]:before,
.c-form textarea.textarea > a[href$=".JPG"]:before, .c-form input[type=text] > a[href$=".JPG"]:before,
.c-form input[type=password] > a[href$=".JPG"]:before,
.c-form input[type=email] > a[href$=".JPG"]:before,
.c-form input[type=url] > a[href$=".JPG"]:before,
.c-form input[type=date] > a[href$=".JPG"]:before,
.c-form input[type=month] > a[href$=".JPG"]:before,
.c-form input[type=time] > a[href$=".JPG"]:before,
.c-form input[type=datetime] > a[href$=".JPG"]:before,
.c-form input[type=datetime-local] > a[href$=".JPG"]:before,
.c-form input[type=week] > a[href$=".JPG"]:before,
.c-form input[type=number] > a[href$=".JPG"]:before,
.c-form input[type=search] > a[href$=".JPG"]:before,
.c-form input[type=tel] > a[href$=".JPG"]:before,
.c-form input[type=color] > a[href$=".JPG"]:before,
.c-form textarea > a[href$=".JPG"]:before, .c-form__checkbox label > a[href$=".JPG"]:before, .c-form__dropdown > a[href$=".JPG"]:before, .c-form__dropdown select > option > a[href$=".JPG"]:before, .c-form__dropdown > label > a[href$=".JPG"]:before, .c-elementalPublikationen__copystage > p > a[href$=".pdf"]:before, .dropzone-holder.uploadable > p > a[href$=".pdf"]:before, .c-schedule__copy > a[href$=".pdf"]:before, .c-lightbox__subline > a[href$=".pdf"]:before, .tobii__counter > a[href$=".pdf"]:before, .tobii-image figure > figcaption > a[href$=".pdf"]:before, .c-form .btn-toolbar > p > a[href$=".pdf"]:before, .c-books__autor > a[href$=".pdf"]:before, .c-books__copy > a[href$=".pdf"]:before, .c-books__verlag > a[href$=".pdf"]:before, .c-books__jahr > a[href$=".pdf"]:before, .c-books__isbn > a[href$=".pdf"]:before, .c-books__preis > a[href$=".pdf"]:before, .c-books__link > a[href$=".pdf"]:before, .c-astlrVideoDates__copy > a[href$=".pdf"]:before, .c-astlrFileItems__link > a[href$=".pdf"]:before, .c-astlrCopy__fieldname > a[href$=".pdf"]:before, .c-astlrCopy__field > a[href$=".pdf"]:before, .c-astlrCopy > p > a[href$=".pdf"]:before, .c-astlrCopy__accordionHeader > a[href$=".pdf"]:before, .c-astlrCopy__accordionField > a[href$=".pdf"]:before, .c-astlrStage__note > p > a[href$=".pdf"]:before, .c-astlrStage__uploader > p > a[href$=".pdf"]:before, .c-anncmts__body > a[href$=".pdf"]:before, .typography p > a[href$=".pdf"]:before, .c-form label > a[href$=".pdf"]:before, .c-form input.text > a[href$=".pdf"]:before, .c-form input.textarea > a[href$=".pdf"]:before,
.c-form textarea.text > a[href$=".pdf"]:before,
.c-form textarea.textarea > a[href$=".pdf"]:before, .c-form input[type=text] > a[href$=".pdf"]:before,
.c-form input[type=password] > a[href$=".pdf"]:before,
.c-form input[type=email] > a[href$=".pdf"]:before,
.c-form input[type=url] > a[href$=".pdf"]:before,
.c-form input[type=date] > a[href$=".pdf"]:before,
.c-form input[type=month] > a[href$=".pdf"]:before,
.c-form input[type=time] > a[href$=".pdf"]:before,
.c-form input[type=datetime] > a[href$=".pdf"]:before,
.c-form input[type=datetime-local] > a[href$=".pdf"]:before,
.c-form input[type=week] > a[href$=".pdf"]:before,
.c-form input[type=number] > a[href$=".pdf"]:before,
.c-form input[type=search] > a[href$=".pdf"]:before,
.c-form input[type=tel] > a[href$=".pdf"]:before,
.c-form input[type=color] > a[href$=".pdf"]:before,
.c-form textarea > a[href$=".pdf"]:before, .c-form__checkbox label > a[href$=".pdf"]:before, .c-form__dropdown > a[href$=".pdf"]:before, .c-form__dropdown select > option > a[href$=".pdf"]:before, .c-form__dropdown > label > a[href$=".pdf"]:before, .c-videoEmbed__caption > strong > a[href^=mailto]:before, .c-videoEmbed__caption > h1 > strong > a[href^=mailto]:before, .c-videoEmbed__caption > h2 > strong > a[href^=mailto]:before, .c-videoEmbed__caption > h3 > strong > a[href^=mailto]:before, .c-videoEmbed__caption > h4 > strong > a[href^=mailto]:before, .c-videoEmbed__caption > h5 > strong > a[href^=mailto]:before, .c-videoEmbed__caption > p > strong > a[href^=mailto]:before, .c-pollingTool__introtext > strong > a[href^=mailto]:before, .c-mediathekCard__caption > strong > a[href^=mailto]:before, .c-mediathekCard__caption > h1 > strong > a[href^=mailto]:before, .c-mediathekCard__caption > h2 > strong > a[href^=mailto]:before, .c-mediathekCard__caption > h3 > strong > a[href^=mailto]:before, .c-mediathekCard__caption > h4 > strong > a[href^=mailto]:before, .c-mediathekCard__caption > h5 > strong > a[href^=mailto]:before, .c-mediathekCard__caption > p > strong > a[href^=mailto]:before, .c-astlrSlider__caption > p > strong > a[href^=mailto]:before, .c-astlrSummary__copy > strong > a[href^=mailto]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href^=mailto]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href^=mailto]:before, .typography p.small > strong > a[href^=mailto]:before, .typography table > strong > a[href^=mailto]:before, .c-form .message > strong > a[href^=mailto]:before,
.c-videoEmbed__caption > em > a[href^=mailto]:before,
.c-videoEmbed__caption > h1 > em > a[href^=mailto]:before,
.c-videoEmbed__caption > h2 > em > a[href^=mailto]:before,
.c-videoEmbed__caption > h3 > em > a[href^=mailto]:before,
.c-videoEmbed__caption > h4 > em > a[href^=mailto]:before,
.c-videoEmbed__caption > h5 > em > a[href^=mailto]:before,
.c-videoEmbed__caption > p > em > a[href^=mailto]:before,
.c-pollingTool__introtext > em > a[href^=mailto]:before,
.c-mediathekCard__caption > em > a[href^=mailto]:before,
.c-mediathekCard__caption > h1 > em > a[href^=mailto]:before,
.c-mediathekCard__caption > h2 > em > a[href^=mailto]:before,
.c-mediathekCard__caption > h3 > em > a[href^=mailto]:before,
.c-mediathekCard__caption > h4 > em > a[href^=mailto]:before,
.c-mediathekCard__caption > h5 > em > a[href^=mailto]:before,
.c-mediathekCard__caption > p > em > a[href^=mailto]:before,
.c-astlrSlider__caption > p > em > a[href^=mailto]:before,
.c-astlrSummary__copy > em > a[href^=mailto]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href^=mailto]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href^=mailto]:before,
.typography p.small > em > a[href^=mailto]:before,
.typography table > em > a[href^=mailto]:before,
.c-form .message > em > a[href^=mailto]:before, .c-videoEmbed__caption > strong > a[href^="https://"]:before, .c-videoEmbed__caption > h1 > strong > a[href^="https://"]:before, .c-videoEmbed__caption > h2 > strong > a[href^="https://"]:before, .c-videoEmbed__caption > h3 > strong > a[href^="https://"]:before, .c-videoEmbed__caption > h4 > strong > a[href^="https://"]:before, .c-videoEmbed__caption > h5 > strong > a[href^="https://"]:before, .c-videoEmbed__caption > p > strong > a[href^="https://"]:before, .c-pollingTool__introtext > strong > a[href^="https://"]:before, .c-mediathekCard__caption > strong > a[href^="https://"]:before, .c-mediathekCard__caption > h1 > strong > a[href^="https://"]:before, .c-mediathekCard__caption > h2 > strong > a[href^="https://"]:before, .c-mediathekCard__caption > h3 > strong > a[href^="https://"]:before, .c-mediathekCard__caption > h4 > strong > a[href^="https://"]:before, .c-mediathekCard__caption > h5 > strong > a[href^="https://"]:before, .c-mediathekCard__caption > p > strong > a[href^="https://"]:before, .c-astlrSlider__caption > p > strong > a[href^="https://"]:before, .c-astlrSummary__copy > strong > a[href^="https://"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href^="https://"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href^="https://"]:before, .typography p.small > strong > a[href^="https://"]:before, .typography table > strong > a[href^="https://"]:before, .c-form .message > strong > a[href^="https://"]:before,
.c-videoEmbed__caption > em > a[href^="https://"]:before,
.c-videoEmbed__caption > h1 > em > a[href^="https://"]:before,
.c-videoEmbed__caption > h2 > em > a[href^="https://"]:before,
.c-videoEmbed__caption > h3 > em > a[href^="https://"]:before,
.c-videoEmbed__caption > h4 > em > a[href^="https://"]:before,
.c-videoEmbed__caption > h5 > em > a[href^="https://"]:before,
.c-videoEmbed__caption > p > em > a[href^="https://"]:before,
.c-pollingTool__introtext > em > a[href^="https://"]:before,
.c-mediathekCard__caption > em > a[href^="https://"]:before,
.c-mediathekCard__caption > h1 > em > a[href^="https://"]:before,
.c-mediathekCard__caption > h2 > em > a[href^="https://"]:before,
.c-mediathekCard__caption > h3 > em > a[href^="https://"]:before,
.c-mediathekCard__caption > h4 > em > a[href^="https://"]:before,
.c-mediathekCard__caption > h5 > em > a[href^="https://"]:before,
.c-mediathekCard__caption > p > em > a[href^="https://"]:before,
.c-astlrSlider__caption > p > em > a[href^="https://"]:before,
.c-astlrSummary__copy > em > a[href^="https://"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href^="https://"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href^="https://"]:before,
.typography p.small > em > a[href^="https://"]:before,
.typography table > em > a[href^="https://"]:before,
.c-form .message > em > a[href^="https://"]:before, .c-videoEmbed__caption > strong > a[href^="http://"]:before, .c-videoEmbed__caption > h1 > strong > a[href^="http://"]:before, .c-videoEmbed__caption > h2 > strong > a[href^="http://"]:before, .c-videoEmbed__caption > h3 > strong > a[href^="http://"]:before, .c-videoEmbed__caption > h4 > strong > a[href^="http://"]:before, .c-videoEmbed__caption > h5 > strong > a[href^="http://"]:before, .c-videoEmbed__caption > p > strong > a[href^="http://"]:before, .c-pollingTool__introtext > strong > a[href^="http://"]:before, .c-mediathekCard__caption > strong > a[href^="http://"]:before, .c-mediathekCard__caption > h1 > strong > a[href^="http://"]:before, .c-mediathekCard__caption > h2 > strong > a[href^="http://"]:before, .c-mediathekCard__caption > h3 > strong > a[href^="http://"]:before, .c-mediathekCard__caption > h4 > strong > a[href^="http://"]:before, .c-mediathekCard__caption > h5 > strong > a[href^="http://"]:before, .c-mediathekCard__caption > p > strong > a[href^="http://"]:before, .c-astlrSlider__caption > p > strong > a[href^="http://"]:before, .c-astlrSummary__copy > strong > a[href^="http://"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href^="http://"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href^="http://"]:before, .typography p.small > strong > a[href^="http://"]:before, .typography table > strong > a[href^="http://"]:before, .c-form .message > strong > a[href^="http://"]:before,
.c-videoEmbed__caption > em > a[href^="http://"]:before,
.c-videoEmbed__caption > h1 > em > a[href^="http://"]:before,
.c-videoEmbed__caption > h2 > em > a[href^="http://"]:before,
.c-videoEmbed__caption > h3 > em > a[href^="http://"]:before,
.c-videoEmbed__caption > h4 > em > a[href^="http://"]:before,
.c-videoEmbed__caption > h5 > em > a[href^="http://"]:before,
.c-videoEmbed__caption > p > em > a[href^="http://"]:before,
.c-pollingTool__introtext > em > a[href^="http://"]:before,
.c-mediathekCard__caption > em > a[href^="http://"]:before,
.c-mediathekCard__caption > h1 > em > a[href^="http://"]:before,
.c-mediathekCard__caption > h2 > em > a[href^="http://"]:before,
.c-mediathekCard__caption > h3 > em > a[href^="http://"]:before,
.c-mediathekCard__caption > h4 > em > a[href^="http://"]:before,
.c-mediathekCard__caption > h5 > em > a[href^="http://"]:before,
.c-mediathekCard__caption > p > em > a[href^="http://"]:before,
.c-astlrSlider__caption > p > em > a[href^="http://"]:before,
.c-astlrSummary__copy > em > a[href^="http://"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href^="http://"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href^="http://"]:before,
.typography p.small > em > a[href^="http://"]:before,
.typography table > em > a[href^="http://"]:before,
.c-form .message > em > a[href^="http://"]:before, .c-videoEmbed__caption > strong > a[href$=".png"]:before, .c-videoEmbed__caption > h1 > strong > a[href$=".png"]:before, .c-videoEmbed__caption > h2 > strong > a[href$=".png"]:before, .c-videoEmbed__caption > h3 > strong > a[href$=".png"]:before, .c-videoEmbed__caption > h4 > strong > a[href$=".png"]:before, .c-videoEmbed__caption > h5 > strong > a[href$=".png"]:before, .c-videoEmbed__caption > p > strong > a[href$=".png"]:before, .c-pollingTool__introtext > strong > a[href$=".png"]:before, .c-mediathekCard__caption > strong > a[href$=".png"]:before, .c-mediathekCard__caption > h1 > strong > a[href$=".png"]:before, .c-mediathekCard__caption > h2 > strong > a[href$=".png"]:before, .c-mediathekCard__caption > h3 > strong > a[href$=".png"]:before, .c-mediathekCard__caption > h4 > strong > a[href$=".png"]:before, .c-mediathekCard__caption > h5 > strong > a[href$=".png"]:before, .c-mediathekCard__caption > p > strong > a[href$=".png"]:before, .c-astlrSlider__caption > p > strong > a[href$=".png"]:before, .c-astlrSummary__copy > strong > a[href$=".png"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href$=".png"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href$=".png"]:before, .typography p.small > strong > a[href$=".png"]:before, .typography table > strong > a[href$=".png"]:before, .c-form .message > strong > a[href$=".png"]:before,
.c-videoEmbed__caption > em > a[href$=".png"]:before,
.c-videoEmbed__caption > h1 > em > a[href$=".png"]:before,
.c-videoEmbed__caption > h2 > em > a[href$=".png"]:before,
.c-videoEmbed__caption > h3 > em > a[href$=".png"]:before,
.c-videoEmbed__caption > h4 > em > a[href$=".png"]:before,
.c-videoEmbed__caption > h5 > em > a[href$=".png"]:before,
.c-videoEmbed__caption > p > em > a[href$=".png"]:before,
.c-pollingTool__introtext > em > a[href$=".png"]:before,
.c-mediathekCard__caption > em > a[href$=".png"]:before,
.c-mediathekCard__caption > h1 > em > a[href$=".png"]:before,
.c-mediathekCard__caption > h2 > em > a[href$=".png"]:before,
.c-mediathekCard__caption > h3 > em > a[href$=".png"]:before,
.c-mediathekCard__caption > h4 > em > a[href$=".png"]:before,
.c-mediathekCard__caption > h5 > em > a[href$=".png"]:before,
.c-mediathekCard__caption > p > em > a[href$=".png"]:before,
.c-astlrSlider__caption > p > em > a[href$=".png"]:before,
.c-astlrSummary__copy > em > a[href$=".png"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href$=".png"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href$=".png"]:before,
.typography p.small > em > a[href$=".png"]:before,
.typography table > em > a[href$=".png"]:before,
.c-form .message > em > a[href$=".png"]:before, .c-videoEmbed__caption > strong > a[href$=".PNG"]:before, .c-videoEmbed__caption > h1 > strong > a[href$=".PNG"]:before, .c-videoEmbed__caption > h2 > strong > a[href$=".PNG"]:before, .c-videoEmbed__caption > h3 > strong > a[href$=".PNG"]:before, .c-videoEmbed__caption > h4 > strong > a[href$=".PNG"]:before, .c-videoEmbed__caption > h5 > strong > a[href$=".PNG"]:before, .c-videoEmbed__caption > p > strong > a[href$=".PNG"]:before, .c-pollingTool__introtext > strong > a[href$=".PNG"]:before, .c-mediathekCard__caption > strong > a[href$=".PNG"]:before, .c-mediathekCard__caption > h1 > strong > a[href$=".PNG"]:before, .c-mediathekCard__caption > h2 > strong > a[href$=".PNG"]:before, .c-mediathekCard__caption > h3 > strong > a[href$=".PNG"]:before, .c-mediathekCard__caption > h4 > strong > a[href$=".PNG"]:before, .c-mediathekCard__caption > h5 > strong > a[href$=".PNG"]:before, .c-mediathekCard__caption > p > strong > a[href$=".PNG"]:before, .c-astlrSlider__caption > p > strong > a[href$=".PNG"]:before, .c-astlrSummary__copy > strong > a[href$=".PNG"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href$=".PNG"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href$=".PNG"]:before, .typography p.small > strong > a[href$=".PNG"]:before, .typography table > strong > a[href$=".PNG"]:before, .c-form .message > strong > a[href$=".PNG"]:before,
.c-videoEmbed__caption > em > a[href$=".PNG"]:before,
.c-videoEmbed__caption > h1 > em > a[href$=".PNG"]:before,
.c-videoEmbed__caption > h2 > em > a[href$=".PNG"]:before,
.c-videoEmbed__caption > h3 > em > a[href$=".PNG"]:before,
.c-videoEmbed__caption > h4 > em > a[href$=".PNG"]:before,
.c-videoEmbed__caption > h5 > em > a[href$=".PNG"]:before,
.c-videoEmbed__caption > p > em > a[href$=".PNG"]:before,
.c-pollingTool__introtext > em > a[href$=".PNG"]:before,
.c-mediathekCard__caption > em > a[href$=".PNG"]:before,
.c-mediathekCard__caption > h1 > em > a[href$=".PNG"]:before,
.c-mediathekCard__caption > h2 > em > a[href$=".PNG"]:before,
.c-mediathekCard__caption > h3 > em > a[href$=".PNG"]:before,
.c-mediathekCard__caption > h4 > em > a[href$=".PNG"]:before,
.c-mediathekCard__caption > h5 > em > a[href$=".PNG"]:before,
.c-mediathekCard__caption > p > em > a[href$=".PNG"]:before,
.c-astlrSlider__caption > p > em > a[href$=".PNG"]:before,
.c-astlrSummary__copy > em > a[href$=".PNG"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href$=".PNG"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href$=".PNG"]:before,
.typography p.small > em > a[href$=".PNG"]:before,
.typography table > em > a[href$=".PNG"]:before,
.c-form .message > em > a[href$=".PNG"]:before, .c-videoEmbed__caption > strong > a[href$=".gif"]:before, .c-videoEmbed__caption > h1 > strong > a[href$=".gif"]:before, .c-videoEmbed__caption > h2 > strong > a[href$=".gif"]:before, .c-videoEmbed__caption > h3 > strong > a[href$=".gif"]:before, .c-videoEmbed__caption > h4 > strong > a[href$=".gif"]:before, .c-videoEmbed__caption > h5 > strong > a[href$=".gif"]:before, .c-videoEmbed__caption > p > strong > a[href$=".gif"]:before, .c-pollingTool__introtext > strong > a[href$=".gif"]:before, .c-mediathekCard__caption > strong > a[href$=".gif"]:before, .c-mediathekCard__caption > h1 > strong > a[href$=".gif"]:before, .c-mediathekCard__caption > h2 > strong > a[href$=".gif"]:before, .c-mediathekCard__caption > h3 > strong > a[href$=".gif"]:before, .c-mediathekCard__caption > h4 > strong > a[href$=".gif"]:before, .c-mediathekCard__caption > h5 > strong > a[href$=".gif"]:before, .c-mediathekCard__caption > p > strong > a[href$=".gif"]:before, .c-astlrSlider__caption > p > strong > a[href$=".gif"]:before, .c-astlrSummary__copy > strong > a[href$=".gif"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href$=".gif"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href$=".gif"]:before, .typography p.small > strong > a[href$=".gif"]:before, .typography table > strong > a[href$=".gif"]:before, .c-form .message > strong > a[href$=".gif"]:before,
.c-videoEmbed__caption > em > a[href$=".gif"]:before,
.c-videoEmbed__caption > h1 > em > a[href$=".gif"]:before,
.c-videoEmbed__caption > h2 > em > a[href$=".gif"]:before,
.c-videoEmbed__caption > h3 > em > a[href$=".gif"]:before,
.c-videoEmbed__caption > h4 > em > a[href$=".gif"]:before,
.c-videoEmbed__caption > h5 > em > a[href$=".gif"]:before,
.c-videoEmbed__caption > p > em > a[href$=".gif"]:before,
.c-pollingTool__introtext > em > a[href$=".gif"]:before,
.c-mediathekCard__caption > em > a[href$=".gif"]:before,
.c-mediathekCard__caption > h1 > em > a[href$=".gif"]:before,
.c-mediathekCard__caption > h2 > em > a[href$=".gif"]:before,
.c-mediathekCard__caption > h3 > em > a[href$=".gif"]:before,
.c-mediathekCard__caption > h4 > em > a[href$=".gif"]:before,
.c-mediathekCard__caption > h5 > em > a[href$=".gif"]:before,
.c-mediathekCard__caption > p > em > a[href$=".gif"]:before,
.c-astlrSlider__caption > p > em > a[href$=".gif"]:before,
.c-astlrSummary__copy > em > a[href$=".gif"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href$=".gif"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href$=".gif"]:before,
.typography p.small > em > a[href$=".gif"]:before,
.typography table > em > a[href$=".gif"]:before,
.c-form .message > em > a[href$=".gif"]:before, .c-videoEmbed__caption > strong > a[href$=".GIF"]:before, .c-videoEmbed__caption > h1 > strong > a[href$=".GIF"]:before, .c-videoEmbed__caption > h2 > strong > a[href$=".GIF"]:before, .c-videoEmbed__caption > h3 > strong > a[href$=".GIF"]:before, .c-videoEmbed__caption > h4 > strong > a[href$=".GIF"]:before, .c-videoEmbed__caption > h5 > strong > a[href$=".GIF"]:before, .c-videoEmbed__caption > p > strong > a[href$=".GIF"]:before, .c-pollingTool__introtext > strong > a[href$=".GIF"]:before, .c-mediathekCard__caption > strong > a[href$=".GIF"]:before, .c-mediathekCard__caption > h1 > strong > a[href$=".GIF"]:before, .c-mediathekCard__caption > h2 > strong > a[href$=".GIF"]:before, .c-mediathekCard__caption > h3 > strong > a[href$=".GIF"]:before, .c-mediathekCard__caption > h4 > strong > a[href$=".GIF"]:before, .c-mediathekCard__caption > h5 > strong > a[href$=".GIF"]:before, .c-mediathekCard__caption > p > strong > a[href$=".GIF"]:before, .c-astlrSlider__caption > p > strong > a[href$=".GIF"]:before, .c-astlrSummary__copy > strong > a[href$=".GIF"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href$=".GIF"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href$=".GIF"]:before, .typography p.small > strong > a[href$=".GIF"]:before, .typography table > strong > a[href$=".GIF"]:before, .c-form .message > strong > a[href$=".GIF"]:before,
.c-videoEmbed__caption > em > a[href$=".GIF"]:before,
.c-videoEmbed__caption > h1 > em > a[href$=".GIF"]:before,
.c-videoEmbed__caption > h2 > em > a[href$=".GIF"]:before,
.c-videoEmbed__caption > h3 > em > a[href$=".GIF"]:before,
.c-videoEmbed__caption > h4 > em > a[href$=".GIF"]:before,
.c-videoEmbed__caption > h5 > em > a[href$=".GIF"]:before,
.c-videoEmbed__caption > p > em > a[href$=".GIF"]:before,
.c-pollingTool__introtext > em > a[href$=".GIF"]:before,
.c-mediathekCard__caption > em > a[href$=".GIF"]:before,
.c-mediathekCard__caption > h1 > em > a[href$=".GIF"]:before,
.c-mediathekCard__caption > h2 > em > a[href$=".GIF"]:before,
.c-mediathekCard__caption > h3 > em > a[href$=".GIF"]:before,
.c-mediathekCard__caption > h4 > em > a[href$=".GIF"]:before,
.c-mediathekCard__caption > h5 > em > a[href$=".GIF"]:before,
.c-mediathekCard__caption > p > em > a[href$=".GIF"]:before,
.c-astlrSlider__caption > p > em > a[href$=".GIF"]:before,
.c-astlrSummary__copy > em > a[href$=".GIF"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href$=".GIF"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href$=".GIF"]:before,
.typography p.small > em > a[href$=".GIF"]:before,
.typography table > em > a[href$=".GIF"]:before,
.c-form .message > em > a[href$=".GIF"]:before, .c-videoEmbed__caption > strong > a[href$=".jpg"]:before, .c-videoEmbed__caption > h1 > strong > a[href$=".jpg"]:before, .c-videoEmbed__caption > h2 > strong > a[href$=".jpg"]:before, .c-videoEmbed__caption > h3 > strong > a[href$=".jpg"]:before, .c-videoEmbed__caption > h4 > strong > a[href$=".jpg"]:before, .c-videoEmbed__caption > h5 > strong > a[href$=".jpg"]:before, .c-videoEmbed__caption > p > strong > a[href$=".jpg"]:before, .c-pollingTool__introtext > strong > a[href$=".jpg"]:before, .c-mediathekCard__caption > strong > a[href$=".jpg"]:before, .c-mediathekCard__caption > h1 > strong > a[href$=".jpg"]:before, .c-mediathekCard__caption > h2 > strong > a[href$=".jpg"]:before, .c-mediathekCard__caption > h3 > strong > a[href$=".jpg"]:before, .c-mediathekCard__caption > h4 > strong > a[href$=".jpg"]:before, .c-mediathekCard__caption > h5 > strong > a[href$=".jpg"]:before, .c-mediathekCard__caption > p > strong > a[href$=".jpg"]:before, .c-astlrSlider__caption > p > strong > a[href$=".jpg"]:before, .c-astlrSummary__copy > strong > a[href$=".jpg"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href$=".jpg"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href$=".jpg"]:before, .typography p.small > strong > a[href$=".jpg"]:before, .typography table > strong > a[href$=".jpg"]:before, .c-form .message > strong > a[href$=".jpg"]:before,
.c-videoEmbed__caption > em > a[href$=".jpg"]:before,
.c-videoEmbed__caption > h1 > em > a[href$=".jpg"]:before,
.c-videoEmbed__caption > h2 > em > a[href$=".jpg"]:before,
.c-videoEmbed__caption > h3 > em > a[href$=".jpg"]:before,
.c-videoEmbed__caption > h4 > em > a[href$=".jpg"]:before,
.c-videoEmbed__caption > h5 > em > a[href$=".jpg"]:before,
.c-videoEmbed__caption > p > em > a[href$=".jpg"]:before,
.c-pollingTool__introtext > em > a[href$=".jpg"]:before,
.c-mediathekCard__caption > em > a[href$=".jpg"]:before,
.c-mediathekCard__caption > h1 > em > a[href$=".jpg"]:before,
.c-mediathekCard__caption > h2 > em > a[href$=".jpg"]:before,
.c-mediathekCard__caption > h3 > em > a[href$=".jpg"]:before,
.c-mediathekCard__caption > h4 > em > a[href$=".jpg"]:before,
.c-mediathekCard__caption > h5 > em > a[href$=".jpg"]:before,
.c-mediathekCard__caption > p > em > a[href$=".jpg"]:before,
.c-astlrSlider__caption > p > em > a[href$=".jpg"]:before,
.c-astlrSummary__copy > em > a[href$=".jpg"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href$=".jpg"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href$=".jpg"]:before,
.typography p.small > em > a[href$=".jpg"]:before,
.typography table > em > a[href$=".jpg"]:before,
.c-form .message > em > a[href$=".jpg"]:before, .c-videoEmbed__caption > strong > a[href$=".JPG"]:before, .c-videoEmbed__caption > h1 > strong > a[href$=".JPG"]:before, .c-videoEmbed__caption > h2 > strong > a[href$=".JPG"]:before, .c-videoEmbed__caption > h3 > strong > a[href$=".JPG"]:before, .c-videoEmbed__caption > h4 > strong > a[href$=".JPG"]:before, .c-videoEmbed__caption > h5 > strong > a[href$=".JPG"]:before, .c-videoEmbed__caption > p > strong > a[href$=".JPG"]:before, .c-pollingTool__introtext > strong > a[href$=".JPG"]:before, .c-mediathekCard__caption > strong > a[href$=".JPG"]:before, .c-mediathekCard__caption > h1 > strong > a[href$=".JPG"]:before, .c-mediathekCard__caption > h2 > strong > a[href$=".JPG"]:before, .c-mediathekCard__caption > h3 > strong > a[href$=".JPG"]:before, .c-mediathekCard__caption > h4 > strong > a[href$=".JPG"]:before, .c-mediathekCard__caption > h5 > strong > a[href$=".JPG"]:before, .c-mediathekCard__caption > p > strong > a[href$=".JPG"]:before, .c-astlrSlider__caption > p > strong > a[href$=".JPG"]:before, .c-astlrSummary__copy > strong > a[href$=".JPG"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href$=".JPG"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href$=".JPG"]:before, .typography p.small > strong > a[href$=".JPG"]:before, .typography table > strong > a[href$=".JPG"]:before, .c-form .message > strong > a[href$=".JPG"]:before,
.c-videoEmbed__caption > em > a[href$=".JPG"]:before,
.c-videoEmbed__caption > h1 > em > a[href$=".JPG"]:before,
.c-videoEmbed__caption > h2 > em > a[href$=".JPG"]:before,
.c-videoEmbed__caption > h3 > em > a[href$=".JPG"]:before,
.c-videoEmbed__caption > h4 > em > a[href$=".JPG"]:before,
.c-videoEmbed__caption > h5 > em > a[href$=".JPG"]:before,
.c-videoEmbed__caption > p > em > a[href$=".JPG"]:before,
.c-pollingTool__introtext > em > a[href$=".JPG"]:before,
.c-mediathekCard__caption > em > a[href$=".JPG"]:before,
.c-mediathekCard__caption > h1 > em > a[href$=".JPG"]:before,
.c-mediathekCard__caption > h2 > em > a[href$=".JPG"]:before,
.c-mediathekCard__caption > h3 > em > a[href$=".JPG"]:before,
.c-mediathekCard__caption > h4 > em > a[href$=".JPG"]:before,
.c-mediathekCard__caption > h5 > em > a[href$=".JPG"]:before,
.c-mediathekCard__caption > p > em > a[href$=".JPG"]:before,
.c-astlrSlider__caption > p > em > a[href$=".JPG"]:before,
.c-astlrSummary__copy > em > a[href$=".JPG"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href$=".JPG"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href$=".JPG"]:before,
.typography p.small > em > a[href$=".JPG"]:before,
.typography table > em > a[href$=".JPG"]:before,
.c-form .message > em > a[href$=".JPG"]:before, .c-videoEmbed__caption > strong > a[href$=".pdf"]:before, .c-videoEmbed__caption > h1 > strong > a[href$=".pdf"]:before, .c-videoEmbed__caption > h2 > strong > a[href$=".pdf"]:before, .c-videoEmbed__caption > h3 > strong > a[href$=".pdf"]:before, .c-videoEmbed__caption > h4 > strong > a[href$=".pdf"]:before, .c-videoEmbed__caption > h5 > strong > a[href$=".pdf"]:before, .c-videoEmbed__caption > p > strong > a[href$=".pdf"]:before, .c-pollingTool__introtext > strong > a[href$=".pdf"]:before, .c-mediathekCard__caption > strong > a[href$=".pdf"]:before, .c-mediathekCard__caption > h1 > strong > a[href$=".pdf"]:before, .c-mediathekCard__caption > h2 > strong > a[href$=".pdf"]:before, .c-mediathekCard__caption > h3 > strong > a[href$=".pdf"]:before, .c-mediathekCard__caption > h4 > strong > a[href$=".pdf"]:before, .c-mediathekCard__caption > h5 > strong > a[href$=".pdf"]:before, .c-mediathekCard__caption > p > strong > a[href$=".pdf"]:before, .c-astlrSlider__caption > p > strong > a[href$=".pdf"]:before, .c-astlrSummary__copy > strong > a[href$=".pdf"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href$=".pdf"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href$=".pdf"]:before, .typography p.small > strong > a[href$=".pdf"]:before, .typography table > strong > a[href$=".pdf"]:before, .c-form .message > strong > a[href$=".pdf"]:before,
.c-videoEmbed__caption > em > a[href$=".pdf"]:before,
.c-videoEmbed__caption > h1 > em > a[href$=".pdf"]:before,
.c-videoEmbed__caption > h2 > em > a[href$=".pdf"]:before,
.c-videoEmbed__caption > h3 > em > a[href$=".pdf"]:before,
.c-videoEmbed__caption > h4 > em > a[href$=".pdf"]:before,
.c-videoEmbed__caption > h5 > em > a[href$=".pdf"]:before,
.c-videoEmbed__caption > p > em > a[href$=".pdf"]:before,
.c-pollingTool__introtext > em > a[href$=".pdf"]:before,
.c-mediathekCard__caption > em > a[href$=".pdf"]:before,
.c-mediathekCard__caption > h1 > em > a[href$=".pdf"]:before,
.c-mediathekCard__caption > h2 > em > a[href$=".pdf"]:before,
.c-mediathekCard__caption > h3 > em > a[href$=".pdf"]:before,
.c-mediathekCard__caption > h4 > em > a[href$=".pdf"]:before,
.c-mediathekCard__caption > h5 > em > a[href$=".pdf"]:before,
.c-mediathekCard__caption > p > em > a[href$=".pdf"]:before,
.c-astlrSlider__caption > p > em > a[href$=".pdf"]:before,
.c-astlrSummary__copy > em > a[href$=".pdf"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href$=".pdf"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href$=".pdf"]:before,
.typography p.small > em > a[href$=".pdf"]:before,
.typography table > em > a[href$=".pdf"]:before,
.c-form .message > em > a[href$=".pdf"]:before, .c-footer__typo > a[href^=mailto]:before, .c-footer__address > p > a[href^=mailto]:before, .c-footer__typo > a[href^="https://"]:before, .c-footer__address > p > a[href^="https://"]:before, .c-footer__typo > a[href^="http://"]:before, .c-footer__address > p > a[href^="http://"]:before, .c-footer__typo > a[href$=".png"]:before, .c-footer__address > p > a[href$=".png"]:before, .c-footer__typo > a[href$=".PNG"]:before, .c-footer__address > p > a[href$=".PNG"]:before, .c-footer__typo > a[href$=".gif"]:before, .c-footer__address > p > a[href$=".gif"]:before, .c-footer__typo > a[href$=".GIF"]:before, .c-footer__address > p > a[href$=".GIF"]:before, .c-footer__typo > a[href$=".jpg"]:before, .c-footer__address > p > a[href$=".jpg"]:before, .c-footer__typo > a[href$=".JPG"]:before, .c-footer__address > p > a[href$=".JPG"]:before, .c-footer__typo > a[href$=".pdf"]:before, .c-footer__address > p > a[href$=".pdf"]:before, .typography ul > strong > a[href^=mailto]:before,
.typography ul > em > a[href^=mailto]:before, .typography ul > strong > a[href^="https://"]:before,
.typography ul > em > a[href^="https://"]:before, .typography ul > strong > a[href^="http://"]:before,
.typography ul > em > a[href^="http://"]:before, .typography ul > strong > a[href$=".png"]:before,
.typography ul > em > a[href$=".png"]:before, .typography ul > strong > a[href$=".PNG"]:before,
.typography ul > em > a[href$=".PNG"]:before, .typography ul > strong > a[href$=".gif"]:before,
.typography ul > em > a[href$=".gif"]:before, .typography ul > strong > a[href$=".GIF"]:before,
.typography ul > em > a[href$=".GIF"]:before, .typography ul > strong > a[href$=".jpg"]:before,
.typography ul > em > a[href$=".jpg"]:before, .typography ul > strong > a[href$=".JPG"]:before,
.typography ul > em > a[href$=".JPG"]:before, .typography ul > strong > a[href$=".pdf"]:before,
.typography ul > em > a[href$=".pdf"]:before, .typography ul > a[href^=mailto]:before, .typography ul > a[href^="https://"]:before, .typography ul > a[href^="http://"]:before, .typography ul > a[href$=".png"]:before, .typography ul > a[href$=".PNG"]:before, .typography ul > a[href$=".gif"]:before, .typography ul > a[href$=".GIF"]:before, .typography ul > a[href$=".jpg"]:before, .typography ul > a[href$=".JPG"]:before, .typography ul > a[href$=".pdf"]:before {
  font-family: "MFM2023 Icon Font Regular";
  font-style: normal;
  font-weight: normal;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.c-naviMobile__trigger:before, .c-astlrTabs__trigger:before {
  content: "\e001";
}
.c-button__download--ghost:after, .c-elementalPublikationen__copystage > p > strong > a[href$=".png"]:before, .dropzone-holder.uploadable > p > strong > a[href$=".png"]:before, .c-schedule__copy > strong > a[href$=".png"]:before, .c-lightbox__subline > strong > a[href$=".png"]:before, .tobii__counter > strong > a[href$=".png"]:before, .tobii-image figure > figcaption > strong > a[href$=".png"]:before, .c-form .btn-toolbar > p > strong > a[href$=".png"]:before, .c-books__autor > strong > a[href$=".png"]:before, .c-books__copy > strong > a[href$=".png"]:before, .c-books__verlag > strong > a[href$=".png"]:before, .c-books__jahr > strong > a[href$=".png"]:before, .c-books__isbn > strong > a[href$=".png"]:before, .c-books__preis > strong > a[href$=".png"]:before, .c-books__link > strong > a[href$=".png"]:before, .c-astlrVideoDates__copy > strong > a[href$=".png"]:before, .c-astlrFileItems__link > strong > a[href$=".png"]:before, .c-astlrCopy__fieldname > strong > a[href$=".png"]:before, .c-astlrCopy__field > strong > a[href$=".png"]:before, .c-astlrCopy > p > strong > a[href$=".png"]:before, .c-astlrCopy__accordionHeader > strong > a[href$=".png"]:before, .c-astlrCopy__accordionField > strong > a[href$=".png"]:before, .c-astlrStage__note > p > strong > a[href$=".png"]:before, .c-astlrStage__uploader > p > strong > a[href$=".png"]:before, .c-anncmts__body > strong > a[href$=".png"]:before, .typography p > strong > a[href$=".png"]:before, .c-form label > strong > a[href$=".png"]:before, .c-form input.text > strong > a[href$=".png"]:before, .c-form input.textarea > strong > a[href$=".png"]:before,
.c-form textarea.text > strong > a[href$=".png"]:before,
.c-form textarea.textarea > strong > a[href$=".png"]:before, .c-form input[type=text] > strong > a[href$=".png"]:before,
.c-form input[type=password] > strong > a[href$=".png"]:before,
.c-form input[type=email] > strong > a[href$=".png"]:before,
.c-form input[type=url] > strong > a[href$=".png"]:before,
.c-form input[type=date] > strong > a[href$=".png"]:before,
.c-form input[type=month] > strong > a[href$=".png"]:before,
.c-form input[type=time] > strong > a[href$=".png"]:before,
.c-form input[type=datetime] > strong > a[href$=".png"]:before,
.c-form input[type=datetime-local] > strong > a[href$=".png"]:before,
.c-form input[type=week] > strong > a[href$=".png"]:before,
.c-form input[type=number] > strong > a[href$=".png"]:before,
.c-form input[type=search] > strong > a[href$=".png"]:before,
.c-form input[type=tel] > strong > a[href$=".png"]:before,
.c-form input[type=color] > strong > a[href$=".png"]:before,
.c-form textarea > strong > a[href$=".png"]:before, .c-form__checkbox label > strong > a[href$=".png"]:before, .c-form__dropdown > strong > a[href$=".png"]:before, .c-form__dropdown select > option > strong > a[href$=".png"]:before, .c-form__dropdown > label > strong > a[href$=".png"]:before,
.c-elementalPublikationen__copystage > p > em > a[href$=".png"]:before,
.dropzone-holder.uploadable > p > em > a[href$=".png"]:before,
.c-schedule__copy > em > a[href$=".png"]:before,
.c-lightbox__subline > em > a[href$=".png"]:before,
.tobii__counter > em > a[href$=".png"]:before,
.tobii-image figure > figcaption > em > a[href$=".png"]:before,
.c-form .btn-toolbar > p > em > a[href$=".png"]:before,
.c-books__autor > em > a[href$=".png"]:before,
.c-books__copy > em > a[href$=".png"]:before,
.c-books__verlag > em > a[href$=".png"]:before,
.c-books__jahr > em > a[href$=".png"]:before,
.c-books__isbn > em > a[href$=".png"]:before,
.c-books__preis > em > a[href$=".png"]:before,
.c-books__link > em > a[href$=".png"]:before,
.c-astlrVideoDates__copy > em > a[href$=".png"]:before,
.c-astlrFileItems__link > em > a[href$=".png"]:before,
.c-astlrCopy__fieldname > em > a[href$=".png"]:before,
.c-astlrCopy__field > em > a[href$=".png"]:before,
.c-astlrCopy > p > em > a[href$=".png"]:before,
.c-astlrCopy__accordionHeader > em > a[href$=".png"]:before,
.c-astlrCopy__accordionField > em > a[href$=".png"]:before,
.c-astlrStage__note > p > em > a[href$=".png"]:before,
.c-astlrStage__uploader > p > em > a[href$=".png"]:before,
.c-anncmts__body > em > a[href$=".png"]:before,
.typography p > em > a[href$=".png"]:before,
.c-form label > em > a[href$=".png"]:before,
.c-form input.text > em > a[href$=".png"]:before,
.c-form input.textarea > em > a[href$=".png"]:before,
.c-form textarea.text > em > a[href$=".png"]:before,
.c-form textarea.textarea > em > a[href$=".png"]:before,
.c-form input[type=text] > em > a[href$=".png"]:before,
.c-form input[type=password] > em > a[href$=".png"]:before,
.c-form input[type=email] > em > a[href$=".png"]:before,
.c-form input[type=url] > em > a[href$=".png"]:before,
.c-form input[type=date] > em > a[href$=".png"]:before,
.c-form input[type=month] > em > a[href$=".png"]:before,
.c-form input[type=time] > em > a[href$=".png"]:before,
.c-form input[type=datetime] > em > a[href$=".png"]:before,
.c-form input[type=datetime-local] > em > a[href$=".png"]:before,
.c-form input[type=week] > em > a[href$=".png"]:before,
.c-form input[type=number] > em > a[href$=".png"]:before,
.c-form input[type=search] > em > a[href$=".png"]:before,
.c-form input[type=tel] > em > a[href$=".png"]:before,
.c-form input[type=color] > em > a[href$=".png"]:before,
.c-form textarea > em > a[href$=".png"]:before,
.c-form__checkbox label > em > a[href$=".png"]:before,
.c-form__dropdown > em > a[href$=".png"]:before,
.c-form__dropdown select > option > em > a[href$=".png"]:before,
.c-form__dropdown > label > em > a[href$=".png"]:before, .c-elementalPublikationen__copystage > p > strong > a[href$=".PNG"]:before, .dropzone-holder.uploadable > p > strong > a[href$=".PNG"]:before, .c-schedule__copy > strong > a[href$=".PNG"]:before, .c-lightbox__subline > strong > a[href$=".PNG"]:before, .tobii__counter > strong > a[href$=".PNG"]:before, .tobii-image figure > figcaption > strong > a[href$=".PNG"]:before, .c-form .btn-toolbar > p > strong > a[href$=".PNG"]:before, .c-books__autor > strong > a[href$=".PNG"]:before, .c-books__copy > strong > a[href$=".PNG"]:before, .c-books__verlag > strong > a[href$=".PNG"]:before, .c-books__jahr > strong > a[href$=".PNG"]:before, .c-books__isbn > strong > a[href$=".PNG"]:before, .c-books__preis > strong > a[href$=".PNG"]:before, .c-books__link > strong > a[href$=".PNG"]:before, .c-astlrVideoDates__copy > strong > a[href$=".PNG"]:before, .c-astlrFileItems__link > strong > a[href$=".PNG"]:before, .c-astlrCopy__fieldname > strong > a[href$=".PNG"]:before, .c-astlrCopy__field > strong > a[href$=".PNG"]:before, .c-astlrCopy > p > strong > a[href$=".PNG"]:before, .c-astlrCopy__accordionHeader > strong > a[href$=".PNG"]:before, .c-astlrCopy__accordionField > strong > a[href$=".PNG"]:before, .c-astlrStage__note > p > strong > a[href$=".PNG"]:before, .c-astlrStage__uploader > p > strong > a[href$=".PNG"]:before, .c-anncmts__body > strong > a[href$=".PNG"]:before, .typography p > strong > a[href$=".PNG"]:before, .c-form label > strong > a[href$=".PNG"]:before, .c-form input.text > strong > a[href$=".PNG"]:before, .c-form input.textarea > strong > a[href$=".PNG"]:before,
.c-form textarea.text > strong > a[href$=".PNG"]:before,
.c-form textarea.textarea > strong > a[href$=".PNG"]:before, .c-form input[type=text] > strong > a[href$=".PNG"]:before,
.c-form input[type=password] > strong > a[href$=".PNG"]:before,
.c-form input[type=email] > strong > a[href$=".PNG"]:before,
.c-form input[type=url] > strong > a[href$=".PNG"]:before,
.c-form input[type=date] > strong > a[href$=".PNG"]:before,
.c-form input[type=month] > strong > a[href$=".PNG"]:before,
.c-form input[type=time] > strong > a[href$=".PNG"]:before,
.c-form input[type=datetime] > strong > a[href$=".PNG"]:before,
.c-form input[type=datetime-local] > strong > a[href$=".PNG"]:before,
.c-form input[type=week] > strong > a[href$=".PNG"]:before,
.c-form input[type=number] > strong > a[href$=".PNG"]:before,
.c-form input[type=search] > strong > a[href$=".PNG"]:before,
.c-form input[type=tel] > strong > a[href$=".PNG"]:before,
.c-form input[type=color] > strong > a[href$=".PNG"]:before,
.c-form textarea > strong > a[href$=".PNG"]:before, .c-form__checkbox label > strong > a[href$=".PNG"]:before, .c-form__dropdown > strong > a[href$=".PNG"]:before, .c-form__dropdown select > option > strong > a[href$=".PNG"]:before, .c-form__dropdown > label > strong > a[href$=".PNG"]:before,
.c-elementalPublikationen__copystage > p > em > a[href$=".PNG"]:before,
.dropzone-holder.uploadable > p > em > a[href$=".PNG"]:before,
.c-schedule__copy > em > a[href$=".PNG"]:before,
.c-lightbox__subline > em > a[href$=".PNG"]:before,
.tobii__counter > em > a[href$=".PNG"]:before,
.tobii-image figure > figcaption > em > a[href$=".PNG"]:before,
.c-form .btn-toolbar > p > em > a[href$=".PNG"]:before,
.c-books__autor > em > a[href$=".PNG"]:before,
.c-books__copy > em > a[href$=".PNG"]:before,
.c-books__verlag > em > a[href$=".PNG"]:before,
.c-books__jahr > em > a[href$=".PNG"]:before,
.c-books__isbn > em > a[href$=".PNG"]:before,
.c-books__preis > em > a[href$=".PNG"]:before,
.c-books__link > em > a[href$=".PNG"]:before,
.c-astlrVideoDates__copy > em > a[href$=".PNG"]:before,
.c-astlrFileItems__link > em > a[href$=".PNG"]:before,
.c-astlrCopy__fieldname > em > a[href$=".PNG"]:before,
.c-astlrCopy__field > em > a[href$=".PNG"]:before,
.c-astlrCopy > p > em > a[href$=".PNG"]:before,
.c-astlrCopy__accordionHeader > em > a[href$=".PNG"]:before,
.c-astlrCopy__accordionField > em > a[href$=".PNG"]:before,
.c-astlrStage__note > p > em > a[href$=".PNG"]:before,
.c-astlrStage__uploader > p > em > a[href$=".PNG"]:before,
.c-anncmts__body > em > a[href$=".PNG"]:before,
.typography p > em > a[href$=".PNG"]:before,
.c-form label > em > a[href$=".PNG"]:before,
.c-form input.text > em > a[href$=".PNG"]:before,
.c-form input.textarea > em > a[href$=".PNG"]:before,
.c-form textarea.text > em > a[href$=".PNG"]:before,
.c-form textarea.textarea > em > a[href$=".PNG"]:before,
.c-form input[type=text] > em > a[href$=".PNG"]:before,
.c-form input[type=password] > em > a[href$=".PNG"]:before,
.c-form input[type=email] > em > a[href$=".PNG"]:before,
.c-form input[type=url] > em > a[href$=".PNG"]:before,
.c-form input[type=date] > em > a[href$=".PNG"]:before,
.c-form input[type=month] > em > a[href$=".PNG"]:before,
.c-form input[type=time] > em > a[href$=".PNG"]:before,
.c-form input[type=datetime] > em > a[href$=".PNG"]:before,
.c-form input[type=datetime-local] > em > a[href$=".PNG"]:before,
.c-form input[type=week] > em > a[href$=".PNG"]:before,
.c-form input[type=number] > em > a[href$=".PNG"]:before,
.c-form input[type=search] > em > a[href$=".PNG"]:before,
.c-form input[type=tel] > em > a[href$=".PNG"]:before,
.c-form input[type=color] > em > a[href$=".PNG"]:before,
.c-form textarea > em > a[href$=".PNG"]:before,
.c-form__checkbox label > em > a[href$=".PNG"]:before,
.c-form__dropdown > em > a[href$=".PNG"]:before,
.c-form__dropdown select > option > em > a[href$=".PNG"]:before,
.c-form__dropdown > label > em > a[href$=".PNG"]:before, .c-elementalPublikationen__copystage > p > strong > a[href$=".gif"]:before, .dropzone-holder.uploadable > p > strong > a[href$=".gif"]:before, .c-schedule__copy > strong > a[href$=".gif"]:before, .c-lightbox__subline > strong > a[href$=".gif"]:before, .tobii__counter > strong > a[href$=".gif"]:before, .tobii-image figure > figcaption > strong > a[href$=".gif"]:before, .c-form .btn-toolbar > p > strong > a[href$=".gif"]:before, .c-books__autor > strong > a[href$=".gif"]:before, .c-books__copy > strong > a[href$=".gif"]:before, .c-books__verlag > strong > a[href$=".gif"]:before, .c-books__jahr > strong > a[href$=".gif"]:before, .c-books__isbn > strong > a[href$=".gif"]:before, .c-books__preis > strong > a[href$=".gif"]:before, .c-books__link > strong > a[href$=".gif"]:before, .c-astlrVideoDates__copy > strong > a[href$=".gif"]:before, .c-astlrFileItems__link > strong > a[href$=".gif"]:before, .c-astlrCopy__fieldname > strong > a[href$=".gif"]:before, .c-astlrCopy__field > strong > a[href$=".gif"]:before, .c-astlrCopy > p > strong > a[href$=".gif"]:before, .c-astlrCopy__accordionHeader > strong > a[href$=".gif"]:before, .c-astlrCopy__accordionField > strong > a[href$=".gif"]:before, .c-astlrStage__note > p > strong > a[href$=".gif"]:before, .c-astlrStage__uploader > p > strong > a[href$=".gif"]:before, .c-anncmts__body > strong > a[href$=".gif"]:before, .typography p > strong > a[href$=".gif"]:before, .c-form label > strong > a[href$=".gif"]:before, .c-form input.text > strong > a[href$=".gif"]:before, .c-form input.textarea > strong > a[href$=".gif"]:before,
.c-form textarea.text > strong > a[href$=".gif"]:before,
.c-form textarea.textarea > strong > a[href$=".gif"]:before, .c-form input[type=text] > strong > a[href$=".gif"]:before,
.c-form input[type=password] > strong > a[href$=".gif"]:before,
.c-form input[type=email] > strong > a[href$=".gif"]:before,
.c-form input[type=url] > strong > a[href$=".gif"]:before,
.c-form input[type=date] > strong > a[href$=".gif"]:before,
.c-form input[type=month] > strong > a[href$=".gif"]:before,
.c-form input[type=time] > strong > a[href$=".gif"]:before,
.c-form input[type=datetime] > strong > a[href$=".gif"]:before,
.c-form input[type=datetime-local] > strong > a[href$=".gif"]:before,
.c-form input[type=week] > strong > a[href$=".gif"]:before,
.c-form input[type=number] > strong > a[href$=".gif"]:before,
.c-form input[type=search] > strong > a[href$=".gif"]:before,
.c-form input[type=tel] > strong > a[href$=".gif"]:before,
.c-form input[type=color] > strong > a[href$=".gif"]:before,
.c-form textarea > strong > a[href$=".gif"]:before, .c-form__checkbox label > strong > a[href$=".gif"]:before, .c-form__dropdown > strong > a[href$=".gif"]:before, .c-form__dropdown select > option > strong > a[href$=".gif"]:before, .c-form__dropdown > label > strong > a[href$=".gif"]:before,
.c-elementalPublikationen__copystage > p > em > a[href$=".gif"]:before,
.dropzone-holder.uploadable > p > em > a[href$=".gif"]:before,
.c-schedule__copy > em > a[href$=".gif"]:before,
.c-lightbox__subline > em > a[href$=".gif"]:before,
.tobii__counter > em > a[href$=".gif"]:before,
.tobii-image figure > figcaption > em > a[href$=".gif"]:before,
.c-form .btn-toolbar > p > em > a[href$=".gif"]:before,
.c-books__autor > em > a[href$=".gif"]:before,
.c-books__copy > em > a[href$=".gif"]:before,
.c-books__verlag > em > a[href$=".gif"]:before,
.c-books__jahr > em > a[href$=".gif"]:before,
.c-books__isbn > em > a[href$=".gif"]:before,
.c-books__preis > em > a[href$=".gif"]:before,
.c-books__link > em > a[href$=".gif"]:before,
.c-astlrVideoDates__copy > em > a[href$=".gif"]:before,
.c-astlrFileItems__link > em > a[href$=".gif"]:before,
.c-astlrCopy__fieldname > em > a[href$=".gif"]:before,
.c-astlrCopy__field > em > a[href$=".gif"]:before,
.c-astlrCopy > p > em > a[href$=".gif"]:before,
.c-astlrCopy__accordionHeader > em > a[href$=".gif"]:before,
.c-astlrCopy__accordionField > em > a[href$=".gif"]:before,
.c-astlrStage__note > p > em > a[href$=".gif"]:before,
.c-astlrStage__uploader > p > em > a[href$=".gif"]:before,
.c-anncmts__body > em > a[href$=".gif"]:before,
.typography p > em > a[href$=".gif"]:before,
.c-form label > em > a[href$=".gif"]:before,
.c-form input.text > em > a[href$=".gif"]:before,
.c-form input.textarea > em > a[href$=".gif"]:before,
.c-form textarea.text > em > a[href$=".gif"]:before,
.c-form textarea.textarea > em > a[href$=".gif"]:before,
.c-form input[type=text] > em > a[href$=".gif"]:before,
.c-form input[type=password] > em > a[href$=".gif"]:before,
.c-form input[type=email] > em > a[href$=".gif"]:before,
.c-form input[type=url] > em > a[href$=".gif"]:before,
.c-form input[type=date] > em > a[href$=".gif"]:before,
.c-form input[type=month] > em > a[href$=".gif"]:before,
.c-form input[type=time] > em > a[href$=".gif"]:before,
.c-form input[type=datetime] > em > a[href$=".gif"]:before,
.c-form input[type=datetime-local] > em > a[href$=".gif"]:before,
.c-form input[type=week] > em > a[href$=".gif"]:before,
.c-form input[type=number] > em > a[href$=".gif"]:before,
.c-form input[type=search] > em > a[href$=".gif"]:before,
.c-form input[type=tel] > em > a[href$=".gif"]:before,
.c-form input[type=color] > em > a[href$=".gif"]:before,
.c-form textarea > em > a[href$=".gif"]:before,
.c-form__checkbox label > em > a[href$=".gif"]:before,
.c-form__dropdown > em > a[href$=".gif"]:before,
.c-form__dropdown select > option > em > a[href$=".gif"]:before,
.c-form__dropdown > label > em > a[href$=".gif"]:before, .c-elementalPublikationen__copystage > p > strong > a[href$=".GIF"]:before, .dropzone-holder.uploadable > p > strong > a[href$=".GIF"]:before, .c-schedule__copy > strong > a[href$=".GIF"]:before, .c-lightbox__subline > strong > a[href$=".GIF"]:before, .tobii__counter > strong > a[href$=".GIF"]:before, .tobii-image figure > figcaption > strong > a[href$=".GIF"]:before, .c-form .btn-toolbar > p > strong > a[href$=".GIF"]:before, .c-books__autor > strong > a[href$=".GIF"]:before, .c-books__copy > strong > a[href$=".GIF"]:before, .c-books__verlag > strong > a[href$=".GIF"]:before, .c-books__jahr > strong > a[href$=".GIF"]:before, .c-books__isbn > strong > a[href$=".GIF"]:before, .c-books__preis > strong > a[href$=".GIF"]:before, .c-books__link > strong > a[href$=".GIF"]:before, .c-astlrVideoDates__copy > strong > a[href$=".GIF"]:before, .c-astlrFileItems__link > strong > a[href$=".GIF"]:before, .c-astlrCopy__fieldname > strong > a[href$=".GIF"]:before, .c-astlrCopy__field > strong > a[href$=".GIF"]:before, .c-astlrCopy > p > strong > a[href$=".GIF"]:before, .c-astlrCopy__accordionHeader > strong > a[href$=".GIF"]:before, .c-astlrCopy__accordionField > strong > a[href$=".GIF"]:before, .c-astlrStage__note > p > strong > a[href$=".GIF"]:before, .c-astlrStage__uploader > p > strong > a[href$=".GIF"]:before, .c-anncmts__body > strong > a[href$=".GIF"]:before, .typography p > strong > a[href$=".GIF"]:before, .c-form label > strong > a[href$=".GIF"]:before, .c-form input.text > strong > a[href$=".GIF"]:before, .c-form input.textarea > strong > a[href$=".GIF"]:before,
.c-form textarea.text > strong > a[href$=".GIF"]:before,
.c-form textarea.textarea > strong > a[href$=".GIF"]:before, .c-form input[type=text] > strong > a[href$=".GIF"]:before,
.c-form input[type=password] > strong > a[href$=".GIF"]:before,
.c-form input[type=email] > strong > a[href$=".GIF"]:before,
.c-form input[type=url] > strong > a[href$=".GIF"]:before,
.c-form input[type=date] > strong > a[href$=".GIF"]:before,
.c-form input[type=month] > strong > a[href$=".GIF"]:before,
.c-form input[type=time] > strong > a[href$=".GIF"]:before,
.c-form input[type=datetime] > strong > a[href$=".GIF"]:before,
.c-form input[type=datetime-local] > strong > a[href$=".GIF"]:before,
.c-form input[type=week] > strong > a[href$=".GIF"]:before,
.c-form input[type=number] > strong > a[href$=".GIF"]:before,
.c-form input[type=search] > strong > a[href$=".GIF"]:before,
.c-form input[type=tel] > strong > a[href$=".GIF"]:before,
.c-form input[type=color] > strong > a[href$=".GIF"]:before,
.c-form textarea > strong > a[href$=".GIF"]:before, .c-form__checkbox label > strong > a[href$=".GIF"]:before, .c-form__dropdown > strong > a[href$=".GIF"]:before, .c-form__dropdown select > option > strong > a[href$=".GIF"]:before, .c-form__dropdown > label > strong > a[href$=".GIF"]:before,
.c-elementalPublikationen__copystage > p > em > a[href$=".GIF"]:before,
.dropzone-holder.uploadable > p > em > a[href$=".GIF"]:before,
.c-schedule__copy > em > a[href$=".GIF"]:before,
.c-lightbox__subline > em > a[href$=".GIF"]:before,
.tobii__counter > em > a[href$=".GIF"]:before,
.tobii-image figure > figcaption > em > a[href$=".GIF"]:before,
.c-form .btn-toolbar > p > em > a[href$=".GIF"]:before,
.c-books__autor > em > a[href$=".GIF"]:before,
.c-books__copy > em > a[href$=".GIF"]:before,
.c-books__verlag > em > a[href$=".GIF"]:before,
.c-books__jahr > em > a[href$=".GIF"]:before,
.c-books__isbn > em > a[href$=".GIF"]:before,
.c-books__preis > em > a[href$=".GIF"]:before,
.c-books__link > em > a[href$=".GIF"]:before,
.c-astlrVideoDates__copy > em > a[href$=".GIF"]:before,
.c-astlrFileItems__link > em > a[href$=".GIF"]:before,
.c-astlrCopy__fieldname > em > a[href$=".GIF"]:before,
.c-astlrCopy__field > em > a[href$=".GIF"]:before,
.c-astlrCopy > p > em > a[href$=".GIF"]:before,
.c-astlrCopy__accordionHeader > em > a[href$=".GIF"]:before,
.c-astlrCopy__accordionField > em > a[href$=".GIF"]:before,
.c-astlrStage__note > p > em > a[href$=".GIF"]:before,
.c-astlrStage__uploader > p > em > a[href$=".GIF"]:before,
.c-anncmts__body > em > a[href$=".GIF"]:before,
.typography p > em > a[href$=".GIF"]:before,
.c-form label > em > a[href$=".GIF"]:before,
.c-form input.text > em > a[href$=".GIF"]:before,
.c-form input.textarea > em > a[href$=".GIF"]:before,
.c-form textarea.text > em > a[href$=".GIF"]:before,
.c-form textarea.textarea > em > a[href$=".GIF"]:before,
.c-form input[type=text] > em > a[href$=".GIF"]:before,
.c-form input[type=password] > em > a[href$=".GIF"]:before,
.c-form input[type=email] > em > a[href$=".GIF"]:before,
.c-form input[type=url] > em > a[href$=".GIF"]:before,
.c-form input[type=date] > em > a[href$=".GIF"]:before,
.c-form input[type=month] > em > a[href$=".GIF"]:before,
.c-form input[type=time] > em > a[href$=".GIF"]:before,
.c-form input[type=datetime] > em > a[href$=".GIF"]:before,
.c-form input[type=datetime-local] > em > a[href$=".GIF"]:before,
.c-form input[type=week] > em > a[href$=".GIF"]:before,
.c-form input[type=number] > em > a[href$=".GIF"]:before,
.c-form input[type=search] > em > a[href$=".GIF"]:before,
.c-form input[type=tel] > em > a[href$=".GIF"]:before,
.c-form input[type=color] > em > a[href$=".GIF"]:before,
.c-form textarea > em > a[href$=".GIF"]:before,
.c-form__checkbox label > em > a[href$=".GIF"]:before,
.c-form__dropdown > em > a[href$=".GIF"]:before,
.c-form__dropdown select > option > em > a[href$=".GIF"]:before,
.c-form__dropdown > label > em > a[href$=".GIF"]:before, .c-elementalPublikationen__copystage > p > strong > a[href$=".jpg"]:before, .dropzone-holder.uploadable > p > strong > a[href$=".jpg"]:before, .c-schedule__copy > strong > a[href$=".jpg"]:before, .c-lightbox__subline > strong > a[href$=".jpg"]:before, .tobii__counter > strong > a[href$=".jpg"]:before, .tobii-image figure > figcaption > strong > a[href$=".jpg"]:before, .c-form .btn-toolbar > p > strong > a[href$=".jpg"]:before, .c-books__autor > strong > a[href$=".jpg"]:before, .c-books__copy > strong > a[href$=".jpg"]:before, .c-books__verlag > strong > a[href$=".jpg"]:before, .c-books__jahr > strong > a[href$=".jpg"]:before, .c-books__isbn > strong > a[href$=".jpg"]:before, .c-books__preis > strong > a[href$=".jpg"]:before, .c-books__link > strong > a[href$=".jpg"]:before, .c-astlrVideoDates__copy > strong > a[href$=".jpg"]:before, .c-astlrFileItems__link > strong > a[href$=".jpg"]:before, .c-astlrCopy__fieldname > strong > a[href$=".jpg"]:before, .c-astlrCopy__field > strong > a[href$=".jpg"]:before, .c-astlrCopy > p > strong > a[href$=".jpg"]:before, .c-astlrCopy__accordionHeader > strong > a[href$=".jpg"]:before, .c-astlrCopy__accordionField > strong > a[href$=".jpg"]:before, .c-astlrStage__note > p > strong > a[href$=".jpg"]:before, .c-astlrStage__uploader > p > strong > a[href$=".jpg"]:before, .c-anncmts__body > strong > a[href$=".jpg"]:before, .typography p > strong > a[href$=".jpg"]:before, .c-form label > strong > a[href$=".jpg"]:before, .c-form input.text > strong > a[href$=".jpg"]:before, .c-form input.textarea > strong > a[href$=".jpg"]:before,
.c-form textarea.text > strong > a[href$=".jpg"]:before,
.c-form textarea.textarea > strong > a[href$=".jpg"]:before, .c-form input[type=text] > strong > a[href$=".jpg"]:before,
.c-form input[type=password] > strong > a[href$=".jpg"]:before,
.c-form input[type=email] > strong > a[href$=".jpg"]:before,
.c-form input[type=url] > strong > a[href$=".jpg"]:before,
.c-form input[type=date] > strong > a[href$=".jpg"]:before,
.c-form input[type=month] > strong > a[href$=".jpg"]:before,
.c-form input[type=time] > strong > a[href$=".jpg"]:before,
.c-form input[type=datetime] > strong > a[href$=".jpg"]:before,
.c-form input[type=datetime-local] > strong > a[href$=".jpg"]:before,
.c-form input[type=week] > strong > a[href$=".jpg"]:before,
.c-form input[type=number] > strong > a[href$=".jpg"]:before,
.c-form input[type=search] > strong > a[href$=".jpg"]:before,
.c-form input[type=tel] > strong > a[href$=".jpg"]:before,
.c-form input[type=color] > strong > a[href$=".jpg"]:before,
.c-form textarea > strong > a[href$=".jpg"]:before, .c-form__checkbox label > strong > a[href$=".jpg"]:before, .c-form__dropdown > strong > a[href$=".jpg"]:before, .c-form__dropdown select > option > strong > a[href$=".jpg"]:before, .c-form__dropdown > label > strong > a[href$=".jpg"]:before,
.c-elementalPublikationen__copystage > p > em > a[href$=".jpg"]:before,
.dropzone-holder.uploadable > p > em > a[href$=".jpg"]:before,
.c-schedule__copy > em > a[href$=".jpg"]:before,
.c-lightbox__subline > em > a[href$=".jpg"]:before,
.tobii__counter > em > a[href$=".jpg"]:before,
.tobii-image figure > figcaption > em > a[href$=".jpg"]:before,
.c-form .btn-toolbar > p > em > a[href$=".jpg"]:before,
.c-books__autor > em > a[href$=".jpg"]:before,
.c-books__copy > em > a[href$=".jpg"]:before,
.c-books__verlag > em > a[href$=".jpg"]:before,
.c-books__jahr > em > a[href$=".jpg"]:before,
.c-books__isbn > em > a[href$=".jpg"]:before,
.c-books__preis > em > a[href$=".jpg"]:before,
.c-books__link > em > a[href$=".jpg"]:before,
.c-astlrVideoDates__copy > em > a[href$=".jpg"]:before,
.c-astlrFileItems__link > em > a[href$=".jpg"]:before,
.c-astlrCopy__fieldname > em > a[href$=".jpg"]:before,
.c-astlrCopy__field > em > a[href$=".jpg"]:before,
.c-astlrCopy > p > em > a[href$=".jpg"]:before,
.c-astlrCopy__accordionHeader > em > a[href$=".jpg"]:before,
.c-astlrCopy__accordionField > em > a[href$=".jpg"]:before,
.c-astlrStage__note > p > em > a[href$=".jpg"]:before,
.c-astlrStage__uploader > p > em > a[href$=".jpg"]:before,
.c-anncmts__body > em > a[href$=".jpg"]:before,
.typography p > em > a[href$=".jpg"]:before,
.c-form label > em > a[href$=".jpg"]:before,
.c-form input.text > em > a[href$=".jpg"]:before,
.c-form input.textarea > em > a[href$=".jpg"]:before,
.c-form textarea.text > em > a[href$=".jpg"]:before,
.c-form textarea.textarea > em > a[href$=".jpg"]:before,
.c-form input[type=text] > em > a[href$=".jpg"]:before,
.c-form input[type=password] > em > a[href$=".jpg"]:before,
.c-form input[type=email] > em > a[href$=".jpg"]:before,
.c-form input[type=url] > em > a[href$=".jpg"]:before,
.c-form input[type=date] > em > a[href$=".jpg"]:before,
.c-form input[type=month] > em > a[href$=".jpg"]:before,
.c-form input[type=time] > em > a[href$=".jpg"]:before,
.c-form input[type=datetime] > em > a[href$=".jpg"]:before,
.c-form input[type=datetime-local] > em > a[href$=".jpg"]:before,
.c-form input[type=week] > em > a[href$=".jpg"]:before,
.c-form input[type=number] > em > a[href$=".jpg"]:before,
.c-form input[type=search] > em > a[href$=".jpg"]:before,
.c-form input[type=tel] > em > a[href$=".jpg"]:before,
.c-form input[type=color] > em > a[href$=".jpg"]:before,
.c-form textarea > em > a[href$=".jpg"]:before,
.c-form__checkbox label > em > a[href$=".jpg"]:before,
.c-form__dropdown > em > a[href$=".jpg"]:before,
.c-form__dropdown select > option > em > a[href$=".jpg"]:before,
.c-form__dropdown > label > em > a[href$=".jpg"]:before, .c-elementalPublikationen__copystage > p > strong > a[href$=".JPG"]:before, .dropzone-holder.uploadable > p > strong > a[href$=".JPG"]:before, .c-schedule__copy > strong > a[href$=".JPG"]:before, .c-lightbox__subline > strong > a[href$=".JPG"]:before, .tobii__counter > strong > a[href$=".JPG"]:before, .tobii-image figure > figcaption > strong > a[href$=".JPG"]:before, .c-form .btn-toolbar > p > strong > a[href$=".JPG"]:before, .c-books__autor > strong > a[href$=".JPG"]:before, .c-books__copy > strong > a[href$=".JPG"]:before, .c-books__verlag > strong > a[href$=".JPG"]:before, .c-books__jahr > strong > a[href$=".JPG"]:before, .c-books__isbn > strong > a[href$=".JPG"]:before, .c-books__preis > strong > a[href$=".JPG"]:before, .c-books__link > strong > a[href$=".JPG"]:before, .c-astlrVideoDates__copy > strong > a[href$=".JPG"]:before, .c-astlrFileItems__link > strong > a[href$=".JPG"]:before, .c-astlrCopy__fieldname > strong > a[href$=".JPG"]:before, .c-astlrCopy__field > strong > a[href$=".JPG"]:before, .c-astlrCopy > p > strong > a[href$=".JPG"]:before, .c-astlrCopy__accordionHeader > strong > a[href$=".JPG"]:before, .c-astlrCopy__accordionField > strong > a[href$=".JPG"]:before, .c-astlrStage__note > p > strong > a[href$=".JPG"]:before, .c-astlrStage__uploader > p > strong > a[href$=".JPG"]:before, .c-anncmts__body > strong > a[href$=".JPG"]:before, .typography p > strong > a[href$=".JPG"]:before, .c-form label > strong > a[href$=".JPG"]:before, .c-form input.text > strong > a[href$=".JPG"]:before, .c-form input.textarea > strong > a[href$=".JPG"]:before,
.c-form textarea.text > strong > a[href$=".JPG"]:before,
.c-form textarea.textarea > strong > a[href$=".JPG"]:before, .c-form input[type=text] > strong > a[href$=".JPG"]:before,
.c-form input[type=password] > strong > a[href$=".JPG"]:before,
.c-form input[type=email] > strong > a[href$=".JPG"]:before,
.c-form input[type=url] > strong > a[href$=".JPG"]:before,
.c-form input[type=date] > strong > a[href$=".JPG"]:before,
.c-form input[type=month] > strong > a[href$=".JPG"]:before,
.c-form input[type=time] > strong > a[href$=".JPG"]:before,
.c-form input[type=datetime] > strong > a[href$=".JPG"]:before,
.c-form input[type=datetime-local] > strong > a[href$=".JPG"]:before,
.c-form input[type=week] > strong > a[href$=".JPG"]:before,
.c-form input[type=number] > strong > a[href$=".JPG"]:before,
.c-form input[type=search] > strong > a[href$=".JPG"]:before,
.c-form input[type=tel] > strong > a[href$=".JPG"]:before,
.c-form input[type=color] > strong > a[href$=".JPG"]:before,
.c-form textarea > strong > a[href$=".JPG"]:before, .c-form__checkbox label > strong > a[href$=".JPG"]:before, .c-form__dropdown > strong > a[href$=".JPG"]:before, .c-form__dropdown select > option > strong > a[href$=".JPG"]:before, .c-form__dropdown > label > strong > a[href$=".JPG"]:before,
.c-elementalPublikationen__copystage > p > em > a[href$=".JPG"]:before,
.dropzone-holder.uploadable > p > em > a[href$=".JPG"]:before,
.c-schedule__copy > em > a[href$=".JPG"]:before,
.c-lightbox__subline > em > a[href$=".JPG"]:before,
.tobii__counter > em > a[href$=".JPG"]:before,
.tobii-image figure > figcaption > em > a[href$=".JPG"]:before,
.c-form .btn-toolbar > p > em > a[href$=".JPG"]:before,
.c-books__autor > em > a[href$=".JPG"]:before,
.c-books__copy > em > a[href$=".JPG"]:before,
.c-books__verlag > em > a[href$=".JPG"]:before,
.c-books__jahr > em > a[href$=".JPG"]:before,
.c-books__isbn > em > a[href$=".JPG"]:before,
.c-books__preis > em > a[href$=".JPG"]:before,
.c-books__link > em > a[href$=".JPG"]:before,
.c-astlrVideoDates__copy > em > a[href$=".JPG"]:before,
.c-astlrFileItems__link > em > a[href$=".JPG"]:before,
.c-astlrCopy__fieldname > em > a[href$=".JPG"]:before,
.c-astlrCopy__field > em > a[href$=".JPG"]:before,
.c-astlrCopy > p > em > a[href$=".JPG"]:before,
.c-astlrCopy__accordionHeader > em > a[href$=".JPG"]:before,
.c-astlrCopy__accordionField > em > a[href$=".JPG"]:before,
.c-astlrStage__note > p > em > a[href$=".JPG"]:before,
.c-astlrStage__uploader > p > em > a[href$=".JPG"]:before,
.c-anncmts__body > em > a[href$=".JPG"]:before,
.typography p > em > a[href$=".JPG"]:before,
.c-form label > em > a[href$=".JPG"]:before,
.c-form input.text > em > a[href$=".JPG"]:before,
.c-form input.textarea > em > a[href$=".JPG"]:before,
.c-form textarea.text > em > a[href$=".JPG"]:before,
.c-form textarea.textarea > em > a[href$=".JPG"]:before,
.c-form input[type=text] > em > a[href$=".JPG"]:before,
.c-form input[type=password] > em > a[href$=".JPG"]:before,
.c-form input[type=email] > em > a[href$=".JPG"]:before,
.c-form input[type=url] > em > a[href$=".JPG"]:before,
.c-form input[type=date] > em > a[href$=".JPG"]:before,
.c-form input[type=month] > em > a[href$=".JPG"]:before,
.c-form input[type=time] > em > a[href$=".JPG"]:before,
.c-form input[type=datetime] > em > a[href$=".JPG"]:before,
.c-form input[type=datetime-local] > em > a[href$=".JPG"]:before,
.c-form input[type=week] > em > a[href$=".JPG"]:before,
.c-form input[type=number] > em > a[href$=".JPG"]:before,
.c-form input[type=search] > em > a[href$=".JPG"]:before,
.c-form input[type=tel] > em > a[href$=".JPG"]:before,
.c-form input[type=color] > em > a[href$=".JPG"]:before,
.c-form textarea > em > a[href$=".JPG"]:before,
.c-form__checkbox label > em > a[href$=".JPG"]:before,
.c-form__dropdown > em > a[href$=".JPG"]:before,
.c-form__dropdown select > option > em > a[href$=".JPG"]:before,
.c-form__dropdown > label > em > a[href$=".JPG"]:before, .c-elementalPublikationen__copystage > p > strong > a[href$=".pdf"]:before, .dropzone-holder.uploadable > p > strong > a[href$=".pdf"]:before, .c-schedule__copy > strong > a[href$=".pdf"]:before, .c-lightbox__subline > strong > a[href$=".pdf"]:before, .tobii__counter > strong > a[href$=".pdf"]:before, .tobii-image figure > figcaption > strong > a[href$=".pdf"]:before, .c-form .btn-toolbar > p > strong > a[href$=".pdf"]:before, .c-books__autor > strong > a[href$=".pdf"]:before, .c-books__copy > strong > a[href$=".pdf"]:before, .c-books__verlag > strong > a[href$=".pdf"]:before, .c-books__jahr > strong > a[href$=".pdf"]:before, .c-books__isbn > strong > a[href$=".pdf"]:before, .c-books__preis > strong > a[href$=".pdf"]:before, .c-books__link > strong > a[href$=".pdf"]:before, .c-astlrVideoDates__copy > strong > a[href$=".pdf"]:before, .c-astlrFileItems__link > strong > a[href$=".pdf"]:before, .c-astlrCopy__fieldname > strong > a[href$=".pdf"]:before, .c-astlrCopy__field > strong > a[href$=".pdf"]:before, .c-astlrCopy > p > strong > a[href$=".pdf"]:before, .c-astlrCopy__accordionHeader > strong > a[href$=".pdf"]:before, .c-astlrCopy__accordionField > strong > a[href$=".pdf"]:before, .c-astlrStage__note > p > strong > a[href$=".pdf"]:before, .c-astlrStage__uploader > p > strong > a[href$=".pdf"]:before, .c-anncmts__body > strong > a[href$=".pdf"]:before, .typography p > strong > a[href$=".pdf"]:before, .c-form label > strong > a[href$=".pdf"]:before, .c-form input.text > strong > a[href$=".pdf"]:before, .c-form input.textarea > strong > a[href$=".pdf"]:before,
.c-form textarea.text > strong > a[href$=".pdf"]:before,
.c-form textarea.textarea > strong > a[href$=".pdf"]:before, .c-form input[type=text] > strong > a[href$=".pdf"]:before,
.c-form input[type=password] > strong > a[href$=".pdf"]:before,
.c-form input[type=email] > strong > a[href$=".pdf"]:before,
.c-form input[type=url] > strong > a[href$=".pdf"]:before,
.c-form input[type=date] > strong > a[href$=".pdf"]:before,
.c-form input[type=month] > strong > a[href$=".pdf"]:before,
.c-form input[type=time] > strong > a[href$=".pdf"]:before,
.c-form input[type=datetime] > strong > a[href$=".pdf"]:before,
.c-form input[type=datetime-local] > strong > a[href$=".pdf"]:before,
.c-form input[type=week] > strong > a[href$=".pdf"]:before,
.c-form input[type=number] > strong > a[href$=".pdf"]:before,
.c-form input[type=search] > strong > a[href$=".pdf"]:before,
.c-form input[type=tel] > strong > a[href$=".pdf"]:before,
.c-form input[type=color] > strong > a[href$=".pdf"]:before,
.c-form textarea > strong > a[href$=".pdf"]:before, .c-form__checkbox label > strong > a[href$=".pdf"]:before, .c-form__dropdown > strong > a[href$=".pdf"]:before, .c-form__dropdown select > option > strong > a[href$=".pdf"]:before, .c-form__dropdown > label > strong > a[href$=".pdf"]:before,
.c-elementalPublikationen__copystage > p > em > a[href$=".pdf"]:before,
.dropzone-holder.uploadable > p > em > a[href$=".pdf"]:before,
.c-schedule__copy > em > a[href$=".pdf"]:before,
.c-lightbox__subline > em > a[href$=".pdf"]:before,
.tobii__counter > em > a[href$=".pdf"]:before,
.tobii-image figure > figcaption > em > a[href$=".pdf"]:before,
.c-form .btn-toolbar > p > em > a[href$=".pdf"]:before,
.c-books__autor > em > a[href$=".pdf"]:before,
.c-books__copy > em > a[href$=".pdf"]:before,
.c-books__verlag > em > a[href$=".pdf"]:before,
.c-books__jahr > em > a[href$=".pdf"]:before,
.c-books__isbn > em > a[href$=".pdf"]:before,
.c-books__preis > em > a[href$=".pdf"]:before,
.c-books__link > em > a[href$=".pdf"]:before,
.c-astlrVideoDates__copy > em > a[href$=".pdf"]:before,
.c-astlrFileItems__link > em > a[href$=".pdf"]:before,
.c-astlrCopy__fieldname > em > a[href$=".pdf"]:before,
.c-astlrCopy__field > em > a[href$=".pdf"]:before,
.c-astlrCopy > p > em > a[href$=".pdf"]:before,
.c-astlrCopy__accordionHeader > em > a[href$=".pdf"]:before,
.c-astlrCopy__accordionField > em > a[href$=".pdf"]:before,
.c-astlrStage__note > p > em > a[href$=".pdf"]:before,
.c-astlrStage__uploader > p > em > a[href$=".pdf"]:before,
.c-anncmts__body > em > a[href$=".pdf"]:before,
.typography p > em > a[href$=".pdf"]:before,
.c-form label > em > a[href$=".pdf"]:before,
.c-form input.text > em > a[href$=".pdf"]:before,
.c-form input.textarea > em > a[href$=".pdf"]:before,
.c-form textarea.text > em > a[href$=".pdf"]:before,
.c-form textarea.textarea > em > a[href$=".pdf"]:before,
.c-form input[type=text] > em > a[href$=".pdf"]:before,
.c-form input[type=password] > em > a[href$=".pdf"]:before,
.c-form input[type=email] > em > a[href$=".pdf"]:before,
.c-form input[type=url] > em > a[href$=".pdf"]:before,
.c-form input[type=date] > em > a[href$=".pdf"]:before,
.c-form input[type=month] > em > a[href$=".pdf"]:before,
.c-form input[type=time] > em > a[href$=".pdf"]:before,
.c-form input[type=datetime] > em > a[href$=".pdf"]:before,
.c-form input[type=datetime-local] > em > a[href$=".pdf"]:before,
.c-form input[type=week] > em > a[href$=".pdf"]:before,
.c-form input[type=number] > em > a[href$=".pdf"]:before,
.c-form input[type=search] > em > a[href$=".pdf"]:before,
.c-form input[type=tel] > em > a[href$=".pdf"]:before,
.c-form input[type=color] > em > a[href$=".pdf"]:before,
.c-form textarea > em > a[href$=".pdf"]:before,
.c-form__checkbox label > em > a[href$=".pdf"]:before,
.c-form__dropdown > em > a[href$=".pdf"]:before,
.c-form__dropdown select > option > em > a[href$=".pdf"]:before,
.c-form__dropdown > label > em > a[href$=".pdf"]:before, .c-elementalPublikationen__copystage > p > a[href$=".png"]:before, .dropzone-holder.uploadable > p > a[href$=".png"]:before, .c-schedule__copy > a[href$=".png"]:before, .c-lightbox__subline > a[href$=".png"]:before, .tobii__counter > a[href$=".png"]:before, .tobii-image figure > figcaption > a[href$=".png"]:before, .c-form .btn-toolbar > p > a[href$=".png"]:before, .c-books__autor > a[href$=".png"]:before, .c-books__copy > a[href$=".png"]:before, .c-books__verlag > a[href$=".png"]:before, .c-books__jahr > a[href$=".png"]:before, .c-books__isbn > a[href$=".png"]:before, .c-books__preis > a[href$=".png"]:before, .c-books__link > a[href$=".png"]:before, .c-astlrVideoDates__copy > a[href$=".png"]:before, .c-astlrFileItems__link > a[href$=".png"]:before, .c-astlrCopy__fieldname > a[href$=".png"]:before, .c-astlrCopy__field > a[href$=".png"]:before, .c-astlrCopy > p > a[href$=".png"]:before, .c-astlrCopy__accordionHeader > a[href$=".png"]:before, .c-astlrCopy__accordionField > a[href$=".png"]:before, .c-astlrStage__note > p > a[href$=".png"]:before, .c-astlrStage__uploader > p > a[href$=".png"]:before, .c-anncmts__body > a[href$=".png"]:before, .typography p > a[href$=".png"]:before, .c-form label > a[href$=".png"]:before, .c-form input.text > a[href$=".png"]:before, .c-form input.textarea > a[href$=".png"]:before,
.c-form textarea.text > a[href$=".png"]:before,
.c-form textarea.textarea > a[href$=".png"]:before, .c-form input[type=text] > a[href$=".png"]:before,
.c-form input[type=password] > a[href$=".png"]:before,
.c-form input[type=email] > a[href$=".png"]:before,
.c-form input[type=url] > a[href$=".png"]:before,
.c-form input[type=date] > a[href$=".png"]:before,
.c-form input[type=month] > a[href$=".png"]:before,
.c-form input[type=time] > a[href$=".png"]:before,
.c-form input[type=datetime] > a[href$=".png"]:before,
.c-form input[type=datetime-local] > a[href$=".png"]:before,
.c-form input[type=week] > a[href$=".png"]:before,
.c-form input[type=number] > a[href$=".png"]:before,
.c-form input[type=search] > a[href$=".png"]:before,
.c-form input[type=tel] > a[href$=".png"]:before,
.c-form input[type=color] > a[href$=".png"]:before,
.c-form textarea > a[href$=".png"]:before, .c-form__checkbox label > a[href$=".png"]:before, .c-form__dropdown > a[href$=".png"]:before, .c-form__dropdown select > option > a[href$=".png"]:before, .c-form__dropdown > label > a[href$=".png"]:before, .c-elementalPublikationen__copystage > p > a[href$=".PNG"]:before, .dropzone-holder.uploadable > p > a[href$=".PNG"]:before, .c-schedule__copy > a[href$=".PNG"]:before, .c-lightbox__subline > a[href$=".PNG"]:before, .tobii__counter > a[href$=".PNG"]:before, .tobii-image figure > figcaption > a[href$=".PNG"]:before, .c-form .btn-toolbar > p > a[href$=".PNG"]:before, .c-books__autor > a[href$=".PNG"]:before, .c-books__copy > a[href$=".PNG"]:before, .c-books__verlag > a[href$=".PNG"]:before, .c-books__jahr > a[href$=".PNG"]:before, .c-books__isbn > a[href$=".PNG"]:before, .c-books__preis > a[href$=".PNG"]:before, .c-books__link > a[href$=".PNG"]:before, .c-astlrVideoDates__copy > a[href$=".PNG"]:before, .c-astlrFileItems__link > a[href$=".PNG"]:before, .c-astlrCopy__fieldname > a[href$=".PNG"]:before, .c-astlrCopy__field > a[href$=".PNG"]:before, .c-astlrCopy > p > a[href$=".PNG"]:before, .c-astlrCopy__accordionHeader > a[href$=".PNG"]:before, .c-astlrCopy__accordionField > a[href$=".PNG"]:before, .c-astlrStage__note > p > a[href$=".PNG"]:before, .c-astlrStage__uploader > p > a[href$=".PNG"]:before, .c-anncmts__body > a[href$=".PNG"]:before, .typography p > a[href$=".PNG"]:before, .c-form label > a[href$=".PNG"]:before, .c-form input.text > a[href$=".PNG"]:before, .c-form input.textarea > a[href$=".PNG"]:before,
.c-form textarea.text > a[href$=".PNG"]:before,
.c-form textarea.textarea > a[href$=".PNG"]:before, .c-form input[type=text] > a[href$=".PNG"]:before,
.c-form input[type=password] > a[href$=".PNG"]:before,
.c-form input[type=email] > a[href$=".PNG"]:before,
.c-form input[type=url] > a[href$=".PNG"]:before,
.c-form input[type=date] > a[href$=".PNG"]:before,
.c-form input[type=month] > a[href$=".PNG"]:before,
.c-form input[type=time] > a[href$=".PNG"]:before,
.c-form input[type=datetime] > a[href$=".PNG"]:before,
.c-form input[type=datetime-local] > a[href$=".PNG"]:before,
.c-form input[type=week] > a[href$=".PNG"]:before,
.c-form input[type=number] > a[href$=".PNG"]:before,
.c-form input[type=search] > a[href$=".PNG"]:before,
.c-form input[type=tel] > a[href$=".PNG"]:before,
.c-form input[type=color] > a[href$=".PNG"]:before,
.c-form textarea > a[href$=".PNG"]:before, .c-form__checkbox label > a[href$=".PNG"]:before, .c-form__dropdown > a[href$=".PNG"]:before, .c-form__dropdown select > option > a[href$=".PNG"]:before, .c-form__dropdown > label > a[href$=".PNG"]:before, .c-elementalPublikationen__copystage > p > a[href$=".gif"]:before, .dropzone-holder.uploadable > p > a[href$=".gif"]:before, .c-schedule__copy > a[href$=".gif"]:before, .c-lightbox__subline > a[href$=".gif"]:before, .tobii__counter > a[href$=".gif"]:before, .tobii-image figure > figcaption > a[href$=".gif"]:before, .c-form .btn-toolbar > p > a[href$=".gif"]:before, .c-books__autor > a[href$=".gif"]:before, .c-books__copy > a[href$=".gif"]:before, .c-books__verlag > a[href$=".gif"]:before, .c-books__jahr > a[href$=".gif"]:before, .c-books__isbn > a[href$=".gif"]:before, .c-books__preis > a[href$=".gif"]:before, .c-books__link > a[href$=".gif"]:before, .c-astlrVideoDates__copy > a[href$=".gif"]:before, .c-astlrFileItems__link > a[href$=".gif"]:before, .c-astlrCopy__fieldname > a[href$=".gif"]:before, .c-astlrCopy__field > a[href$=".gif"]:before, .c-astlrCopy > p > a[href$=".gif"]:before, .c-astlrCopy__accordionHeader > a[href$=".gif"]:before, .c-astlrCopy__accordionField > a[href$=".gif"]:before, .c-astlrStage__note > p > a[href$=".gif"]:before, .c-astlrStage__uploader > p > a[href$=".gif"]:before, .c-anncmts__body > a[href$=".gif"]:before, .typography p > a[href$=".gif"]:before, .c-form label > a[href$=".gif"]:before, .c-form input.text > a[href$=".gif"]:before, .c-form input.textarea > a[href$=".gif"]:before,
.c-form textarea.text > a[href$=".gif"]:before,
.c-form textarea.textarea > a[href$=".gif"]:before, .c-form input[type=text] > a[href$=".gif"]:before,
.c-form input[type=password] > a[href$=".gif"]:before,
.c-form input[type=email] > a[href$=".gif"]:before,
.c-form input[type=url] > a[href$=".gif"]:before,
.c-form input[type=date] > a[href$=".gif"]:before,
.c-form input[type=month] > a[href$=".gif"]:before,
.c-form input[type=time] > a[href$=".gif"]:before,
.c-form input[type=datetime] > a[href$=".gif"]:before,
.c-form input[type=datetime-local] > a[href$=".gif"]:before,
.c-form input[type=week] > a[href$=".gif"]:before,
.c-form input[type=number] > a[href$=".gif"]:before,
.c-form input[type=search] > a[href$=".gif"]:before,
.c-form input[type=tel] > a[href$=".gif"]:before,
.c-form input[type=color] > a[href$=".gif"]:before,
.c-form textarea > a[href$=".gif"]:before, .c-form__checkbox label > a[href$=".gif"]:before, .c-form__dropdown > a[href$=".gif"]:before, .c-form__dropdown select > option > a[href$=".gif"]:before, .c-form__dropdown > label > a[href$=".gif"]:before, .c-elementalPublikationen__copystage > p > a[href$=".GIF"]:before, .dropzone-holder.uploadable > p > a[href$=".GIF"]:before, .c-schedule__copy > a[href$=".GIF"]:before, .c-lightbox__subline > a[href$=".GIF"]:before, .tobii__counter > a[href$=".GIF"]:before, .tobii-image figure > figcaption > a[href$=".GIF"]:before, .c-form .btn-toolbar > p > a[href$=".GIF"]:before, .c-books__autor > a[href$=".GIF"]:before, .c-books__copy > a[href$=".GIF"]:before, .c-books__verlag > a[href$=".GIF"]:before, .c-books__jahr > a[href$=".GIF"]:before, .c-books__isbn > a[href$=".GIF"]:before, .c-books__preis > a[href$=".GIF"]:before, .c-books__link > a[href$=".GIF"]:before, .c-astlrVideoDates__copy > a[href$=".GIF"]:before, .c-astlrFileItems__link > a[href$=".GIF"]:before, .c-astlrCopy__fieldname > a[href$=".GIF"]:before, .c-astlrCopy__field > a[href$=".GIF"]:before, .c-astlrCopy > p > a[href$=".GIF"]:before, .c-astlrCopy__accordionHeader > a[href$=".GIF"]:before, .c-astlrCopy__accordionField > a[href$=".GIF"]:before, .c-astlrStage__note > p > a[href$=".GIF"]:before, .c-astlrStage__uploader > p > a[href$=".GIF"]:before, .c-anncmts__body > a[href$=".GIF"]:before, .typography p > a[href$=".GIF"]:before, .c-form label > a[href$=".GIF"]:before, .c-form input.text > a[href$=".GIF"]:before, .c-form input.textarea > a[href$=".GIF"]:before,
.c-form textarea.text > a[href$=".GIF"]:before,
.c-form textarea.textarea > a[href$=".GIF"]:before, .c-form input[type=text] > a[href$=".GIF"]:before,
.c-form input[type=password] > a[href$=".GIF"]:before,
.c-form input[type=email] > a[href$=".GIF"]:before,
.c-form input[type=url] > a[href$=".GIF"]:before,
.c-form input[type=date] > a[href$=".GIF"]:before,
.c-form input[type=month] > a[href$=".GIF"]:before,
.c-form input[type=time] > a[href$=".GIF"]:before,
.c-form input[type=datetime] > a[href$=".GIF"]:before,
.c-form input[type=datetime-local] > a[href$=".GIF"]:before,
.c-form input[type=week] > a[href$=".GIF"]:before,
.c-form input[type=number] > a[href$=".GIF"]:before,
.c-form input[type=search] > a[href$=".GIF"]:before,
.c-form input[type=tel] > a[href$=".GIF"]:before,
.c-form input[type=color] > a[href$=".GIF"]:before,
.c-form textarea > a[href$=".GIF"]:before, .c-form__checkbox label > a[href$=".GIF"]:before, .c-form__dropdown > a[href$=".GIF"]:before, .c-form__dropdown select > option > a[href$=".GIF"]:before, .c-form__dropdown > label > a[href$=".GIF"]:before, .c-elementalPublikationen__copystage > p > a[href$=".jpg"]:before, .dropzone-holder.uploadable > p > a[href$=".jpg"]:before, .c-schedule__copy > a[href$=".jpg"]:before, .c-lightbox__subline > a[href$=".jpg"]:before, .tobii__counter > a[href$=".jpg"]:before, .tobii-image figure > figcaption > a[href$=".jpg"]:before, .c-form .btn-toolbar > p > a[href$=".jpg"]:before, .c-books__autor > a[href$=".jpg"]:before, .c-books__copy > a[href$=".jpg"]:before, .c-books__verlag > a[href$=".jpg"]:before, .c-books__jahr > a[href$=".jpg"]:before, .c-books__isbn > a[href$=".jpg"]:before, .c-books__preis > a[href$=".jpg"]:before, .c-books__link > a[href$=".jpg"]:before, .c-astlrVideoDates__copy > a[href$=".jpg"]:before, .c-astlrFileItems__link > a[href$=".jpg"]:before, .c-astlrCopy__fieldname > a[href$=".jpg"]:before, .c-astlrCopy__field > a[href$=".jpg"]:before, .c-astlrCopy > p > a[href$=".jpg"]:before, .c-astlrCopy__accordionHeader > a[href$=".jpg"]:before, .c-astlrCopy__accordionField > a[href$=".jpg"]:before, .c-astlrStage__note > p > a[href$=".jpg"]:before, .c-astlrStage__uploader > p > a[href$=".jpg"]:before, .c-anncmts__body > a[href$=".jpg"]:before, .typography p > a[href$=".jpg"]:before, .c-form label > a[href$=".jpg"]:before, .c-form input.text > a[href$=".jpg"]:before, .c-form input.textarea > a[href$=".jpg"]:before,
.c-form textarea.text > a[href$=".jpg"]:before,
.c-form textarea.textarea > a[href$=".jpg"]:before, .c-form input[type=text] > a[href$=".jpg"]:before,
.c-form input[type=password] > a[href$=".jpg"]:before,
.c-form input[type=email] > a[href$=".jpg"]:before,
.c-form input[type=url] > a[href$=".jpg"]:before,
.c-form input[type=date] > a[href$=".jpg"]:before,
.c-form input[type=month] > a[href$=".jpg"]:before,
.c-form input[type=time] > a[href$=".jpg"]:before,
.c-form input[type=datetime] > a[href$=".jpg"]:before,
.c-form input[type=datetime-local] > a[href$=".jpg"]:before,
.c-form input[type=week] > a[href$=".jpg"]:before,
.c-form input[type=number] > a[href$=".jpg"]:before,
.c-form input[type=search] > a[href$=".jpg"]:before,
.c-form input[type=tel] > a[href$=".jpg"]:before,
.c-form input[type=color] > a[href$=".jpg"]:before,
.c-form textarea > a[href$=".jpg"]:before, .c-form__checkbox label > a[href$=".jpg"]:before, .c-form__dropdown > a[href$=".jpg"]:before, .c-form__dropdown select > option > a[href$=".jpg"]:before, .c-form__dropdown > label > a[href$=".jpg"]:before, .c-elementalPublikationen__copystage > p > a[href$=".JPG"]:before, .dropzone-holder.uploadable > p > a[href$=".JPG"]:before, .c-schedule__copy > a[href$=".JPG"]:before, .c-lightbox__subline > a[href$=".JPG"]:before, .tobii__counter > a[href$=".JPG"]:before, .tobii-image figure > figcaption > a[href$=".JPG"]:before, .c-form .btn-toolbar > p > a[href$=".JPG"]:before, .c-books__autor > a[href$=".JPG"]:before, .c-books__copy > a[href$=".JPG"]:before, .c-books__verlag > a[href$=".JPG"]:before, .c-books__jahr > a[href$=".JPG"]:before, .c-books__isbn > a[href$=".JPG"]:before, .c-books__preis > a[href$=".JPG"]:before, .c-books__link > a[href$=".JPG"]:before, .c-astlrVideoDates__copy > a[href$=".JPG"]:before, .c-astlrFileItems__link > a[href$=".JPG"]:before, .c-astlrCopy__fieldname > a[href$=".JPG"]:before, .c-astlrCopy__field > a[href$=".JPG"]:before, .c-astlrCopy > p > a[href$=".JPG"]:before, .c-astlrCopy__accordionHeader > a[href$=".JPG"]:before, .c-astlrCopy__accordionField > a[href$=".JPG"]:before, .c-astlrStage__note > p > a[href$=".JPG"]:before, .c-astlrStage__uploader > p > a[href$=".JPG"]:before, .c-anncmts__body > a[href$=".JPG"]:before, .typography p > a[href$=".JPG"]:before, .c-form label > a[href$=".JPG"]:before, .c-form input.text > a[href$=".JPG"]:before, .c-form input.textarea > a[href$=".JPG"]:before,
.c-form textarea.text > a[href$=".JPG"]:before,
.c-form textarea.textarea > a[href$=".JPG"]:before, .c-form input[type=text] > a[href$=".JPG"]:before,
.c-form input[type=password] > a[href$=".JPG"]:before,
.c-form input[type=email] > a[href$=".JPG"]:before,
.c-form input[type=url] > a[href$=".JPG"]:before,
.c-form input[type=date] > a[href$=".JPG"]:before,
.c-form input[type=month] > a[href$=".JPG"]:before,
.c-form input[type=time] > a[href$=".JPG"]:before,
.c-form input[type=datetime] > a[href$=".JPG"]:before,
.c-form input[type=datetime-local] > a[href$=".JPG"]:before,
.c-form input[type=week] > a[href$=".JPG"]:before,
.c-form input[type=number] > a[href$=".JPG"]:before,
.c-form input[type=search] > a[href$=".JPG"]:before,
.c-form input[type=tel] > a[href$=".JPG"]:before,
.c-form input[type=color] > a[href$=".JPG"]:before,
.c-form textarea > a[href$=".JPG"]:before, .c-form__checkbox label > a[href$=".JPG"]:before, .c-form__dropdown > a[href$=".JPG"]:before, .c-form__dropdown select > option > a[href$=".JPG"]:before, .c-form__dropdown > label > a[href$=".JPG"]:before, .c-elementalPublikationen__copystage > p > a[href$=".pdf"]:before, .dropzone-holder.uploadable > p > a[href$=".pdf"]:before, .c-schedule__copy > a[href$=".pdf"]:before, .c-lightbox__subline > a[href$=".pdf"]:before, .tobii__counter > a[href$=".pdf"]:before, .tobii-image figure > figcaption > a[href$=".pdf"]:before, .c-form .btn-toolbar > p > a[href$=".pdf"]:before, .c-books__autor > a[href$=".pdf"]:before, .c-books__copy > a[href$=".pdf"]:before, .c-books__verlag > a[href$=".pdf"]:before, .c-books__jahr > a[href$=".pdf"]:before, .c-books__isbn > a[href$=".pdf"]:before, .c-books__preis > a[href$=".pdf"]:before, .c-books__link > a[href$=".pdf"]:before, .c-astlrVideoDates__copy > a[href$=".pdf"]:before, .c-astlrFileItems__link > a[href$=".pdf"]:before, .c-astlrCopy__fieldname > a[href$=".pdf"]:before, .c-astlrCopy__field > a[href$=".pdf"]:before, .c-astlrCopy > p > a[href$=".pdf"]:before, .c-astlrCopy__accordionHeader > a[href$=".pdf"]:before, .c-astlrCopy__accordionField > a[href$=".pdf"]:before, .c-astlrStage__note > p > a[href$=".pdf"]:before, .c-astlrStage__uploader > p > a[href$=".pdf"]:before, .c-anncmts__body > a[href$=".pdf"]:before, .typography p > a[href$=".pdf"]:before, .c-form label > a[href$=".pdf"]:before, .c-form input.text > a[href$=".pdf"]:before, .c-form input.textarea > a[href$=".pdf"]:before,
.c-form textarea.text > a[href$=".pdf"]:before,
.c-form textarea.textarea > a[href$=".pdf"]:before, .c-form input[type=text] > a[href$=".pdf"]:before,
.c-form input[type=password] > a[href$=".pdf"]:before,
.c-form input[type=email] > a[href$=".pdf"]:before,
.c-form input[type=url] > a[href$=".pdf"]:before,
.c-form input[type=date] > a[href$=".pdf"]:before,
.c-form input[type=month] > a[href$=".pdf"]:before,
.c-form input[type=time] > a[href$=".pdf"]:before,
.c-form input[type=datetime] > a[href$=".pdf"]:before,
.c-form input[type=datetime-local] > a[href$=".pdf"]:before,
.c-form input[type=week] > a[href$=".pdf"]:before,
.c-form input[type=number] > a[href$=".pdf"]:before,
.c-form input[type=search] > a[href$=".pdf"]:before,
.c-form input[type=tel] > a[href$=".pdf"]:before,
.c-form input[type=color] > a[href$=".pdf"]:before,
.c-form textarea > a[href$=".pdf"]:before, .c-form__checkbox label > a[href$=".pdf"]:before, .c-form__dropdown > a[href$=".pdf"]:before, .c-form__dropdown select > option > a[href$=".pdf"]:before, .c-form__dropdown > label > a[href$=".pdf"]:before, .c-videoEmbed__caption > strong > a[href$=".png"]:before, .c-videoEmbed__caption > h1 > strong > a[href$=".png"]:before, .c-videoEmbed__caption > h2 > strong > a[href$=".png"]:before, .c-videoEmbed__caption > h3 > strong > a[href$=".png"]:before, .c-videoEmbed__caption > h4 > strong > a[href$=".png"]:before, .c-videoEmbed__caption > h5 > strong > a[href$=".png"]:before, .c-videoEmbed__caption > p > strong > a[href$=".png"]:before, .c-pollingTool__introtext > strong > a[href$=".png"]:before, .c-mediathekCard__caption > strong > a[href$=".png"]:before, .c-mediathekCard__caption > h1 > strong > a[href$=".png"]:before, .c-mediathekCard__caption > h2 > strong > a[href$=".png"]:before, .c-mediathekCard__caption > h3 > strong > a[href$=".png"]:before, .c-mediathekCard__caption > h4 > strong > a[href$=".png"]:before, .c-mediathekCard__caption > h5 > strong > a[href$=".png"]:before, .c-mediathekCard__caption > p > strong > a[href$=".png"]:before, .c-astlrSlider__caption > p > strong > a[href$=".png"]:before, .c-astlrSummary__copy > strong > a[href$=".png"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href$=".png"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href$=".png"]:before, .typography p.small > strong > a[href$=".png"]:before, .typography table > strong > a[href$=".png"]:before, .c-form .message > strong > a[href$=".png"]:before,
.c-videoEmbed__caption > em > a[href$=".png"]:before,
.c-videoEmbed__caption > h1 > em > a[href$=".png"]:before,
.c-videoEmbed__caption > h2 > em > a[href$=".png"]:before,
.c-videoEmbed__caption > h3 > em > a[href$=".png"]:before,
.c-videoEmbed__caption > h4 > em > a[href$=".png"]:before,
.c-videoEmbed__caption > h5 > em > a[href$=".png"]:before,
.c-videoEmbed__caption > p > em > a[href$=".png"]:before,
.c-pollingTool__introtext > em > a[href$=".png"]:before,
.c-mediathekCard__caption > em > a[href$=".png"]:before,
.c-mediathekCard__caption > h1 > em > a[href$=".png"]:before,
.c-mediathekCard__caption > h2 > em > a[href$=".png"]:before,
.c-mediathekCard__caption > h3 > em > a[href$=".png"]:before,
.c-mediathekCard__caption > h4 > em > a[href$=".png"]:before,
.c-mediathekCard__caption > h5 > em > a[href$=".png"]:before,
.c-mediathekCard__caption > p > em > a[href$=".png"]:before,
.c-astlrSlider__caption > p > em > a[href$=".png"]:before,
.c-astlrSummary__copy > em > a[href$=".png"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href$=".png"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href$=".png"]:before,
.typography p.small > em > a[href$=".png"]:before,
.typography table > em > a[href$=".png"]:before,
.c-form .message > em > a[href$=".png"]:before, .c-videoEmbed__caption > strong > a[href$=".PNG"]:before, .c-videoEmbed__caption > h1 > strong > a[href$=".PNG"]:before, .c-videoEmbed__caption > h2 > strong > a[href$=".PNG"]:before, .c-videoEmbed__caption > h3 > strong > a[href$=".PNG"]:before, .c-videoEmbed__caption > h4 > strong > a[href$=".PNG"]:before, .c-videoEmbed__caption > h5 > strong > a[href$=".PNG"]:before, .c-videoEmbed__caption > p > strong > a[href$=".PNG"]:before, .c-pollingTool__introtext > strong > a[href$=".PNG"]:before, .c-mediathekCard__caption > strong > a[href$=".PNG"]:before, .c-mediathekCard__caption > h1 > strong > a[href$=".PNG"]:before, .c-mediathekCard__caption > h2 > strong > a[href$=".PNG"]:before, .c-mediathekCard__caption > h3 > strong > a[href$=".PNG"]:before, .c-mediathekCard__caption > h4 > strong > a[href$=".PNG"]:before, .c-mediathekCard__caption > h5 > strong > a[href$=".PNG"]:before, .c-mediathekCard__caption > p > strong > a[href$=".PNG"]:before, .c-astlrSlider__caption > p > strong > a[href$=".PNG"]:before, .c-astlrSummary__copy > strong > a[href$=".PNG"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href$=".PNG"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href$=".PNG"]:before, .typography p.small > strong > a[href$=".PNG"]:before, .typography table > strong > a[href$=".PNG"]:before, .c-form .message > strong > a[href$=".PNG"]:before,
.c-videoEmbed__caption > em > a[href$=".PNG"]:before,
.c-videoEmbed__caption > h1 > em > a[href$=".PNG"]:before,
.c-videoEmbed__caption > h2 > em > a[href$=".PNG"]:before,
.c-videoEmbed__caption > h3 > em > a[href$=".PNG"]:before,
.c-videoEmbed__caption > h4 > em > a[href$=".PNG"]:before,
.c-videoEmbed__caption > h5 > em > a[href$=".PNG"]:before,
.c-videoEmbed__caption > p > em > a[href$=".PNG"]:before,
.c-pollingTool__introtext > em > a[href$=".PNG"]:before,
.c-mediathekCard__caption > em > a[href$=".PNG"]:before,
.c-mediathekCard__caption > h1 > em > a[href$=".PNG"]:before,
.c-mediathekCard__caption > h2 > em > a[href$=".PNG"]:before,
.c-mediathekCard__caption > h3 > em > a[href$=".PNG"]:before,
.c-mediathekCard__caption > h4 > em > a[href$=".PNG"]:before,
.c-mediathekCard__caption > h5 > em > a[href$=".PNG"]:before,
.c-mediathekCard__caption > p > em > a[href$=".PNG"]:before,
.c-astlrSlider__caption > p > em > a[href$=".PNG"]:before,
.c-astlrSummary__copy > em > a[href$=".PNG"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href$=".PNG"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href$=".PNG"]:before,
.typography p.small > em > a[href$=".PNG"]:before,
.typography table > em > a[href$=".PNG"]:before,
.c-form .message > em > a[href$=".PNG"]:before, .c-videoEmbed__caption > strong > a[href$=".gif"]:before, .c-videoEmbed__caption > h1 > strong > a[href$=".gif"]:before, .c-videoEmbed__caption > h2 > strong > a[href$=".gif"]:before, .c-videoEmbed__caption > h3 > strong > a[href$=".gif"]:before, .c-videoEmbed__caption > h4 > strong > a[href$=".gif"]:before, .c-videoEmbed__caption > h5 > strong > a[href$=".gif"]:before, .c-videoEmbed__caption > p > strong > a[href$=".gif"]:before, .c-pollingTool__introtext > strong > a[href$=".gif"]:before, .c-mediathekCard__caption > strong > a[href$=".gif"]:before, .c-mediathekCard__caption > h1 > strong > a[href$=".gif"]:before, .c-mediathekCard__caption > h2 > strong > a[href$=".gif"]:before, .c-mediathekCard__caption > h3 > strong > a[href$=".gif"]:before, .c-mediathekCard__caption > h4 > strong > a[href$=".gif"]:before, .c-mediathekCard__caption > h5 > strong > a[href$=".gif"]:before, .c-mediathekCard__caption > p > strong > a[href$=".gif"]:before, .c-astlrSlider__caption > p > strong > a[href$=".gif"]:before, .c-astlrSummary__copy > strong > a[href$=".gif"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href$=".gif"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href$=".gif"]:before, .typography p.small > strong > a[href$=".gif"]:before, .typography table > strong > a[href$=".gif"]:before, .c-form .message > strong > a[href$=".gif"]:before,
.c-videoEmbed__caption > em > a[href$=".gif"]:before,
.c-videoEmbed__caption > h1 > em > a[href$=".gif"]:before,
.c-videoEmbed__caption > h2 > em > a[href$=".gif"]:before,
.c-videoEmbed__caption > h3 > em > a[href$=".gif"]:before,
.c-videoEmbed__caption > h4 > em > a[href$=".gif"]:before,
.c-videoEmbed__caption > h5 > em > a[href$=".gif"]:before,
.c-videoEmbed__caption > p > em > a[href$=".gif"]:before,
.c-pollingTool__introtext > em > a[href$=".gif"]:before,
.c-mediathekCard__caption > em > a[href$=".gif"]:before,
.c-mediathekCard__caption > h1 > em > a[href$=".gif"]:before,
.c-mediathekCard__caption > h2 > em > a[href$=".gif"]:before,
.c-mediathekCard__caption > h3 > em > a[href$=".gif"]:before,
.c-mediathekCard__caption > h4 > em > a[href$=".gif"]:before,
.c-mediathekCard__caption > h5 > em > a[href$=".gif"]:before,
.c-mediathekCard__caption > p > em > a[href$=".gif"]:before,
.c-astlrSlider__caption > p > em > a[href$=".gif"]:before,
.c-astlrSummary__copy > em > a[href$=".gif"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href$=".gif"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href$=".gif"]:before,
.typography p.small > em > a[href$=".gif"]:before,
.typography table > em > a[href$=".gif"]:before,
.c-form .message > em > a[href$=".gif"]:before, .c-videoEmbed__caption > strong > a[href$=".GIF"]:before, .c-videoEmbed__caption > h1 > strong > a[href$=".GIF"]:before, .c-videoEmbed__caption > h2 > strong > a[href$=".GIF"]:before, .c-videoEmbed__caption > h3 > strong > a[href$=".GIF"]:before, .c-videoEmbed__caption > h4 > strong > a[href$=".GIF"]:before, .c-videoEmbed__caption > h5 > strong > a[href$=".GIF"]:before, .c-videoEmbed__caption > p > strong > a[href$=".GIF"]:before, .c-pollingTool__introtext > strong > a[href$=".GIF"]:before, .c-mediathekCard__caption > strong > a[href$=".GIF"]:before, .c-mediathekCard__caption > h1 > strong > a[href$=".GIF"]:before, .c-mediathekCard__caption > h2 > strong > a[href$=".GIF"]:before, .c-mediathekCard__caption > h3 > strong > a[href$=".GIF"]:before, .c-mediathekCard__caption > h4 > strong > a[href$=".GIF"]:before, .c-mediathekCard__caption > h5 > strong > a[href$=".GIF"]:before, .c-mediathekCard__caption > p > strong > a[href$=".GIF"]:before, .c-astlrSlider__caption > p > strong > a[href$=".GIF"]:before, .c-astlrSummary__copy > strong > a[href$=".GIF"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href$=".GIF"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href$=".GIF"]:before, .typography p.small > strong > a[href$=".GIF"]:before, .typography table > strong > a[href$=".GIF"]:before, .c-form .message > strong > a[href$=".GIF"]:before,
.c-videoEmbed__caption > em > a[href$=".GIF"]:before,
.c-videoEmbed__caption > h1 > em > a[href$=".GIF"]:before,
.c-videoEmbed__caption > h2 > em > a[href$=".GIF"]:before,
.c-videoEmbed__caption > h3 > em > a[href$=".GIF"]:before,
.c-videoEmbed__caption > h4 > em > a[href$=".GIF"]:before,
.c-videoEmbed__caption > h5 > em > a[href$=".GIF"]:before,
.c-videoEmbed__caption > p > em > a[href$=".GIF"]:before,
.c-pollingTool__introtext > em > a[href$=".GIF"]:before,
.c-mediathekCard__caption > em > a[href$=".GIF"]:before,
.c-mediathekCard__caption > h1 > em > a[href$=".GIF"]:before,
.c-mediathekCard__caption > h2 > em > a[href$=".GIF"]:before,
.c-mediathekCard__caption > h3 > em > a[href$=".GIF"]:before,
.c-mediathekCard__caption > h4 > em > a[href$=".GIF"]:before,
.c-mediathekCard__caption > h5 > em > a[href$=".GIF"]:before,
.c-mediathekCard__caption > p > em > a[href$=".GIF"]:before,
.c-astlrSlider__caption > p > em > a[href$=".GIF"]:before,
.c-astlrSummary__copy > em > a[href$=".GIF"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href$=".GIF"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href$=".GIF"]:before,
.typography p.small > em > a[href$=".GIF"]:before,
.typography table > em > a[href$=".GIF"]:before,
.c-form .message > em > a[href$=".GIF"]:before, .c-videoEmbed__caption > strong > a[href$=".jpg"]:before, .c-videoEmbed__caption > h1 > strong > a[href$=".jpg"]:before, .c-videoEmbed__caption > h2 > strong > a[href$=".jpg"]:before, .c-videoEmbed__caption > h3 > strong > a[href$=".jpg"]:before, .c-videoEmbed__caption > h4 > strong > a[href$=".jpg"]:before, .c-videoEmbed__caption > h5 > strong > a[href$=".jpg"]:before, .c-videoEmbed__caption > p > strong > a[href$=".jpg"]:before, .c-pollingTool__introtext > strong > a[href$=".jpg"]:before, .c-mediathekCard__caption > strong > a[href$=".jpg"]:before, .c-mediathekCard__caption > h1 > strong > a[href$=".jpg"]:before, .c-mediathekCard__caption > h2 > strong > a[href$=".jpg"]:before, .c-mediathekCard__caption > h3 > strong > a[href$=".jpg"]:before, .c-mediathekCard__caption > h4 > strong > a[href$=".jpg"]:before, .c-mediathekCard__caption > h5 > strong > a[href$=".jpg"]:before, .c-mediathekCard__caption > p > strong > a[href$=".jpg"]:before, .c-astlrSlider__caption > p > strong > a[href$=".jpg"]:before, .c-astlrSummary__copy > strong > a[href$=".jpg"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href$=".jpg"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href$=".jpg"]:before, .typography p.small > strong > a[href$=".jpg"]:before, .typography table > strong > a[href$=".jpg"]:before, .c-form .message > strong > a[href$=".jpg"]:before,
.c-videoEmbed__caption > em > a[href$=".jpg"]:before,
.c-videoEmbed__caption > h1 > em > a[href$=".jpg"]:before,
.c-videoEmbed__caption > h2 > em > a[href$=".jpg"]:before,
.c-videoEmbed__caption > h3 > em > a[href$=".jpg"]:before,
.c-videoEmbed__caption > h4 > em > a[href$=".jpg"]:before,
.c-videoEmbed__caption > h5 > em > a[href$=".jpg"]:before,
.c-videoEmbed__caption > p > em > a[href$=".jpg"]:before,
.c-pollingTool__introtext > em > a[href$=".jpg"]:before,
.c-mediathekCard__caption > em > a[href$=".jpg"]:before,
.c-mediathekCard__caption > h1 > em > a[href$=".jpg"]:before,
.c-mediathekCard__caption > h2 > em > a[href$=".jpg"]:before,
.c-mediathekCard__caption > h3 > em > a[href$=".jpg"]:before,
.c-mediathekCard__caption > h4 > em > a[href$=".jpg"]:before,
.c-mediathekCard__caption > h5 > em > a[href$=".jpg"]:before,
.c-mediathekCard__caption > p > em > a[href$=".jpg"]:before,
.c-astlrSlider__caption > p > em > a[href$=".jpg"]:before,
.c-astlrSummary__copy > em > a[href$=".jpg"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href$=".jpg"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href$=".jpg"]:before,
.typography p.small > em > a[href$=".jpg"]:before,
.typography table > em > a[href$=".jpg"]:before,
.c-form .message > em > a[href$=".jpg"]:before, .c-videoEmbed__caption > strong > a[href$=".JPG"]:before, .c-videoEmbed__caption > h1 > strong > a[href$=".JPG"]:before, .c-videoEmbed__caption > h2 > strong > a[href$=".JPG"]:before, .c-videoEmbed__caption > h3 > strong > a[href$=".JPG"]:before, .c-videoEmbed__caption > h4 > strong > a[href$=".JPG"]:before, .c-videoEmbed__caption > h5 > strong > a[href$=".JPG"]:before, .c-videoEmbed__caption > p > strong > a[href$=".JPG"]:before, .c-pollingTool__introtext > strong > a[href$=".JPG"]:before, .c-mediathekCard__caption > strong > a[href$=".JPG"]:before, .c-mediathekCard__caption > h1 > strong > a[href$=".JPG"]:before, .c-mediathekCard__caption > h2 > strong > a[href$=".JPG"]:before, .c-mediathekCard__caption > h3 > strong > a[href$=".JPG"]:before, .c-mediathekCard__caption > h4 > strong > a[href$=".JPG"]:before, .c-mediathekCard__caption > h5 > strong > a[href$=".JPG"]:before, .c-mediathekCard__caption > p > strong > a[href$=".JPG"]:before, .c-astlrSlider__caption > p > strong > a[href$=".JPG"]:before, .c-astlrSummary__copy > strong > a[href$=".JPG"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href$=".JPG"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href$=".JPG"]:before, .typography p.small > strong > a[href$=".JPG"]:before, .typography table > strong > a[href$=".JPG"]:before, .c-form .message > strong > a[href$=".JPG"]:before,
.c-videoEmbed__caption > em > a[href$=".JPG"]:before,
.c-videoEmbed__caption > h1 > em > a[href$=".JPG"]:before,
.c-videoEmbed__caption > h2 > em > a[href$=".JPG"]:before,
.c-videoEmbed__caption > h3 > em > a[href$=".JPG"]:before,
.c-videoEmbed__caption > h4 > em > a[href$=".JPG"]:before,
.c-videoEmbed__caption > h5 > em > a[href$=".JPG"]:before,
.c-videoEmbed__caption > p > em > a[href$=".JPG"]:before,
.c-pollingTool__introtext > em > a[href$=".JPG"]:before,
.c-mediathekCard__caption > em > a[href$=".JPG"]:before,
.c-mediathekCard__caption > h1 > em > a[href$=".JPG"]:before,
.c-mediathekCard__caption > h2 > em > a[href$=".JPG"]:before,
.c-mediathekCard__caption > h3 > em > a[href$=".JPG"]:before,
.c-mediathekCard__caption > h4 > em > a[href$=".JPG"]:before,
.c-mediathekCard__caption > h5 > em > a[href$=".JPG"]:before,
.c-mediathekCard__caption > p > em > a[href$=".JPG"]:before,
.c-astlrSlider__caption > p > em > a[href$=".JPG"]:before,
.c-astlrSummary__copy > em > a[href$=".JPG"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href$=".JPG"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href$=".JPG"]:before,
.typography p.small > em > a[href$=".JPG"]:before,
.typography table > em > a[href$=".JPG"]:before,
.c-form .message > em > a[href$=".JPG"]:before, .c-videoEmbed__caption > strong > a[href$=".pdf"]:before, .c-videoEmbed__caption > h1 > strong > a[href$=".pdf"]:before, .c-videoEmbed__caption > h2 > strong > a[href$=".pdf"]:before, .c-videoEmbed__caption > h3 > strong > a[href$=".pdf"]:before, .c-videoEmbed__caption > h4 > strong > a[href$=".pdf"]:before, .c-videoEmbed__caption > h5 > strong > a[href$=".pdf"]:before, .c-videoEmbed__caption > p > strong > a[href$=".pdf"]:before, .c-pollingTool__introtext > strong > a[href$=".pdf"]:before, .c-mediathekCard__caption > strong > a[href$=".pdf"]:before, .c-mediathekCard__caption > h1 > strong > a[href$=".pdf"]:before, .c-mediathekCard__caption > h2 > strong > a[href$=".pdf"]:before, .c-mediathekCard__caption > h3 > strong > a[href$=".pdf"]:before, .c-mediathekCard__caption > h4 > strong > a[href$=".pdf"]:before, .c-mediathekCard__caption > h5 > strong > a[href$=".pdf"]:before, .c-mediathekCard__caption > p > strong > a[href$=".pdf"]:before, .c-astlrSlider__caption > p > strong > a[href$=".pdf"]:before, .c-astlrSummary__copy > strong > a[href$=".pdf"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href$=".pdf"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href$=".pdf"]:before, .typography p.small > strong > a[href$=".pdf"]:before, .typography table > strong > a[href$=".pdf"]:before, .c-form .message > strong > a[href$=".pdf"]:before,
.c-videoEmbed__caption > em > a[href$=".pdf"]:before,
.c-videoEmbed__caption > h1 > em > a[href$=".pdf"]:before,
.c-videoEmbed__caption > h2 > em > a[href$=".pdf"]:before,
.c-videoEmbed__caption > h3 > em > a[href$=".pdf"]:before,
.c-videoEmbed__caption > h4 > em > a[href$=".pdf"]:before,
.c-videoEmbed__caption > h5 > em > a[href$=".pdf"]:before,
.c-videoEmbed__caption > p > em > a[href$=".pdf"]:before,
.c-pollingTool__introtext > em > a[href$=".pdf"]:before,
.c-mediathekCard__caption > em > a[href$=".pdf"]:before,
.c-mediathekCard__caption > h1 > em > a[href$=".pdf"]:before,
.c-mediathekCard__caption > h2 > em > a[href$=".pdf"]:before,
.c-mediathekCard__caption > h3 > em > a[href$=".pdf"]:before,
.c-mediathekCard__caption > h4 > em > a[href$=".pdf"]:before,
.c-mediathekCard__caption > h5 > em > a[href$=".pdf"]:before,
.c-mediathekCard__caption > p > em > a[href$=".pdf"]:before,
.c-astlrSlider__caption > p > em > a[href$=".pdf"]:before,
.c-astlrSummary__copy > em > a[href$=".pdf"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href$=".pdf"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href$=".pdf"]:before,
.typography p.small > em > a[href$=".pdf"]:before,
.typography table > em > a[href$=".pdf"]:before,
.c-form .message > em > a[href$=".pdf"]:before, .c-footer__typo > a[href$=".png"]:before, .c-footer__address > p > a[href$=".png"]:before, .c-footer__typo > a[href$=".PNG"]:before, .c-footer__address > p > a[href$=".PNG"]:before, .c-footer__typo > a[href$=".gif"]:before, .c-footer__address > p > a[href$=".gif"]:before, .c-footer__typo > a[href$=".GIF"]:before, .c-footer__address > p > a[href$=".GIF"]:before, .c-footer__typo > a[href$=".jpg"]:before, .c-footer__address > p > a[href$=".jpg"]:before, .c-footer__typo > a[href$=".JPG"]:before, .c-footer__address > p > a[href$=".JPG"]:before, .c-footer__typo > a[href$=".pdf"]:before, .c-footer__address > p > a[href$=".pdf"]:before, .typography ul > strong > a[href$=".png"]:before,
.typography ul > em > a[href$=".png"]:before, .typography ul > strong > a[href$=".PNG"]:before,
.typography ul > em > a[href$=".PNG"]:before, .typography ul > strong > a[href$=".gif"]:before,
.typography ul > em > a[href$=".gif"]:before, .typography ul > strong > a[href$=".GIF"]:before,
.typography ul > em > a[href$=".GIF"]:before, .typography ul > strong > a[href$=".jpg"]:before,
.typography ul > em > a[href$=".jpg"]:before, .typography ul > strong > a[href$=".JPG"]:before,
.typography ul > em > a[href$=".JPG"]:before, .typography ul > strong > a[href$=".pdf"]:before,
.typography ul > em > a[href$=".pdf"]:before, .typography ul > a[href$=".png"]:before, .typography ul > a[href$=".PNG"]:before, .typography ul > a[href$=".gif"]:before, .typography ul > a[href$=".GIF"]:before, .typography ul > a[href$=".jpg"]:before, .typography ul > a[href$=".JPG"]:before, .typography ul > a[href$=".pdf"]:before {
  content: "\e002";
}
.c-elementalPublikationen__copystage > p > strong > a[href^=mailto]:before, .dropzone-holder.uploadable > p > strong > a[href^=mailto]:before, .c-schedule__copy > strong > a[href^=mailto]:before, .c-lightbox__subline > strong > a[href^=mailto]:before, .tobii__counter > strong > a[href^=mailto]:before, .tobii-image figure > figcaption > strong > a[href^=mailto]:before, .c-form .btn-toolbar > p > strong > a[href^=mailto]:before, .c-books__autor > strong > a[href^=mailto]:before, .c-books__copy > strong > a[href^=mailto]:before, .c-books__verlag > strong > a[href^=mailto]:before, .c-books__jahr > strong > a[href^=mailto]:before, .c-books__isbn > strong > a[href^=mailto]:before, .c-books__preis > strong > a[href^=mailto]:before, .c-books__link > strong > a[href^=mailto]:before, .c-astlrVideoDates__copy > strong > a[href^=mailto]:before, .c-astlrFileItems__link > strong > a[href^=mailto]:before, .c-astlrCopy__fieldname > strong > a[href^=mailto]:before, .c-astlrCopy__field > strong > a[href^=mailto]:before, .c-astlrCopy > p > strong > a[href^=mailto]:before, .c-astlrCopy__accordionHeader > strong > a[href^=mailto]:before, .c-astlrCopy__accordionField > strong > a[href^=mailto]:before, .c-astlrStage__note > p > strong > a[href^=mailto]:before, .c-astlrStage__uploader > p > strong > a[href^=mailto]:before, .c-anncmts__body > strong > a[href^=mailto]:before, .typography p > strong > a[href^=mailto]:before, .c-form label > strong > a[href^=mailto]:before, .c-form input.text > strong > a[href^=mailto]:before, .c-form input.textarea > strong > a[href^=mailto]:before,
.c-form textarea.text > strong > a[href^=mailto]:before,
.c-form textarea.textarea > strong > a[href^=mailto]:before, .c-form input[type=text] > strong > a[href^=mailto]:before,
.c-form input[type=password] > strong > a[href^=mailto]:before,
.c-form input[type=email] > strong > a[href^=mailto]:before,
.c-form input[type=url] > strong > a[href^=mailto]:before,
.c-form input[type=date] > strong > a[href^=mailto]:before,
.c-form input[type=month] > strong > a[href^=mailto]:before,
.c-form input[type=time] > strong > a[href^=mailto]:before,
.c-form input[type=datetime] > strong > a[href^=mailto]:before,
.c-form input[type=datetime-local] > strong > a[href^=mailto]:before,
.c-form input[type=week] > strong > a[href^=mailto]:before,
.c-form input[type=number] > strong > a[href^=mailto]:before,
.c-form input[type=search] > strong > a[href^=mailto]:before,
.c-form input[type=tel] > strong > a[href^=mailto]:before,
.c-form input[type=color] > strong > a[href^=mailto]:before,
.c-form textarea > strong > a[href^=mailto]:before, .c-form__checkbox label > strong > a[href^=mailto]:before, .c-form__dropdown > strong > a[href^=mailto]:before, .c-form__dropdown select > option > strong > a[href^=mailto]:before, .c-form__dropdown > label > strong > a[href^=mailto]:before,
.c-elementalPublikationen__copystage > p > em > a[href^=mailto]:before,
.dropzone-holder.uploadable > p > em > a[href^=mailto]:before,
.c-schedule__copy > em > a[href^=mailto]:before,
.c-lightbox__subline > em > a[href^=mailto]:before,
.tobii__counter > em > a[href^=mailto]:before,
.tobii-image figure > figcaption > em > a[href^=mailto]:before,
.c-form .btn-toolbar > p > em > a[href^=mailto]:before,
.c-books__autor > em > a[href^=mailto]:before,
.c-books__copy > em > a[href^=mailto]:before,
.c-books__verlag > em > a[href^=mailto]:before,
.c-books__jahr > em > a[href^=mailto]:before,
.c-books__isbn > em > a[href^=mailto]:before,
.c-books__preis > em > a[href^=mailto]:before,
.c-books__link > em > a[href^=mailto]:before,
.c-astlrVideoDates__copy > em > a[href^=mailto]:before,
.c-astlrFileItems__link > em > a[href^=mailto]:before,
.c-astlrCopy__fieldname > em > a[href^=mailto]:before,
.c-astlrCopy__field > em > a[href^=mailto]:before,
.c-astlrCopy > p > em > a[href^=mailto]:before,
.c-astlrCopy__accordionHeader > em > a[href^=mailto]:before,
.c-astlrCopy__accordionField > em > a[href^=mailto]:before,
.c-astlrStage__note > p > em > a[href^=mailto]:before,
.c-astlrStage__uploader > p > em > a[href^=mailto]:before,
.c-anncmts__body > em > a[href^=mailto]:before,
.typography p > em > a[href^=mailto]:before,
.c-form label > em > a[href^=mailto]:before,
.c-form input.text > em > a[href^=mailto]:before,
.c-form input.textarea > em > a[href^=mailto]:before,
.c-form textarea.text > em > a[href^=mailto]:before,
.c-form textarea.textarea > em > a[href^=mailto]:before,
.c-form input[type=text] > em > a[href^=mailto]:before,
.c-form input[type=password] > em > a[href^=mailto]:before,
.c-form input[type=email] > em > a[href^=mailto]:before,
.c-form input[type=url] > em > a[href^=mailto]:before,
.c-form input[type=date] > em > a[href^=mailto]:before,
.c-form input[type=month] > em > a[href^=mailto]:before,
.c-form input[type=time] > em > a[href^=mailto]:before,
.c-form input[type=datetime] > em > a[href^=mailto]:before,
.c-form input[type=datetime-local] > em > a[href^=mailto]:before,
.c-form input[type=week] > em > a[href^=mailto]:before,
.c-form input[type=number] > em > a[href^=mailto]:before,
.c-form input[type=search] > em > a[href^=mailto]:before,
.c-form input[type=tel] > em > a[href^=mailto]:before,
.c-form input[type=color] > em > a[href^=mailto]:before,
.c-form textarea > em > a[href^=mailto]:before,
.c-form__checkbox label > em > a[href^=mailto]:before,
.c-form__dropdown > em > a[href^=mailto]:before,
.c-form__dropdown select > option > em > a[href^=mailto]:before,
.c-form__dropdown > label > em > a[href^=mailto]:before, .c-elementalPublikationen__copystage > p > a[href^=mailto]:before, .dropzone-holder.uploadable > p > a[href^=mailto]:before, .c-schedule__copy > a[href^=mailto]:before, .c-lightbox__subline > a[href^=mailto]:before, .tobii__counter > a[href^=mailto]:before, .tobii-image figure > figcaption > a[href^=mailto]:before, .c-form .btn-toolbar > p > a[href^=mailto]:before, .c-books__autor > a[href^=mailto]:before, .c-books__copy > a[href^=mailto]:before, .c-books__verlag > a[href^=mailto]:before, .c-books__jahr > a[href^=mailto]:before, .c-books__isbn > a[href^=mailto]:before, .c-books__preis > a[href^=mailto]:before, .c-books__link > a[href^=mailto]:before, .c-astlrVideoDates__copy > a[href^=mailto]:before, .c-astlrFileItems__link > a[href^=mailto]:before, .c-astlrCopy__fieldname > a[href^=mailto]:before, .c-astlrCopy__field > a[href^=mailto]:before, .c-astlrCopy > p > a[href^=mailto]:before, .c-astlrCopy__accordionHeader > a[href^=mailto]:before, .c-astlrCopy__accordionField > a[href^=mailto]:before, .c-astlrStage__note > p > a[href^=mailto]:before, .c-astlrStage__uploader > p > a[href^=mailto]:before, .c-anncmts__body > a[href^=mailto]:before, .typography p > a[href^=mailto]:before, .c-form label > a[href^=mailto]:before, .c-form input.text > a[href^=mailto]:before, .c-form input.textarea > a[href^=mailto]:before,
.c-form textarea.text > a[href^=mailto]:before,
.c-form textarea.textarea > a[href^=mailto]:before, .c-form input[type=text] > a[href^=mailto]:before,
.c-form input[type=password] > a[href^=mailto]:before,
.c-form input[type=email] > a[href^=mailto]:before,
.c-form input[type=url] > a[href^=mailto]:before,
.c-form input[type=date] > a[href^=mailto]:before,
.c-form input[type=month] > a[href^=mailto]:before,
.c-form input[type=time] > a[href^=mailto]:before,
.c-form input[type=datetime] > a[href^=mailto]:before,
.c-form input[type=datetime-local] > a[href^=mailto]:before,
.c-form input[type=week] > a[href^=mailto]:before,
.c-form input[type=number] > a[href^=mailto]:before,
.c-form input[type=search] > a[href^=mailto]:before,
.c-form input[type=tel] > a[href^=mailto]:before,
.c-form input[type=color] > a[href^=mailto]:before,
.c-form textarea > a[href^=mailto]:before, .c-form__checkbox label > a[href^=mailto]:before, .c-form__dropdown > a[href^=mailto]:before, .c-form__dropdown select > option > a[href^=mailto]:before, .c-form__dropdown > label > a[href^=mailto]:before, .c-videoEmbed__caption > strong > a[href^=mailto]:before, .c-videoEmbed__caption > h1 > strong > a[href^=mailto]:before, .c-videoEmbed__caption > h2 > strong > a[href^=mailto]:before, .c-videoEmbed__caption > h3 > strong > a[href^=mailto]:before, .c-videoEmbed__caption > h4 > strong > a[href^=mailto]:before, .c-videoEmbed__caption > h5 > strong > a[href^=mailto]:before, .c-videoEmbed__caption > p > strong > a[href^=mailto]:before, .c-pollingTool__introtext > strong > a[href^=mailto]:before, .c-mediathekCard__caption > strong > a[href^=mailto]:before, .c-mediathekCard__caption > h1 > strong > a[href^=mailto]:before, .c-mediathekCard__caption > h2 > strong > a[href^=mailto]:before, .c-mediathekCard__caption > h3 > strong > a[href^=mailto]:before, .c-mediathekCard__caption > h4 > strong > a[href^=mailto]:before, .c-mediathekCard__caption > h5 > strong > a[href^=mailto]:before, .c-mediathekCard__caption > p > strong > a[href^=mailto]:before, .c-astlrSlider__caption > p > strong > a[href^=mailto]:before, .c-astlrSummary__copy > strong > a[href^=mailto]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href^=mailto]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href^=mailto]:before, .typography p.small > strong > a[href^=mailto]:before, .typography table > strong > a[href^=mailto]:before, .c-form .message > strong > a[href^=mailto]:before,
.c-videoEmbed__caption > em > a[href^=mailto]:before,
.c-videoEmbed__caption > h1 > em > a[href^=mailto]:before,
.c-videoEmbed__caption > h2 > em > a[href^=mailto]:before,
.c-videoEmbed__caption > h3 > em > a[href^=mailto]:before,
.c-videoEmbed__caption > h4 > em > a[href^=mailto]:before,
.c-videoEmbed__caption > h5 > em > a[href^=mailto]:before,
.c-videoEmbed__caption > p > em > a[href^=mailto]:before,
.c-pollingTool__introtext > em > a[href^=mailto]:before,
.c-mediathekCard__caption > em > a[href^=mailto]:before,
.c-mediathekCard__caption > h1 > em > a[href^=mailto]:before,
.c-mediathekCard__caption > h2 > em > a[href^=mailto]:before,
.c-mediathekCard__caption > h3 > em > a[href^=mailto]:before,
.c-mediathekCard__caption > h4 > em > a[href^=mailto]:before,
.c-mediathekCard__caption > h5 > em > a[href^=mailto]:before,
.c-mediathekCard__caption > p > em > a[href^=mailto]:before,
.c-astlrSlider__caption > p > em > a[href^=mailto]:before,
.c-astlrSummary__copy > em > a[href^=mailto]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href^=mailto]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href^=mailto]:before,
.typography p.small > em > a[href^=mailto]:before,
.typography table > em > a[href^=mailto]:before,
.c-form .message > em > a[href^=mailto]:before, .c-footer__typo > a[href^=mailto]:before, .c-footer__address > p > a[href^=mailto]:before, .typography ul > strong > a[href^=mailto]:before,
.typography ul > em > a[href^=mailto]:before, .typography ul > a[href^=mailto]:before {
  content: "\e003";
}
.c-astlrVideoDates__accordionHeader:after, .c-astlrCopy__accordionHeader:after {
  content: "\e004";
}
.c-astlrCopy__accordionHeader.-state--active:after, .c-astlrVideoDates__accordionHeader.-state--active:after {
  content: "\e005";
}
.c-naviMobile__trigger.-state--active:before {
  content: "\e006";
}
.c-testimonial:before {
  content: "\e0a0";
}
.c-astlrVideoDates__orgaName:before {
  content: "\e00c";
}
.c-elementalPublikationen__copystage > p > strong > a[href^="https://"]:before, .dropzone-holder.uploadable > p > strong > a[href^="https://"]:before, .c-schedule__copy > strong > a[href^="https://"]:before, .c-lightbox__subline > strong > a[href^="https://"]:before, .tobii__counter > strong > a[href^="https://"]:before, .tobii-image figure > figcaption > strong > a[href^="https://"]:before, .c-form .btn-toolbar > p > strong > a[href^="https://"]:before, .c-books__autor > strong > a[href^="https://"]:before, .c-books__copy > strong > a[href^="https://"]:before, .c-books__verlag > strong > a[href^="https://"]:before, .c-books__jahr > strong > a[href^="https://"]:before, .c-books__isbn > strong > a[href^="https://"]:before, .c-books__preis > strong > a[href^="https://"]:before, .c-books__link > strong > a[href^="https://"]:before, .c-astlrVideoDates__copy > strong > a[href^="https://"]:before, .c-astlrFileItems__link > strong > a[href^="https://"]:before, .c-astlrCopy__fieldname > strong > a[href^="https://"]:before, .c-astlrCopy__field > strong > a[href^="https://"]:before, .c-astlrCopy > p > strong > a[href^="https://"]:before, .c-astlrCopy__accordionHeader > strong > a[href^="https://"]:before, .c-astlrCopy__accordionField > strong > a[href^="https://"]:before, .c-astlrStage__note > p > strong > a[href^="https://"]:before, .c-astlrStage__uploader > p > strong > a[href^="https://"]:before, .c-anncmts__body > strong > a[href^="https://"]:before, .typography p > strong > a[href^="https://"]:before, .c-form label > strong > a[href^="https://"]:before, .c-form input.text > strong > a[href^="https://"]:before, .c-form input.textarea > strong > a[href^="https://"]:before,
.c-form textarea.text > strong > a[href^="https://"]:before,
.c-form textarea.textarea > strong > a[href^="https://"]:before, .c-form input[type=text] > strong > a[href^="https://"]:before,
.c-form input[type=password] > strong > a[href^="https://"]:before,
.c-form input[type=email] > strong > a[href^="https://"]:before,
.c-form input[type=url] > strong > a[href^="https://"]:before,
.c-form input[type=date] > strong > a[href^="https://"]:before,
.c-form input[type=month] > strong > a[href^="https://"]:before,
.c-form input[type=time] > strong > a[href^="https://"]:before,
.c-form input[type=datetime] > strong > a[href^="https://"]:before,
.c-form input[type=datetime-local] > strong > a[href^="https://"]:before,
.c-form input[type=week] > strong > a[href^="https://"]:before,
.c-form input[type=number] > strong > a[href^="https://"]:before,
.c-form input[type=search] > strong > a[href^="https://"]:before,
.c-form input[type=tel] > strong > a[href^="https://"]:before,
.c-form input[type=color] > strong > a[href^="https://"]:before,
.c-form textarea > strong > a[href^="https://"]:before, .c-form__checkbox label > strong > a[href^="https://"]:before, .c-form__dropdown > strong > a[href^="https://"]:before, .c-form__dropdown select > option > strong > a[href^="https://"]:before, .c-form__dropdown > label > strong > a[href^="https://"]:before,
.c-elementalPublikationen__copystage > p > em > a[href^="https://"]:before,
.dropzone-holder.uploadable > p > em > a[href^="https://"]:before,
.c-schedule__copy > em > a[href^="https://"]:before,
.c-lightbox__subline > em > a[href^="https://"]:before,
.tobii__counter > em > a[href^="https://"]:before,
.tobii-image figure > figcaption > em > a[href^="https://"]:before,
.c-form .btn-toolbar > p > em > a[href^="https://"]:before,
.c-books__autor > em > a[href^="https://"]:before,
.c-books__copy > em > a[href^="https://"]:before,
.c-books__verlag > em > a[href^="https://"]:before,
.c-books__jahr > em > a[href^="https://"]:before,
.c-books__isbn > em > a[href^="https://"]:before,
.c-books__preis > em > a[href^="https://"]:before,
.c-books__link > em > a[href^="https://"]:before,
.c-astlrVideoDates__copy > em > a[href^="https://"]:before,
.c-astlrFileItems__link > em > a[href^="https://"]:before,
.c-astlrCopy__fieldname > em > a[href^="https://"]:before,
.c-astlrCopy__field > em > a[href^="https://"]:before,
.c-astlrCopy > p > em > a[href^="https://"]:before,
.c-astlrCopy__accordionHeader > em > a[href^="https://"]:before,
.c-astlrCopy__accordionField > em > a[href^="https://"]:before,
.c-astlrStage__note > p > em > a[href^="https://"]:before,
.c-astlrStage__uploader > p > em > a[href^="https://"]:before,
.c-anncmts__body > em > a[href^="https://"]:before,
.typography p > em > a[href^="https://"]:before,
.c-form label > em > a[href^="https://"]:before,
.c-form input.text > em > a[href^="https://"]:before,
.c-form input.textarea > em > a[href^="https://"]:before,
.c-form textarea.text > em > a[href^="https://"]:before,
.c-form textarea.textarea > em > a[href^="https://"]:before,
.c-form input[type=text] > em > a[href^="https://"]:before,
.c-form input[type=password] > em > a[href^="https://"]:before,
.c-form input[type=email] > em > a[href^="https://"]:before,
.c-form input[type=url] > em > a[href^="https://"]:before,
.c-form input[type=date] > em > a[href^="https://"]:before,
.c-form input[type=month] > em > a[href^="https://"]:before,
.c-form input[type=time] > em > a[href^="https://"]:before,
.c-form input[type=datetime] > em > a[href^="https://"]:before,
.c-form input[type=datetime-local] > em > a[href^="https://"]:before,
.c-form input[type=week] > em > a[href^="https://"]:before,
.c-form input[type=number] > em > a[href^="https://"]:before,
.c-form input[type=search] > em > a[href^="https://"]:before,
.c-form input[type=tel] > em > a[href^="https://"]:before,
.c-form input[type=color] > em > a[href^="https://"]:before,
.c-form textarea > em > a[href^="https://"]:before,
.c-form__checkbox label > em > a[href^="https://"]:before,
.c-form__dropdown > em > a[href^="https://"]:before,
.c-form__dropdown select > option > em > a[href^="https://"]:before,
.c-form__dropdown > label > em > a[href^="https://"]:before, .c-elementalPublikationen__copystage > p > strong > a[href^="http://"]:before, .dropzone-holder.uploadable > p > strong > a[href^="http://"]:before, .c-schedule__copy > strong > a[href^="http://"]:before, .c-lightbox__subline > strong > a[href^="http://"]:before, .tobii__counter > strong > a[href^="http://"]:before, .tobii-image figure > figcaption > strong > a[href^="http://"]:before, .c-form .btn-toolbar > p > strong > a[href^="http://"]:before, .c-books__autor > strong > a[href^="http://"]:before, .c-books__copy > strong > a[href^="http://"]:before, .c-books__verlag > strong > a[href^="http://"]:before, .c-books__jahr > strong > a[href^="http://"]:before, .c-books__isbn > strong > a[href^="http://"]:before, .c-books__preis > strong > a[href^="http://"]:before, .c-books__link > strong > a[href^="http://"]:before, .c-astlrVideoDates__copy > strong > a[href^="http://"]:before, .c-astlrFileItems__link > strong > a[href^="http://"]:before, .c-astlrCopy__fieldname > strong > a[href^="http://"]:before, .c-astlrCopy__field > strong > a[href^="http://"]:before, .c-astlrCopy > p > strong > a[href^="http://"]:before, .c-astlrCopy__accordionHeader > strong > a[href^="http://"]:before, .c-astlrCopy__accordionField > strong > a[href^="http://"]:before, .c-astlrStage__note > p > strong > a[href^="http://"]:before, .c-astlrStage__uploader > p > strong > a[href^="http://"]:before, .c-anncmts__body > strong > a[href^="http://"]:before, .typography p > strong > a[href^="http://"]:before, .c-form label > strong > a[href^="http://"]:before, .c-form input.text > strong > a[href^="http://"]:before, .c-form input.textarea > strong > a[href^="http://"]:before,
.c-form textarea.text > strong > a[href^="http://"]:before,
.c-form textarea.textarea > strong > a[href^="http://"]:before, .c-form input[type=text] > strong > a[href^="http://"]:before,
.c-form input[type=password] > strong > a[href^="http://"]:before,
.c-form input[type=email] > strong > a[href^="http://"]:before,
.c-form input[type=url] > strong > a[href^="http://"]:before,
.c-form input[type=date] > strong > a[href^="http://"]:before,
.c-form input[type=month] > strong > a[href^="http://"]:before,
.c-form input[type=time] > strong > a[href^="http://"]:before,
.c-form input[type=datetime] > strong > a[href^="http://"]:before,
.c-form input[type=datetime-local] > strong > a[href^="http://"]:before,
.c-form input[type=week] > strong > a[href^="http://"]:before,
.c-form input[type=number] > strong > a[href^="http://"]:before,
.c-form input[type=search] > strong > a[href^="http://"]:before,
.c-form input[type=tel] > strong > a[href^="http://"]:before,
.c-form input[type=color] > strong > a[href^="http://"]:before,
.c-form textarea > strong > a[href^="http://"]:before, .c-form__checkbox label > strong > a[href^="http://"]:before, .c-form__dropdown > strong > a[href^="http://"]:before, .c-form__dropdown select > option > strong > a[href^="http://"]:before, .c-form__dropdown > label > strong > a[href^="http://"]:before,
.c-elementalPublikationen__copystage > p > em > a[href^="http://"]:before,
.dropzone-holder.uploadable > p > em > a[href^="http://"]:before,
.c-schedule__copy > em > a[href^="http://"]:before,
.c-lightbox__subline > em > a[href^="http://"]:before,
.tobii__counter > em > a[href^="http://"]:before,
.tobii-image figure > figcaption > em > a[href^="http://"]:before,
.c-form .btn-toolbar > p > em > a[href^="http://"]:before,
.c-books__autor > em > a[href^="http://"]:before,
.c-books__copy > em > a[href^="http://"]:before,
.c-books__verlag > em > a[href^="http://"]:before,
.c-books__jahr > em > a[href^="http://"]:before,
.c-books__isbn > em > a[href^="http://"]:before,
.c-books__preis > em > a[href^="http://"]:before,
.c-books__link > em > a[href^="http://"]:before,
.c-astlrVideoDates__copy > em > a[href^="http://"]:before,
.c-astlrFileItems__link > em > a[href^="http://"]:before,
.c-astlrCopy__fieldname > em > a[href^="http://"]:before,
.c-astlrCopy__field > em > a[href^="http://"]:before,
.c-astlrCopy > p > em > a[href^="http://"]:before,
.c-astlrCopy__accordionHeader > em > a[href^="http://"]:before,
.c-astlrCopy__accordionField > em > a[href^="http://"]:before,
.c-astlrStage__note > p > em > a[href^="http://"]:before,
.c-astlrStage__uploader > p > em > a[href^="http://"]:before,
.c-anncmts__body > em > a[href^="http://"]:before,
.typography p > em > a[href^="http://"]:before,
.c-form label > em > a[href^="http://"]:before,
.c-form input.text > em > a[href^="http://"]:before,
.c-form input.textarea > em > a[href^="http://"]:before,
.c-form textarea.text > em > a[href^="http://"]:before,
.c-form textarea.textarea > em > a[href^="http://"]:before,
.c-form input[type=text] > em > a[href^="http://"]:before,
.c-form input[type=password] > em > a[href^="http://"]:before,
.c-form input[type=email] > em > a[href^="http://"]:before,
.c-form input[type=url] > em > a[href^="http://"]:before,
.c-form input[type=date] > em > a[href^="http://"]:before,
.c-form input[type=month] > em > a[href^="http://"]:before,
.c-form input[type=time] > em > a[href^="http://"]:before,
.c-form input[type=datetime] > em > a[href^="http://"]:before,
.c-form input[type=datetime-local] > em > a[href^="http://"]:before,
.c-form input[type=week] > em > a[href^="http://"]:before,
.c-form input[type=number] > em > a[href^="http://"]:before,
.c-form input[type=search] > em > a[href^="http://"]:before,
.c-form input[type=tel] > em > a[href^="http://"]:before,
.c-form input[type=color] > em > a[href^="http://"]:before,
.c-form textarea > em > a[href^="http://"]:before,
.c-form__checkbox label > em > a[href^="http://"]:before,
.c-form__dropdown > em > a[href^="http://"]:before,
.c-form__dropdown select > option > em > a[href^="http://"]:before,
.c-form__dropdown > label > em > a[href^="http://"]:before, .c-elementalPublikationen__copystage > p > a[href^="https://"]:before, .dropzone-holder.uploadable > p > a[href^="https://"]:before, .c-schedule__copy > a[href^="https://"]:before, .c-lightbox__subline > a[href^="https://"]:before, .tobii__counter > a[href^="https://"]:before, .tobii-image figure > figcaption > a[href^="https://"]:before, .c-form .btn-toolbar > p > a[href^="https://"]:before, .c-books__autor > a[href^="https://"]:before, .c-books__copy > a[href^="https://"]:before, .c-books__verlag > a[href^="https://"]:before, .c-books__jahr > a[href^="https://"]:before, .c-books__isbn > a[href^="https://"]:before, .c-books__preis > a[href^="https://"]:before, .c-books__link > a[href^="https://"]:before, .c-astlrVideoDates__copy > a[href^="https://"]:before, .c-astlrFileItems__link > a[href^="https://"]:before, .c-astlrCopy__fieldname > a[href^="https://"]:before, .c-astlrCopy__field > a[href^="https://"]:before, .c-astlrCopy > p > a[href^="https://"]:before, .c-astlrCopy__accordionHeader > a[href^="https://"]:before, .c-astlrCopy__accordionField > a[href^="https://"]:before, .c-astlrStage__note > p > a[href^="https://"]:before, .c-astlrStage__uploader > p > a[href^="https://"]:before, .c-anncmts__body > a[href^="https://"]:before, .typography p > a[href^="https://"]:before, .c-form label > a[href^="https://"]:before, .c-form input.text > a[href^="https://"]:before, .c-form input.textarea > a[href^="https://"]:before,
.c-form textarea.text > a[href^="https://"]:before,
.c-form textarea.textarea > a[href^="https://"]:before, .c-form input[type=text] > a[href^="https://"]:before,
.c-form input[type=password] > a[href^="https://"]:before,
.c-form input[type=email] > a[href^="https://"]:before,
.c-form input[type=url] > a[href^="https://"]:before,
.c-form input[type=date] > a[href^="https://"]:before,
.c-form input[type=month] > a[href^="https://"]:before,
.c-form input[type=time] > a[href^="https://"]:before,
.c-form input[type=datetime] > a[href^="https://"]:before,
.c-form input[type=datetime-local] > a[href^="https://"]:before,
.c-form input[type=week] > a[href^="https://"]:before,
.c-form input[type=number] > a[href^="https://"]:before,
.c-form input[type=search] > a[href^="https://"]:before,
.c-form input[type=tel] > a[href^="https://"]:before,
.c-form input[type=color] > a[href^="https://"]:before,
.c-form textarea > a[href^="https://"]:before, .c-form__checkbox label > a[href^="https://"]:before, .c-form__dropdown > a[href^="https://"]:before, .c-form__dropdown select > option > a[href^="https://"]:before, .c-form__dropdown > label > a[href^="https://"]:before, .c-elementalPublikationen__copystage > p > a[href^="http://"]:before, .dropzone-holder.uploadable > p > a[href^="http://"]:before, .c-schedule__copy > a[href^="http://"]:before, .c-lightbox__subline > a[href^="http://"]:before, .tobii__counter > a[href^="http://"]:before, .tobii-image figure > figcaption > a[href^="http://"]:before, .c-form .btn-toolbar > p > a[href^="http://"]:before, .c-books__autor > a[href^="http://"]:before, .c-books__copy > a[href^="http://"]:before, .c-books__verlag > a[href^="http://"]:before, .c-books__jahr > a[href^="http://"]:before, .c-books__isbn > a[href^="http://"]:before, .c-books__preis > a[href^="http://"]:before, .c-books__link > a[href^="http://"]:before, .c-astlrVideoDates__copy > a[href^="http://"]:before, .c-astlrFileItems__link > a[href^="http://"]:before, .c-astlrCopy__fieldname > a[href^="http://"]:before, .c-astlrCopy__field > a[href^="http://"]:before, .c-astlrCopy > p > a[href^="http://"]:before, .c-astlrCopy__accordionHeader > a[href^="http://"]:before, .c-astlrCopy__accordionField > a[href^="http://"]:before, .c-astlrStage__note > p > a[href^="http://"]:before, .c-astlrStage__uploader > p > a[href^="http://"]:before, .c-anncmts__body > a[href^="http://"]:before, .typography p > a[href^="http://"]:before, .c-form label > a[href^="http://"]:before, .c-form input.text > a[href^="http://"]:before, .c-form input.textarea > a[href^="http://"]:before,
.c-form textarea.text > a[href^="http://"]:before,
.c-form textarea.textarea > a[href^="http://"]:before, .c-form input[type=text] > a[href^="http://"]:before,
.c-form input[type=password] > a[href^="http://"]:before,
.c-form input[type=email] > a[href^="http://"]:before,
.c-form input[type=url] > a[href^="http://"]:before,
.c-form input[type=date] > a[href^="http://"]:before,
.c-form input[type=month] > a[href^="http://"]:before,
.c-form input[type=time] > a[href^="http://"]:before,
.c-form input[type=datetime] > a[href^="http://"]:before,
.c-form input[type=datetime-local] > a[href^="http://"]:before,
.c-form input[type=week] > a[href^="http://"]:before,
.c-form input[type=number] > a[href^="http://"]:before,
.c-form input[type=search] > a[href^="http://"]:before,
.c-form input[type=tel] > a[href^="http://"]:before,
.c-form input[type=color] > a[href^="http://"]:before,
.c-form textarea > a[href^="http://"]:before, .c-form__checkbox label > a[href^="http://"]:before, .c-form__dropdown > a[href^="http://"]:before, .c-form__dropdown select > option > a[href^="http://"]:before, .c-form__dropdown > label > a[href^="http://"]:before, .c-videoEmbed__caption > strong > a[href^="https://"]:before, .c-videoEmbed__caption > h1 > strong > a[href^="https://"]:before, .c-videoEmbed__caption > h2 > strong > a[href^="https://"]:before, .c-videoEmbed__caption > h3 > strong > a[href^="https://"]:before, .c-videoEmbed__caption > h4 > strong > a[href^="https://"]:before, .c-videoEmbed__caption > h5 > strong > a[href^="https://"]:before, .c-videoEmbed__caption > p > strong > a[href^="https://"]:before, .c-pollingTool__introtext > strong > a[href^="https://"]:before, .c-mediathekCard__caption > strong > a[href^="https://"]:before, .c-mediathekCard__caption > h1 > strong > a[href^="https://"]:before, .c-mediathekCard__caption > h2 > strong > a[href^="https://"]:before, .c-mediathekCard__caption > h3 > strong > a[href^="https://"]:before, .c-mediathekCard__caption > h4 > strong > a[href^="https://"]:before, .c-mediathekCard__caption > h5 > strong > a[href^="https://"]:before, .c-mediathekCard__caption > p > strong > a[href^="https://"]:before, .c-astlrSlider__caption > p > strong > a[href^="https://"]:before, .c-astlrSummary__copy > strong > a[href^="https://"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href^="https://"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href^="https://"]:before, .typography p.small > strong > a[href^="https://"]:before, .typography table > strong > a[href^="https://"]:before, .c-form .message > strong > a[href^="https://"]:before,
.c-videoEmbed__caption > em > a[href^="https://"]:before,
.c-videoEmbed__caption > h1 > em > a[href^="https://"]:before,
.c-videoEmbed__caption > h2 > em > a[href^="https://"]:before,
.c-videoEmbed__caption > h3 > em > a[href^="https://"]:before,
.c-videoEmbed__caption > h4 > em > a[href^="https://"]:before,
.c-videoEmbed__caption > h5 > em > a[href^="https://"]:before,
.c-videoEmbed__caption > p > em > a[href^="https://"]:before,
.c-pollingTool__introtext > em > a[href^="https://"]:before,
.c-mediathekCard__caption > em > a[href^="https://"]:before,
.c-mediathekCard__caption > h1 > em > a[href^="https://"]:before,
.c-mediathekCard__caption > h2 > em > a[href^="https://"]:before,
.c-mediathekCard__caption > h3 > em > a[href^="https://"]:before,
.c-mediathekCard__caption > h4 > em > a[href^="https://"]:before,
.c-mediathekCard__caption > h5 > em > a[href^="https://"]:before,
.c-mediathekCard__caption > p > em > a[href^="https://"]:before,
.c-astlrSlider__caption > p > em > a[href^="https://"]:before,
.c-astlrSummary__copy > em > a[href^="https://"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href^="https://"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href^="https://"]:before,
.typography p.small > em > a[href^="https://"]:before,
.typography table > em > a[href^="https://"]:before,
.c-form .message > em > a[href^="https://"]:before, .c-videoEmbed__caption > strong > a[href^="http://"]:before, .c-videoEmbed__caption > h1 > strong > a[href^="http://"]:before, .c-videoEmbed__caption > h2 > strong > a[href^="http://"]:before, .c-videoEmbed__caption > h3 > strong > a[href^="http://"]:before, .c-videoEmbed__caption > h4 > strong > a[href^="http://"]:before, .c-videoEmbed__caption > h5 > strong > a[href^="http://"]:before, .c-videoEmbed__caption > p > strong > a[href^="http://"]:before, .c-pollingTool__introtext > strong > a[href^="http://"]:before, .c-mediathekCard__caption > strong > a[href^="http://"]:before, .c-mediathekCard__caption > h1 > strong > a[href^="http://"]:before, .c-mediathekCard__caption > h2 > strong > a[href^="http://"]:before, .c-mediathekCard__caption > h3 > strong > a[href^="http://"]:before, .c-mediathekCard__caption > h4 > strong > a[href^="http://"]:before, .c-mediathekCard__caption > h5 > strong > a[href^="http://"]:before, .c-mediathekCard__caption > p > strong > a[href^="http://"]:before, .c-astlrSlider__caption > p > strong > a[href^="http://"]:before, .c-astlrSummary__copy > strong > a[href^="http://"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href^="http://"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href^="http://"]:before, .typography p.small > strong > a[href^="http://"]:before, .typography table > strong > a[href^="http://"]:before, .c-form .message > strong > a[href^="http://"]:before,
.c-videoEmbed__caption > em > a[href^="http://"]:before,
.c-videoEmbed__caption > h1 > em > a[href^="http://"]:before,
.c-videoEmbed__caption > h2 > em > a[href^="http://"]:before,
.c-videoEmbed__caption > h3 > em > a[href^="http://"]:before,
.c-videoEmbed__caption > h4 > em > a[href^="http://"]:before,
.c-videoEmbed__caption > h5 > em > a[href^="http://"]:before,
.c-videoEmbed__caption > p > em > a[href^="http://"]:before,
.c-pollingTool__introtext > em > a[href^="http://"]:before,
.c-mediathekCard__caption > em > a[href^="http://"]:before,
.c-mediathekCard__caption > h1 > em > a[href^="http://"]:before,
.c-mediathekCard__caption > h2 > em > a[href^="http://"]:before,
.c-mediathekCard__caption > h3 > em > a[href^="http://"]:before,
.c-mediathekCard__caption > h4 > em > a[href^="http://"]:before,
.c-mediathekCard__caption > h5 > em > a[href^="http://"]:before,
.c-mediathekCard__caption > p > em > a[href^="http://"]:before,
.c-astlrSlider__caption > p > em > a[href^="http://"]:before,
.c-astlrSummary__copy > em > a[href^="http://"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href^="http://"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href^="http://"]:before,
.typography p.small > em > a[href^="http://"]:before,
.typography table > em > a[href^="http://"]:before,
.c-form .message > em > a[href^="http://"]:before, .c-footer__typo > a[href^="https://"]:before, .c-footer__address > p > a[href^="https://"]:before, .c-footer__typo > a[href^="http://"]:before, .c-footer__address > p > a[href^="http://"]:before, .typography ul > strong > a[href^="https://"]:before,
.typography ul > em > a[href^="https://"]:before, .typography ul > strong > a[href^="http://"]:before,
.typography ul > em > a[href^="http://"]:before, .typography ul > a[href^="https://"]:before, .typography ul > a[href^="http://"]:before {
  content: "\e00e";
}
.c-astlrSlider__prev:before {
  content: "\e420";
}
.c-astlrTabs__trigger.-state--active:before, .c-button__link--ghost:after {
  content: "\e021";
}
.c-astlrSlider__next:before {
  content: "\e421";
}
.c-faqAccordion__trigger:checked + .c-faqAccordion__header:after, .c-faqAccordion__header:after, .c-astlrList__trigger:checked + .c-astlrList__header:after, .c-astlrList__header:after, .c-form__dropdown:after {
  content: "\e022";
}
.c-heroHome__link:after {
  content: "\e041";
}
.c-videoEmbed__stage:before, .c-mediathekCard__frame:after {
  content: "\e064";
}
.c-footer__icon--fb:before {
  content: "\e080";
}
.c-footer__icon--twitter:before {
  content: "\e081";
}
.c-footer__icon--instagram:before {
  content: "\e082";
}
.c-footer__icon--rss:before {
  content: "\e090";
}
.c-naviMobile__link-e1--es:after, .c-naviMain__link-e1--es:after {
  content: "\e606";
}
.c-icons__kurzfristigEng:before, .c-icons__legendhead--kurzfristigEng:before {
  content: "\e610";
}
.c-icons__digitalesEng:before, .c-icons__legendhead--digitalesEng:before {
  content: "\e611";
}
.c-icons__bfd:before, .c-icons__legendhead--bfd:before {
  content: "\e612";
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* fira-sans-100 - latin */
/* fira-sans-100italic - latin */
/* fira-sans-200 - latin */
/* fira-sans-200italic - latin */
/* fira-sans-300 - latin */
/* fira-sans-300italic - latin */
/* fira-sans-regular - latin */
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 400;
  src: local("Fira Sans Regular"), local("FiraSans-Regular"), url("/webfonts/fira-sans-v10-latin/fira-sans-v10-latin-regular.woff2") format("woff2"), url("/webfonts/fira-sans-v10-latin/fira-sans-v10-latin-regular.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* fira-sans-italic - latin */
@font-face {
  font-family: "Fira Sans";
  font-style: italic;
  font-weight: 400;
  src: local("Fira Sans Italic"), local("FiraSans-Italic"), url("/webfonts/fira-sans-v10-latin/fira-sans-v10-latin-italic.woff2") format("woff2"), url("/webfonts/fira-sans-v10-latin/fira-sans-v10-latin-italic.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* fira-sans-500 - latin */
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 500;
  src: local("Fira Sans Medium"), local("FiraSans-Medium"), url("/webfonts/fira-sans-v10-latin/fira-sans-v10-latin-500.woff2") format("woff2"), url("/webfonts/fira-sans-v10-latin/fira-sans-v10-latin-500.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* fira-sans-500italic - latin */
/* fira-sans-600 - latin */
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 600;
  src: local("Fira Sans SemiBold"), local("FiraSans-SemiBold"), url("/webfonts/fira-sans-v10-latin/fira-sans-v10-latin-600.woff2") format("woff2"), url("/webfonts/fira-sans-v10-latin/fira-sans-v10-latin-600.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* fira-sans-600italic - latin */
/* fira-sans-700 - latin */
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 700;
  src: local("Fira Sans Bold"), local("FiraSans-Bold"), url("/webfonts/fira-sans-v10-latin/fira-sans-v10-latin-700.woff2") format("woff2"), url("/webfonts/fira-sans-v10-latin/fira-sans-v10-latin-700.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* fira-sans-700italic - latin */
/* fira-sans-800 - latin */
@font-face {
  font-family: "Fira Sans";
  font-style: normal;
  font-weight: 800;
  src: local("Fira Sans ExtraBold"), local("FiraSans-ExtraBold"), url("/webfonts/fira-sans-v10-latin/fira-sans-v10-latin-800.woff2") format("woff2"), url("/webfonts/fira-sans-v10-latin/fira-sans-v10-latin-800.woff") format("woff"); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
/* fira-sans-800italic - latin */
/* fira-sans-900 - latin */
/* fira-sans-900italic - latin */
.c-naviMobile__link-e1, .c-naviMobile__link-e2, .c-naviMain__link-e1, .c-naviMain__link-e2, .c-heroHome__stage-left > h2, .c-heroHome__stage-left > h3, .c-heroHome__stage-right > a, .c-countdown__timer, .c-astlrVideoDates__date, .c-astlrVideoDates__title, .c-anncmts__datetime, .c-elementalPlanRoom__standnr, .c-books__subtitel, .c-astlrSlider__caption > h2, .c-astlrSlider__caption > h3, .c-astlrVideoDates__orgaName, .typography h6, .c-pollingTool__headline, .c-liveVideoGallery__title, .c-liveVideoMain__title, .c-icons__legendhead--kurzfristigEng, .c-icons__legendhead--digitalesEng, .c-icons__legendhead--bfd, .c-form h5, .c-elementalPlansGrid__headline > h3, .c-astlrABC__filterheadline, .c-astlrSummary__headline, .c-astlrSummary__iconholder > h3, .c-astlrFileItems__headline, .c-anncmts__topline, .c-anncmts__headline, .typography h5, .c-elementalPublikationen__copystage > h4, .c-schedule__headline, .c-heroHome__stage-right > p, .c-form h4, .c-faqAccordion__subtitle, .c-elementalPlansGrid__imgTitle, .c-elementalPlanRoom__headline > h3, .c-books__titel, .c-ausstellerRegistration__submittedData > h3, .c-astlrStage__note > h5, .c-page__subheadline, .typography h4, .c-elementalPublikationen__headline > h3, .c-mediathek__headline, .c-lightbox__headline, .c-form h3, .c-faqAccordion__title, .c-elementalPlansGrid__headline > h2, .c-elementalPlanRoom__headline > h2, .c-astlrSlider__header, .c-astlrVideoDates__headline, .c-astlrSummary__title, .c-astlrSummary__bu, .c-ausstellerRegistration__submittedData > h2, .c-astlrStage__errorMessage, .typography h3, .c-elementalPublikationen__headline > h2, .c-form h2, .c-elementalSimpleContent__headline > h2, .c-elementalSimpleContent__copy > h2, .c-astlrABC__letter, .c-astlrCopy__orgaName, .c-astlrStage__orgaName, .typography h2, .c-form h1, .c-elementalSimpleContent__headline > h1, .c-elementalSimpleContent__copy > h1, .c-astlrStage__uploader > h2, .typography h1 {
  font-family: "Fira Sans", sans-serif;
  color: var(--color-copytext);
  -webkit-hyphens: auto;
          hyphens: auto;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: subpixel-antialiased;
}
.c-testimonial__cite, .c-testimonial__autor, .c-testimonial__tag, .c-schedule__date, .c-schedule__time, .c-schedule__next, .c-standnr, .c-footer__typo, .c-footer__link, .c-footer__address > p, .c-astlrTabs__title, .c-astlrSchedule__date, .c-astlrList__title, .c-astlrList__subtitle, .c-astlrList__link, .c-elementalPlanRoom__link, .c-astlrABC__link, .c-astlrList__nolink, .c-astlrABC__nolink, .c-stageTabs__link, .c-button__select, .c-form__sortbutton, .c-button--tag, .c-button--ghost, .c-button--filled, .c-button__link--ghost, .c-button__link--filled, .c-button__download--ghost, .c-button__download--filled, .c-schedule__link, .c-mediathek__filter, .c-astlrVideoDates__link, .c-anncmts__button, .typography p a.button--ghost, .c-pollingTool__continue, .c-mediathek__filter.--active, .c-mediathek__filter.--active:hover, .c-form__action, .c-form__action--gray, .c-form--memberloginform input[type=submit], .typography p a.button--ghost:focus, .c-schedule__figcaption, .c-figureImage__caption > p, .typography figcaption, .c-videoEmbed__caption, .c-videoEmbed__caption > h1, .c-videoEmbed__caption > h2, .c-videoEmbed__caption > h3, .c-videoEmbed__caption > h4, .c-videoEmbed__caption > h5, .c-videoEmbed__caption > p, .c-pollingTool__introtext, .c-mediathekCard__caption, .c-mediathekCard__caption > h1, .c-mediathekCard__caption > h2, .c-mediathekCard__caption > h3, .c-mediathekCard__caption > h4, .c-mediathekCard__caption > h5, .c-mediathekCard__caption > p, .c-astlrSlider__caption > p, .c-astlrSummary__copy, .c-ausstellerRegistration__submittedData > table th, .c-ausstellerRegistration__submittedData > table tr, .typography p.small, .typography table, .c-form .message, .c-elementalPublikationen__copystage > p, .dropzone-holder.uploadable > p, .c-schedule__copy, .c-lightbox__subline, .tobii__counter, .tobii-image figure > figcaption, .c-form .btn-toolbar > p, .c-books__autor, .c-books__copy, .c-books__verlag, .c-books__jahr, .c-books__isbn, .c-books__preis, .c-books__link, .c-astlrVideoDates__copy, .c-astlrFileItems__link, .c-astlrCopy__fieldname, .c-astlrCopy__field, .c-astlrCopy > p, .c-astlrCopy__accordionHeader, .c-astlrCopy__accordionField, .c-astlrStage__note > p, .c-astlrStage__uploader > p, .c-anncmts__body, .typography p, .c-form label, .c-form input.text, .c-form input.textarea,
.c-form textarea.text,
.c-form textarea.textarea, .c-form input[type=text],
.c-form input[type=password],
.c-form input[type=email],
.c-form input[type=url],
.c-form input[type=date],
.c-form input[type=month],
.c-form input[type=time],
.c-form input[type=datetime],
.c-form input[type=datetime-local],
.c-form input[type=week],
.c-form input[type=number],
.c-form input[type=search],
.c-form input[type=tel],
.c-form input[type=color],
.c-form textarea, .c-form__checkbox label, .c-form__dropdown, .c-form__dropdown select > option, .c-form__dropdown > label, .typography ul, .typography p.intro {
  color: var(--color-copytext);
  font-family: "Fira Sans", sans-serif;
  -webkit-hyphens: auto;
          hyphens: auto;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: auto;
}
.c-testimonial__autor, .c-testimonial__tag, .c-standnr, .c-footer__typo, .c-footer__link, .c-footer__address > p, .c-astlrList__subtitle, .c-button--tag, .c-schedule__figcaption, .c-figureImage__caption > p, .typography figcaption, .c-videoEmbed__caption, .c-videoEmbed__caption > h1, .c-videoEmbed__caption > h2, .c-videoEmbed__caption > h3, .c-videoEmbed__caption > h4, .c-videoEmbed__caption > h5, .c-videoEmbed__caption > p, .c-pollingTool__introtext, .c-mediathekCard__caption, .c-mediathekCard__caption > h1, .c-mediathekCard__caption > h2, .c-mediathekCard__caption > h3, .c-mediathekCard__caption > h4, .c-mediathekCard__caption > h5, .c-mediathekCard__caption > p, .c-astlrSlider__caption > p, .c-astlrSummary__copy, .c-ausstellerRegistration__submittedData > table th, .c-ausstellerRegistration__submittedData > table tr, .typography p.small, .typography table, .c-form .message, .c-elementalPublikationen__copystage > p, .dropzone-holder.uploadable > p, .c-schedule__copy, .c-lightbox__subline, .tobii__counter, .tobii-image figure > figcaption, .c-form .btn-toolbar > p, .c-books__autor, .c-books__copy, .c-books__verlag, .c-books__jahr, .c-books__isbn, .c-books__preis, .c-books__link, .c-astlrVideoDates__copy, .c-astlrFileItems__link, .c-astlrCopy__fieldname, .c-astlrCopy__field, .c-astlrCopy > p, .c-astlrCopy__accordionHeader, .c-astlrCopy__accordionField, .c-astlrStage__note > p, .c-astlrStage__uploader > p, .c-anncmts__body, .typography p, .c-form label, .c-form input.text, .c-form input.textarea,
.c-form textarea.text,
.c-form textarea.textarea, .c-form input[type=text],
.c-form input[type=password],
.c-form input[type=email],
.c-form input[type=url],
.c-form input[type=date],
.c-form input[type=month],
.c-form input[type=time],
.c-form input[type=datetime],
.c-form input[type=datetime-local],
.c-form input[type=week],
.c-form input[type=number],
.c-form input[type=search],
.c-form input[type=tel],
.c-form input[type=color],
.c-form textarea, .c-form__checkbox label, .c-form__dropdown, .c-form__dropdown select > option, .c-form__dropdown > label, .typography ul, .typography p.intro {
  font-weight: 400;
  font-style: normal;
}
.c-astlrList__link, .c-elementalPlanRoom__link, .c-astlrABC__link, .c-astlrList__nolink, .c-astlrABC__nolink {
  font-weight: 500;
  font-style: normal;
}
.c-elementalPublikationen__copystage > p > a, .c-naviMobile__link-e1, .c-naviMobile__link-e2, .c-footer__typo > strong, .c-footer__address > p > strong, .c-elementalPlanRoom__standnr, .c-books__subtitel, .c-astlrSlider__caption > h2, .c-astlrSlider__caption > h3, .c-astlrVideoDates__orgaName, .typography h6 {
  font-weight: 600;
  font-style: normal;
}
.c-naviMain__link-e1, .c-naviMain__link-e2, .c-astlrTabs__title, .c-astlrList__title, .c-astlrVideoDates__title, .c-stageTabs__link, .c-button__select, .c-form__sortbutton, .c-button--ghost, .c-button--filled, .c-button__link--ghost, .c-button__link--filled, .c-button__download--ghost, .c-button__download--filled, .c-schedule__link, .c-mediathek__filter, .c-astlrVideoDates__link, .c-anncmts__button, .typography p a.button--ghost, .c-pollingTool__continue, .c-mediathek__filter.--active, .c-mediathek__filter.--active:hover, .c-form__action, .c-form__action--gray, .c-form--memberloginform input[type=submit], .typography p a.button--ghost:focus, .typography ul > li > strong,
.typography ul > li > em, .c-videoEmbed__caption > h1, .c-videoEmbed__caption > h2, .c-videoEmbed__caption > h3, .c-videoEmbed__caption > h4, .c-videoEmbed__caption > h5, .c-mediathekCard__caption > h1, .c-mediathekCard__caption > h2, .c-mediathekCard__caption > h3, .c-mediathekCard__caption > h4, .c-mediathekCard__caption > h5, .c-ausstellerRegistration__submittedData > table th, .c-videoEmbed__caption > strong, .c-videoEmbed__caption > h1 > strong, .c-videoEmbed__caption > h2 > strong, .c-videoEmbed__caption > h3 > strong, .c-videoEmbed__caption > h4 > strong, .c-videoEmbed__caption > h5 > strong, .c-videoEmbed__caption > p > strong, .c-pollingTool__introtext > strong, .c-mediathekCard__caption > strong, .c-mediathekCard__caption > h1 > strong, .c-mediathekCard__caption > h2 > strong, .c-mediathekCard__caption > h3 > strong, .c-mediathekCard__caption > h4 > strong, .c-mediathekCard__caption > h5 > strong, .c-mediathekCard__caption > p > strong, .c-astlrSlider__caption > p > strong, .c-astlrSummary__copy > strong, .c-ausstellerRegistration__submittedData > table th > strong, .c-ausstellerRegistration__submittedData > table tr > strong, .typography p.small > strong, .typography table > strong, .c-form .message > strong,
.c-videoEmbed__caption > em,
.c-videoEmbed__caption > h1 > em,
.c-videoEmbed__caption > h2 > em,
.c-videoEmbed__caption > h3 > em,
.c-videoEmbed__caption > h4 > em,
.c-videoEmbed__caption > h5 > em,
.c-videoEmbed__caption > p > em,
.c-pollingTool__introtext > em,
.c-mediathekCard__caption > em,
.c-mediathekCard__caption > h1 > em,
.c-mediathekCard__caption > h2 > em,
.c-mediathekCard__caption > h3 > em,
.c-mediathekCard__caption > h4 > em,
.c-mediathekCard__caption > h5 > em,
.c-mediathekCard__caption > p > em,
.c-astlrSlider__caption > p > em,
.c-astlrSummary__copy > em,
.c-ausstellerRegistration__submittedData > table th > em,
.c-ausstellerRegistration__submittedData > table tr > em,
.typography p.small > em,
.typography table > em,
.c-form .message > em, .c-books__autor, .c-astlrCopy__fieldname, .c-astlrCopy__accordionHeader, .c-elementalPublikationen__copystage > p > strong, .dropzone-holder.uploadable > p > strong, .c-schedule__copy > strong, .c-lightbox__subline > strong, .tobii__counter > strong, .tobii-image figure > figcaption > strong, .c-form .btn-toolbar > p > strong, .c-books__autor > strong, .c-books__copy > strong, .c-books__verlag > strong, .c-books__jahr > strong, .c-books__isbn > strong, .c-books__preis > strong, .c-books__link > strong, .c-astlrVideoDates__copy > strong, .c-astlrFileItems__link > strong, .c-astlrCopy__fieldname > strong, .c-astlrCopy__field > strong, .c-astlrCopy > p > strong, .c-astlrCopy__accordionHeader > strong, .c-astlrCopy__accordionField > strong, .c-astlrStage__note > p > strong, .c-astlrStage__uploader > p > strong, .c-anncmts__body > strong, .typography p > strong, .c-form label > strong, .c-form input.text > strong, .c-form input.textarea > strong,
.c-form textarea.text > strong,
.c-form textarea.textarea > strong, .c-form input[type=text] > strong,
.c-form input[type=password] > strong,
.c-form input[type=email] > strong,
.c-form input[type=url] > strong,
.c-form input[type=date] > strong,
.c-form input[type=month] > strong,
.c-form input[type=time] > strong,
.c-form input[type=datetime] > strong,
.c-form input[type=datetime-local] > strong,
.c-form input[type=week] > strong,
.c-form input[type=number] > strong,
.c-form input[type=search] > strong,
.c-form input[type=tel] > strong,
.c-form input[type=color] > strong,
.c-form textarea > strong, .c-form__checkbox label > strong, .c-form__dropdown > strong, .c-form__dropdown select > option > strong, .c-form__dropdown > label > strong, .typography ul > strong,
.c-elementalPublikationen__copystage > p > em,
.dropzone-holder.uploadable > p > em,
.c-schedule__copy > em,
.c-lightbox__subline > em,
.tobii__counter > em,
.tobii-image figure > figcaption > em,
.c-form .btn-toolbar > p > em,
.c-books__autor > em,
.c-books__copy > em,
.c-books__verlag > em,
.c-books__jahr > em,
.c-books__isbn > em,
.c-books__preis > em,
.c-books__link > em,
.c-astlrVideoDates__copy > em,
.c-astlrFileItems__link > em,
.c-astlrCopy__fieldname > em,
.c-astlrCopy__field > em,
.c-astlrCopy > p > em,
.c-astlrCopy__accordionHeader > em,
.c-astlrCopy__accordionField > em,
.c-astlrStage__note > p > em,
.c-astlrStage__uploader > p > em,
.c-anncmts__body > em,
.typography p > em,
.c-form label > em,
.c-form input.text > em,
.c-form input.textarea > em,
.c-form textarea.text > em,
.c-form textarea.textarea > em,
.c-form input[type=text] > em,
.c-form input[type=password] > em,
.c-form input[type=email] > em,
.c-form input[type=url] > em,
.c-form input[type=date] > em,
.c-form input[type=month] > em,
.c-form input[type=time] > em,
.c-form input[type=datetime] > em,
.c-form input[type=datetime-local] > em,
.c-form input[type=week] > em,
.c-form input[type=number] > em,
.c-form input[type=search] > em,
.c-form input[type=tel] > em,
.c-form input[type=color] > em,
.c-form textarea > em,
.c-form__checkbox label > em,
.c-form__dropdown > em,
.c-form__dropdown select > option > em,
.c-form__dropdown > label > em,
.typography ul > em, .c-pollingTool__headline, .c-liveVideoGallery__title, .c-liveVideoMain__title, .c-icons__legendhead--kurzfristigEng, .c-icons__legendhead--digitalesEng, .c-icons__legendhead--bfd, .c-form h5, .c-elementalPlansGrid__headline > h3, .c-astlrABC__filterheadline, .c-astlrSummary__headline, .c-astlrSummary__iconholder > h3, .c-astlrFileItems__headline, .c-anncmts__topline, .c-anncmts__headline, .typography h5, .c-elementalPublikationen__copystage > h4, .c-schedule__headline, .c-heroHome__stage-right > p, .c-form h4, .c-faqAccordion__subtitle, .c-elementalPlansGrid__imgTitle, .c-elementalPlanRoom__headline > h3, .c-books__titel, .c-ausstellerRegistration__submittedData > h3, .c-astlrStage__note > h5, .c-page__subheadline, .typography h4, .c-elementalPublikationen__headline > h3, .c-mediathek__headline, .c-lightbox__headline, .c-form h3, .c-faqAccordion__title, .c-elementalPlansGrid__headline > h2, .c-elementalPlanRoom__headline > h2, .c-astlrSlider__header, .c-astlrVideoDates__headline, .c-astlrSummary__title, .c-astlrSummary__bu, .c-ausstellerRegistration__submittedData > h2, .c-astlrStage__errorMessage, .typography h3, .c-elementalPublikationen__headline > h2, .c-form h2, .c-elementalSimpleContent__headline > h2, .c-elementalSimpleContent__copy > h2, .c-astlrABC__letter, .c-astlrCopy__orgaName, .c-astlrStage__orgaName, .typography h2 {
  font-weight: 700;
  font-style: normal;
}
.c-schedule__date, .c-schedule__time, .c-schedule__next, .c-heroHome__stage-left > h2, .c-heroHome__stage-left > h3, .c-heroHome__stage-right > a, .c-countdown__timer, .c-astlrSchedule__date, .c-astlrVideoDates__date, .c-anncmts__datetime, .c-form h1, .c-elementalSimpleContent__headline > h1, .c-elementalSimpleContent__copy > h1, .c-astlrStage__uploader > h2, .typography h1 {
  font-weight: 800;
  font-style: normal;
}
.c-testimonial__cite {
  font-weight: 400;
  font-style: italic;
}
.c-astlrSchedule__date, .c-anncmts__datetime {
  font-size: var(--fluidTypeStep-5);
}
.c-astlrVideoDates__orgaName:before, .c-form h1, .c-elementalSimpleContent__headline > h1, .c-elementalSimpleContent__copy > h1, .c-astlrStage__uploader > h2, .typography h1 {
  font-size: var(--fluidTypeStep-4);
}
.typography p.intro {
  font-size: var(--fluidTypeStep-3);
}
.c-schedule__date, .c-astlrTabs__title, .c-elementalPublikationen__headline > h2, .c-form h2, .c-elementalSimpleContent__headline > h2, .c-elementalSimpleContent__copy > h2, .c-astlrABC__letter, .c-astlrCopy__orgaName, .c-astlrStage__orgaName, .typography h2 {
  font-size: var(--fluidTypeStep-2);
}
.c-testimonial__cite, .c-astlrVideoDates__accordionHeader:after, .c-astlrVideoDates__date, .c-elementalPublikationen__headline > h3, .c-mediathek__headline, .c-lightbox__headline, .c-form h3, .c-faqAccordion__title, .c-elementalPlansGrid__headline > h2, .c-elementalPlanRoom__headline > h2, .c-astlrSlider__header, .c-astlrVideoDates__headline, .c-astlrSummary__title, .c-astlrSummary__bu, .c-ausstellerRegistration__submittedData > h2, .c-astlrStage__errorMessage, .typography h3 {
  font-size: var(--fluidTypeStep-1);
}
.c-schedule__time, .c-schedule__next, .c-footer__link, .c-astlrList__title, .c-astlrList__subtitle, .c-astlrVideoDates__title, .c-astlrCopy__accordionHeader:after, .c-astlrCopy__accordionHeader.-state--active:after, .c-astlrVideoDates__accordionHeader.-state--active:after, .c-stageTabs__link, .c-button--ghost, .c-button--filled, .c-button__link--ghost, .c-button__link--filled, .c-button__download--ghost, .c-button__download--filled, .c-schedule__link, .c-mediathek__filter, .c-astlrVideoDates__link, .c-anncmts__button, .typography p a.button--ghost, .c-pollingTool__continue, .c-mediathek__filter.--active, .c-mediathek__filter.--active:hover, .c-form__action, .c-form__action--gray, .c-form--memberloginform input[type=submit], .typography p a.button--ghost:focus, .c-elementalPublikationen__copystage > p, .dropzone-holder.uploadable > p, .c-schedule__copy, .c-lightbox__subline, .tobii__counter, .tobii-image figure > figcaption, .c-form .btn-toolbar > p, .c-books__autor, .c-books__copy, .c-books__verlag, .c-books__jahr, .c-books__isbn, .c-books__preis, .c-books__link, .c-astlrVideoDates__copy, .c-astlrFileItems__link, .c-astlrCopy__fieldname, .c-astlrCopy__field, .c-astlrCopy > p, .c-astlrCopy__accordionHeader, .c-astlrCopy__accordionField, .c-astlrStage__note > p, .c-astlrStage__uploader > p, .c-anncmts__body, .typography p, .c-form label, .c-form input.text, .c-form input.textarea,
.c-form textarea.text,
.c-form textarea.textarea, .c-form input[type=text],
.c-form input[type=password],
.c-form input[type=email],
.c-form input[type=url],
.c-form input[type=date],
.c-form input[type=month],
.c-form input[type=time],
.c-form input[type=datetime],
.c-form input[type=datetime-local],
.c-form input[type=week],
.c-form input[type=number],
.c-form input[type=search],
.c-form input[type=tel],
.c-form input[type=color],
.c-form textarea, .c-form__checkbox label, .c-form__dropdown, .c-form__dropdown select > option, .c-form__dropdown > label, .typography ul, .c-elementalPublikationen__copystage > h4, .c-schedule__headline, .c-heroHome__stage-right > p, .c-form h4, .c-faqAccordion__subtitle, .c-elementalPlansGrid__imgTitle, .c-elementalPlanRoom__headline > h3, .c-books__titel, .c-ausstellerRegistration__submittedData > h3, .c-astlrStage__note > h5, .c-page__subheadline, .typography h4 {
  font-size: var(--fluidTypeStep-0);
}
.c-testimonial__autor, .c-footer__typo, .c-footer__address > p, .c-button__select, .c-form__sortbutton, .c-videoEmbed__caption, .c-videoEmbed__caption > h1, .c-videoEmbed__caption > h2, .c-videoEmbed__caption > h3, .c-videoEmbed__caption > h4, .c-videoEmbed__caption > h5, .c-videoEmbed__caption > p, .c-pollingTool__introtext, .c-mediathekCard__caption, .c-mediathekCard__caption > h1, .c-mediathekCard__caption > h2, .c-mediathekCard__caption > h3, .c-mediathekCard__caption > h4, .c-mediathekCard__caption > h5, .c-mediathekCard__caption > p, .c-astlrSlider__caption > p, .c-astlrSummary__copy, .c-ausstellerRegistration__submittedData > table th, .c-ausstellerRegistration__submittedData > table tr, .typography p.small, .typography table, .c-form .message, .c-pollingTool__headline, .c-liveVideoGallery__title, .c-liveVideoMain__title, .c-icons__legendhead--kurzfristigEng, .c-icons__legendhead--digitalesEng, .c-icons__legendhead--bfd, .c-form h5, .c-elementalPlansGrid__headline > h3, .c-astlrABC__filterheadline, .c-astlrSummary__headline, .c-astlrSummary__iconholder > h3, .c-astlrFileItems__headline, .c-anncmts__topline, .c-anncmts__headline, .typography h5 {
  font-size: var(--fluidTypeStep--1);
}
.c-standnr, .c-elementalPlanRoom__standnr, .c-books__subtitel, .c-astlrSlider__caption > h2, .c-astlrSlider__caption > h3, .c-astlrVideoDates__orgaName, .typography h6 {
  font-size: var(--fluidTypeStep--2);
}
.c-schedule__figcaption, .c-figureImage__caption > p, .typography figcaption {
  font-size: var(--fluidTypeStep--3);
}
.c-videoEmbed__caption > img.left, .c-videoEmbed__caption > h1 > img.left, .c-videoEmbed__caption > h2 > img.left, .c-videoEmbed__caption > h3 > img.left, .c-videoEmbed__caption > h4 > img.left, .c-videoEmbed__caption > h5 > img.left, .c-videoEmbed__caption > p > img.left, .c-pollingTool__introtext > img.left, .c-mediathekCard__caption > img.left, .c-mediathekCard__caption > h1 > img.left, .c-mediathekCard__caption > h2 > img.left, .c-mediathekCard__caption > h3 > img.left, .c-mediathekCard__caption > h4 > img.left, .c-mediathekCard__caption > h5 > img.left, .c-mediathekCard__caption > p > img.left, .c-astlrSlider__caption > p > img.left, .c-astlrSummary__copy > img.left, .c-ausstellerRegistration__submittedData > table th > img.left, .c-ausstellerRegistration__submittedData > table tr > img.left, .typography p.small > img.left, .typography table > img.left, .c-form .message > img.left, .c-elementalPublikationen__copystage > p > img.left, .dropzone-holder.uploadable > p > img.left, .c-schedule__copy > img.left, .c-lightbox__subline > img.left, .tobii__counter > img.left, .tobii-image figure > figcaption > img.left, .c-form .btn-toolbar > p > img.left, .c-books__autor > img.left, .c-books__copy > img.left, .c-books__verlag > img.left, .c-books__jahr > img.left, .c-books__isbn > img.left, .c-books__preis > img.left, .c-books__link > img.left, .c-astlrVideoDates__copy > img.left, .c-astlrFileItems__link > img.left, .c-astlrCopy__fieldname > img.left, .c-astlrCopy__field > img.left, .c-astlrCopy > p > img.left, .c-astlrCopy__accordionHeader > img.left, .c-astlrCopy__accordionField > img.left, .c-astlrStage__note > p > img.left, .c-astlrStage__uploader > p > img.left, .c-anncmts__body > img.left, .typography p > img.left, .c-form label > img.left, .c-form input.text > img.left, .c-form input.textarea > img.left,
.c-form textarea.text > img.left,
.c-form textarea.textarea > img.left, .c-form input[type=text] > img.left,
.c-form input[type=password] > img.left,
.c-form input[type=email] > img.left,
.c-form input[type=url] > img.left,
.c-form input[type=date] > img.left,
.c-form input[type=month] > img.left,
.c-form input[type=time] > img.left,
.c-form input[type=datetime] > img.left,
.c-form input[type=datetime-local] > img.left,
.c-form input[type=week] > img.left,
.c-form input[type=number] > img.left,
.c-form input[type=search] > img.left,
.c-form input[type=tel] > img.left,
.c-form input[type=color] > img.left,
.c-form textarea > img.left, .c-form__checkbox label > img.left, .c-form__dropdown > img.left, .c-form__dropdown select > option > img.left, .c-form__dropdown > label > img.left, .typography ul > img.left {
  max-width: 98%;
  float: left;
  margin-left: 0;
  margin-top: 0.375rem;
  margin-right: 1rem;
  margin-bottom: 26px;
}
@media (min-width: 667px) {
  .c-videoEmbed__caption > img.left, .c-videoEmbed__caption > h1 > img.left, .c-videoEmbed__caption > h2 > img.left, .c-videoEmbed__caption > h3 > img.left, .c-videoEmbed__caption > h4 > img.left, .c-videoEmbed__caption > h5 > img.left, .c-videoEmbed__caption > p > img.left, .c-pollingTool__introtext > img.left, .c-mediathekCard__caption > img.left, .c-mediathekCard__caption > h1 > img.left, .c-mediathekCard__caption > h2 > img.left, .c-mediathekCard__caption > h3 > img.left, .c-mediathekCard__caption > h4 > img.left, .c-mediathekCard__caption > h5 > img.left, .c-mediathekCard__caption > p > img.left, .c-astlrSlider__caption > p > img.left, .c-astlrSummary__copy > img.left, .c-ausstellerRegistration__submittedData > table th > img.left, .c-ausstellerRegistration__submittedData > table tr > img.left, .typography p.small > img.left, .typography table > img.left, .c-form .message > img.left, .c-elementalPublikationen__copystage > p > img.left, .dropzone-holder.uploadable > p > img.left, .c-schedule__copy > img.left, .c-lightbox__subline > img.left, .tobii__counter > img.left, .tobii-image figure > figcaption > img.left, .c-form .btn-toolbar > p > img.left, .c-books__autor > img.left, .c-books__copy > img.left, .c-books__verlag > img.left, .c-books__jahr > img.left, .c-books__isbn > img.left, .c-books__preis > img.left, .c-books__link > img.left, .c-astlrVideoDates__copy > img.left, .c-astlrFileItems__link > img.left, .c-astlrCopy__fieldname > img.left, .c-astlrCopy__field > img.left, .c-astlrCopy > p > img.left, .c-astlrCopy__accordionHeader > img.left, .c-astlrCopy__accordionField > img.left, .c-astlrStage__note > p > img.left, .c-astlrStage__uploader > p > img.left, .c-anncmts__body > img.left, .typography p > img.left, .c-form label > img.left, .c-form input.text > img.left, .c-form input.textarea > img.left,
  .c-form textarea.text > img.left,
  .c-form textarea.textarea > img.left, .c-form input[type=text] > img.left,
  .c-form input[type=password] > img.left,
  .c-form input[type=email] > img.left,
  .c-form input[type=url] > img.left,
  .c-form input[type=date] > img.left,
  .c-form input[type=month] > img.left,
  .c-form input[type=time] > img.left,
  .c-form input[type=datetime] > img.left,
  .c-form input[type=datetime-local] > img.left,
  .c-form input[type=week] > img.left,
  .c-form input[type=number] > img.left,
  .c-form input[type=search] > img.left,
  .c-form input[type=tel] > img.left,
  .c-form input[type=color] > img.left,
  .c-form textarea > img.left, .c-form__checkbox label > img.left, .c-form__dropdown > img.left, .c-form__dropdown select > option > img.left, .c-form__dropdown > label > img.left, .typography ul > img.left {
    max-width: 354px;
    margin-bottom: 0;
  }
}
.c-footer__link:focus, .c-form h1 > a:focus, .c-elementalSimpleContent__headline > h1 > a:focus, .c-elementalSimpleContent__copy > h1 > a:focus, .c-astlrStage__uploader > h2 > a:focus, .typography h1 > a:focus, .c-elementalPublikationen__headline > h2 > a:focus, .c-form h2 > a:focus, .c-elementalSimpleContent__headline > h2 > a:focus, .c-elementalSimpleContent__copy > h2 > a:focus, .c-astlrABC__letter > a:focus, .c-astlrCopy__orgaName > a:focus, .c-astlrStage__orgaName > a:focus, .typography h2 > a:focus, .c-elementalPublikationen__headline > h3 > a:focus, .c-mediathek__headline > a:focus, .c-lightbox__headline > a:focus, .c-form h3 > a:focus, .c-faqAccordion__title > a:focus, .c-elementalPlansGrid__headline > h2 > a:focus, .c-elementalPlanRoom__headline > h2 > a:focus, .c-astlrSlider__header > a:focus, .c-astlrVideoDates__headline > a:focus, .c-astlrSummary__title > a:focus, .c-astlrSummary__bu > a:focus, .c-ausstellerRegistration__submittedData > h2 > a:focus, .c-astlrStage__errorMessage > a:focus, .typography h3 > a:focus, .c-elementalPublikationen__copystage > h4 > a:focus, .c-schedule__headline > a:focus, .c-heroHome__stage-right > p > a:focus, .c-form h4 > a:focus, .c-faqAccordion__subtitle > a:focus, .c-elementalPlansGrid__imgTitle > a:focus, .c-elementalPlanRoom__headline > h3 > a:focus, .c-books__titel > a:focus, .c-ausstellerRegistration__submittedData > h3 > a:focus, .c-astlrStage__note > h5 > a:focus, .c-page__subheadline > a:focus, .typography h4 > a:focus, .c-pollingTool__headline > a:focus, .c-liveVideoGallery__title > a:focus, .c-liveVideoMain__title > a:focus, .c-icons__legendhead--kurzfristigEng > a:focus, .c-icons__legendhead--digitalesEng > a:focus, .c-icons__legendhead--bfd > a:focus, .c-form h5 > a:focus, .c-elementalPlansGrid__headline > h3 > a:focus, .c-astlrABC__filterheadline > a:focus, .c-astlrSummary__headline > a:focus, .c-astlrSummary__iconholder > h3 > a:focus, .c-astlrFileItems__headline > a:focus, .c-anncmts__topline > a:focus, .c-anncmts__headline > a:focus, .typography h5 > a:focus, .c-elementalPlanRoom__standnr > a:focus, .c-books__subtitel > a:focus, .c-astlrSlider__caption > h2 > a:focus, .c-astlrSlider__caption > h3 > a:focus, .c-astlrVideoDates__orgaName > a:focus, .typography h6 > a:focus, .typography p.intro > a:focus, .c-videoEmbed__caption > a:focus, .c-videoEmbed__caption > h1 > a:focus, .c-videoEmbed__caption > h2 > a:focus, .c-videoEmbed__caption > h3 > a:focus, .c-videoEmbed__caption > h4 > a:focus, .c-videoEmbed__caption > h5 > a:focus, .c-videoEmbed__caption > p > a:focus, .c-pollingTool__introtext > a:focus, .c-mediathekCard__caption > a:focus, .c-mediathekCard__caption > h1 > a:focus, .c-mediathekCard__caption > h2 > a:focus, .c-mediathekCard__caption > h3 > a:focus, .c-mediathekCard__caption > h4 > a:focus, .c-mediathekCard__caption > h5 > a:focus, .c-mediathekCard__caption > p > a:focus, .c-astlrSlider__caption > p > a:focus, .c-astlrSummary__copy > a:focus, .c-ausstellerRegistration__submittedData > table th > a:focus, .c-ausstellerRegistration__submittedData > table tr > a:focus, .typography p.small > a:focus, .typography table > a:focus, .c-form .message > a:focus, .c-videoEmbed__caption > strong > a:focus, .c-videoEmbed__caption > h1 > strong > a:focus, .c-videoEmbed__caption > h2 > strong > a:focus, .c-videoEmbed__caption > h3 > strong > a:focus, .c-videoEmbed__caption > h4 > strong > a:focus, .c-videoEmbed__caption > h5 > strong > a:focus, .c-videoEmbed__caption > p > strong > a:focus, .c-pollingTool__introtext > strong > a:focus, .c-mediathekCard__caption > strong > a:focus, .c-mediathekCard__caption > h1 > strong > a:focus, .c-mediathekCard__caption > h2 > strong > a:focus, .c-mediathekCard__caption > h3 > strong > a:focus, .c-mediathekCard__caption > h4 > strong > a:focus, .c-mediathekCard__caption > h5 > strong > a:focus, .c-mediathekCard__caption > p > strong > a:focus, .c-astlrSlider__caption > p > strong > a:focus, .c-astlrSummary__copy > strong > a:focus, .c-ausstellerRegistration__submittedData > table th > strong > a:focus, .c-ausstellerRegistration__submittedData > table tr > strong > a:focus, .typography p.small > strong > a:focus, .typography table > strong > a:focus, .c-form .message > strong > a:focus,
.c-videoEmbed__caption > em > a:focus,
.c-videoEmbed__caption > h1 > em > a:focus,
.c-videoEmbed__caption > h2 > em > a:focus,
.c-videoEmbed__caption > h3 > em > a:focus,
.c-videoEmbed__caption > h4 > em > a:focus,
.c-videoEmbed__caption > h5 > em > a:focus,
.c-videoEmbed__caption > p > em > a:focus,
.c-pollingTool__introtext > em > a:focus,
.c-mediathekCard__caption > em > a:focus,
.c-mediathekCard__caption > h1 > em > a:focus,
.c-mediathekCard__caption > h2 > em > a:focus,
.c-mediathekCard__caption > h3 > em > a:focus,
.c-mediathekCard__caption > h4 > em > a:focus,
.c-mediathekCard__caption > h5 > em > a:focus,
.c-mediathekCard__caption > p > em > a:focus,
.c-astlrSlider__caption > p > em > a:focus,
.c-astlrSummary__copy > em > a:focus,
.c-ausstellerRegistration__submittedData > table th > em > a:focus,
.c-ausstellerRegistration__submittedData > table tr > em > a:focus,
.typography p.small > em > a:focus,
.typography table > em > a:focus,
.c-form .message > em > a:focus, .c-elementalPublikationen__copystage > p > a:focus, .dropzone-holder.uploadable > p > a:focus, .c-schedule__copy > a:focus, .c-lightbox__subline > a:focus, .tobii__counter > a:focus, .tobii-image figure > figcaption > a:focus, .c-form .btn-toolbar > p > a:focus, .c-books__autor > a:focus, .c-books__copy > a:focus, .c-books__verlag > a:focus, .c-books__jahr > a:focus, .c-books__isbn > a:focus, .c-books__preis > a:focus, .c-books__link > a:focus, .c-astlrVideoDates__copy > a:focus, .c-astlrFileItems__link > a:focus, .c-astlrCopy__fieldname > a:focus, .c-astlrCopy__field > a:focus, .c-astlrCopy > p > a:focus, .c-astlrCopy__accordionHeader > a:focus, .c-astlrCopy__accordionField > a:focus, .c-astlrStage__note > p > a:focus, .c-astlrStage__uploader > p > a:focus, .c-anncmts__body > a:focus, .typography p > a:focus, .c-form label > a:focus, .c-form input.text > a:focus, .c-form input.textarea > a:focus,
.c-form textarea.text > a:focus,
.c-form textarea.textarea > a:focus, .c-form input[type=text] > a:focus,
.c-form input[type=password] > a:focus,
.c-form input[type=email] > a:focus,
.c-form input[type=url] > a:focus,
.c-form input[type=date] > a:focus,
.c-form input[type=month] > a:focus,
.c-form input[type=time] > a:focus,
.c-form input[type=datetime] > a:focus,
.c-form input[type=datetime-local] > a:focus,
.c-form input[type=week] > a:focus,
.c-form input[type=number] > a:focus,
.c-form input[type=search] > a:focus,
.c-form input[type=tel] > a:focus,
.c-form input[type=color] > a:focus,
.c-form textarea > a:focus, .c-form__checkbox label > a:focus, .c-form__dropdown > a:focus, .c-form__dropdown select > option > a:focus, .c-form__dropdown > label > a:focus, .typography ul > a:focus, .c-elementalPublikationen__copystage > p > strong > a:focus, .dropzone-holder.uploadable > p > strong > a:focus, .c-schedule__copy > strong > a:focus, .c-lightbox__subline > strong > a:focus, .tobii__counter > strong > a:focus, .tobii-image figure > figcaption > strong > a:focus, .c-form .btn-toolbar > p > strong > a:focus, .c-books__autor > strong > a:focus, .c-books__copy > strong > a:focus, .c-books__verlag > strong > a:focus, .c-books__jahr > strong > a:focus, .c-books__isbn > strong > a:focus, .c-books__preis > strong > a:focus, .c-books__link > strong > a:focus, .c-astlrVideoDates__copy > strong > a:focus, .c-astlrFileItems__link > strong > a:focus, .c-astlrCopy__fieldname > strong > a:focus, .c-astlrCopy__field > strong > a:focus, .c-astlrCopy > p > strong > a:focus, .c-astlrCopy__accordionHeader > strong > a:focus, .c-astlrCopy__accordionField > strong > a:focus, .c-astlrStage__note > p > strong > a:focus, .c-astlrStage__uploader > p > strong > a:focus, .c-anncmts__body > strong > a:focus, .typography p > strong > a:focus, .c-form label > strong > a:focus, .c-form input.text > strong > a:focus, .c-form input.textarea > strong > a:focus,
.c-form textarea.text > strong > a:focus,
.c-form textarea.textarea > strong > a:focus, .c-form input[type=text] > strong > a:focus,
.c-form input[type=password] > strong > a:focus,
.c-form input[type=email] > strong > a:focus,
.c-form input[type=url] > strong > a:focus,
.c-form input[type=date] > strong > a:focus,
.c-form input[type=month] > strong > a:focus,
.c-form input[type=time] > strong > a:focus,
.c-form input[type=datetime] > strong > a:focus,
.c-form input[type=datetime-local] > strong > a:focus,
.c-form input[type=week] > strong > a:focus,
.c-form input[type=number] > strong > a:focus,
.c-form input[type=search] > strong > a:focus,
.c-form input[type=tel] > strong > a:focus,
.c-form input[type=color] > strong > a:focus,
.c-form textarea > strong > a:focus, .c-form__checkbox label > strong > a:focus, .c-form__dropdown > strong > a:focus, .c-form__dropdown select > option > strong > a:focus, .c-form__dropdown > label > strong > a:focus, .typography ul > strong > a:focus,
.c-elementalPublikationen__copystage > p > em > a:focus,
.dropzone-holder.uploadable > p > em > a:focus,
.c-schedule__copy > em > a:focus,
.c-lightbox__subline > em > a:focus,
.tobii__counter > em > a:focus,
.tobii-image figure > figcaption > em > a:focus,
.c-form .btn-toolbar > p > em > a:focus,
.c-books__autor > em > a:focus,
.c-books__copy > em > a:focus,
.c-books__verlag > em > a:focus,
.c-books__jahr > em > a:focus,
.c-books__isbn > em > a:focus,
.c-books__preis > em > a:focus,
.c-books__link > em > a:focus,
.c-astlrVideoDates__copy > em > a:focus,
.c-astlrFileItems__link > em > a:focus,
.c-astlrCopy__fieldname > em > a:focus,
.c-astlrCopy__field > em > a:focus,
.c-astlrCopy > p > em > a:focus,
.c-astlrCopy__accordionHeader > em > a:focus,
.c-astlrCopy__accordionField > em > a:focus,
.c-astlrStage__note > p > em > a:focus,
.c-astlrStage__uploader > p > em > a:focus,
.c-anncmts__body > em > a:focus,
.typography p > em > a:focus,
.c-form label > em > a:focus,
.c-form input.text > em > a:focus,
.c-form input.textarea > em > a:focus,
.c-form textarea.text > em > a:focus,
.c-form textarea.textarea > em > a:focus,
.c-form input[type=text] > em > a:focus,
.c-form input[type=password] > em > a:focus,
.c-form input[type=email] > em > a:focus,
.c-form input[type=url] > em > a:focus,
.c-form input[type=date] > em > a:focus,
.c-form input[type=month] > em > a:focus,
.c-form input[type=time] > em > a:focus,
.c-form input[type=datetime] > em > a:focus,
.c-form input[type=datetime-local] > em > a:focus,
.c-form input[type=week] > em > a:focus,
.c-form input[type=number] > em > a:focus,
.c-form input[type=search] > em > a:focus,
.c-form input[type=tel] > em > a:focus,
.c-form input[type=color] > em > a:focus,
.c-form textarea > em > a:focus,
.c-form__checkbox label > em > a:focus,
.c-form__dropdown > em > a:focus,
.c-form__dropdown select > option > em > a:focus,
.c-form__dropdown > label > em > a:focus,
.typography ul > em > a:focus {
  outline-color: var(--color-link--focus);
  outline-offset: -2px;
  outline-style: dotted;
  outline-width: 2px;
}
.c-form h1 > a, .c-elementalSimpleContent__headline > h1 > a, .c-elementalSimpleContent__copy > h1 > a, .c-astlrStage__uploader > h2 > a, .typography h1 > a, .c-elementalPublikationen__headline > h2 > a, .c-form h2 > a, .c-elementalSimpleContent__headline > h2 > a, .c-elementalSimpleContent__copy > h2 > a, .c-astlrABC__letter > a, .c-astlrCopy__orgaName > a, .c-astlrStage__orgaName > a, .typography h2 > a, .c-elementalPublikationen__headline > h3 > a, .c-mediathek__headline > a, .c-lightbox__headline > a, .c-form h3 > a, .c-faqAccordion__title > a, .c-elementalPlansGrid__headline > h2 > a, .c-elementalPlanRoom__headline > h2 > a, .c-astlrSlider__header > a, .c-astlrVideoDates__headline > a, .c-astlrSummary__title > a, .c-astlrSummary__bu > a, .c-ausstellerRegistration__submittedData > h2 > a, .c-astlrStage__errorMessage > a, .typography h3 > a, .c-elementalPublikationen__copystage > h4 > a, .c-schedule__headline > a, .c-heroHome__stage-right > p > a, .c-form h4 > a, .c-faqAccordion__subtitle > a, .c-elementalPlansGrid__imgTitle > a, .c-elementalPlanRoom__headline > h3 > a, .c-books__titel > a, .c-ausstellerRegistration__submittedData > h3 > a, .c-astlrStage__note > h5 > a, .c-page__subheadline > a, .typography h4 > a, .c-pollingTool__headline > a, .c-liveVideoGallery__title > a, .c-liveVideoMain__title > a, .c-icons__legendhead--kurzfristigEng > a, .c-icons__legendhead--digitalesEng > a, .c-icons__legendhead--bfd > a, .c-form h5 > a, .c-elementalPlansGrid__headline > h3 > a, .c-astlrABC__filterheadline > a, .c-astlrSummary__headline > a, .c-astlrSummary__iconholder > h3 > a, .c-astlrFileItems__headline > a, .c-anncmts__topline > a, .c-anncmts__headline > a, .typography h5 > a, .c-elementalPlanRoom__standnr > a, .c-books__subtitel > a, .c-astlrSlider__caption > h2 > a, .c-astlrSlider__caption > h3 > a, .c-astlrVideoDates__orgaName > a, .typography h6 > a, .typography p.intro > a, .c-videoEmbed__caption > a, .c-videoEmbed__caption > h1 > a, .c-videoEmbed__caption > h2 > a, .c-videoEmbed__caption > h3 > a, .c-videoEmbed__caption > h4 > a, .c-videoEmbed__caption > h5 > a, .c-videoEmbed__caption > p > a, .c-pollingTool__introtext > a, .c-mediathekCard__caption > a, .c-mediathekCard__caption > h1 > a, .c-mediathekCard__caption > h2 > a, .c-mediathekCard__caption > h3 > a, .c-mediathekCard__caption > h4 > a, .c-mediathekCard__caption > h5 > a, .c-mediathekCard__caption > p > a, .c-astlrSlider__caption > p > a, .c-astlrSummary__copy > a, .c-ausstellerRegistration__submittedData > table th > a, .c-ausstellerRegistration__submittedData > table tr > a, .typography p.small > a, .typography table > a, .c-form .message > a, .c-videoEmbed__caption > strong > a, .c-videoEmbed__caption > h1 > strong > a, .c-videoEmbed__caption > h2 > strong > a, .c-videoEmbed__caption > h3 > strong > a, .c-videoEmbed__caption > h4 > strong > a, .c-videoEmbed__caption > h5 > strong > a, .c-videoEmbed__caption > p > strong > a, .c-pollingTool__introtext > strong > a, .c-mediathekCard__caption > strong > a, .c-mediathekCard__caption > h1 > strong > a, .c-mediathekCard__caption > h2 > strong > a, .c-mediathekCard__caption > h3 > strong > a, .c-mediathekCard__caption > h4 > strong > a, .c-mediathekCard__caption > h5 > strong > a, .c-mediathekCard__caption > p > strong > a, .c-astlrSlider__caption > p > strong > a, .c-astlrSummary__copy > strong > a, .c-ausstellerRegistration__submittedData > table th > strong > a, .c-ausstellerRegistration__submittedData > table tr > strong > a, .typography p.small > strong > a, .typography table > strong > a, .c-form .message > strong > a,
.c-videoEmbed__caption > em > a,
.c-videoEmbed__caption > h1 > em > a,
.c-videoEmbed__caption > h2 > em > a,
.c-videoEmbed__caption > h3 > em > a,
.c-videoEmbed__caption > h4 > em > a,
.c-videoEmbed__caption > h5 > em > a,
.c-videoEmbed__caption > p > em > a,
.c-pollingTool__introtext > em > a,
.c-mediathekCard__caption > em > a,
.c-mediathekCard__caption > h1 > em > a,
.c-mediathekCard__caption > h2 > em > a,
.c-mediathekCard__caption > h3 > em > a,
.c-mediathekCard__caption > h4 > em > a,
.c-mediathekCard__caption > h5 > em > a,
.c-mediathekCard__caption > p > em > a,
.c-astlrSlider__caption > p > em > a,
.c-astlrSummary__copy > em > a,
.c-ausstellerRegistration__submittedData > table th > em > a,
.c-ausstellerRegistration__submittedData > table tr > em > a,
.typography p.small > em > a,
.typography table > em > a,
.c-form .message > em > a, .c-elementalPublikationen__copystage > p > a, .dropzone-holder.uploadable > p > a, .c-schedule__copy > a, .c-lightbox__subline > a, .tobii__counter > a, .tobii-image figure > figcaption > a, .c-form .btn-toolbar > p > a, .c-books__autor > a, .c-books__copy > a, .c-books__verlag > a, .c-books__jahr > a, .c-books__isbn > a, .c-books__preis > a, .c-books__link > a, .c-astlrVideoDates__copy > a, .c-astlrFileItems__link > a, .c-astlrCopy__fieldname > a, .c-astlrCopy__field > a, .c-astlrCopy > p > a, .c-astlrCopy__accordionHeader > a, .c-astlrCopy__accordionField > a, .c-astlrStage__note > p > a, .c-astlrStage__uploader > p > a, .c-anncmts__body > a, .typography p > a, .c-form label > a, .c-form input.text > a, .c-form input.textarea > a,
.c-form textarea.text > a,
.c-form textarea.textarea > a, .c-form input[type=text] > a,
.c-form input[type=password] > a,
.c-form input[type=email] > a,
.c-form input[type=url] > a,
.c-form input[type=date] > a,
.c-form input[type=month] > a,
.c-form input[type=time] > a,
.c-form input[type=datetime] > a,
.c-form input[type=datetime-local] > a,
.c-form input[type=week] > a,
.c-form input[type=number] > a,
.c-form input[type=search] > a,
.c-form input[type=tel] > a,
.c-form input[type=color] > a,
.c-form textarea > a, .c-form__checkbox label > a, .c-form__dropdown > a, .c-form__dropdown select > option > a, .c-form__dropdown > label > a, .typography ul > a, .c-elementalPublikationen__copystage > p > strong > a, .dropzone-holder.uploadable > p > strong > a, .c-schedule__copy > strong > a, .c-lightbox__subline > strong > a, .tobii__counter > strong > a, .tobii-image figure > figcaption > strong > a, .c-form .btn-toolbar > p > strong > a, .c-books__autor > strong > a, .c-books__copy > strong > a, .c-books__verlag > strong > a, .c-books__jahr > strong > a, .c-books__isbn > strong > a, .c-books__preis > strong > a, .c-books__link > strong > a, .c-astlrVideoDates__copy > strong > a, .c-astlrFileItems__link > strong > a, .c-astlrCopy__fieldname > strong > a, .c-astlrCopy__field > strong > a, .c-astlrCopy > p > strong > a, .c-astlrCopy__accordionHeader > strong > a, .c-astlrCopy__accordionField > strong > a, .c-astlrStage__note > p > strong > a, .c-astlrStage__uploader > p > strong > a, .c-anncmts__body > strong > a, .typography p > strong > a, .c-form label > strong > a, .c-form input.text > strong > a, .c-form input.textarea > strong > a,
.c-form textarea.text > strong > a,
.c-form textarea.textarea > strong > a, .c-form input[type=text] > strong > a,
.c-form input[type=password] > strong > a,
.c-form input[type=email] > strong > a,
.c-form input[type=url] > strong > a,
.c-form input[type=date] > strong > a,
.c-form input[type=month] > strong > a,
.c-form input[type=time] > strong > a,
.c-form input[type=datetime] > strong > a,
.c-form input[type=datetime-local] > strong > a,
.c-form input[type=week] > strong > a,
.c-form input[type=number] > strong > a,
.c-form input[type=search] > strong > a,
.c-form input[type=tel] > strong > a,
.c-form input[type=color] > strong > a,
.c-form textarea > strong > a, .c-form__checkbox label > strong > a, .c-form__dropdown > strong > a, .c-form__dropdown select > option > strong > a, .c-form__dropdown > label > strong > a, .typography ul > strong > a,
.c-elementalPublikationen__copystage > p > em > a,
.dropzone-holder.uploadable > p > em > a,
.c-schedule__copy > em > a,
.c-lightbox__subline > em > a,
.tobii__counter > em > a,
.tobii-image figure > figcaption > em > a,
.c-form .btn-toolbar > p > em > a,
.c-books__autor > em > a,
.c-books__copy > em > a,
.c-books__verlag > em > a,
.c-books__jahr > em > a,
.c-books__isbn > em > a,
.c-books__preis > em > a,
.c-books__link > em > a,
.c-astlrVideoDates__copy > em > a,
.c-astlrFileItems__link > em > a,
.c-astlrCopy__fieldname > em > a,
.c-astlrCopy__field > em > a,
.c-astlrCopy > p > em > a,
.c-astlrCopy__accordionHeader > em > a,
.c-astlrCopy__accordionField > em > a,
.c-astlrStage__note > p > em > a,
.c-astlrStage__uploader > p > em > a,
.c-anncmts__body > em > a,
.typography p > em > a,
.c-form label > em > a,
.c-form input.text > em > a,
.c-form input.textarea > em > a,
.c-form textarea.text > em > a,
.c-form textarea.textarea > em > a,
.c-form input[type=text] > em > a,
.c-form input[type=password] > em > a,
.c-form input[type=email] > em > a,
.c-form input[type=url] > em > a,
.c-form input[type=date] > em > a,
.c-form input[type=month] > em > a,
.c-form input[type=time] > em > a,
.c-form input[type=datetime] > em > a,
.c-form input[type=datetime-local] > em > a,
.c-form input[type=week] > em > a,
.c-form input[type=number] > em > a,
.c-form input[type=search] > em > a,
.c-form input[type=tel] > em > a,
.c-form input[type=color] > em > a,
.c-form textarea > em > a,
.c-form__checkbox label > em > a,
.c-form__dropdown > em > a,
.c-form__dropdown select > option > em > a,
.c-form__dropdown > label > em > a,
.typography ul > em > a {
  -webkit-text-decoration-style: dotted;
          text-decoration-style: dotted;
  -webkit-text-decoration-skip: edge;
          text-decoration-skip: edge;
  text-underline-offset: 0.2em;
  display: inline-block;
}
.c-form h1 > a:link, .c-elementalSimpleContent__headline > h1 > a:link, .c-elementalSimpleContent__copy > h1 > a:link, .c-astlrStage__uploader > h2 > a:link, .typography h1 > a:link, .c-elementalPublikationen__headline > h2 > a:link, .c-form h2 > a:link, .c-elementalSimpleContent__headline > h2 > a:link, .c-elementalSimpleContent__copy > h2 > a:link, .c-astlrABC__letter > a:link, .c-astlrCopy__orgaName > a:link, .c-astlrStage__orgaName > a:link, .typography h2 > a:link, .c-elementalPublikationen__headline > h3 > a:link, .c-mediathek__headline > a:link, .c-lightbox__headline > a:link, .c-form h3 > a:link, .c-faqAccordion__title > a:link, .c-elementalPlansGrid__headline > h2 > a:link, .c-elementalPlanRoom__headline > h2 > a:link, .c-astlrSlider__header > a:link, .c-astlrVideoDates__headline > a:link, .c-astlrSummary__title > a:link, .c-astlrSummary__bu > a:link, .c-ausstellerRegistration__submittedData > h2 > a:link, .c-astlrStage__errorMessage > a:link, .typography h3 > a:link, .c-elementalPublikationen__copystage > h4 > a:link, .c-schedule__headline > a:link, .c-heroHome__stage-right > p > a:link, .c-form h4 > a:link, .c-faqAccordion__subtitle > a:link, .c-elementalPlansGrid__imgTitle > a:link, .c-elementalPlanRoom__headline > h3 > a:link, .c-books__titel > a:link, .c-ausstellerRegistration__submittedData > h3 > a:link, .c-astlrStage__note > h5 > a:link, .c-page__subheadline > a:link, .typography h4 > a:link, .c-pollingTool__headline > a:link, .c-liveVideoGallery__title > a:link, .c-liveVideoMain__title > a:link, .c-icons__legendhead--kurzfristigEng > a:link, .c-icons__legendhead--digitalesEng > a:link, .c-icons__legendhead--bfd > a:link, .c-form h5 > a:link, .c-elementalPlansGrid__headline > h3 > a:link, .c-astlrABC__filterheadline > a:link, .c-astlrSummary__headline > a:link, .c-astlrSummary__iconholder > h3 > a:link, .c-astlrFileItems__headline > a:link, .c-anncmts__topline > a:link, .c-anncmts__headline > a:link, .typography h5 > a:link, .c-elementalPlanRoom__standnr > a:link, .c-books__subtitel > a:link, .c-astlrSlider__caption > h2 > a:link, .c-astlrSlider__caption > h3 > a:link, .c-astlrVideoDates__orgaName > a:link, .typography h6 > a:link, .typography p.intro > a:link, .c-videoEmbed__caption > a:link, .c-videoEmbed__caption > h1 > a:link, .c-videoEmbed__caption > h2 > a:link, .c-videoEmbed__caption > h3 > a:link, .c-videoEmbed__caption > h4 > a:link, .c-videoEmbed__caption > h5 > a:link, .c-videoEmbed__caption > p > a:link, .c-pollingTool__introtext > a:link, .c-mediathekCard__caption > a:link, .c-mediathekCard__caption > h1 > a:link, .c-mediathekCard__caption > h2 > a:link, .c-mediathekCard__caption > h3 > a:link, .c-mediathekCard__caption > h4 > a:link, .c-mediathekCard__caption > h5 > a:link, .c-mediathekCard__caption > p > a:link, .c-astlrSlider__caption > p > a:link, .c-astlrSummary__copy > a:link, .c-ausstellerRegistration__submittedData > table th > a:link, .c-ausstellerRegistration__submittedData > table tr > a:link, .typography p.small > a:link, .typography table > a:link, .c-form .message > a:link, .c-videoEmbed__caption > strong > a:link, .c-videoEmbed__caption > h1 > strong > a:link, .c-videoEmbed__caption > h2 > strong > a:link, .c-videoEmbed__caption > h3 > strong > a:link, .c-videoEmbed__caption > h4 > strong > a:link, .c-videoEmbed__caption > h5 > strong > a:link, .c-videoEmbed__caption > p > strong > a:link, .c-pollingTool__introtext > strong > a:link, .c-mediathekCard__caption > strong > a:link, .c-mediathekCard__caption > h1 > strong > a:link, .c-mediathekCard__caption > h2 > strong > a:link, .c-mediathekCard__caption > h3 > strong > a:link, .c-mediathekCard__caption > h4 > strong > a:link, .c-mediathekCard__caption > h5 > strong > a:link, .c-mediathekCard__caption > p > strong > a:link, .c-astlrSlider__caption > p > strong > a:link, .c-astlrSummary__copy > strong > a:link, .c-ausstellerRegistration__submittedData > table th > strong > a:link, .c-ausstellerRegistration__submittedData > table tr > strong > a:link, .typography p.small > strong > a:link, .typography table > strong > a:link, .c-form .message > strong > a:link,
.c-videoEmbed__caption > em > a:link,
.c-videoEmbed__caption > h1 > em > a:link,
.c-videoEmbed__caption > h2 > em > a:link,
.c-videoEmbed__caption > h3 > em > a:link,
.c-videoEmbed__caption > h4 > em > a:link,
.c-videoEmbed__caption > h5 > em > a:link,
.c-videoEmbed__caption > p > em > a:link,
.c-pollingTool__introtext > em > a:link,
.c-mediathekCard__caption > em > a:link,
.c-mediathekCard__caption > h1 > em > a:link,
.c-mediathekCard__caption > h2 > em > a:link,
.c-mediathekCard__caption > h3 > em > a:link,
.c-mediathekCard__caption > h4 > em > a:link,
.c-mediathekCard__caption > h5 > em > a:link,
.c-mediathekCard__caption > p > em > a:link,
.c-astlrSlider__caption > p > em > a:link,
.c-astlrSummary__copy > em > a:link,
.c-ausstellerRegistration__submittedData > table th > em > a:link,
.c-ausstellerRegistration__submittedData > table tr > em > a:link,
.typography p.small > em > a:link,
.typography table > em > a:link,
.c-form .message > em > a:link, .c-elementalPublikationen__copystage > p > a:link, .dropzone-holder.uploadable > p > a:link, .c-schedule__copy > a:link, .c-lightbox__subline > a:link, .tobii__counter > a:link, .tobii-image figure > figcaption > a:link, .c-form .btn-toolbar > p > a:link, .c-books__autor > a:link, .c-books__copy > a:link, .c-books__verlag > a:link, .c-books__jahr > a:link, .c-books__isbn > a:link, .c-books__preis > a:link, .c-books__link > a:link, .c-astlrVideoDates__copy > a:link, .c-astlrFileItems__link > a:link, .c-astlrCopy__fieldname > a:link, .c-astlrCopy__field > a:link, .c-astlrCopy > p > a:link, .c-astlrCopy__accordionHeader > a:link, .c-astlrCopy__accordionField > a:link, .c-astlrStage__note > p > a:link, .c-astlrStage__uploader > p > a:link, .c-anncmts__body > a:link, .typography p > a:link, .c-form label > a:link, .c-form input.text > a:link, .c-form input.textarea > a:link,
.c-form textarea.text > a:link,
.c-form textarea.textarea > a:link, .c-form input[type=text] > a:link,
.c-form input[type=password] > a:link,
.c-form input[type=email] > a:link,
.c-form input[type=url] > a:link,
.c-form input[type=date] > a:link,
.c-form input[type=month] > a:link,
.c-form input[type=time] > a:link,
.c-form input[type=datetime] > a:link,
.c-form input[type=datetime-local] > a:link,
.c-form input[type=week] > a:link,
.c-form input[type=number] > a:link,
.c-form input[type=search] > a:link,
.c-form input[type=tel] > a:link,
.c-form input[type=color] > a:link,
.c-form textarea > a:link, .c-form__checkbox label > a:link, .c-form__dropdown > a:link, .c-form__dropdown select > option > a:link, .c-form__dropdown > label > a:link, .typography ul > a:link, .c-elementalPublikationen__copystage > p > strong > a:link, .dropzone-holder.uploadable > p > strong > a:link, .c-schedule__copy > strong > a:link, .c-lightbox__subline > strong > a:link, .tobii__counter > strong > a:link, .tobii-image figure > figcaption > strong > a:link, .c-form .btn-toolbar > p > strong > a:link, .c-books__autor > strong > a:link, .c-books__copy > strong > a:link, .c-books__verlag > strong > a:link, .c-books__jahr > strong > a:link, .c-books__isbn > strong > a:link, .c-books__preis > strong > a:link, .c-books__link > strong > a:link, .c-astlrVideoDates__copy > strong > a:link, .c-astlrFileItems__link > strong > a:link, .c-astlrCopy__fieldname > strong > a:link, .c-astlrCopy__field > strong > a:link, .c-astlrCopy > p > strong > a:link, .c-astlrCopy__accordionHeader > strong > a:link, .c-astlrCopy__accordionField > strong > a:link, .c-astlrStage__note > p > strong > a:link, .c-astlrStage__uploader > p > strong > a:link, .c-anncmts__body > strong > a:link, .typography p > strong > a:link, .c-form label > strong > a:link, .c-form input.text > strong > a:link, .c-form input.textarea > strong > a:link,
.c-form textarea.text > strong > a:link,
.c-form textarea.textarea > strong > a:link, .c-form input[type=text] > strong > a:link,
.c-form input[type=password] > strong > a:link,
.c-form input[type=email] > strong > a:link,
.c-form input[type=url] > strong > a:link,
.c-form input[type=date] > strong > a:link,
.c-form input[type=month] > strong > a:link,
.c-form input[type=time] > strong > a:link,
.c-form input[type=datetime] > strong > a:link,
.c-form input[type=datetime-local] > strong > a:link,
.c-form input[type=week] > strong > a:link,
.c-form input[type=number] > strong > a:link,
.c-form input[type=search] > strong > a:link,
.c-form input[type=tel] > strong > a:link,
.c-form input[type=color] > strong > a:link,
.c-form textarea > strong > a:link, .c-form__checkbox label > strong > a:link, .c-form__dropdown > strong > a:link, .c-form__dropdown select > option > strong > a:link, .c-form__dropdown > label > strong > a:link, .typography ul > strong > a:link,
.c-elementalPublikationen__copystage > p > em > a:link,
.dropzone-holder.uploadable > p > em > a:link,
.c-schedule__copy > em > a:link,
.c-lightbox__subline > em > a:link,
.tobii__counter > em > a:link,
.tobii-image figure > figcaption > em > a:link,
.c-form .btn-toolbar > p > em > a:link,
.c-books__autor > em > a:link,
.c-books__copy > em > a:link,
.c-books__verlag > em > a:link,
.c-books__jahr > em > a:link,
.c-books__isbn > em > a:link,
.c-books__preis > em > a:link,
.c-books__link > em > a:link,
.c-astlrVideoDates__copy > em > a:link,
.c-astlrFileItems__link > em > a:link,
.c-astlrCopy__fieldname > em > a:link,
.c-astlrCopy__field > em > a:link,
.c-astlrCopy > p > em > a:link,
.c-astlrCopy__accordionHeader > em > a:link,
.c-astlrCopy__accordionField > em > a:link,
.c-astlrStage__note > p > em > a:link,
.c-astlrStage__uploader > p > em > a:link,
.c-anncmts__body > em > a:link,
.typography p > em > a:link,
.c-form label > em > a:link,
.c-form input.text > em > a:link,
.c-form input.textarea > em > a:link,
.c-form textarea.text > em > a:link,
.c-form textarea.textarea > em > a:link,
.c-form input[type=text] > em > a:link,
.c-form input[type=password] > em > a:link,
.c-form input[type=email] > em > a:link,
.c-form input[type=url] > em > a:link,
.c-form input[type=date] > em > a:link,
.c-form input[type=month] > em > a:link,
.c-form input[type=time] > em > a:link,
.c-form input[type=datetime] > em > a:link,
.c-form input[type=datetime-local] > em > a:link,
.c-form input[type=week] > em > a:link,
.c-form input[type=number] > em > a:link,
.c-form input[type=search] > em > a:link,
.c-form input[type=tel] > em > a:link,
.c-form input[type=color] > em > a:link,
.c-form textarea > em > a:link,
.c-form__checkbox label > em > a:link,
.c-form__dropdown > em > a:link,
.c-form__dropdown select > option > em > a:link,
.c-form__dropdown > label > em > a:link,
.typography ul > em > a:link {
  color: var(--color-link);
}
.c-form h1 > a:visited, .c-elementalSimpleContent__headline > h1 > a:visited, .c-elementalSimpleContent__copy > h1 > a:visited, .c-astlrStage__uploader > h2 > a:visited, .typography h1 > a:visited, .c-elementalPublikationen__headline > h2 > a:visited, .c-form h2 > a:visited, .c-elementalSimpleContent__headline > h2 > a:visited, .c-elementalSimpleContent__copy > h2 > a:visited, .c-astlrABC__letter > a:visited, .c-astlrCopy__orgaName > a:visited, .c-astlrStage__orgaName > a:visited, .typography h2 > a:visited, .c-elementalPublikationen__headline > h3 > a:visited, .c-mediathek__headline > a:visited, .c-lightbox__headline > a:visited, .c-form h3 > a:visited, .c-faqAccordion__title > a:visited, .c-elementalPlansGrid__headline > h2 > a:visited, .c-elementalPlanRoom__headline > h2 > a:visited, .c-astlrSlider__header > a:visited, .c-astlrVideoDates__headline > a:visited, .c-astlrSummary__title > a:visited, .c-astlrSummary__bu > a:visited, .c-ausstellerRegistration__submittedData > h2 > a:visited, .c-astlrStage__errorMessage > a:visited, .typography h3 > a:visited, .c-elementalPublikationen__copystage > h4 > a:visited, .c-schedule__headline > a:visited, .c-heroHome__stage-right > p > a:visited, .c-form h4 > a:visited, .c-faqAccordion__subtitle > a:visited, .c-elementalPlansGrid__imgTitle > a:visited, .c-elementalPlanRoom__headline > h3 > a:visited, .c-books__titel > a:visited, .c-ausstellerRegistration__submittedData > h3 > a:visited, .c-astlrStage__note > h5 > a:visited, .c-page__subheadline > a:visited, .typography h4 > a:visited, .c-pollingTool__headline > a:visited, .c-liveVideoGallery__title > a:visited, .c-liveVideoMain__title > a:visited, .c-icons__legendhead--kurzfristigEng > a:visited, .c-icons__legendhead--digitalesEng > a:visited, .c-icons__legendhead--bfd > a:visited, .c-form h5 > a:visited, .c-elementalPlansGrid__headline > h3 > a:visited, .c-astlrABC__filterheadline > a:visited, .c-astlrSummary__headline > a:visited, .c-astlrSummary__iconholder > h3 > a:visited, .c-astlrFileItems__headline > a:visited, .c-anncmts__topline > a:visited, .c-anncmts__headline > a:visited, .typography h5 > a:visited, .c-elementalPlanRoom__standnr > a:visited, .c-books__subtitel > a:visited, .c-astlrSlider__caption > h2 > a:visited, .c-astlrSlider__caption > h3 > a:visited, .c-astlrVideoDates__orgaName > a:visited, .typography h6 > a:visited, .typography p.intro > a:visited, .c-videoEmbed__caption > a:visited, .c-videoEmbed__caption > h1 > a:visited, .c-videoEmbed__caption > h2 > a:visited, .c-videoEmbed__caption > h3 > a:visited, .c-videoEmbed__caption > h4 > a:visited, .c-videoEmbed__caption > h5 > a:visited, .c-videoEmbed__caption > p > a:visited, .c-pollingTool__introtext > a:visited, .c-mediathekCard__caption > a:visited, .c-mediathekCard__caption > h1 > a:visited, .c-mediathekCard__caption > h2 > a:visited, .c-mediathekCard__caption > h3 > a:visited, .c-mediathekCard__caption > h4 > a:visited, .c-mediathekCard__caption > h5 > a:visited, .c-mediathekCard__caption > p > a:visited, .c-astlrSlider__caption > p > a:visited, .c-astlrSummary__copy > a:visited, .c-ausstellerRegistration__submittedData > table th > a:visited, .c-ausstellerRegistration__submittedData > table tr > a:visited, .typography p.small > a:visited, .typography table > a:visited, .c-form .message > a:visited, .c-videoEmbed__caption > strong > a:visited, .c-videoEmbed__caption > h1 > strong > a:visited, .c-videoEmbed__caption > h2 > strong > a:visited, .c-videoEmbed__caption > h3 > strong > a:visited, .c-videoEmbed__caption > h4 > strong > a:visited, .c-videoEmbed__caption > h5 > strong > a:visited, .c-videoEmbed__caption > p > strong > a:visited, .c-pollingTool__introtext > strong > a:visited, .c-mediathekCard__caption > strong > a:visited, .c-mediathekCard__caption > h1 > strong > a:visited, .c-mediathekCard__caption > h2 > strong > a:visited, .c-mediathekCard__caption > h3 > strong > a:visited, .c-mediathekCard__caption > h4 > strong > a:visited, .c-mediathekCard__caption > h5 > strong > a:visited, .c-mediathekCard__caption > p > strong > a:visited, .c-astlrSlider__caption > p > strong > a:visited, .c-astlrSummary__copy > strong > a:visited, .c-ausstellerRegistration__submittedData > table th > strong > a:visited, .c-ausstellerRegistration__submittedData > table tr > strong > a:visited, .typography p.small > strong > a:visited, .typography table > strong > a:visited, .c-form .message > strong > a:visited,
.c-videoEmbed__caption > em > a:visited,
.c-videoEmbed__caption > h1 > em > a:visited,
.c-videoEmbed__caption > h2 > em > a:visited,
.c-videoEmbed__caption > h3 > em > a:visited,
.c-videoEmbed__caption > h4 > em > a:visited,
.c-videoEmbed__caption > h5 > em > a:visited,
.c-videoEmbed__caption > p > em > a:visited,
.c-pollingTool__introtext > em > a:visited,
.c-mediathekCard__caption > em > a:visited,
.c-mediathekCard__caption > h1 > em > a:visited,
.c-mediathekCard__caption > h2 > em > a:visited,
.c-mediathekCard__caption > h3 > em > a:visited,
.c-mediathekCard__caption > h4 > em > a:visited,
.c-mediathekCard__caption > h5 > em > a:visited,
.c-mediathekCard__caption > p > em > a:visited,
.c-astlrSlider__caption > p > em > a:visited,
.c-astlrSummary__copy > em > a:visited,
.c-ausstellerRegistration__submittedData > table th > em > a:visited,
.c-ausstellerRegistration__submittedData > table tr > em > a:visited,
.typography p.small > em > a:visited,
.typography table > em > a:visited,
.c-form .message > em > a:visited, .c-elementalPublikationen__copystage > p > a:visited, .dropzone-holder.uploadable > p > a:visited, .c-schedule__copy > a:visited, .c-lightbox__subline > a:visited, .tobii__counter > a:visited, .tobii-image figure > figcaption > a:visited, .c-form .btn-toolbar > p > a:visited, .c-books__autor > a:visited, .c-books__copy > a:visited, .c-books__verlag > a:visited, .c-books__jahr > a:visited, .c-books__isbn > a:visited, .c-books__preis > a:visited, .c-books__link > a:visited, .c-astlrVideoDates__copy > a:visited, .c-astlrFileItems__link > a:visited, .c-astlrCopy__fieldname > a:visited, .c-astlrCopy__field > a:visited, .c-astlrCopy > p > a:visited, .c-astlrCopy__accordionHeader > a:visited, .c-astlrCopy__accordionField > a:visited, .c-astlrStage__note > p > a:visited, .c-astlrStage__uploader > p > a:visited, .c-anncmts__body > a:visited, .typography p > a:visited, .c-form label > a:visited, .c-form input.text > a:visited, .c-form input.textarea > a:visited,
.c-form textarea.text > a:visited,
.c-form textarea.textarea > a:visited, .c-form input[type=text] > a:visited,
.c-form input[type=password] > a:visited,
.c-form input[type=email] > a:visited,
.c-form input[type=url] > a:visited,
.c-form input[type=date] > a:visited,
.c-form input[type=month] > a:visited,
.c-form input[type=time] > a:visited,
.c-form input[type=datetime] > a:visited,
.c-form input[type=datetime-local] > a:visited,
.c-form input[type=week] > a:visited,
.c-form input[type=number] > a:visited,
.c-form input[type=search] > a:visited,
.c-form input[type=tel] > a:visited,
.c-form input[type=color] > a:visited,
.c-form textarea > a:visited, .c-form__checkbox label > a:visited, .c-form__dropdown > a:visited, .c-form__dropdown select > option > a:visited, .c-form__dropdown > label > a:visited, .typography ul > a:visited, .c-elementalPublikationen__copystage > p > strong > a:visited, .dropzone-holder.uploadable > p > strong > a:visited, .c-schedule__copy > strong > a:visited, .c-lightbox__subline > strong > a:visited, .tobii__counter > strong > a:visited, .tobii-image figure > figcaption > strong > a:visited, .c-form .btn-toolbar > p > strong > a:visited, .c-books__autor > strong > a:visited, .c-books__copy > strong > a:visited, .c-books__verlag > strong > a:visited, .c-books__jahr > strong > a:visited, .c-books__isbn > strong > a:visited, .c-books__preis > strong > a:visited, .c-books__link > strong > a:visited, .c-astlrVideoDates__copy > strong > a:visited, .c-astlrFileItems__link > strong > a:visited, .c-astlrCopy__fieldname > strong > a:visited, .c-astlrCopy__field > strong > a:visited, .c-astlrCopy > p > strong > a:visited, .c-astlrCopy__accordionHeader > strong > a:visited, .c-astlrCopy__accordionField > strong > a:visited, .c-astlrStage__note > p > strong > a:visited, .c-astlrStage__uploader > p > strong > a:visited, .c-anncmts__body > strong > a:visited, .typography p > strong > a:visited, .c-form label > strong > a:visited, .c-form input.text > strong > a:visited, .c-form input.textarea > strong > a:visited,
.c-form textarea.text > strong > a:visited,
.c-form textarea.textarea > strong > a:visited, .c-form input[type=text] > strong > a:visited,
.c-form input[type=password] > strong > a:visited,
.c-form input[type=email] > strong > a:visited,
.c-form input[type=url] > strong > a:visited,
.c-form input[type=date] > strong > a:visited,
.c-form input[type=month] > strong > a:visited,
.c-form input[type=time] > strong > a:visited,
.c-form input[type=datetime] > strong > a:visited,
.c-form input[type=datetime-local] > strong > a:visited,
.c-form input[type=week] > strong > a:visited,
.c-form input[type=number] > strong > a:visited,
.c-form input[type=search] > strong > a:visited,
.c-form input[type=tel] > strong > a:visited,
.c-form input[type=color] > strong > a:visited,
.c-form textarea > strong > a:visited, .c-form__checkbox label > strong > a:visited, .c-form__dropdown > strong > a:visited, .c-form__dropdown select > option > strong > a:visited, .c-form__dropdown > label > strong > a:visited, .typography ul > strong > a:visited,
.c-elementalPublikationen__copystage > p > em > a:visited,
.dropzone-holder.uploadable > p > em > a:visited,
.c-schedule__copy > em > a:visited,
.c-lightbox__subline > em > a:visited,
.tobii__counter > em > a:visited,
.tobii-image figure > figcaption > em > a:visited,
.c-form .btn-toolbar > p > em > a:visited,
.c-books__autor > em > a:visited,
.c-books__copy > em > a:visited,
.c-books__verlag > em > a:visited,
.c-books__jahr > em > a:visited,
.c-books__isbn > em > a:visited,
.c-books__preis > em > a:visited,
.c-books__link > em > a:visited,
.c-astlrVideoDates__copy > em > a:visited,
.c-astlrFileItems__link > em > a:visited,
.c-astlrCopy__fieldname > em > a:visited,
.c-astlrCopy__field > em > a:visited,
.c-astlrCopy > p > em > a:visited,
.c-astlrCopy__accordionHeader > em > a:visited,
.c-astlrCopy__accordionField > em > a:visited,
.c-astlrStage__note > p > em > a:visited,
.c-astlrStage__uploader > p > em > a:visited,
.c-anncmts__body > em > a:visited,
.typography p > em > a:visited,
.c-form label > em > a:visited,
.c-form input.text > em > a:visited,
.c-form input.textarea > em > a:visited,
.c-form textarea.text > em > a:visited,
.c-form textarea.textarea > em > a:visited,
.c-form input[type=text] > em > a:visited,
.c-form input[type=password] > em > a:visited,
.c-form input[type=email] > em > a:visited,
.c-form input[type=url] > em > a:visited,
.c-form input[type=date] > em > a:visited,
.c-form input[type=month] > em > a:visited,
.c-form input[type=time] > em > a:visited,
.c-form input[type=datetime] > em > a:visited,
.c-form input[type=datetime-local] > em > a:visited,
.c-form input[type=week] > em > a:visited,
.c-form input[type=number] > em > a:visited,
.c-form input[type=search] > em > a:visited,
.c-form input[type=tel] > em > a:visited,
.c-form input[type=color] > em > a:visited,
.c-form textarea > em > a:visited,
.c-form__checkbox label > em > a:visited,
.c-form__dropdown > em > a:visited,
.c-form__dropdown select > option > em > a:visited,
.c-form__dropdown > label > em > a:visited,
.typography ul > em > a:visited {
  color: var(--color-link--visited);
}
.c-form h1 > a:hover, .c-elementalSimpleContent__headline > h1 > a:hover, .c-elementalSimpleContent__copy > h1 > a:hover, .c-astlrStage__uploader > h2 > a:hover, .typography h1 > a:hover, .c-elementalPublikationen__headline > h2 > a:hover, .c-form h2 > a:hover, .c-elementalSimpleContent__headline > h2 > a:hover, .c-elementalSimpleContent__copy > h2 > a:hover, .c-astlrABC__letter > a:hover, .c-astlrCopy__orgaName > a:hover, .c-astlrStage__orgaName > a:hover, .typography h2 > a:hover, .c-elementalPublikationen__headline > h3 > a:hover, .c-mediathek__headline > a:hover, .c-lightbox__headline > a:hover, .c-form h3 > a:hover, .c-faqAccordion__title > a:hover, .c-elementalPlansGrid__headline > h2 > a:hover, .c-elementalPlanRoom__headline > h2 > a:hover, .c-astlrSlider__header > a:hover, .c-astlrVideoDates__headline > a:hover, .c-astlrSummary__title > a:hover, .c-astlrSummary__bu > a:hover, .c-ausstellerRegistration__submittedData > h2 > a:hover, .c-astlrStage__errorMessage > a:hover, .typography h3 > a:hover, .c-elementalPublikationen__copystage > h4 > a:hover, .c-schedule__headline > a:hover, .c-heroHome__stage-right > p > a:hover, .c-form h4 > a:hover, .c-faqAccordion__subtitle > a:hover, .c-elementalPlansGrid__imgTitle > a:hover, .c-elementalPlanRoom__headline > h3 > a:hover, .c-books__titel > a:hover, .c-ausstellerRegistration__submittedData > h3 > a:hover, .c-astlrStage__note > h5 > a:hover, .c-page__subheadline > a:hover, .typography h4 > a:hover, .c-pollingTool__headline > a:hover, .c-liveVideoGallery__title > a:hover, .c-liveVideoMain__title > a:hover, .c-icons__legendhead--kurzfristigEng > a:hover, .c-icons__legendhead--digitalesEng > a:hover, .c-icons__legendhead--bfd > a:hover, .c-form h5 > a:hover, .c-elementalPlansGrid__headline > h3 > a:hover, .c-astlrABC__filterheadline > a:hover, .c-astlrSummary__headline > a:hover, .c-astlrSummary__iconholder > h3 > a:hover, .c-astlrFileItems__headline > a:hover, .c-anncmts__topline > a:hover, .c-anncmts__headline > a:hover, .typography h5 > a:hover, .c-elementalPlanRoom__standnr > a:hover, .c-books__subtitel > a:hover, .c-astlrSlider__caption > h2 > a:hover, .c-astlrSlider__caption > h3 > a:hover, .c-astlrVideoDates__orgaName > a:hover, .typography h6 > a:hover, .typography p.intro > a:hover, .c-videoEmbed__caption > a:hover, .c-videoEmbed__caption > h1 > a:hover, .c-videoEmbed__caption > h2 > a:hover, .c-videoEmbed__caption > h3 > a:hover, .c-videoEmbed__caption > h4 > a:hover, .c-videoEmbed__caption > h5 > a:hover, .c-videoEmbed__caption > p > a:hover, .c-pollingTool__introtext > a:hover, .c-mediathekCard__caption > a:hover, .c-mediathekCard__caption > h1 > a:hover, .c-mediathekCard__caption > h2 > a:hover, .c-mediathekCard__caption > h3 > a:hover, .c-mediathekCard__caption > h4 > a:hover, .c-mediathekCard__caption > h5 > a:hover, .c-mediathekCard__caption > p > a:hover, .c-astlrSlider__caption > p > a:hover, .c-astlrSummary__copy > a:hover, .c-ausstellerRegistration__submittedData > table th > a:hover, .c-ausstellerRegistration__submittedData > table tr > a:hover, .typography p.small > a:hover, .typography table > a:hover, .c-form .message > a:hover, .c-videoEmbed__caption > strong > a:hover, .c-videoEmbed__caption > h1 > strong > a:hover, .c-videoEmbed__caption > h2 > strong > a:hover, .c-videoEmbed__caption > h3 > strong > a:hover, .c-videoEmbed__caption > h4 > strong > a:hover, .c-videoEmbed__caption > h5 > strong > a:hover, .c-videoEmbed__caption > p > strong > a:hover, .c-pollingTool__introtext > strong > a:hover, .c-mediathekCard__caption > strong > a:hover, .c-mediathekCard__caption > h1 > strong > a:hover, .c-mediathekCard__caption > h2 > strong > a:hover, .c-mediathekCard__caption > h3 > strong > a:hover, .c-mediathekCard__caption > h4 > strong > a:hover, .c-mediathekCard__caption > h5 > strong > a:hover, .c-mediathekCard__caption > p > strong > a:hover, .c-astlrSlider__caption > p > strong > a:hover, .c-astlrSummary__copy > strong > a:hover, .c-ausstellerRegistration__submittedData > table th > strong > a:hover, .c-ausstellerRegistration__submittedData > table tr > strong > a:hover, .typography p.small > strong > a:hover, .typography table > strong > a:hover, .c-form .message > strong > a:hover,
.c-videoEmbed__caption > em > a:hover,
.c-videoEmbed__caption > h1 > em > a:hover,
.c-videoEmbed__caption > h2 > em > a:hover,
.c-videoEmbed__caption > h3 > em > a:hover,
.c-videoEmbed__caption > h4 > em > a:hover,
.c-videoEmbed__caption > h5 > em > a:hover,
.c-videoEmbed__caption > p > em > a:hover,
.c-pollingTool__introtext > em > a:hover,
.c-mediathekCard__caption > em > a:hover,
.c-mediathekCard__caption > h1 > em > a:hover,
.c-mediathekCard__caption > h2 > em > a:hover,
.c-mediathekCard__caption > h3 > em > a:hover,
.c-mediathekCard__caption > h4 > em > a:hover,
.c-mediathekCard__caption > h5 > em > a:hover,
.c-mediathekCard__caption > p > em > a:hover,
.c-astlrSlider__caption > p > em > a:hover,
.c-astlrSummary__copy > em > a:hover,
.c-ausstellerRegistration__submittedData > table th > em > a:hover,
.c-ausstellerRegistration__submittedData > table tr > em > a:hover,
.typography p.small > em > a:hover,
.typography table > em > a:hover,
.c-form .message > em > a:hover, .c-elementalPublikationen__copystage > p > a:hover, .dropzone-holder.uploadable > p > a:hover, .c-schedule__copy > a:hover, .c-lightbox__subline > a:hover, .tobii__counter > a:hover, .tobii-image figure > figcaption > a:hover, .c-form .btn-toolbar > p > a:hover, .c-books__autor > a:hover, .c-books__copy > a:hover, .c-books__verlag > a:hover, .c-books__jahr > a:hover, .c-books__isbn > a:hover, .c-books__preis > a:hover, .c-books__link > a:hover, .c-astlrVideoDates__copy > a:hover, .c-astlrFileItems__link > a:hover, .c-astlrCopy__fieldname > a:hover, .c-astlrCopy__field > a:hover, .c-astlrCopy > p > a:hover, .c-astlrCopy__accordionHeader > a:hover, .c-astlrCopy__accordionField > a:hover, .c-astlrStage__note > p > a:hover, .c-astlrStage__uploader > p > a:hover, .c-anncmts__body > a:hover, .typography p > a:hover, .c-form label > a:hover, .c-form input.text > a:hover, .c-form input.textarea > a:hover,
.c-form textarea.text > a:hover,
.c-form textarea.textarea > a:hover, .c-form input[type=text] > a:hover,
.c-form input[type=password] > a:hover,
.c-form input[type=email] > a:hover,
.c-form input[type=url] > a:hover,
.c-form input[type=date] > a:hover,
.c-form input[type=month] > a:hover,
.c-form input[type=time] > a:hover,
.c-form input[type=datetime] > a:hover,
.c-form input[type=datetime-local] > a:hover,
.c-form input[type=week] > a:hover,
.c-form input[type=number] > a:hover,
.c-form input[type=search] > a:hover,
.c-form input[type=tel] > a:hover,
.c-form input[type=color] > a:hover,
.c-form textarea > a:hover, .c-form__checkbox label > a:hover, .c-form__dropdown > a:hover, .c-form__dropdown select > option > a:hover, .c-form__dropdown > label > a:hover, .typography ul > a:hover, .c-elementalPublikationen__copystage > p > strong > a:hover, .dropzone-holder.uploadable > p > strong > a:hover, .c-schedule__copy > strong > a:hover, .c-lightbox__subline > strong > a:hover, .tobii__counter > strong > a:hover, .tobii-image figure > figcaption > strong > a:hover, .c-form .btn-toolbar > p > strong > a:hover, .c-books__autor > strong > a:hover, .c-books__copy > strong > a:hover, .c-books__verlag > strong > a:hover, .c-books__jahr > strong > a:hover, .c-books__isbn > strong > a:hover, .c-books__preis > strong > a:hover, .c-books__link > strong > a:hover, .c-astlrVideoDates__copy > strong > a:hover, .c-astlrFileItems__link > strong > a:hover, .c-astlrCopy__fieldname > strong > a:hover, .c-astlrCopy__field > strong > a:hover, .c-astlrCopy > p > strong > a:hover, .c-astlrCopy__accordionHeader > strong > a:hover, .c-astlrCopy__accordionField > strong > a:hover, .c-astlrStage__note > p > strong > a:hover, .c-astlrStage__uploader > p > strong > a:hover, .c-anncmts__body > strong > a:hover, .typography p > strong > a:hover, .c-form label > strong > a:hover, .c-form input.text > strong > a:hover, .c-form input.textarea > strong > a:hover,
.c-form textarea.text > strong > a:hover,
.c-form textarea.textarea > strong > a:hover, .c-form input[type=text] > strong > a:hover,
.c-form input[type=password] > strong > a:hover,
.c-form input[type=email] > strong > a:hover,
.c-form input[type=url] > strong > a:hover,
.c-form input[type=date] > strong > a:hover,
.c-form input[type=month] > strong > a:hover,
.c-form input[type=time] > strong > a:hover,
.c-form input[type=datetime] > strong > a:hover,
.c-form input[type=datetime-local] > strong > a:hover,
.c-form input[type=week] > strong > a:hover,
.c-form input[type=number] > strong > a:hover,
.c-form input[type=search] > strong > a:hover,
.c-form input[type=tel] > strong > a:hover,
.c-form input[type=color] > strong > a:hover,
.c-form textarea > strong > a:hover, .c-form__checkbox label > strong > a:hover, .c-form__dropdown > strong > a:hover, .c-form__dropdown select > option > strong > a:hover, .c-form__dropdown > label > strong > a:hover, .typography ul > strong > a:hover,
.c-elementalPublikationen__copystage > p > em > a:hover,
.dropzone-holder.uploadable > p > em > a:hover,
.c-schedule__copy > em > a:hover,
.c-lightbox__subline > em > a:hover,
.tobii__counter > em > a:hover,
.tobii-image figure > figcaption > em > a:hover,
.c-form .btn-toolbar > p > em > a:hover,
.c-books__autor > em > a:hover,
.c-books__copy > em > a:hover,
.c-books__verlag > em > a:hover,
.c-books__jahr > em > a:hover,
.c-books__isbn > em > a:hover,
.c-books__preis > em > a:hover,
.c-books__link > em > a:hover,
.c-astlrVideoDates__copy > em > a:hover,
.c-astlrFileItems__link > em > a:hover,
.c-astlrCopy__fieldname > em > a:hover,
.c-astlrCopy__field > em > a:hover,
.c-astlrCopy > p > em > a:hover,
.c-astlrCopy__accordionHeader > em > a:hover,
.c-astlrCopy__accordionField > em > a:hover,
.c-astlrStage__note > p > em > a:hover,
.c-astlrStage__uploader > p > em > a:hover,
.c-anncmts__body > em > a:hover,
.typography p > em > a:hover,
.c-form label > em > a:hover,
.c-form input.text > em > a:hover,
.c-form input.textarea > em > a:hover,
.c-form textarea.text > em > a:hover,
.c-form textarea.textarea > em > a:hover,
.c-form input[type=text] > em > a:hover,
.c-form input[type=password] > em > a:hover,
.c-form input[type=email] > em > a:hover,
.c-form input[type=url] > em > a:hover,
.c-form input[type=date] > em > a:hover,
.c-form input[type=month] > em > a:hover,
.c-form input[type=time] > em > a:hover,
.c-form input[type=datetime] > em > a:hover,
.c-form input[type=datetime-local] > em > a:hover,
.c-form input[type=week] > em > a:hover,
.c-form input[type=number] > em > a:hover,
.c-form input[type=search] > em > a:hover,
.c-form input[type=tel] > em > a:hover,
.c-form input[type=color] > em > a:hover,
.c-form textarea > em > a:hover,
.c-form__checkbox label > em > a:hover,
.c-form__dropdown > em > a:hover,
.c-form__dropdown select > option > em > a:hover,
.c-form__dropdown > label > em > a:hover,
.typography ul > em > a:hover {
  color: var(--color-link--focus);
}
.c-form h1 > a:active, .c-elementalSimpleContent__headline > h1 > a:active, .c-elementalSimpleContent__copy > h1 > a:active, .c-astlrStage__uploader > h2 > a:active, .typography h1 > a:active, .c-elementalPublikationen__headline > h2 > a:active, .c-form h2 > a:active, .c-elementalSimpleContent__headline > h2 > a:active, .c-elementalSimpleContent__copy > h2 > a:active, .c-astlrABC__letter > a:active, .c-astlrCopy__orgaName > a:active, .c-astlrStage__orgaName > a:active, .typography h2 > a:active, .c-elementalPublikationen__headline > h3 > a:active, .c-mediathek__headline > a:active, .c-lightbox__headline > a:active, .c-form h3 > a:active, .c-faqAccordion__title > a:active, .c-elementalPlansGrid__headline > h2 > a:active, .c-elementalPlanRoom__headline > h2 > a:active, .c-astlrSlider__header > a:active, .c-astlrVideoDates__headline > a:active, .c-astlrSummary__title > a:active, .c-astlrSummary__bu > a:active, .c-ausstellerRegistration__submittedData > h2 > a:active, .c-astlrStage__errorMessage > a:active, .typography h3 > a:active, .c-elementalPublikationen__copystage > h4 > a:active, .c-schedule__headline > a:active, .c-heroHome__stage-right > p > a:active, .c-form h4 > a:active, .c-faqAccordion__subtitle > a:active, .c-elementalPlansGrid__imgTitle > a:active, .c-elementalPlanRoom__headline > h3 > a:active, .c-books__titel > a:active, .c-ausstellerRegistration__submittedData > h3 > a:active, .c-astlrStage__note > h5 > a:active, .c-page__subheadline > a:active, .typography h4 > a:active, .c-pollingTool__headline > a:active, .c-liveVideoGallery__title > a:active, .c-liveVideoMain__title > a:active, .c-icons__legendhead--kurzfristigEng > a:active, .c-icons__legendhead--digitalesEng > a:active, .c-icons__legendhead--bfd > a:active, .c-form h5 > a:active, .c-elementalPlansGrid__headline > h3 > a:active, .c-astlrABC__filterheadline > a:active, .c-astlrSummary__headline > a:active, .c-astlrSummary__iconholder > h3 > a:active, .c-astlrFileItems__headline > a:active, .c-anncmts__topline > a:active, .c-anncmts__headline > a:active, .typography h5 > a:active, .c-elementalPlanRoom__standnr > a:active, .c-books__subtitel > a:active, .c-astlrSlider__caption > h2 > a:active, .c-astlrSlider__caption > h3 > a:active, .c-astlrVideoDates__orgaName > a:active, .typography h6 > a:active, .typography p.intro > a:active, .c-videoEmbed__caption > a:active, .c-videoEmbed__caption > h1 > a:active, .c-videoEmbed__caption > h2 > a:active, .c-videoEmbed__caption > h3 > a:active, .c-videoEmbed__caption > h4 > a:active, .c-videoEmbed__caption > h5 > a:active, .c-videoEmbed__caption > p > a:active, .c-pollingTool__introtext > a:active, .c-mediathekCard__caption > a:active, .c-mediathekCard__caption > h1 > a:active, .c-mediathekCard__caption > h2 > a:active, .c-mediathekCard__caption > h3 > a:active, .c-mediathekCard__caption > h4 > a:active, .c-mediathekCard__caption > h5 > a:active, .c-mediathekCard__caption > p > a:active, .c-astlrSlider__caption > p > a:active, .c-astlrSummary__copy > a:active, .c-ausstellerRegistration__submittedData > table th > a:active, .c-ausstellerRegistration__submittedData > table tr > a:active, .typography p.small > a:active, .typography table > a:active, .c-form .message > a:active, .c-videoEmbed__caption > strong > a:active, .c-videoEmbed__caption > h1 > strong > a:active, .c-videoEmbed__caption > h2 > strong > a:active, .c-videoEmbed__caption > h3 > strong > a:active, .c-videoEmbed__caption > h4 > strong > a:active, .c-videoEmbed__caption > h5 > strong > a:active, .c-videoEmbed__caption > p > strong > a:active, .c-pollingTool__introtext > strong > a:active, .c-mediathekCard__caption > strong > a:active, .c-mediathekCard__caption > h1 > strong > a:active, .c-mediathekCard__caption > h2 > strong > a:active, .c-mediathekCard__caption > h3 > strong > a:active, .c-mediathekCard__caption > h4 > strong > a:active, .c-mediathekCard__caption > h5 > strong > a:active, .c-mediathekCard__caption > p > strong > a:active, .c-astlrSlider__caption > p > strong > a:active, .c-astlrSummary__copy > strong > a:active, .c-ausstellerRegistration__submittedData > table th > strong > a:active, .c-ausstellerRegistration__submittedData > table tr > strong > a:active, .typography p.small > strong > a:active, .typography table > strong > a:active, .c-form .message > strong > a:active,
.c-videoEmbed__caption > em > a:active,
.c-videoEmbed__caption > h1 > em > a:active,
.c-videoEmbed__caption > h2 > em > a:active,
.c-videoEmbed__caption > h3 > em > a:active,
.c-videoEmbed__caption > h4 > em > a:active,
.c-videoEmbed__caption > h5 > em > a:active,
.c-videoEmbed__caption > p > em > a:active,
.c-pollingTool__introtext > em > a:active,
.c-mediathekCard__caption > em > a:active,
.c-mediathekCard__caption > h1 > em > a:active,
.c-mediathekCard__caption > h2 > em > a:active,
.c-mediathekCard__caption > h3 > em > a:active,
.c-mediathekCard__caption > h4 > em > a:active,
.c-mediathekCard__caption > h5 > em > a:active,
.c-mediathekCard__caption > p > em > a:active,
.c-astlrSlider__caption > p > em > a:active,
.c-astlrSummary__copy > em > a:active,
.c-ausstellerRegistration__submittedData > table th > em > a:active,
.c-ausstellerRegistration__submittedData > table tr > em > a:active,
.typography p.small > em > a:active,
.typography table > em > a:active,
.c-form .message > em > a:active, .c-elementalPublikationen__copystage > p > a:active, .dropzone-holder.uploadable > p > a:active, .c-schedule__copy > a:active, .c-lightbox__subline > a:active, .tobii__counter > a:active, .tobii-image figure > figcaption > a:active, .c-form .btn-toolbar > p > a:active, .c-books__autor > a:active, .c-books__copy > a:active, .c-books__verlag > a:active, .c-books__jahr > a:active, .c-books__isbn > a:active, .c-books__preis > a:active, .c-books__link > a:active, .c-astlrVideoDates__copy > a:active, .c-astlrFileItems__link > a:active, .c-astlrCopy__fieldname > a:active, .c-astlrCopy__field > a:active, .c-astlrCopy > p > a:active, .c-astlrCopy__accordionHeader > a:active, .c-astlrCopy__accordionField > a:active, .c-astlrStage__note > p > a:active, .c-astlrStage__uploader > p > a:active, .c-anncmts__body > a:active, .typography p > a:active, .c-form label > a:active, .c-form input.text > a:active, .c-form input.textarea > a:active,
.c-form textarea.text > a:active,
.c-form textarea.textarea > a:active, .c-form input[type=text] > a:active,
.c-form input[type=password] > a:active,
.c-form input[type=email] > a:active,
.c-form input[type=url] > a:active,
.c-form input[type=date] > a:active,
.c-form input[type=month] > a:active,
.c-form input[type=time] > a:active,
.c-form input[type=datetime] > a:active,
.c-form input[type=datetime-local] > a:active,
.c-form input[type=week] > a:active,
.c-form input[type=number] > a:active,
.c-form input[type=search] > a:active,
.c-form input[type=tel] > a:active,
.c-form input[type=color] > a:active,
.c-form textarea > a:active, .c-form__checkbox label > a:active, .c-form__dropdown > a:active, .c-form__dropdown select > option > a:active, .c-form__dropdown > label > a:active, .typography ul > a:active, .c-elementalPublikationen__copystage > p > strong > a:active, .dropzone-holder.uploadable > p > strong > a:active, .c-schedule__copy > strong > a:active, .c-lightbox__subline > strong > a:active, .tobii__counter > strong > a:active, .tobii-image figure > figcaption > strong > a:active, .c-form .btn-toolbar > p > strong > a:active, .c-books__autor > strong > a:active, .c-books__copy > strong > a:active, .c-books__verlag > strong > a:active, .c-books__jahr > strong > a:active, .c-books__isbn > strong > a:active, .c-books__preis > strong > a:active, .c-books__link > strong > a:active, .c-astlrVideoDates__copy > strong > a:active, .c-astlrFileItems__link > strong > a:active, .c-astlrCopy__fieldname > strong > a:active, .c-astlrCopy__field > strong > a:active, .c-astlrCopy > p > strong > a:active, .c-astlrCopy__accordionHeader > strong > a:active, .c-astlrCopy__accordionField > strong > a:active, .c-astlrStage__note > p > strong > a:active, .c-astlrStage__uploader > p > strong > a:active, .c-anncmts__body > strong > a:active, .typography p > strong > a:active, .c-form label > strong > a:active, .c-form input.text > strong > a:active, .c-form input.textarea > strong > a:active,
.c-form textarea.text > strong > a:active,
.c-form textarea.textarea > strong > a:active, .c-form input[type=text] > strong > a:active,
.c-form input[type=password] > strong > a:active,
.c-form input[type=email] > strong > a:active,
.c-form input[type=url] > strong > a:active,
.c-form input[type=date] > strong > a:active,
.c-form input[type=month] > strong > a:active,
.c-form input[type=time] > strong > a:active,
.c-form input[type=datetime] > strong > a:active,
.c-form input[type=datetime-local] > strong > a:active,
.c-form input[type=week] > strong > a:active,
.c-form input[type=number] > strong > a:active,
.c-form input[type=search] > strong > a:active,
.c-form input[type=tel] > strong > a:active,
.c-form input[type=color] > strong > a:active,
.c-form textarea > strong > a:active, .c-form__checkbox label > strong > a:active, .c-form__dropdown > strong > a:active, .c-form__dropdown select > option > strong > a:active, .c-form__dropdown > label > strong > a:active, .typography ul > strong > a:active,
.c-elementalPublikationen__copystage > p > em > a:active,
.dropzone-holder.uploadable > p > em > a:active,
.c-schedule__copy > em > a:active,
.c-lightbox__subline > em > a:active,
.tobii__counter > em > a:active,
.tobii-image figure > figcaption > em > a:active,
.c-form .btn-toolbar > p > em > a:active,
.c-books__autor > em > a:active,
.c-books__copy > em > a:active,
.c-books__verlag > em > a:active,
.c-books__jahr > em > a:active,
.c-books__isbn > em > a:active,
.c-books__preis > em > a:active,
.c-books__link > em > a:active,
.c-astlrVideoDates__copy > em > a:active,
.c-astlrFileItems__link > em > a:active,
.c-astlrCopy__fieldname > em > a:active,
.c-astlrCopy__field > em > a:active,
.c-astlrCopy > p > em > a:active,
.c-astlrCopy__accordionHeader > em > a:active,
.c-astlrCopy__accordionField > em > a:active,
.c-astlrStage__note > p > em > a:active,
.c-astlrStage__uploader > p > em > a:active,
.c-anncmts__body > em > a:active,
.typography p > em > a:active,
.c-form label > em > a:active,
.c-form input.text > em > a:active,
.c-form input.textarea > em > a:active,
.c-form textarea.text > em > a:active,
.c-form textarea.textarea > em > a:active,
.c-form input[type=text] > em > a:active,
.c-form input[type=password] > em > a:active,
.c-form input[type=email] > em > a:active,
.c-form input[type=url] > em > a:active,
.c-form input[type=date] > em > a:active,
.c-form input[type=month] > em > a:active,
.c-form input[type=time] > em > a:active,
.c-form input[type=datetime] > em > a:active,
.c-form input[type=datetime-local] > em > a:active,
.c-form input[type=week] > em > a:active,
.c-form input[type=number] > em > a:active,
.c-form input[type=search] > em > a:active,
.c-form input[type=tel] > em > a:active,
.c-form input[type=color] > em > a:active,
.c-form textarea > em > a:active,
.c-form__checkbox label > em > a:active,
.c-form__dropdown > em > a:active,
.c-form__dropdown select > option > em > a:active,
.c-form__dropdown > label > em > a:active,
.typography ul > em > a:active {
  color: var(--color-link--active);
}
.c-footer__typo > a[href^=mailto]:before, .c-footer__address > p > a[href^=mailto]:before, .c-videoEmbed__caption > strong > a[href^=mailto]:before, .c-videoEmbed__caption > h1 > strong > a[href^=mailto]:before, .c-videoEmbed__caption > h2 > strong > a[href^=mailto]:before, .c-videoEmbed__caption > h3 > strong > a[href^=mailto]:before, .c-videoEmbed__caption > h4 > strong > a[href^=mailto]:before, .c-videoEmbed__caption > h5 > strong > a[href^=mailto]:before, .c-videoEmbed__caption > p > strong > a[href^=mailto]:before, .c-pollingTool__introtext > strong > a[href^=mailto]:before, .c-mediathekCard__caption > strong > a[href^=mailto]:before, .c-mediathekCard__caption > h1 > strong > a[href^=mailto]:before, .c-mediathekCard__caption > h2 > strong > a[href^=mailto]:before, .c-mediathekCard__caption > h3 > strong > a[href^=mailto]:before, .c-mediathekCard__caption > h4 > strong > a[href^=mailto]:before, .c-mediathekCard__caption > h5 > strong > a[href^=mailto]:before, .c-mediathekCard__caption > p > strong > a[href^=mailto]:before, .c-astlrSlider__caption > p > strong > a[href^=mailto]:before, .c-astlrSummary__copy > strong > a[href^=mailto]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href^=mailto]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href^=mailto]:before, .typography p.small > strong > a[href^=mailto]:before, .typography table > strong > a[href^=mailto]:before, .c-form .message > strong > a[href^=mailto]:before,
.c-videoEmbed__caption > em > a[href^=mailto]:before,
.c-videoEmbed__caption > h1 > em > a[href^=mailto]:before,
.c-videoEmbed__caption > h2 > em > a[href^=mailto]:before,
.c-videoEmbed__caption > h3 > em > a[href^=mailto]:before,
.c-videoEmbed__caption > h4 > em > a[href^=mailto]:before,
.c-videoEmbed__caption > h5 > em > a[href^=mailto]:before,
.c-videoEmbed__caption > p > em > a[href^=mailto]:before,
.c-pollingTool__introtext > em > a[href^=mailto]:before,
.c-mediathekCard__caption > em > a[href^=mailto]:before,
.c-mediathekCard__caption > h1 > em > a[href^=mailto]:before,
.c-mediathekCard__caption > h2 > em > a[href^=mailto]:before,
.c-mediathekCard__caption > h3 > em > a[href^=mailto]:before,
.c-mediathekCard__caption > h4 > em > a[href^=mailto]:before,
.c-mediathekCard__caption > h5 > em > a[href^=mailto]:before,
.c-mediathekCard__caption > p > em > a[href^=mailto]:before,
.c-astlrSlider__caption > p > em > a[href^=mailto]:before,
.c-astlrSummary__copy > em > a[href^=mailto]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href^=mailto]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href^=mailto]:before,
.typography p.small > em > a[href^=mailto]:before,
.typography table > em > a[href^=mailto]:before,
.c-form .message > em > a[href^=mailto]:before, .c-elementalPublikationen__copystage > p > a[href^=mailto]:before, .dropzone-holder.uploadable > p > a[href^=mailto]:before, .c-schedule__copy > a[href^=mailto]:before, .c-lightbox__subline > a[href^=mailto]:before, .tobii__counter > a[href^=mailto]:before, .tobii-image figure > figcaption > a[href^=mailto]:before, .c-form .btn-toolbar > p > a[href^=mailto]:before, .c-books__autor > a[href^=mailto]:before, .c-books__copy > a[href^=mailto]:before, .c-books__verlag > a[href^=mailto]:before, .c-books__jahr > a[href^=mailto]:before, .c-books__isbn > a[href^=mailto]:before, .c-books__preis > a[href^=mailto]:before, .c-books__link > a[href^=mailto]:before, .c-astlrVideoDates__copy > a[href^=mailto]:before, .c-astlrFileItems__link > a[href^=mailto]:before, .c-astlrCopy__fieldname > a[href^=mailto]:before, .c-astlrCopy__field > a[href^=mailto]:before, .c-astlrCopy > p > a[href^=mailto]:before, .c-astlrCopy__accordionHeader > a[href^=mailto]:before, .c-astlrCopy__accordionField > a[href^=mailto]:before, .c-astlrStage__note > p > a[href^=mailto]:before, .c-astlrStage__uploader > p > a[href^=mailto]:before, .c-anncmts__body > a[href^=mailto]:before, .typography p > a[href^=mailto]:before, .c-form label > a[href^=mailto]:before, .c-form input.text > a[href^=mailto]:before, .c-form input.textarea > a[href^=mailto]:before,
.c-form textarea.text > a[href^=mailto]:before,
.c-form textarea.textarea > a[href^=mailto]:before, .c-form input[type=text] > a[href^=mailto]:before,
.c-form input[type=password] > a[href^=mailto]:before,
.c-form input[type=email] > a[href^=mailto]:before,
.c-form input[type=url] > a[href^=mailto]:before,
.c-form input[type=date] > a[href^=mailto]:before,
.c-form input[type=month] > a[href^=mailto]:before,
.c-form input[type=time] > a[href^=mailto]:before,
.c-form input[type=datetime] > a[href^=mailto]:before,
.c-form input[type=datetime-local] > a[href^=mailto]:before,
.c-form input[type=week] > a[href^=mailto]:before,
.c-form input[type=number] > a[href^=mailto]:before,
.c-form input[type=search] > a[href^=mailto]:before,
.c-form input[type=tel] > a[href^=mailto]:before,
.c-form input[type=color] > a[href^=mailto]:before,
.c-form textarea > a[href^=mailto]:before, .c-form__checkbox label > a[href^=mailto]:before, .c-form__dropdown > a[href^=mailto]:before, .c-form__dropdown select > option > a[href^=mailto]:before, .c-form__dropdown > label > a[href^=mailto]:before, .typography ul > a[href^=mailto]:before, .c-elementalPublikationen__copystage > p > strong > a[href^=mailto]:before, .dropzone-holder.uploadable > p > strong > a[href^=mailto]:before, .c-schedule__copy > strong > a[href^=mailto]:before, .c-lightbox__subline > strong > a[href^=mailto]:before, .tobii__counter > strong > a[href^=mailto]:before, .tobii-image figure > figcaption > strong > a[href^=mailto]:before, .c-form .btn-toolbar > p > strong > a[href^=mailto]:before, .c-books__autor > strong > a[href^=mailto]:before, .c-books__copy > strong > a[href^=mailto]:before, .c-books__verlag > strong > a[href^=mailto]:before, .c-books__jahr > strong > a[href^=mailto]:before, .c-books__isbn > strong > a[href^=mailto]:before, .c-books__preis > strong > a[href^=mailto]:before, .c-books__link > strong > a[href^=mailto]:before, .c-astlrVideoDates__copy > strong > a[href^=mailto]:before, .c-astlrFileItems__link > strong > a[href^=mailto]:before, .c-astlrCopy__fieldname > strong > a[href^=mailto]:before, .c-astlrCopy__field > strong > a[href^=mailto]:before, .c-astlrCopy > p > strong > a[href^=mailto]:before, .c-astlrCopy__accordionHeader > strong > a[href^=mailto]:before, .c-astlrCopy__accordionField > strong > a[href^=mailto]:before, .c-astlrStage__note > p > strong > a[href^=mailto]:before, .c-astlrStage__uploader > p > strong > a[href^=mailto]:before, .c-anncmts__body > strong > a[href^=mailto]:before, .typography p > strong > a[href^=mailto]:before, .c-form label > strong > a[href^=mailto]:before, .c-form input.text > strong > a[href^=mailto]:before, .c-form input.textarea > strong > a[href^=mailto]:before,
.c-form textarea.text > strong > a[href^=mailto]:before,
.c-form textarea.textarea > strong > a[href^=mailto]:before, .c-form input[type=text] > strong > a[href^=mailto]:before,
.c-form input[type=password] > strong > a[href^=mailto]:before,
.c-form input[type=email] > strong > a[href^=mailto]:before,
.c-form input[type=url] > strong > a[href^=mailto]:before,
.c-form input[type=date] > strong > a[href^=mailto]:before,
.c-form input[type=month] > strong > a[href^=mailto]:before,
.c-form input[type=time] > strong > a[href^=mailto]:before,
.c-form input[type=datetime] > strong > a[href^=mailto]:before,
.c-form input[type=datetime-local] > strong > a[href^=mailto]:before,
.c-form input[type=week] > strong > a[href^=mailto]:before,
.c-form input[type=number] > strong > a[href^=mailto]:before,
.c-form input[type=search] > strong > a[href^=mailto]:before,
.c-form input[type=tel] > strong > a[href^=mailto]:before,
.c-form input[type=color] > strong > a[href^=mailto]:before,
.c-form textarea > strong > a[href^=mailto]:before, .c-form__checkbox label > strong > a[href^=mailto]:before, .c-form__dropdown > strong > a[href^=mailto]:before, .c-form__dropdown select > option > strong > a[href^=mailto]:before, .c-form__dropdown > label > strong > a[href^=mailto]:before, .typography ul > strong > a[href^=mailto]:before,
.c-elementalPublikationen__copystage > p > em > a[href^=mailto]:before,
.dropzone-holder.uploadable > p > em > a[href^=mailto]:before,
.c-schedule__copy > em > a[href^=mailto]:before,
.c-lightbox__subline > em > a[href^=mailto]:before,
.tobii__counter > em > a[href^=mailto]:before,
.tobii-image figure > figcaption > em > a[href^=mailto]:before,
.c-form .btn-toolbar > p > em > a[href^=mailto]:before,
.c-books__autor > em > a[href^=mailto]:before,
.c-books__copy > em > a[href^=mailto]:before,
.c-books__verlag > em > a[href^=mailto]:before,
.c-books__jahr > em > a[href^=mailto]:before,
.c-books__isbn > em > a[href^=mailto]:before,
.c-books__preis > em > a[href^=mailto]:before,
.c-books__link > em > a[href^=mailto]:before,
.c-astlrVideoDates__copy > em > a[href^=mailto]:before,
.c-astlrFileItems__link > em > a[href^=mailto]:before,
.c-astlrCopy__fieldname > em > a[href^=mailto]:before,
.c-astlrCopy__field > em > a[href^=mailto]:before,
.c-astlrCopy > p > em > a[href^=mailto]:before,
.c-astlrCopy__accordionHeader > em > a[href^=mailto]:before,
.c-astlrCopy__accordionField > em > a[href^=mailto]:before,
.c-astlrStage__note > p > em > a[href^=mailto]:before,
.c-astlrStage__uploader > p > em > a[href^=mailto]:before,
.c-anncmts__body > em > a[href^=mailto]:before,
.typography p > em > a[href^=mailto]:before,
.c-form label > em > a[href^=mailto]:before,
.c-form input.text > em > a[href^=mailto]:before,
.c-form input.textarea > em > a[href^=mailto]:before,
.c-form textarea.text > em > a[href^=mailto]:before,
.c-form textarea.textarea > em > a[href^=mailto]:before,
.c-form input[type=text] > em > a[href^=mailto]:before,
.c-form input[type=password] > em > a[href^=mailto]:before,
.c-form input[type=email] > em > a[href^=mailto]:before,
.c-form input[type=url] > em > a[href^=mailto]:before,
.c-form input[type=date] > em > a[href^=mailto]:before,
.c-form input[type=month] > em > a[href^=mailto]:before,
.c-form input[type=time] > em > a[href^=mailto]:before,
.c-form input[type=datetime] > em > a[href^=mailto]:before,
.c-form input[type=datetime-local] > em > a[href^=mailto]:before,
.c-form input[type=week] > em > a[href^=mailto]:before,
.c-form input[type=number] > em > a[href^=mailto]:before,
.c-form input[type=search] > em > a[href^=mailto]:before,
.c-form input[type=tel] > em > a[href^=mailto]:before,
.c-form input[type=color] > em > a[href^=mailto]:before,
.c-form textarea > em > a[href^=mailto]:before,
.c-form__checkbox label > em > a[href^=mailto]:before,
.c-form__dropdown > em > a[href^=mailto]:before,
.c-form__dropdown select > option > em > a[href^=mailto]:before,
.c-form__dropdown > label > em > a[href^=mailto]:before,
.typography ul > em > a[href^=mailto]:before {
  margin-right: 0.1rem;
  font-size: 1.1em;
  display: inline-block;
}
.c-footer__typo > a[href^="https://"]:before, .c-footer__address > p > a[href^="https://"]:before, .c-videoEmbed__caption > strong > a[href^="https://"]:before, .c-videoEmbed__caption > h1 > strong > a[href^="https://"]:before, .c-videoEmbed__caption > h2 > strong > a[href^="https://"]:before, .c-videoEmbed__caption > h3 > strong > a[href^="https://"]:before, .c-videoEmbed__caption > h4 > strong > a[href^="https://"]:before, .c-videoEmbed__caption > h5 > strong > a[href^="https://"]:before, .c-videoEmbed__caption > p > strong > a[href^="https://"]:before, .c-pollingTool__introtext > strong > a[href^="https://"]:before, .c-mediathekCard__caption > strong > a[href^="https://"]:before, .c-mediathekCard__caption > h1 > strong > a[href^="https://"]:before, .c-mediathekCard__caption > h2 > strong > a[href^="https://"]:before, .c-mediathekCard__caption > h3 > strong > a[href^="https://"]:before, .c-mediathekCard__caption > h4 > strong > a[href^="https://"]:before, .c-mediathekCard__caption > h5 > strong > a[href^="https://"]:before, .c-mediathekCard__caption > p > strong > a[href^="https://"]:before, .c-astlrSlider__caption > p > strong > a[href^="https://"]:before, .c-astlrSummary__copy > strong > a[href^="https://"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href^="https://"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href^="https://"]:before, .typography p.small > strong > a[href^="https://"]:before, .typography table > strong > a[href^="https://"]:before, .c-form .message > strong > a[href^="https://"]:before,
.c-videoEmbed__caption > em > a[href^="https://"]:before,
.c-videoEmbed__caption > h1 > em > a[href^="https://"]:before,
.c-videoEmbed__caption > h2 > em > a[href^="https://"]:before,
.c-videoEmbed__caption > h3 > em > a[href^="https://"]:before,
.c-videoEmbed__caption > h4 > em > a[href^="https://"]:before,
.c-videoEmbed__caption > h5 > em > a[href^="https://"]:before,
.c-videoEmbed__caption > p > em > a[href^="https://"]:before,
.c-pollingTool__introtext > em > a[href^="https://"]:before,
.c-mediathekCard__caption > em > a[href^="https://"]:before,
.c-mediathekCard__caption > h1 > em > a[href^="https://"]:before,
.c-mediathekCard__caption > h2 > em > a[href^="https://"]:before,
.c-mediathekCard__caption > h3 > em > a[href^="https://"]:before,
.c-mediathekCard__caption > h4 > em > a[href^="https://"]:before,
.c-mediathekCard__caption > h5 > em > a[href^="https://"]:before,
.c-mediathekCard__caption > p > em > a[href^="https://"]:before,
.c-astlrSlider__caption > p > em > a[href^="https://"]:before,
.c-astlrSummary__copy > em > a[href^="https://"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href^="https://"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href^="https://"]:before,
.typography p.small > em > a[href^="https://"]:before,
.typography table > em > a[href^="https://"]:before,
.c-form .message > em > a[href^="https://"]:before, .c-elementalPublikationen__copystage > p > a[href^="https://"]:before, .dropzone-holder.uploadable > p > a[href^="https://"]:before, .c-schedule__copy > a[href^="https://"]:before, .c-lightbox__subline > a[href^="https://"]:before, .tobii__counter > a[href^="https://"]:before, .tobii-image figure > figcaption > a[href^="https://"]:before, .c-form .btn-toolbar > p > a[href^="https://"]:before, .c-books__autor > a[href^="https://"]:before, .c-books__copy > a[href^="https://"]:before, .c-books__verlag > a[href^="https://"]:before, .c-books__jahr > a[href^="https://"]:before, .c-books__isbn > a[href^="https://"]:before, .c-books__preis > a[href^="https://"]:before, .c-books__link > a[href^="https://"]:before, .c-astlrVideoDates__copy > a[href^="https://"]:before, .c-astlrFileItems__link > a[href^="https://"]:before, .c-astlrCopy__fieldname > a[href^="https://"]:before, .c-astlrCopy__field > a[href^="https://"]:before, .c-astlrCopy > p > a[href^="https://"]:before, .c-astlrCopy__accordionHeader > a[href^="https://"]:before, .c-astlrCopy__accordionField > a[href^="https://"]:before, .c-astlrStage__note > p > a[href^="https://"]:before, .c-astlrStage__uploader > p > a[href^="https://"]:before, .c-anncmts__body > a[href^="https://"]:before, .typography p > a[href^="https://"]:before, .c-form label > a[href^="https://"]:before, .c-form input.text > a[href^="https://"]:before, .c-form input.textarea > a[href^="https://"]:before,
.c-form textarea.text > a[href^="https://"]:before,
.c-form textarea.textarea > a[href^="https://"]:before, .c-form input[type=text] > a[href^="https://"]:before,
.c-form input[type=password] > a[href^="https://"]:before,
.c-form input[type=email] > a[href^="https://"]:before,
.c-form input[type=url] > a[href^="https://"]:before,
.c-form input[type=date] > a[href^="https://"]:before,
.c-form input[type=month] > a[href^="https://"]:before,
.c-form input[type=time] > a[href^="https://"]:before,
.c-form input[type=datetime] > a[href^="https://"]:before,
.c-form input[type=datetime-local] > a[href^="https://"]:before,
.c-form input[type=week] > a[href^="https://"]:before,
.c-form input[type=number] > a[href^="https://"]:before,
.c-form input[type=search] > a[href^="https://"]:before,
.c-form input[type=tel] > a[href^="https://"]:before,
.c-form input[type=color] > a[href^="https://"]:before,
.c-form textarea > a[href^="https://"]:before, .c-form__checkbox label > a[href^="https://"]:before, .c-form__dropdown > a[href^="https://"]:before, .c-form__dropdown select > option > a[href^="https://"]:before, .c-form__dropdown > label > a[href^="https://"]:before, .typography ul > a[href^="https://"]:before, .c-elementalPublikationen__copystage > p > strong > a[href^="https://"]:before, .dropzone-holder.uploadable > p > strong > a[href^="https://"]:before, .c-schedule__copy > strong > a[href^="https://"]:before, .c-lightbox__subline > strong > a[href^="https://"]:before, .tobii__counter > strong > a[href^="https://"]:before, .tobii-image figure > figcaption > strong > a[href^="https://"]:before, .c-form .btn-toolbar > p > strong > a[href^="https://"]:before, .c-books__autor > strong > a[href^="https://"]:before, .c-books__copy > strong > a[href^="https://"]:before, .c-books__verlag > strong > a[href^="https://"]:before, .c-books__jahr > strong > a[href^="https://"]:before, .c-books__isbn > strong > a[href^="https://"]:before, .c-books__preis > strong > a[href^="https://"]:before, .c-books__link > strong > a[href^="https://"]:before, .c-astlrVideoDates__copy > strong > a[href^="https://"]:before, .c-astlrFileItems__link > strong > a[href^="https://"]:before, .c-astlrCopy__fieldname > strong > a[href^="https://"]:before, .c-astlrCopy__field > strong > a[href^="https://"]:before, .c-astlrCopy > p > strong > a[href^="https://"]:before, .c-astlrCopy__accordionHeader > strong > a[href^="https://"]:before, .c-astlrCopy__accordionField > strong > a[href^="https://"]:before, .c-astlrStage__note > p > strong > a[href^="https://"]:before, .c-astlrStage__uploader > p > strong > a[href^="https://"]:before, .c-anncmts__body > strong > a[href^="https://"]:before, .typography p > strong > a[href^="https://"]:before, .c-form label > strong > a[href^="https://"]:before, .c-form input.text > strong > a[href^="https://"]:before, .c-form input.textarea > strong > a[href^="https://"]:before,
.c-form textarea.text > strong > a[href^="https://"]:before,
.c-form textarea.textarea > strong > a[href^="https://"]:before, .c-form input[type=text] > strong > a[href^="https://"]:before,
.c-form input[type=password] > strong > a[href^="https://"]:before,
.c-form input[type=email] > strong > a[href^="https://"]:before,
.c-form input[type=url] > strong > a[href^="https://"]:before,
.c-form input[type=date] > strong > a[href^="https://"]:before,
.c-form input[type=month] > strong > a[href^="https://"]:before,
.c-form input[type=time] > strong > a[href^="https://"]:before,
.c-form input[type=datetime] > strong > a[href^="https://"]:before,
.c-form input[type=datetime-local] > strong > a[href^="https://"]:before,
.c-form input[type=week] > strong > a[href^="https://"]:before,
.c-form input[type=number] > strong > a[href^="https://"]:before,
.c-form input[type=search] > strong > a[href^="https://"]:before,
.c-form input[type=tel] > strong > a[href^="https://"]:before,
.c-form input[type=color] > strong > a[href^="https://"]:before,
.c-form textarea > strong > a[href^="https://"]:before, .c-form__checkbox label > strong > a[href^="https://"]:before, .c-form__dropdown > strong > a[href^="https://"]:before, .c-form__dropdown select > option > strong > a[href^="https://"]:before, .c-form__dropdown > label > strong > a[href^="https://"]:before, .typography ul > strong > a[href^="https://"]:before,
.c-elementalPublikationen__copystage > p > em > a[href^="https://"]:before,
.dropzone-holder.uploadable > p > em > a[href^="https://"]:before,
.c-schedule__copy > em > a[href^="https://"]:before,
.c-lightbox__subline > em > a[href^="https://"]:before,
.tobii__counter > em > a[href^="https://"]:before,
.tobii-image figure > figcaption > em > a[href^="https://"]:before,
.c-form .btn-toolbar > p > em > a[href^="https://"]:before,
.c-books__autor > em > a[href^="https://"]:before,
.c-books__copy > em > a[href^="https://"]:before,
.c-books__verlag > em > a[href^="https://"]:before,
.c-books__jahr > em > a[href^="https://"]:before,
.c-books__isbn > em > a[href^="https://"]:before,
.c-books__preis > em > a[href^="https://"]:before,
.c-books__link > em > a[href^="https://"]:before,
.c-astlrVideoDates__copy > em > a[href^="https://"]:before,
.c-astlrFileItems__link > em > a[href^="https://"]:before,
.c-astlrCopy__fieldname > em > a[href^="https://"]:before,
.c-astlrCopy__field > em > a[href^="https://"]:before,
.c-astlrCopy > p > em > a[href^="https://"]:before,
.c-astlrCopy__accordionHeader > em > a[href^="https://"]:before,
.c-astlrCopy__accordionField > em > a[href^="https://"]:before,
.c-astlrStage__note > p > em > a[href^="https://"]:before,
.c-astlrStage__uploader > p > em > a[href^="https://"]:before,
.c-anncmts__body > em > a[href^="https://"]:before,
.typography p > em > a[href^="https://"]:before,
.c-form label > em > a[href^="https://"]:before,
.c-form input.text > em > a[href^="https://"]:before,
.c-form input.textarea > em > a[href^="https://"]:before,
.c-form textarea.text > em > a[href^="https://"]:before,
.c-form textarea.textarea > em > a[href^="https://"]:before,
.c-form input[type=text] > em > a[href^="https://"]:before,
.c-form input[type=password] > em > a[href^="https://"]:before,
.c-form input[type=email] > em > a[href^="https://"]:before,
.c-form input[type=url] > em > a[href^="https://"]:before,
.c-form input[type=date] > em > a[href^="https://"]:before,
.c-form input[type=month] > em > a[href^="https://"]:before,
.c-form input[type=time] > em > a[href^="https://"]:before,
.c-form input[type=datetime] > em > a[href^="https://"]:before,
.c-form input[type=datetime-local] > em > a[href^="https://"]:before,
.c-form input[type=week] > em > a[href^="https://"]:before,
.c-form input[type=number] > em > a[href^="https://"]:before,
.c-form input[type=search] > em > a[href^="https://"]:before,
.c-form input[type=tel] > em > a[href^="https://"]:before,
.c-form input[type=color] > em > a[href^="https://"]:before,
.c-form textarea > em > a[href^="https://"]:before,
.c-form__checkbox label > em > a[href^="https://"]:before,
.c-form__dropdown > em > a[href^="https://"]:before,
.c-form__dropdown select > option > em > a[href^="https://"]:before,
.c-form__dropdown > label > em > a[href^="https://"]:before,
.typography ul > em > a[href^="https://"]:before, .c-footer__typo > a[href^="http://"]:before, .c-footer__address > p > a[href^="http://"]:before, .c-videoEmbed__caption > strong > a[href^="http://"]:before, .c-videoEmbed__caption > h1 > strong > a[href^="http://"]:before, .c-videoEmbed__caption > h2 > strong > a[href^="http://"]:before, .c-videoEmbed__caption > h3 > strong > a[href^="http://"]:before, .c-videoEmbed__caption > h4 > strong > a[href^="http://"]:before, .c-videoEmbed__caption > h5 > strong > a[href^="http://"]:before, .c-videoEmbed__caption > p > strong > a[href^="http://"]:before, .c-pollingTool__introtext > strong > a[href^="http://"]:before, .c-mediathekCard__caption > strong > a[href^="http://"]:before, .c-mediathekCard__caption > h1 > strong > a[href^="http://"]:before, .c-mediathekCard__caption > h2 > strong > a[href^="http://"]:before, .c-mediathekCard__caption > h3 > strong > a[href^="http://"]:before, .c-mediathekCard__caption > h4 > strong > a[href^="http://"]:before, .c-mediathekCard__caption > h5 > strong > a[href^="http://"]:before, .c-mediathekCard__caption > p > strong > a[href^="http://"]:before, .c-astlrSlider__caption > p > strong > a[href^="http://"]:before, .c-astlrSummary__copy > strong > a[href^="http://"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href^="http://"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href^="http://"]:before, .typography p.small > strong > a[href^="http://"]:before, .typography table > strong > a[href^="http://"]:before, .c-form .message > strong > a[href^="http://"]:before,
.c-videoEmbed__caption > em > a[href^="http://"]:before,
.c-videoEmbed__caption > h1 > em > a[href^="http://"]:before,
.c-videoEmbed__caption > h2 > em > a[href^="http://"]:before,
.c-videoEmbed__caption > h3 > em > a[href^="http://"]:before,
.c-videoEmbed__caption > h4 > em > a[href^="http://"]:before,
.c-videoEmbed__caption > h5 > em > a[href^="http://"]:before,
.c-videoEmbed__caption > p > em > a[href^="http://"]:before,
.c-pollingTool__introtext > em > a[href^="http://"]:before,
.c-mediathekCard__caption > em > a[href^="http://"]:before,
.c-mediathekCard__caption > h1 > em > a[href^="http://"]:before,
.c-mediathekCard__caption > h2 > em > a[href^="http://"]:before,
.c-mediathekCard__caption > h3 > em > a[href^="http://"]:before,
.c-mediathekCard__caption > h4 > em > a[href^="http://"]:before,
.c-mediathekCard__caption > h5 > em > a[href^="http://"]:before,
.c-mediathekCard__caption > p > em > a[href^="http://"]:before,
.c-astlrSlider__caption > p > em > a[href^="http://"]:before,
.c-astlrSummary__copy > em > a[href^="http://"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href^="http://"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href^="http://"]:before,
.typography p.small > em > a[href^="http://"]:before,
.typography table > em > a[href^="http://"]:before,
.c-form .message > em > a[href^="http://"]:before, .c-elementalPublikationen__copystage > p > a[href^="http://"]:before, .dropzone-holder.uploadable > p > a[href^="http://"]:before, .c-schedule__copy > a[href^="http://"]:before, .c-lightbox__subline > a[href^="http://"]:before, .tobii__counter > a[href^="http://"]:before, .tobii-image figure > figcaption > a[href^="http://"]:before, .c-form .btn-toolbar > p > a[href^="http://"]:before, .c-books__autor > a[href^="http://"]:before, .c-books__copy > a[href^="http://"]:before, .c-books__verlag > a[href^="http://"]:before, .c-books__jahr > a[href^="http://"]:before, .c-books__isbn > a[href^="http://"]:before, .c-books__preis > a[href^="http://"]:before, .c-books__link > a[href^="http://"]:before, .c-astlrVideoDates__copy > a[href^="http://"]:before, .c-astlrFileItems__link > a[href^="http://"]:before, .c-astlrCopy__fieldname > a[href^="http://"]:before, .c-astlrCopy__field > a[href^="http://"]:before, .c-astlrCopy > p > a[href^="http://"]:before, .c-astlrCopy__accordionHeader > a[href^="http://"]:before, .c-astlrCopy__accordionField > a[href^="http://"]:before, .c-astlrStage__note > p > a[href^="http://"]:before, .c-astlrStage__uploader > p > a[href^="http://"]:before, .c-anncmts__body > a[href^="http://"]:before, .typography p > a[href^="http://"]:before, .c-form label > a[href^="http://"]:before, .c-form input.text > a[href^="http://"]:before, .c-form input.textarea > a[href^="http://"]:before,
.c-form textarea.text > a[href^="http://"]:before,
.c-form textarea.textarea > a[href^="http://"]:before, .c-form input[type=text] > a[href^="http://"]:before,
.c-form input[type=password] > a[href^="http://"]:before,
.c-form input[type=email] > a[href^="http://"]:before,
.c-form input[type=url] > a[href^="http://"]:before,
.c-form input[type=date] > a[href^="http://"]:before,
.c-form input[type=month] > a[href^="http://"]:before,
.c-form input[type=time] > a[href^="http://"]:before,
.c-form input[type=datetime] > a[href^="http://"]:before,
.c-form input[type=datetime-local] > a[href^="http://"]:before,
.c-form input[type=week] > a[href^="http://"]:before,
.c-form input[type=number] > a[href^="http://"]:before,
.c-form input[type=search] > a[href^="http://"]:before,
.c-form input[type=tel] > a[href^="http://"]:before,
.c-form input[type=color] > a[href^="http://"]:before,
.c-form textarea > a[href^="http://"]:before, .c-form__checkbox label > a[href^="http://"]:before, .c-form__dropdown > a[href^="http://"]:before, .c-form__dropdown select > option > a[href^="http://"]:before, .c-form__dropdown > label > a[href^="http://"]:before, .typography ul > a[href^="http://"]:before, .c-elementalPublikationen__copystage > p > strong > a[href^="http://"]:before, .dropzone-holder.uploadable > p > strong > a[href^="http://"]:before, .c-schedule__copy > strong > a[href^="http://"]:before, .c-lightbox__subline > strong > a[href^="http://"]:before, .tobii__counter > strong > a[href^="http://"]:before, .tobii-image figure > figcaption > strong > a[href^="http://"]:before, .c-form .btn-toolbar > p > strong > a[href^="http://"]:before, .c-books__autor > strong > a[href^="http://"]:before, .c-books__copy > strong > a[href^="http://"]:before, .c-books__verlag > strong > a[href^="http://"]:before, .c-books__jahr > strong > a[href^="http://"]:before, .c-books__isbn > strong > a[href^="http://"]:before, .c-books__preis > strong > a[href^="http://"]:before, .c-books__link > strong > a[href^="http://"]:before, .c-astlrVideoDates__copy > strong > a[href^="http://"]:before, .c-astlrFileItems__link > strong > a[href^="http://"]:before, .c-astlrCopy__fieldname > strong > a[href^="http://"]:before, .c-astlrCopy__field > strong > a[href^="http://"]:before, .c-astlrCopy > p > strong > a[href^="http://"]:before, .c-astlrCopy__accordionHeader > strong > a[href^="http://"]:before, .c-astlrCopy__accordionField > strong > a[href^="http://"]:before, .c-astlrStage__note > p > strong > a[href^="http://"]:before, .c-astlrStage__uploader > p > strong > a[href^="http://"]:before, .c-anncmts__body > strong > a[href^="http://"]:before, .typography p > strong > a[href^="http://"]:before, .c-form label > strong > a[href^="http://"]:before, .c-form input.text > strong > a[href^="http://"]:before, .c-form input.textarea > strong > a[href^="http://"]:before,
.c-form textarea.text > strong > a[href^="http://"]:before,
.c-form textarea.textarea > strong > a[href^="http://"]:before, .c-form input[type=text] > strong > a[href^="http://"]:before,
.c-form input[type=password] > strong > a[href^="http://"]:before,
.c-form input[type=email] > strong > a[href^="http://"]:before,
.c-form input[type=url] > strong > a[href^="http://"]:before,
.c-form input[type=date] > strong > a[href^="http://"]:before,
.c-form input[type=month] > strong > a[href^="http://"]:before,
.c-form input[type=time] > strong > a[href^="http://"]:before,
.c-form input[type=datetime] > strong > a[href^="http://"]:before,
.c-form input[type=datetime-local] > strong > a[href^="http://"]:before,
.c-form input[type=week] > strong > a[href^="http://"]:before,
.c-form input[type=number] > strong > a[href^="http://"]:before,
.c-form input[type=search] > strong > a[href^="http://"]:before,
.c-form input[type=tel] > strong > a[href^="http://"]:before,
.c-form input[type=color] > strong > a[href^="http://"]:before,
.c-form textarea > strong > a[href^="http://"]:before, .c-form__checkbox label > strong > a[href^="http://"]:before, .c-form__dropdown > strong > a[href^="http://"]:before, .c-form__dropdown select > option > strong > a[href^="http://"]:before, .c-form__dropdown > label > strong > a[href^="http://"]:before, .typography ul > strong > a[href^="http://"]:before,
.c-elementalPublikationen__copystage > p > em > a[href^="http://"]:before,
.dropzone-holder.uploadable > p > em > a[href^="http://"]:before,
.c-schedule__copy > em > a[href^="http://"]:before,
.c-lightbox__subline > em > a[href^="http://"]:before,
.tobii__counter > em > a[href^="http://"]:before,
.tobii-image figure > figcaption > em > a[href^="http://"]:before,
.c-form .btn-toolbar > p > em > a[href^="http://"]:before,
.c-books__autor > em > a[href^="http://"]:before,
.c-books__copy > em > a[href^="http://"]:before,
.c-books__verlag > em > a[href^="http://"]:before,
.c-books__jahr > em > a[href^="http://"]:before,
.c-books__isbn > em > a[href^="http://"]:before,
.c-books__preis > em > a[href^="http://"]:before,
.c-books__link > em > a[href^="http://"]:before,
.c-astlrVideoDates__copy > em > a[href^="http://"]:before,
.c-astlrFileItems__link > em > a[href^="http://"]:before,
.c-astlrCopy__fieldname > em > a[href^="http://"]:before,
.c-astlrCopy__field > em > a[href^="http://"]:before,
.c-astlrCopy > p > em > a[href^="http://"]:before,
.c-astlrCopy__accordionHeader > em > a[href^="http://"]:before,
.c-astlrCopy__accordionField > em > a[href^="http://"]:before,
.c-astlrStage__note > p > em > a[href^="http://"]:before,
.c-astlrStage__uploader > p > em > a[href^="http://"]:before,
.c-anncmts__body > em > a[href^="http://"]:before,
.typography p > em > a[href^="http://"]:before,
.c-form label > em > a[href^="http://"]:before,
.c-form input.text > em > a[href^="http://"]:before,
.c-form input.textarea > em > a[href^="http://"]:before,
.c-form textarea.text > em > a[href^="http://"]:before,
.c-form textarea.textarea > em > a[href^="http://"]:before,
.c-form input[type=text] > em > a[href^="http://"]:before,
.c-form input[type=password] > em > a[href^="http://"]:before,
.c-form input[type=email] > em > a[href^="http://"]:before,
.c-form input[type=url] > em > a[href^="http://"]:before,
.c-form input[type=date] > em > a[href^="http://"]:before,
.c-form input[type=month] > em > a[href^="http://"]:before,
.c-form input[type=time] > em > a[href^="http://"]:before,
.c-form input[type=datetime] > em > a[href^="http://"]:before,
.c-form input[type=datetime-local] > em > a[href^="http://"]:before,
.c-form input[type=week] > em > a[href^="http://"]:before,
.c-form input[type=number] > em > a[href^="http://"]:before,
.c-form input[type=search] > em > a[href^="http://"]:before,
.c-form input[type=tel] > em > a[href^="http://"]:before,
.c-form input[type=color] > em > a[href^="http://"]:before,
.c-form textarea > em > a[href^="http://"]:before,
.c-form__checkbox label > em > a[href^="http://"]:before,
.c-form__dropdown > em > a[href^="http://"]:before,
.c-form__dropdown select > option > em > a[href^="http://"]:before,
.c-form__dropdown > label > em > a[href^="http://"]:before,
.typography ul > em > a[href^="http://"]:before {
  margin-right: 0.25em;
  display: inline-block;
  font-size: 1.1em;
}
.c-footer__typo > a[href$=".png"]:before, .c-footer__address > p > a[href$=".png"]:before, .c-videoEmbed__caption > strong > a[href$=".png"]:before, .c-videoEmbed__caption > h1 > strong > a[href$=".png"]:before, .c-videoEmbed__caption > h2 > strong > a[href$=".png"]:before, .c-videoEmbed__caption > h3 > strong > a[href$=".png"]:before, .c-videoEmbed__caption > h4 > strong > a[href$=".png"]:before, .c-videoEmbed__caption > h5 > strong > a[href$=".png"]:before, .c-videoEmbed__caption > p > strong > a[href$=".png"]:before, .c-pollingTool__introtext > strong > a[href$=".png"]:before, .c-mediathekCard__caption > strong > a[href$=".png"]:before, .c-mediathekCard__caption > h1 > strong > a[href$=".png"]:before, .c-mediathekCard__caption > h2 > strong > a[href$=".png"]:before, .c-mediathekCard__caption > h3 > strong > a[href$=".png"]:before, .c-mediathekCard__caption > h4 > strong > a[href$=".png"]:before, .c-mediathekCard__caption > h5 > strong > a[href$=".png"]:before, .c-mediathekCard__caption > p > strong > a[href$=".png"]:before, .c-astlrSlider__caption > p > strong > a[href$=".png"]:before, .c-astlrSummary__copy > strong > a[href$=".png"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href$=".png"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href$=".png"]:before, .typography p.small > strong > a[href$=".png"]:before, .typography table > strong > a[href$=".png"]:before, .c-form .message > strong > a[href$=".png"]:before,
.c-videoEmbed__caption > em > a[href$=".png"]:before,
.c-videoEmbed__caption > h1 > em > a[href$=".png"]:before,
.c-videoEmbed__caption > h2 > em > a[href$=".png"]:before,
.c-videoEmbed__caption > h3 > em > a[href$=".png"]:before,
.c-videoEmbed__caption > h4 > em > a[href$=".png"]:before,
.c-videoEmbed__caption > h5 > em > a[href$=".png"]:before,
.c-videoEmbed__caption > p > em > a[href$=".png"]:before,
.c-pollingTool__introtext > em > a[href$=".png"]:before,
.c-mediathekCard__caption > em > a[href$=".png"]:before,
.c-mediathekCard__caption > h1 > em > a[href$=".png"]:before,
.c-mediathekCard__caption > h2 > em > a[href$=".png"]:before,
.c-mediathekCard__caption > h3 > em > a[href$=".png"]:before,
.c-mediathekCard__caption > h4 > em > a[href$=".png"]:before,
.c-mediathekCard__caption > h5 > em > a[href$=".png"]:before,
.c-mediathekCard__caption > p > em > a[href$=".png"]:before,
.c-astlrSlider__caption > p > em > a[href$=".png"]:before,
.c-astlrSummary__copy > em > a[href$=".png"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href$=".png"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href$=".png"]:before,
.typography p.small > em > a[href$=".png"]:before,
.typography table > em > a[href$=".png"]:before,
.c-form .message > em > a[href$=".png"]:before, .c-elementalPublikationen__copystage > p > a[href$=".png"]:before, .dropzone-holder.uploadable > p > a[href$=".png"]:before, .c-schedule__copy > a[href$=".png"]:before, .c-lightbox__subline > a[href$=".png"]:before, .tobii__counter > a[href$=".png"]:before, .tobii-image figure > figcaption > a[href$=".png"]:before, .c-form .btn-toolbar > p > a[href$=".png"]:before, .c-books__autor > a[href$=".png"]:before, .c-books__copy > a[href$=".png"]:before, .c-books__verlag > a[href$=".png"]:before, .c-books__jahr > a[href$=".png"]:before, .c-books__isbn > a[href$=".png"]:before, .c-books__preis > a[href$=".png"]:before, .c-books__link > a[href$=".png"]:before, .c-astlrVideoDates__copy > a[href$=".png"]:before, .c-astlrFileItems__link > a[href$=".png"]:before, .c-astlrCopy__fieldname > a[href$=".png"]:before, .c-astlrCopy__field > a[href$=".png"]:before, .c-astlrCopy > p > a[href$=".png"]:before, .c-astlrCopy__accordionHeader > a[href$=".png"]:before, .c-astlrCopy__accordionField > a[href$=".png"]:before, .c-astlrStage__note > p > a[href$=".png"]:before, .c-astlrStage__uploader > p > a[href$=".png"]:before, .c-anncmts__body > a[href$=".png"]:before, .typography p > a[href$=".png"]:before, .c-form label > a[href$=".png"]:before, .c-form input.text > a[href$=".png"]:before, .c-form input.textarea > a[href$=".png"]:before,
.c-form textarea.text > a[href$=".png"]:before,
.c-form textarea.textarea > a[href$=".png"]:before, .c-form input[type=text] > a[href$=".png"]:before,
.c-form input[type=password] > a[href$=".png"]:before,
.c-form input[type=email] > a[href$=".png"]:before,
.c-form input[type=url] > a[href$=".png"]:before,
.c-form input[type=date] > a[href$=".png"]:before,
.c-form input[type=month] > a[href$=".png"]:before,
.c-form input[type=time] > a[href$=".png"]:before,
.c-form input[type=datetime] > a[href$=".png"]:before,
.c-form input[type=datetime-local] > a[href$=".png"]:before,
.c-form input[type=week] > a[href$=".png"]:before,
.c-form input[type=number] > a[href$=".png"]:before,
.c-form input[type=search] > a[href$=".png"]:before,
.c-form input[type=tel] > a[href$=".png"]:before,
.c-form input[type=color] > a[href$=".png"]:before,
.c-form textarea > a[href$=".png"]:before, .c-form__checkbox label > a[href$=".png"]:before, .c-form__dropdown > a[href$=".png"]:before, .c-form__dropdown select > option > a[href$=".png"]:before, .c-form__dropdown > label > a[href$=".png"]:before, .typography ul > a[href$=".png"]:before, .c-elementalPublikationen__copystage > p > strong > a[href$=".png"]:before, .dropzone-holder.uploadable > p > strong > a[href$=".png"]:before, .c-schedule__copy > strong > a[href$=".png"]:before, .c-lightbox__subline > strong > a[href$=".png"]:before, .tobii__counter > strong > a[href$=".png"]:before, .tobii-image figure > figcaption > strong > a[href$=".png"]:before, .c-form .btn-toolbar > p > strong > a[href$=".png"]:before, .c-books__autor > strong > a[href$=".png"]:before, .c-books__copy > strong > a[href$=".png"]:before, .c-books__verlag > strong > a[href$=".png"]:before, .c-books__jahr > strong > a[href$=".png"]:before, .c-books__isbn > strong > a[href$=".png"]:before, .c-books__preis > strong > a[href$=".png"]:before, .c-books__link > strong > a[href$=".png"]:before, .c-astlrVideoDates__copy > strong > a[href$=".png"]:before, .c-astlrFileItems__link > strong > a[href$=".png"]:before, .c-astlrCopy__fieldname > strong > a[href$=".png"]:before, .c-astlrCopy__field > strong > a[href$=".png"]:before, .c-astlrCopy > p > strong > a[href$=".png"]:before, .c-astlrCopy__accordionHeader > strong > a[href$=".png"]:before, .c-astlrCopy__accordionField > strong > a[href$=".png"]:before, .c-astlrStage__note > p > strong > a[href$=".png"]:before, .c-astlrStage__uploader > p > strong > a[href$=".png"]:before, .c-anncmts__body > strong > a[href$=".png"]:before, .typography p > strong > a[href$=".png"]:before, .c-form label > strong > a[href$=".png"]:before, .c-form input.text > strong > a[href$=".png"]:before, .c-form input.textarea > strong > a[href$=".png"]:before,
.c-form textarea.text > strong > a[href$=".png"]:before,
.c-form textarea.textarea > strong > a[href$=".png"]:before, .c-form input[type=text] > strong > a[href$=".png"]:before,
.c-form input[type=password] > strong > a[href$=".png"]:before,
.c-form input[type=email] > strong > a[href$=".png"]:before,
.c-form input[type=url] > strong > a[href$=".png"]:before,
.c-form input[type=date] > strong > a[href$=".png"]:before,
.c-form input[type=month] > strong > a[href$=".png"]:before,
.c-form input[type=time] > strong > a[href$=".png"]:before,
.c-form input[type=datetime] > strong > a[href$=".png"]:before,
.c-form input[type=datetime-local] > strong > a[href$=".png"]:before,
.c-form input[type=week] > strong > a[href$=".png"]:before,
.c-form input[type=number] > strong > a[href$=".png"]:before,
.c-form input[type=search] > strong > a[href$=".png"]:before,
.c-form input[type=tel] > strong > a[href$=".png"]:before,
.c-form input[type=color] > strong > a[href$=".png"]:before,
.c-form textarea > strong > a[href$=".png"]:before, .c-form__checkbox label > strong > a[href$=".png"]:before, .c-form__dropdown > strong > a[href$=".png"]:before, .c-form__dropdown select > option > strong > a[href$=".png"]:before, .c-form__dropdown > label > strong > a[href$=".png"]:before, .typography ul > strong > a[href$=".png"]:before,
.c-elementalPublikationen__copystage > p > em > a[href$=".png"]:before,
.dropzone-holder.uploadable > p > em > a[href$=".png"]:before,
.c-schedule__copy > em > a[href$=".png"]:before,
.c-lightbox__subline > em > a[href$=".png"]:before,
.tobii__counter > em > a[href$=".png"]:before,
.tobii-image figure > figcaption > em > a[href$=".png"]:before,
.c-form .btn-toolbar > p > em > a[href$=".png"]:before,
.c-books__autor > em > a[href$=".png"]:before,
.c-books__copy > em > a[href$=".png"]:before,
.c-books__verlag > em > a[href$=".png"]:before,
.c-books__jahr > em > a[href$=".png"]:before,
.c-books__isbn > em > a[href$=".png"]:before,
.c-books__preis > em > a[href$=".png"]:before,
.c-books__link > em > a[href$=".png"]:before,
.c-astlrVideoDates__copy > em > a[href$=".png"]:before,
.c-astlrFileItems__link > em > a[href$=".png"]:before,
.c-astlrCopy__fieldname > em > a[href$=".png"]:before,
.c-astlrCopy__field > em > a[href$=".png"]:before,
.c-astlrCopy > p > em > a[href$=".png"]:before,
.c-astlrCopy__accordionHeader > em > a[href$=".png"]:before,
.c-astlrCopy__accordionField > em > a[href$=".png"]:before,
.c-astlrStage__note > p > em > a[href$=".png"]:before,
.c-astlrStage__uploader > p > em > a[href$=".png"]:before,
.c-anncmts__body > em > a[href$=".png"]:before,
.typography p > em > a[href$=".png"]:before,
.c-form label > em > a[href$=".png"]:before,
.c-form input.text > em > a[href$=".png"]:before,
.c-form input.textarea > em > a[href$=".png"]:before,
.c-form textarea.text > em > a[href$=".png"]:before,
.c-form textarea.textarea > em > a[href$=".png"]:before,
.c-form input[type=text] > em > a[href$=".png"]:before,
.c-form input[type=password] > em > a[href$=".png"]:before,
.c-form input[type=email] > em > a[href$=".png"]:before,
.c-form input[type=url] > em > a[href$=".png"]:before,
.c-form input[type=date] > em > a[href$=".png"]:before,
.c-form input[type=month] > em > a[href$=".png"]:before,
.c-form input[type=time] > em > a[href$=".png"]:before,
.c-form input[type=datetime] > em > a[href$=".png"]:before,
.c-form input[type=datetime-local] > em > a[href$=".png"]:before,
.c-form input[type=week] > em > a[href$=".png"]:before,
.c-form input[type=number] > em > a[href$=".png"]:before,
.c-form input[type=search] > em > a[href$=".png"]:before,
.c-form input[type=tel] > em > a[href$=".png"]:before,
.c-form input[type=color] > em > a[href$=".png"]:before,
.c-form textarea > em > a[href$=".png"]:before,
.c-form__checkbox label > em > a[href$=".png"]:before,
.c-form__dropdown > em > a[href$=".png"]:before,
.c-form__dropdown select > option > em > a[href$=".png"]:before,
.c-form__dropdown > label > em > a[href$=".png"]:before,
.typography ul > em > a[href$=".png"]:before, .c-footer__typo > a[href$=".PNG"]:before, .c-footer__address > p > a[href$=".PNG"]:before, .c-videoEmbed__caption > strong > a[href$=".PNG"]:before, .c-videoEmbed__caption > h1 > strong > a[href$=".PNG"]:before, .c-videoEmbed__caption > h2 > strong > a[href$=".PNG"]:before, .c-videoEmbed__caption > h3 > strong > a[href$=".PNG"]:before, .c-videoEmbed__caption > h4 > strong > a[href$=".PNG"]:before, .c-videoEmbed__caption > h5 > strong > a[href$=".PNG"]:before, .c-videoEmbed__caption > p > strong > a[href$=".PNG"]:before, .c-pollingTool__introtext > strong > a[href$=".PNG"]:before, .c-mediathekCard__caption > strong > a[href$=".PNG"]:before, .c-mediathekCard__caption > h1 > strong > a[href$=".PNG"]:before, .c-mediathekCard__caption > h2 > strong > a[href$=".PNG"]:before, .c-mediathekCard__caption > h3 > strong > a[href$=".PNG"]:before, .c-mediathekCard__caption > h4 > strong > a[href$=".PNG"]:before, .c-mediathekCard__caption > h5 > strong > a[href$=".PNG"]:before, .c-mediathekCard__caption > p > strong > a[href$=".PNG"]:before, .c-astlrSlider__caption > p > strong > a[href$=".PNG"]:before, .c-astlrSummary__copy > strong > a[href$=".PNG"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href$=".PNG"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href$=".PNG"]:before, .typography p.small > strong > a[href$=".PNG"]:before, .typography table > strong > a[href$=".PNG"]:before, .c-form .message > strong > a[href$=".PNG"]:before,
.c-videoEmbed__caption > em > a[href$=".PNG"]:before,
.c-videoEmbed__caption > h1 > em > a[href$=".PNG"]:before,
.c-videoEmbed__caption > h2 > em > a[href$=".PNG"]:before,
.c-videoEmbed__caption > h3 > em > a[href$=".PNG"]:before,
.c-videoEmbed__caption > h4 > em > a[href$=".PNG"]:before,
.c-videoEmbed__caption > h5 > em > a[href$=".PNG"]:before,
.c-videoEmbed__caption > p > em > a[href$=".PNG"]:before,
.c-pollingTool__introtext > em > a[href$=".PNG"]:before,
.c-mediathekCard__caption > em > a[href$=".PNG"]:before,
.c-mediathekCard__caption > h1 > em > a[href$=".PNG"]:before,
.c-mediathekCard__caption > h2 > em > a[href$=".PNG"]:before,
.c-mediathekCard__caption > h3 > em > a[href$=".PNG"]:before,
.c-mediathekCard__caption > h4 > em > a[href$=".PNG"]:before,
.c-mediathekCard__caption > h5 > em > a[href$=".PNG"]:before,
.c-mediathekCard__caption > p > em > a[href$=".PNG"]:before,
.c-astlrSlider__caption > p > em > a[href$=".PNG"]:before,
.c-astlrSummary__copy > em > a[href$=".PNG"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href$=".PNG"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href$=".PNG"]:before,
.typography p.small > em > a[href$=".PNG"]:before,
.typography table > em > a[href$=".PNG"]:before,
.c-form .message > em > a[href$=".PNG"]:before, .c-elementalPublikationen__copystage > p > a[href$=".PNG"]:before, .dropzone-holder.uploadable > p > a[href$=".PNG"]:before, .c-schedule__copy > a[href$=".PNG"]:before, .c-lightbox__subline > a[href$=".PNG"]:before, .tobii__counter > a[href$=".PNG"]:before, .tobii-image figure > figcaption > a[href$=".PNG"]:before, .c-form .btn-toolbar > p > a[href$=".PNG"]:before, .c-books__autor > a[href$=".PNG"]:before, .c-books__copy > a[href$=".PNG"]:before, .c-books__verlag > a[href$=".PNG"]:before, .c-books__jahr > a[href$=".PNG"]:before, .c-books__isbn > a[href$=".PNG"]:before, .c-books__preis > a[href$=".PNG"]:before, .c-books__link > a[href$=".PNG"]:before, .c-astlrVideoDates__copy > a[href$=".PNG"]:before, .c-astlrFileItems__link > a[href$=".PNG"]:before, .c-astlrCopy__fieldname > a[href$=".PNG"]:before, .c-astlrCopy__field > a[href$=".PNG"]:before, .c-astlrCopy > p > a[href$=".PNG"]:before, .c-astlrCopy__accordionHeader > a[href$=".PNG"]:before, .c-astlrCopy__accordionField > a[href$=".PNG"]:before, .c-astlrStage__note > p > a[href$=".PNG"]:before, .c-astlrStage__uploader > p > a[href$=".PNG"]:before, .c-anncmts__body > a[href$=".PNG"]:before, .typography p > a[href$=".PNG"]:before, .c-form label > a[href$=".PNG"]:before, .c-form input.text > a[href$=".PNG"]:before, .c-form input.textarea > a[href$=".PNG"]:before,
.c-form textarea.text > a[href$=".PNG"]:before,
.c-form textarea.textarea > a[href$=".PNG"]:before, .c-form input[type=text] > a[href$=".PNG"]:before,
.c-form input[type=password] > a[href$=".PNG"]:before,
.c-form input[type=email] > a[href$=".PNG"]:before,
.c-form input[type=url] > a[href$=".PNG"]:before,
.c-form input[type=date] > a[href$=".PNG"]:before,
.c-form input[type=month] > a[href$=".PNG"]:before,
.c-form input[type=time] > a[href$=".PNG"]:before,
.c-form input[type=datetime] > a[href$=".PNG"]:before,
.c-form input[type=datetime-local] > a[href$=".PNG"]:before,
.c-form input[type=week] > a[href$=".PNG"]:before,
.c-form input[type=number] > a[href$=".PNG"]:before,
.c-form input[type=search] > a[href$=".PNG"]:before,
.c-form input[type=tel] > a[href$=".PNG"]:before,
.c-form input[type=color] > a[href$=".PNG"]:before,
.c-form textarea > a[href$=".PNG"]:before, .c-form__checkbox label > a[href$=".PNG"]:before, .c-form__dropdown > a[href$=".PNG"]:before, .c-form__dropdown select > option > a[href$=".PNG"]:before, .c-form__dropdown > label > a[href$=".PNG"]:before, .typography ul > a[href$=".PNG"]:before, .c-elementalPublikationen__copystage > p > strong > a[href$=".PNG"]:before, .dropzone-holder.uploadable > p > strong > a[href$=".PNG"]:before, .c-schedule__copy > strong > a[href$=".PNG"]:before, .c-lightbox__subline > strong > a[href$=".PNG"]:before, .tobii__counter > strong > a[href$=".PNG"]:before, .tobii-image figure > figcaption > strong > a[href$=".PNG"]:before, .c-form .btn-toolbar > p > strong > a[href$=".PNG"]:before, .c-books__autor > strong > a[href$=".PNG"]:before, .c-books__copy > strong > a[href$=".PNG"]:before, .c-books__verlag > strong > a[href$=".PNG"]:before, .c-books__jahr > strong > a[href$=".PNG"]:before, .c-books__isbn > strong > a[href$=".PNG"]:before, .c-books__preis > strong > a[href$=".PNG"]:before, .c-books__link > strong > a[href$=".PNG"]:before, .c-astlrVideoDates__copy > strong > a[href$=".PNG"]:before, .c-astlrFileItems__link > strong > a[href$=".PNG"]:before, .c-astlrCopy__fieldname > strong > a[href$=".PNG"]:before, .c-astlrCopy__field > strong > a[href$=".PNG"]:before, .c-astlrCopy > p > strong > a[href$=".PNG"]:before, .c-astlrCopy__accordionHeader > strong > a[href$=".PNG"]:before, .c-astlrCopy__accordionField > strong > a[href$=".PNG"]:before, .c-astlrStage__note > p > strong > a[href$=".PNG"]:before, .c-astlrStage__uploader > p > strong > a[href$=".PNG"]:before, .c-anncmts__body > strong > a[href$=".PNG"]:before, .typography p > strong > a[href$=".PNG"]:before, .c-form label > strong > a[href$=".PNG"]:before, .c-form input.text > strong > a[href$=".PNG"]:before, .c-form input.textarea > strong > a[href$=".PNG"]:before,
.c-form textarea.text > strong > a[href$=".PNG"]:before,
.c-form textarea.textarea > strong > a[href$=".PNG"]:before, .c-form input[type=text] > strong > a[href$=".PNG"]:before,
.c-form input[type=password] > strong > a[href$=".PNG"]:before,
.c-form input[type=email] > strong > a[href$=".PNG"]:before,
.c-form input[type=url] > strong > a[href$=".PNG"]:before,
.c-form input[type=date] > strong > a[href$=".PNG"]:before,
.c-form input[type=month] > strong > a[href$=".PNG"]:before,
.c-form input[type=time] > strong > a[href$=".PNG"]:before,
.c-form input[type=datetime] > strong > a[href$=".PNG"]:before,
.c-form input[type=datetime-local] > strong > a[href$=".PNG"]:before,
.c-form input[type=week] > strong > a[href$=".PNG"]:before,
.c-form input[type=number] > strong > a[href$=".PNG"]:before,
.c-form input[type=search] > strong > a[href$=".PNG"]:before,
.c-form input[type=tel] > strong > a[href$=".PNG"]:before,
.c-form input[type=color] > strong > a[href$=".PNG"]:before,
.c-form textarea > strong > a[href$=".PNG"]:before, .c-form__checkbox label > strong > a[href$=".PNG"]:before, .c-form__dropdown > strong > a[href$=".PNG"]:before, .c-form__dropdown select > option > strong > a[href$=".PNG"]:before, .c-form__dropdown > label > strong > a[href$=".PNG"]:before, .typography ul > strong > a[href$=".PNG"]:before,
.c-elementalPublikationen__copystage > p > em > a[href$=".PNG"]:before,
.dropzone-holder.uploadable > p > em > a[href$=".PNG"]:before,
.c-schedule__copy > em > a[href$=".PNG"]:before,
.c-lightbox__subline > em > a[href$=".PNG"]:before,
.tobii__counter > em > a[href$=".PNG"]:before,
.tobii-image figure > figcaption > em > a[href$=".PNG"]:before,
.c-form .btn-toolbar > p > em > a[href$=".PNG"]:before,
.c-books__autor > em > a[href$=".PNG"]:before,
.c-books__copy > em > a[href$=".PNG"]:before,
.c-books__verlag > em > a[href$=".PNG"]:before,
.c-books__jahr > em > a[href$=".PNG"]:before,
.c-books__isbn > em > a[href$=".PNG"]:before,
.c-books__preis > em > a[href$=".PNG"]:before,
.c-books__link > em > a[href$=".PNG"]:before,
.c-astlrVideoDates__copy > em > a[href$=".PNG"]:before,
.c-astlrFileItems__link > em > a[href$=".PNG"]:before,
.c-astlrCopy__fieldname > em > a[href$=".PNG"]:before,
.c-astlrCopy__field > em > a[href$=".PNG"]:before,
.c-astlrCopy > p > em > a[href$=".PNG"]:before,
.c-astlrCopy__accordionHeader > em > a[href$=".PNG"]:before,
.c-astlrCopy__accordionField > em > a[href$=".PNG"]:before,
.c-astlrStage__note > p > em > a[href$=".PNG"]:before,
.c-astlrStage__uploader > p > em > a[href$=".PNG"]:before,
.c-anncmts__body > em > a[href$=".PNG"]:before,
.typography p > em > a[href$=".PNG"]:before,
.c-form label > em > a[href$=".PNG"]:before,
.c-form input.text > em > a[href$=".PNG"]:before,
.c-form input.textarea > em > a[href$=".PNG"]:before,
.c-form textarea.text > em > a[href$=".PNG"]:before,
.c-form textarea.textarea > em > a[href$=".PNG"]:before,
.c-form input[type=text] > em > a[href$=".PNG"]:before,
.c-form input[type=password] > em > a[href$=".PNG"]:before,
.c-form input[type=email] > em > a[href$=".PNG"]:before,
.c-form input[type=url] > em > a[href$=".PNG"]:before,
.c-form input[type=date] > em > a[href$=".PNG"]:before,
.c-form input[type=month] > em > a[href$=".PNG"]:before,
.c-form input[type=time] > em > a[href$=".PNG"]:before,
.c-form input[type=datetime] > em > a[href$=".PNG"]:before,
.c-form input[type=datetime-local] > em > a[href$=".PNG"]:before,
.c-form input[type=week] > em > a[href$=".PNG"]:before,
.c-form input[type=number] > em > a[href$=".PNG"]:before,
.c-form input[type=search] > em > a[href$=".PNG"]:before,
.c-form input[type=tel] > em > a[href$=".PNG"]:before,
.c-form input[type=color] > em > a[href$=".PNG"]:before,
.c-form textarea > em > a[href$=".PNG"]:before,
.c-form__checkbox label > em > a[href$=".PNG"]:before,
.c-form__dropdown > em > a[href$=".PNG"]:before,
.c-form__dropdown select > option > em > a[href$=".PNG"]:before,
.c-form__dropdown > label > em > a[href$=".PNG"]:before,
.typography ul > em > a[href$=".PNG"]:before, .c-footer__typo > a[href$=".gif"]:before, .c-footer__address > p > a[href$=".gif"]:before, .c-videoEmbed__caption > strong > a[href$=".gif"]:before, .c-videoEmbed__caption > h1 > strong > a[href$=".gif"]:before, .c-videoEmbed__caption > h2 > strong > a[href$=".gif"]:before, .c-videoEmbed__caption > h3 > strong > a[href$=".gif"]:before, .c-videoEmbed__caption > h4 > strong > a[href$=".gif"]:before, .c-videoEmbed__caption > h5 > strong > a[href$=".gif"]:before, .c-videoEmbed__caption > p > strong > a[href$=".gif"]:before, .c-pollingTool__introtext > strong > a[href$=".gif"]:before, .c-mediathekCard__caption > strong > a[href$=".gif"]:before, .c-mediathekCard__caption > h1 > strong > a[href$=".gif"]:before, .c-mediathekCard__caption > h2 > strong > a[href$=".gif"]:before, .c-mediathekCard__caption > h3 > strong > a[href$=".gif"]:before, .c-mediathekCard__caption > h4 > strong > a[href$=".gif"]:before, .c-mediathekCard__caption > h5 > strong > a[href$=".gif"]:before, .c-mediathekCard__caption > p > strong > a[href$=".gif"]:before, .c-astlrSlider__caption > p > strong > a[href$=".gif"]:before, .c-astlrSummary__copy > strong > a[href$=".gif"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href$=".gif"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href$=".gif"]:before, .typography p.small > strong > a[href$=".gif"]:before, .typography table > strong > a[href$=".gif"]:before, .c-form .message > strong > a[href$=".gif"]:before,
.c-videoEmbed__caption > em > a[href$=".gif"]:before,
.c-videoEmbed__caption > h1 > em > a[href$=".gif"]:before,
.c-videoEmbed__caption > h2 > em > a[href$=".gif"]:before,
.c-videoEmbed__caption > h3 > em > a[href$=".gif"]:before,
.c-videoEmbed__caption > h4 > em > a[href$=".gif"]:before,
.c-videoEmbed__caption > h5 > em > a[href$=".gif"]:before,
.c-videoEmbed__caption > p > em > a[href$=".gif"]:before,
.c-pollingTool__introtext > em > a[href$=".gif"]:before,
.c-mediathekCard__caption > em > a[href$=".gif"]:before,
.c-mediathekCard__caption > h1 > em > a[href$=".gif"]:before,
.c-mediathekCard__caption > h2 > em > a[href$=".gif"]:before,
.c-mediathekCard__caption > h3 > em > a[href$=".gif"]:before,
.c-mediathekCard__caption > h4 > em > a[href$=".gif"]:before,
.c-mediathekCard__caption > h5 > em > a[href$=".gif"]:before,
.c-mediathekCard__caption > p > em > a[href$=".gif"]:before,
.c-astlrSlider__caption > p > em > a[href$=".gif"]:before,
.c-astlrSummary__copy > em > a[href$=".gif"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href$=".gif"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href$=".gif"]:before,
.typography p.small > em > a[href$=".gif"]:before,
.typography table > em > a[href$=".gif"]:before,
.c-form .message > em > a[href$=".gif"]:before, .c-elementalPublikationen__copystage > p > a[href$=".gif"]:before, .dropzone-holder.uploadable > p > a[href$=".gif"]:before, .c-schedule__copy > a[href$=".gif"]:before, .c-lightbox__subline > a[href$=".gif"]:before, .tobii__counter > a[href$=".gif"]:before, .tobii-image figure > figcaption > a[href$=".gif"]:before, .c-form .btn-toolbar > p > a[href$=".gif"]:before, .c-books__autor > a[href$=".gif"]:before, .c-books__copy > a[href$=".gif"]:before, .c-books__verlag > a[href$=".gif"]:before, .c-books__jahr > a[href$=".gif"]:before, .c-books__isbn > a[href$=".gif"]:before, .c-books__preis > a[href$=".gif"]:before, .c-books__link > a[href$=".gif"]:before, .c-astlrVideoDates__copy > a[href$=".gif"]:before, .c-astlrFileItems__link > a[href$=".gif"]:before, .c-astlrCopy__fieldname > a[href$=".gif"]:before, .c-astlrCopy__field > a[href$=".gif"]:before, .c-astlrCopy > p > a[href$=".gif"]:before, .c-astlrCopy__accordionHeader > a[href$=".gif"]:before, .c-astlrCopy__accordionField > a[href$=".gif"]:before, .c-astlrStage__note > p > a[href$=".gif"]:before, .c-astlrStage__uploader > p > a[href$=".gif"]:before, .c-anncmts__body > a[href$=".gif"]:before, .typography p > a[href$=".gif"]:before, .c-form label > a[href$=".gif"]:before, .c-form input.text > a[href$=".gif"]:before, .c-form input.textarea > a[href$=".gif"]:before,
.c-form textarea.text > a[href$=".gif"]:before,
.c-form textarea.textarea > a[href$=".gif"]:before, .c-form input[type=text] > a[href$=".gif"]:before,
.c-form input[type=password] > a[href$=".gif"]:before,
.c-form input[type=email] > a[href$=".gif"]:before,
.c-form input[type=url] > a[href$=".gif"]:before,
.c-form input[type=date] > a[href$=".gif"]:before,
.c-form input[type=month] > a[href$=".gif"]:before,
.c-form input[type=time] > a[href$=".gif"]:before,
.c-form input[type=datetime] > a[href$=".gif"]:before,
.c-form input[type=datetime-local] > a[href$=".gif"]:before,
.c-form input[type=week] > a[href$=".gif"]:before,
.c-form input[type=number] > a[href$=".gif"]:before,
.c-form input[type=search] > a[href$=".gif"]:before,
.c-form input[type=tel] > a[href$=".gif"]:before,
.c-form input[type=color] > a[href$=".gif"]:before,
.c-form textarea > a[href$=".gif"]:before, .c-form__checkbox label > a[href$=".gif"]:before, .c-form__dropdown > a[href$=".gif"]:before, .c-form__dropdown select > option > a[href$=".gif"]:before, .c-form__dropdown > label > a[href$=".gif"]:before, .typography ul > a[href$=".gif"]:before, .c-elementalPublikationen__copystage > p > strong > a[href$=".gif"]:before, .dropzone-holder.uploadable > p > strong > a[href$=".gif"]:before, .c-schedule__copy > strong > a[href$=".gif"]:before, .c-lightbox__subline > strong > a[href$=".gif"]:before, .tobii__counter > strong > a[href$=".gif"]:before, .tobii-image figure > figcaption > strong > a[href$=".gif"]:before, .c-form .btn-toolbar > p > strong > a[href$=".gif"]:before, .c-books__autor > strong > a[href$=".gif"]:before, .c-books__copy > strong > a[href$=".gif"]:before, .c-books__verlag > strong > a[href$=".gif"]:before, .c-books__jahr > strong > a[href$=".gif"]:before, .c-books__isbn > strong > a[href$=".gif"]:before, .c-books__preis > strong > a[href$=".gif"]:before, .c-books__link > strong > a[href$=".gif"]:before, .c-astlrVideoDates__copy > strong > a[href$=".gif"]:before, .c-astlrFileItems__link > strong > a[href$=".gif"]:before, .c-astlrCopy__fieldname > strong > a[href$=".gif"]:before, .c-astlrCopy__field > strong > a[href$=".gif"]:before, .c-astlrCopy > p > strong > a[href$=".gif"]:before, .c-astlrCopy__accordionHeader > strong > a[href$=".gif"]:before, .c-astlrCopy__accordionField > strong > a[href$=".gif"]:before, .c-astlrStage__note > p > strong > a[href$=".gif"]:before, .c-astlrStage__uploader > p > strong > a[href$=".gif"]:before, .c-anncmts__body > strong > a[href$=".gif"]:before, .typography p > strong > a[href$=".gif"]:before, .c-form label > strong > a[href$=".gif"]:before, .c-form input.text > strong > a[href$=".gif"]:before, .c-form input.textarea > strong > a[href$=".gif"]:before,
.c-form textarea.text > strong > a[href$=".gif"]:before,
.c-form textarea.textarea > strong > a[href$=".gif"]:before, .c-form input[type=text] > strong > a[href$=".gif"]:before,
.c-form input[type=password] > strong > a[href$=".gif"]:before,
.c-form input[type=email] > strong > a[href$=".gif"]:before,
.c-form input[type=url] > strong > a[href$=".gif"]:before,
.c-form input[type=date] > strong > a[href$=".gif"]:before,
.c-form input[type=month] > strong > a[href$=".gif"]:before,
.c-form input[type=time] > strong > a[href$=".gif"]:before,
.c-form input[type=datetime] > strong > a[href$=".gif"]:before,
.c-form input[type=datetime-local] > strong > a[href$=".gif"]:before,
.c-form input[type=week] > strong > a[href$=".gif"]:before,
.c-form input[type=number] > strong > a[href$=".gif"]:before,
.c-form input[type=search] > strong > a[href$=".gif"]:before,
.c-form input[type=tel] > strong > a[href$=".gif"]:before,
.c-form input[type=color] > strong > a[href$=".gif"]:before,
.c-form textarea > strong > a[href$=".gif"]:before, .c-form__checkbox label > strong > a[href$=".gif"]:before, .c-form__dropdown > strong > a[href$=".gif"]:before, .c-form__dropdown select > option > strong > a[href$=".gif"]:before, .c-form__dropdown > label > strong > a[href$=".gif"]:before, .typography ul > strong > a[href$=".gif"]:before,
.c-elementalPublikationen__copystage > p > em > a[href$=".gif"]:before,
.dropzone-holder.uploadable > p > em > a[href$=".gif"]:before,
.c-schedule__copy > em > a[href$=".gif"]:before,
.c-lightbox__subline > em > a[href$=".gif"]:before,
.tobii__counter > em > a[href$=".gif"]:before,
.tobii-image figure > figcaption > em > a[href$=".gif"]:before,
.c-form .btn-toolbar > p > em > a[href$=".gif"]:before,
.c-books__autor > em > a[href$=".gif"]:before,
.c-books__copy > em > a[href$=".gif"]:before,
.c-books__verlag > em > a[href$=".gif"]:before,
.c-books__jahr > em > a[href$=".gif"]:before,
.c-books__isbn > em > a[href$=".gif"]:before,
.c-books__preis > em > a[href$=".gif"]:before,
.c-books__link > em > a[href$=".gif"]:before,
.c-astlrVideoDates__copy > em > a[href$=".gif"]:before,
.c-astlrFileItems__link > em > a[href$=".gif"]:before,
.c-astlrCopy__fieldname > em > a[href$=".gif"]:before,
.c-astlrCopy__field > em > a[href$=".gif"]:before,
.c-astlrCopy > p > em > a[href$=".gif"]:before,
.c-astlrCopy__accordionHeader > em > a[href$=".gif"]:before,
.c-astlrCopy__accordionField > em > a[href$=".gif"]:before,
.c-astlrStage__note > p > em > a[href$=".gif"]:before,
.c-astlrStage__uploader > p > em > a[href$=".gif"]:before,
.c-anncmts__body > em > a[href$=".gif"]:before,
.typography p > em > a[href$=".gif"]:before,
.c-form label > em > a[href$=".gif"]:before,
.c-form input.text > em > a[href$=".gif"]:before,
.c-form input.textarea > em > a[href$=".gif"]:before,
.c-form textarea.text > em > a[href$=".gif"]:before,
.c-form textarea.textarea > em > a[href$=".gif"]:before,
.c-form input[type=text] > em > a[href$=".gif"]:before,
.c-form input[type=password] > em > a[href$=".gif"]:before,
.c-form input[type=email] > em > a[href$=".gif"]:before,
.c-form input[type=url] > em > a[href$=".gif"]:before,
.c-form input[type=date] > em > a[href$=".gif"]:before,
.c-form input[type=month] > em > a[href$=".gif"]:before,
.c-form input[type=time] > em > a[href$=".gif"]:before,
.c-form input[type=datetime] > em > a[href$=".gif"]:before,
.c-form input[type=datetime-local] > em > a[href$=".gif"]:before,
.c-form input[type=week] > em > a[href$=".gif"]:before,
.c-form input[type=number] > em > a[href$=".gif"]:before,
.c-form input[type=search] > em > a[href$=".gif"]:before,
.c-form input[type=tel] > em > a[href$=".gif"]:before,
.c-form input[type=color] > em > a[href$=".gif"]:before,
.c-form textarea > em > a[href$=".gif"]:before,
.c-form__checkbox label > em > a[href$=".gif"]:before,
.c-form__dropdown > em > a[href$=".gif"]:before,
.c-form__dropdown select > option > em > a[href$=".gif"]:before,
.c-form__dropdown > label > em > a[href$=".gif"]:before,
.typography ul > em > a[href$=".gif"]:before, .c-footer__typo > a[href$=".GIF"]:before, .c-footer__address > p > a[href$=".GIF"]:before, .c-videoEmbed__caption > strong > a[href$=".GIF"]:before, .c-videoEmbed__caption > h1 > strong > a[href$=".GIF"]:before, .c-videoEmbed__caption > h2 > strong > a[href$=".GIF"]:before, .c-videoEmbed__caption > h3 > strong > a[href$=".GIF"]:before, .c-videoEmbed__caption > h4 > strong > a[href$=".GIF"]:before, .c-videoEmbed__caption > h5 > strong > a[href$=".GIF"]:before, .c-videoEmbed__caption > p > strong > a[href$=".GIF"]:before, .c-pollingTool__introtext > strong > a[href$=".GIF"]:before, .c-mediathekCard__caption > strong > a[href$=".GIF"]:before, .c-mediathekCard__caption > h1 > strong > a[href$=".GIF"]:before, .c-mediathekCard__caption > h2 > strong > a[href$=".GIF"]:before, .c-mediathekCard__caption > h3 > strong > a[href$=".GIF"]:before, .c-mediathekCard__caption > h4 > strong > a[href$=".GIF"]:before, .c-mediathekCard__caption > h5 > strong > a[href$=".GIF"]:before, .c-mediathekCard__caption > p > strong > a[href$=".GIF"]:before, .c-astlrSlider__caption > p > strong > a[href$=".GIF"]:before, .c-astlrSummary__copy > strong > a[href$=".GIF"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href$=".GIF"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href$=".GIF"]:before, .typography p.small > strong > a[href$=".GIF"]:before, .typography table > strong > a[href$=".GIF"]:before, .c-form .message > strong > a[href$=".GIF"]:before,
.c-videoEmbed__caption > em > a[href$=".GIF"]:before,
.c-videoEmbed__caption > h1 > em > a[href$=".GIF"]:before,
.c-videoEmbed__caption > h2 > em > a[href$=".GIF"]:before,
.c-videoEmbed__caption > h3 > em > a[href$=".GIF"]:before,
.c-videoEmbed__caption > h4 > em > a[href$=".GIF"]:before,
.c-videoEmbed__caption > h5 > em > a[href$=".GIF"]:before,
.c-videoEmbed__caption > p > em > a[href$=".GIF"]:before,
.c-pollingTool__introtext > em > a[href$=".GIF"]:before,
.c-mediathekCard__caption > em > a[href$=".GIF"]:before,
.c-mediathekCard__caption > h1 > em > a[href$=".GIF"]:before,
.c-mediathekCard__caption > h2 > em > a[href$=".GIF"]:before,
.c-mediathekCard__caption > h3 > em > a[href$=".GIF"]:before,
.c-mediathekCard__caption > h4 > em > a[href$=".GIF"]:before,
.c-mediathekCard__caption > h5 > em > a[href$=".GIF"]:before,
.c-mediathekCard__caption > p > em > a[href$=".GIF"]:before,
.c-astlrSlider__caption > p > em > a[href$=".GIF"]:before,
.c-astlrSummary__copy > em > a[href$=".GIF"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href$=".GIF"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href$=".GIF"]:before,
.typography p.small > em > a[href$=".GIF"]:before,
.typography table > em > a[href$=".GIF"]:before,
.c-form .message > em > a[href$=".GIF"]:before, .c-elementalPublikationen__copystage > p > a[href$=".GIF"]:before, .dropzone-holder.uploadable > p > a[href$=".GIF"]:before, .c-schedule__copy > a[href$=".GIF"]:before, .c-lightbox__subline > a[href$=".GIF"]:before, .tobii__counter > a[href$=".GIF"]:before, .tobii-image figure > figcaption > a[href$=".GIF"]:before, .c-form .btn-toolbar > p > a[href$=".GIF"]:before, .c-books__autor > a[href$=".GIF"]:before, .c-books__copy > a[href$=".GIF"]:before, .c-books__verlag > a[href$=".GIF"]:before, .c-books__jahr > a[href$=".GIF"]:before, .c-books__isbn > a[href$=".GIF"]:before, .c-books__preis > a[href$=".GIF"]:before, .c-books__link > a[href$=".GIF"]:before, .c-astlrVideoDates__copy > a[href$=".GIF"]:before, .c-astlrFileItems__link > a[href$=".GIF"]:before, .c-astlrCopy__fieldname > a[href$=".GIF"]:before, .c-astlrCopy__field > a[href$=".GIF"]:before, .c-astlrCopy > p > a[href$=".GIF"]:before, .c-astlrCopy__accordionHeader > a[href$=".GIF"]:before, .c-astlrCopy__accordionField > a[href$=".GIF"]:before, .c-astlrStage__note > p > a[href$=".GIF"]:before, .c-astlrStage__uploader > p > a[href$=".GIF"]:before, .c-anncmts__body > a[href$=".GIF"]:before, .typography p > a[href$=".GIF"]:before, .c-form label > a[href$=".GIF"]:before, .c-form input.text > a[href$=".GIF"]:before, .c-form input.textarea > a[href$=".GIF"]:before,
.c-form textarea.text > a[href$=".GIF"]:before,
.c-form textarea.textarea > a[href$=".GIF"]:before, .c-form input[type=text] > a[href$=".GIF"]:before,
.c-form input[type=password] > a[href$=".GIF"]:before,
.c-form input[type=email] > a[href$=".GIF"]:before,
.c-form input[type=url] > a[href$=".GIF"]:before,
.c-form input[type=date] > a[href$=".GIF"]:before,
.c-form input[type=month] > a[href$=".GIF"]:before,
.c-form input[type=time] > a[href$=".GIF"]:before,
.c-form input[type=datetime] > a[href$=".GIF"]:before,
.c-form input[type=datetime-local] > a[href$=".GIF"]:before,
.c-form input[type=week] > a[href$=".GIF"]:before,
.c-form input[type=number] > a[href$=".GIF"]:before,
.c-form input[type=search] > a[href$=".GIF"]:before,
.c-form input[type=tel] > a[href$=".GIF"]:before,
.c-form input[type=color] > a[href$=".GIF"]:before,
.c-form textarea > a[href$=".GIF"]:before, .c-form__checkbox label > a[href$=".GIF"]:before, .c-form__dropdown > a[href$=".GIF"]:before, .c-form__dropdown select > option > a[href$=".GIF"]:before, .c-form__dropdown > label > a[href$=".GIF"]:before, .typography ul > a[href$=".GIF"]:before, .c-elementalPublikationen__copystage > p > strong > a[href$=".GIF"]:before, .dropzone-holder.uploadable > p > strong > a[href$=".GIF"]:before, .c-schedule__copy > strong > a[href$=".GIF"]:before, .c-lightbox__subline > strong > a[href$=".GIF"]:before, .tobii__counter > strong > a[href$=".GIF"]:before, .tobii-image figure > figcaption > strong > a[href$=".GIF"]:before, .c-form .btn-toolbar > p > strong > a[href$=".GIF"]:before, .c-books__autor > strong > a[href$=".GIF"]:before, .c-books__copy > strong > a[href$=".GIF"]:before, .c-books__verlag > strong > a[href$=".GIF"]:before, .c-books__jahr > strong > a[href$=".GIF"]:before, .c-books__isbn > strong > a[href$=".GIF"]:before, .c-books__preis > strong > a[href$=".GIF"]:before, .c-books__link > strong > a[href$=".GIF"]:before, .c-astlrVideoDates__copy > strong > a[href$=".GIF"]:before, .c-astlrFileItems__link > strong > a[href$=".GIF"]:before, .c-astlrCopy__fieldname > strong > a[href$=".GIF"]:before, .c-astlrCopy__field > strong > a[href$=".GIF"]:before, .c-astlrCopy > p > strong > a[href$=".GIF"]:before, .c-astlrCopy__accordionHeader > strong > a[href$=".GIF"]:before, .c-astlrCopy__accordionField > strong > a[href$=".GIF"]:before, .c-astlrStage__note > p > strong > a[href$=".GIF"]:before, .c-astlrStage__uploader > p > strong > a[href$=".GIF"]:before, .c-anncmts__body > strong > a[href$=".GIF"]:before, .typography p > strong > a[href$=".GIF"]:before, .c-form label > strong > a[href$=".GIF"]:before, .c-form input.text > strong > a[href$=".GIF"]:before, .c-form input.textarea > strong > a[href$=".GIF"]:before,
.c-form textarea.text > strong > a[href$=".GIF"]:before,
.c-form textarea.textarea > strong > a[href$=".GIF"]:before, .c-form input[type=text] > strong > a[href$=".GIF"]:before,
.c-form input[type=password] > strong > a[href$=".GIF"]:before,
.c-form input[type=email] > strong > a[href$=".GIF"]:before,
.c-form input[type=url] > strong > a[href$=".GIF"]:before,
.c-form input[type=date] > strong > a[href$=".GIF"]:before,
.c-form input[type=month] > strong > a[href$=".GIF"]:before,
.c-form input[type=time] > strong > a[href$=".GIF"]:before,
.c-form input[type=datetime] > strong > a[href$=".GIF"]:before,
.c-form input[type=datetime-local] > strong > a[href$=".GIF"]:before,
.c-form input[type=week] > strong > a[href$=".GIF"]:before,
.c-form input[type=number] > strong > a[href$=".GIF"]:before,
.c-form input[type=search] > strong > a[href$=".GIF"]:before,
.c-form input[type=tel] > strong > a[href$=".GIF"]:before,
.c-form input[type=color] > strong > a[href$=".GIF"]:before,
.c-form textarea > strong > a[href$=".GIF"]:before, .c-form__checkbox label > strong > a[href$=".GIF"]:before, .c-form__dropdown > strong > a[href$=".GIF"]:before, .c-form__dropdown select > option > strong > a[href$=".GIF"]:before, .c-form__dropdown > label > strong > a[href$=".GIF"]:before, .typography ul > strong > a[href$=".GIF"]:before,
.c-elementalPublikationen__copystage > p > em > a[href$=".GIF"]:before,
.dropzone-holder.uploadable > p > em > a[href$=".GIF"]:before,
.c-schedule__copy > em > a[href$=".GIF"]:before,
.c-lightbox__subline > em > a[href$=".GIF"]:before,
.tobii__counter > em > a[href$=".GIF"]:before,
.tobii-image figure > figcaption > em > a[href$=".GIF"]:before,
.c-form .btn-toolbar > p > em > a[href$=".GIF"]:before,
.c-books__autor > em > a[href$=".GIF"]:before,
.c-books__copy > em > a[href$=".GIF"]:before,
.c-books__verlag > em > a[href$=".GIF"]:before,
.c-books__jahr > em > a[href$=".GIF"]:before,
.c-books__isbn > em > a[href$=".GIF"]:before,
.c-books__preis > em > a[href$=".GIF"]:before,
.c-books__link > em > a[href$=".GIF"]:before,
.c-astlrVideoDates__copy > em > a[href$=".GIF"]:before,
.c-astlrFileItems__link > em > a[href$=".GIF"]:before,
.c-astlrCopy__fieldname > em > a[href$=".GIF"]:before,
.c-astlrCopy__field > em > a[href$=".GIF"]:before,
.c-astlrCopy > p > em > a[href$=".GIF"]:before,
.c-astlrCopy__accordionHeader > em > a[href$=".GIF"]:before,
.c-astlrCopy__accordionField > em > a[href$=".GIF"]:before,
.c-astlrStage__note > p > em > a[href$=".GIF"]:before,
.c-astlrStage__uploader > p > em > a[href$=".GIF"]:before,
.c-anncmts__body > em > a[href$=".GIF"]:before,
.typography p > em > a[href$=".GIF"]:before,
.c-form label > em > a[href$=".GIF"]:before,
.c-form input.text > em > a[href$=".GIF"]:before,
.c-form input.textarea > em > a[href$=".GIF"]:before,
.c-form textarea.text > em > a[href$=".GIF"]:before,
.c-form textarea.textarea > em > a[href$=".GIF"]:before,
.c-form input[type=text] > em > a[href$=".GIF"]:before,
.c-form input[type=password] > em > a[href$=".GIF"]:before,
.c-form input[type=email] > em > a[href$=".GIF"]:before,
.c-form input[type=url] > em > a[href$=".GIF"]:before,
.c-form input[type=date] > em > a[href$=".GIF"]:before,
.c-form input[type=month] > em > a[href$=".GIF"]:before,
.c-form input[type=time] > em > a[href$=".GIF"]:before,
.c-form input[type=datetime] > em > a[href$=".GIF"]:before,
.c-form input[type=datetime-local] > em > a[href$=".GIF"]:before,
.c-form input[type=week] > em > a[href$=".GIF"]:before,
.c-form input[type=number] > em > a[href$=".GIF"]:before,
.c-form input[type=search] > em > a[href$=".GIF"]:before,
.c-form input[type=tel] > em > a[href$=".GIF"]:before,
.c-form input[type=color] > em > a[href$=".GIF"]:before,
.c-form textarea > em > a[href$=".GIF"]:before,
.c-form__checkbox label > em > a[href$=".GIF"]:before,
.c-form__dropdown > em > a[href$=".GIF"]:before,
.c-form__dropdown select > option > em > a[href$=".GIF"]:before,
.c-form__dropdown > label > em > a[href$=".GIF"]:before,
.typography ul > em > a[href$=".GIF"]:before, .c-footer__typo > a[href$=".jpg"]:before, .c-footer__address > p > a[href$=".jpg"]:before, .c-videoEmbed__caption > strong > a[href$=".jpg"]:before, .c-videoEmbed__caption > h1 > strong > a[href$=".jpg"]:before, .c-videoEmbed__caption > h2 > strong > a[href$=".jpg"]:before, .c-videoEmbed__caption > h3 > strong > a[href$=".jpg"]:before, .c-videoEmbed__caption > h4 > strong > a[href$=".jpg"]:before, .c-videoEmbed__caption > h5 > strong > a[href$=".jpg"]:before, .c-videoEmbed__caption > p > strong > a[href$=".jpg"]:before, .c-pollingTool__introtext > strong > a[href$=".jpg"]:before, .c-mediathekCard__caption > strong > a[href$=".jpg"]:before, .c-mediathekCard__caption > h1 > strong > a[href$=".jpg"]:before, .c-mediathekCard__caption > h2 > strong > a[href$=".jpg"]:before, .c-mediathekCard__caption > h3 > strong > a[href$=".jpg"]:before, .c-mediathekCard__caption > h4 > strong > a[href$=".jpg"]:before, .c-mediathekCard__caption > h5 > strong > a[href$=".jpg"]:before, .c-mediathekCard__caption > p > strong > a[href$=".jpg"]:before, .c-astlrSlider__caption > p > strong > a[href$=".jpg"]:before, .c-astlrSummary__copy > strong > a[href$=".jpg"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href$=".jpg"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href$=".jpg"]:before, .typography p.small > strong > a[href$=".jpg"]:before, .typography table > strong > a[href$=".jpg"]:before, .c-form .message > strong > a[href$=".jpg"]:before,
.c-videoEmbed__caption > em > a[href$=".jpg"]:before,
.c-videoEmbed__caption > h1 > em > a[href$=".jpg"]:before,
.c-videoEmbed__caption > h2 > em > a[href$=".jpg"]:before,
.c-videoEmbed__caption > h3 > em > a[href$=".jpg"]:before,
.c-videoEmbed__caption > h4 > em > a[href$=".jpg"]:before,
.c-videoEmbed__caption > h5 > em > a[href$=".jpg"]:before,
.c-videoEmbed__caption > p > em > a[href$=".jpg"]:before,
.c-pollingTool__introtext > em > a[href$=".jpg"]:before,
.c-mediathekCard__caption > em > a[href$=".jpg"]:before,
.c-mediathekCard__caption > h1 > em > a[href$=".jpg"]:before,
.c-mediathekCard__caption > h2 > em > a[href$=".jpg"]:before,
.c-mediathekCard__caption > h3 > em > a[href$=".jpg"]:before,
.c-mediathekCard__caption > h4 > em > a[href$=".jpg"]:before,
.c-mediathekCard__caption > h5 > em > a[href$=".jpg"]:before,
.c-mediathekCard__caption > p > em > a[href$=".jpg"]:before,
.c-astlrSlider__caption > p > em > a[href$=".jpg"]:before,
.c-astlrSummary__copy > em > a[href$=".jpg"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href$=".jpg"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href$=".jpg"]:before,
.typography p.small > em > a[href$=".jpg"]:before,
.typography table > em > a[href$=".jpg"]:before,
.c-form .message > em > a[href$=".jpg"]:before, .c-elementalPublikationen__copystage > p > a[href$=".jpg"]:before, .dropzone-holder.uploadable > p > a[href$=".jpg"]:before, .c-schedule__copy > a[href$=".jpg"]:before, .c-lightbox__subline > a[href$=".jpg"]:before, .tobii__counter > a[href$=".jpg"]:before, .tobii-image figure > figcaption > a[href$=".jpg"]:before, .c-form .btn-toolbar > p > a[href$=".jpg"]:before, .c-books__autor > a[href$=".jpg"]:before, .c-books__copy > a[href$=".jpg"]:before, .c-books__verlag > a[href$=".jpg"]:before, .c-books__jahr > a[href$=".jpg"]:before, .c-books__isbn > a[href$=".jpg"]:before, .c-books__preis > a[href$=".jpg"]:before, .c-books__link > a[href$=".jpg"]:before, .c-astlrVideoDates__copy > a[href$=".jpg"]:before, .c-astlrFileItems__link > a[href$=".jpg"]:before, .c-astlrCopy__fieldname > a[href$=".jpg"]:before, .c-astlrCopy__field > a[href$=".jpg"]:before, .c-astlrCopy > p > a[href$=".jpg"]:before, .c-astlrCopy__accordionHeader > a[href$=".jpg"]:before, .c-astlrCopy__accordionField > a[href$=".jpg"]:before, .c-astlrStage__note > p > a[href$=".jpg"]:before, .c-astlrStage__uploader > p > a[href$=".jpg"]:before, .c-anncmts__body > a[href$=".jpg"]:before, .typography p > a[href$=".jpg"]:before, .c-form label > a[href$=".jpg"]:before, .c-form input.text > a[href$=".jpg"]:before, .c-form input.textarea > a[href$=".jpg"]:before,
.c-form textarea.text > a[href$=".jpg"]:before,
.c-form textarea.textarea > a[href$=".jpg"]:before, .c-form input[type=text] > a[href$=".jpg"]:before,
.c-form input[type=password] > a[href$=".jpg"]:before,
.c-form input[type=email] > a[href$=".jpg"]:before,
.c-form input[type=url] > a[href$=".jpg"]:before,
.c-form input[type=date] > a[href$=".jpg"]:before,
.c-form input[type=month] > a[href$=".jpg"]:before,
.c-form input[type=time] > a[href$=".jpg"]:before,
.c-form input[type=datetime] > a[href$=".jpg"]:before,
.c-form input[type=datetime-local] > a[href$=".jpg"]:before,
.c-form input[type=week] > a[href$=".jpg"]:before,
.c-form input[type=number] > a[href$=".jpg"]:before,
.c-form input[type=search] > a[href$=".jpg"]:before,
.c-form input[type=tel] > a[href$=".jpg"]:before,
.c-form input[type=color] > a[href$=".jpg"]:before,
.c-form textarea > a[href$=".jpg"]:before, .c-form__checkbox label > a[href$=".jpg"]:before, .c-form__dropdown > a[href$=".jpg"]:before, .c-form__dropdown select > option > a[href$=".jpg"]:before, .c-form__dropdown > label > a[href$=".jpg"]:before, .typography ul > a[href$=".jpg"]:before, .c-elementalPublikationen__copystage > p > strong > a[href$=".jpg"]:before, .dropzone-holder.uploadable > p > strong > a[href$=".jpg"]:before, .c-schedule__copy > strong > a[href$=".jpg"]:before, .c-lightbox__subline > strong > a[href$=".jpg"]:before, .tobii__counter > strong > a[href$=".jpg"]:before, .tobii-image figure > figcaption > strong > a[href$=".jpg"]:before, .c-form .btn-toolbar > p > strong > a[href$=".jpg"]:before, .c-books__autor > strong > a[href$=".jpg"]:before, .c-books__copy > strong > a[href$=".jpg"]:before, .c-books__verlag > strong > a[href$=".jpg"]:before, .c-books__jahr > strong > a[href$=".jpg"]:before, .c-books__isbn > strong > a[href$=".jpg"]:before, .c-books__preis > strong > a[href$=".jpg"]:before, .c-books__link > strong > a[href$=".jpg"]:before, .c-astlrVideoDates__copy > strong > a[href$=".jpg"]:before, .c-astlrFileItems__link > strong > a[href$=".jpg"]:before, .c-astlrCopy__fieldname > strong > a[href$=".jpg"]:before, .c-astlrCopy__field > strong > a[href$=".jpg"]:before, .c-astlrCopy > p > strong > a[href$=".jpg"]:before, .c-astlrCopy__accordionHeader > strong > a[href$=".jpg"]:before, .c-astlrCopy__accordionField > strong > a[href$=".jpg"]:before, .c-astlrStage__note > p > strong > a[href$=".jpg"]:before, .c-astlrStage__uploader > p > strong > a[href$=".jpg"]:before, .c-anncmts__body > strong > a[href$=".jpg"]:before, .typography p > strong > a[href$=".jpg"]:before, .c-form label > strong > a[href$=".jpg"]:before, .c-form input.text > strong > a[href$=".jpg"]:before, .c-form input.textarea > strong > a[href$=".jpg"]:before,
.c-form textarea.text > strong > a[href$=".jpg"]:before,
.c-form textarea.textarea > strong > a[href$=".jpg"]:before, .c-form input[type=text] > strong > a[href$=".jpg"]:before,
.c-form input[type=password] > strong > a[href$=".jpg"]:before,
.c-form input[type=email] > strong > a[href$=".jpg"]:before,
.c-form input[type=url] > strong > a[href$=".jpg"]:before,
.c-form input[type=date] > strong > a[href$=".jpg"]:before,
.c-form input[type=month] > strong > a[href$=".jpg"]:before,
.c-form input[type=time] > strong > a[href$=".jpg"]:before,
.c-form input[type=datetime] > strong > a[href$=".jpg"]:before,
.c-form input[type=datetime-local] > strong > a[href$=".jpg"]:before,
.c-form input[type=week] > strong > a[href$=".jpg"]:before,
.c-form input[type=number] > strong > a[href$=".jpg"]:before,
.c-form input[type=search] > strong > a[href$=".jpg"]:before,
.c-form input[type=tel] > strong > a[href$=".jpg"]:before,
.c-form input[type=color] > strong > a[href$=".jpg"]:before,
.c-form textarea > strong > a[href$=".jpg"]:before, .c-form__checkbox label > strong > a[href$=".jpg"]:before, .c-form__dropdown > strong > a[href$=".jpg"]:before, .c-form__dropdown select > option > strong > a[href$=".jpg"]:before, .c-form__dropdown > label > strong > a[href$=".jpg"]:before, .typography ul > strong > a[href$=".jpg"]:before,
.c-elementalPublikationen__copystage > p > em > a[href$=".jpg"]:before,
.dropzone-holder.uploadable > p > em > a[href$=".jpg"]:before,
.c-schedule__copy > em > a[href$=".jpg"]:before,
.c-lightbox__subline > em > a[href$=".jpg"]:before,
.tobii__counter > em > a[href$=".jpg"]:before,
.tobii-image figure > figcaption > em > a[href$=".jpg"]:before,
.c-form .btn-toolbar > p > em > a[href$=".jpg"]:before,
.c-books__autor > em > a[href$=".jpg"]:before,
.c-books__copy > em > a[href$=".jpg"]:before,
.c-books__verlag > em > a[href$=".jpg"]:before,
.c-books__jahr > em > a[href$=".jpg"]:before,
.c-books__isbn > em > a[href$=".jpg"]:before,
.c-books__preis > em > a[href$=".jpg"]:before,
.c-books__link > em > a[href$=".jpg"]:before,
.c-astlrVideoDates__copy > em > a[href$=".jpg"]:before,
.c-astlrFileItems__link > em > a[href$=".jpg"]:before,
.c-astlrCopy__fieldname > em > a[href$=".jpg"]:before,
.c-astlrCopy__field > em > a[href$=".jpg"]:before,
.c-astlrCopy > p > em > a[href$=".jpg"]:before,
.c-astlrCopy__accordionHeader > em > a[href$=".jpg"]:before,
.c-astlrCopy__accordionField > em > a[href$=".jpg"]:before,
.c-astlrStage__note > p > em > a[href$=".jpg"]:before,
.c-astlrStage__uploader > p > em > a[href$=".jpg"]:before,
.c-anncmts__body > em > a[href$=".jpg"]:before,
.typography p > em > a[href$=".jpg"]:before,
.c-form label > em > a[href$=".jpg"]:before,
.c-form input.text > em > a[href$=".jpg"]:before,
.c-form input.textarea > em > a[href$=".jpg"]:before,
.c-form textarea.text > em > a[href$=".jpg"]:before,
.c-form textarea.textarea > em > a[href$=".jpg"]:before,
.c-form input[type=text] > em > a[href$=".jpg"]:before,
.c-form input[type=password] > em > a[href$=".jpg"]:before,
.c-form input[type=email] > em > a[href$=".jpg"]:before,
.c-form input[type=url] > em > a[href$=".jpg"]:before,
.c-form input[type=date] > em > a[href$=".jpg"]:before,
.c-form input[type=month] > em > a[href$=".jpg"]:before,
.c-form input[type=time] > em > a[href$=".jpg"]:before,
.c-form input[type=datetime] > em > a[href$=".jpg"]:before,
.c-form input[type=datetime-local] > em > a[href$=".jpg"]:before,
.c-form input[type=week] > em > a[href$=".jpg"]:before,
.c-form input[type=number] > em > a[href$=".jpg"]:before,
.c-form input[type=search] > em > a[href$=".jpg"]:before,
.c-form input[type=tel] > em > a[href$=".jpg"]:before,
.c-form input[type=color] > em > a[href$=".jpg"]:before,
.c-form textarea > em > a[href$=".jpg"]:before,
.c-form__checkbox label > em > a[href$=".jpg"]:before,
.c-form__dropdown > em > a[href$=".jpg"]:before,
.c-form__dropdown select > option > em > a[href$=".jpg"]:before,
.c-form__dropdown > label > em > a[href$=".jpg"]:before,
.typography ul > em > a[href$=".jpg"]:before, .c-footer__typo > a[href$=".JPG"]:before, .c-footer__address > p > a[href$=".JPG"]:before, .c-videoEmbed__caption > strong > a[href$=".JPG"]:before, .c-videoEmbed__caption > h1 > strong > a[href$=".JPG"]:before, .c-videoEmbed__caption > h2 > strong > a[href$=".JPG"]:before, .c-videoEmbed__caption > h3 > strong > a[href$=".JPG"]:before, .c-videoEmbed__caption > h4 > strong > a[href$=".JPG"]:before, .c-videoEmbed__caption > h5 > strong > a[href$=".JPG"]:before, .c-videoEmbed__caption > p > strong > a[href$=".JPG"]:before, .c-pollingTool__introtext > strong > a[href$=".JPG"]:before, .c-mediathekCard__caption > strong > a[href$=".JPG"]:before, .c-mediathekCard__caption > h1 > strong > a[href$=".JPG"]:before, .c-mediathekCard__caption > h2 > strong > a[href$=".JPG"]:before, .c-mediathekCard__caption > h3 > strong > a[href$=".JPG"]:before, .c-mediathekCard__caption > h4 > strong > a[href$=".JPG"]:before, .c-mediathekCard__caption > h5 > strong > a[href$=".JPG"]:before, .c-mediathekCard__caption > p > strong > a[href$=".JPG"]:before, .c-astlrSlider__caption > p > strong > a[href$=".JPG"]:before, .c-astlrSummary__copy > strong > a[href$=".JPG"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href$=".JPG"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href$=".JPG"]:before, .typography p.small > strong > a[href$=".JPG"]:before, .typography table > strong > a[href$=".JPG"]:before, .c-form .message > strong > a[href$=".JPG"]:before,
.c-videoEmbed__caption > em > a[href$=".JPG"]:before,
.c-videoEmbed__caption > h1 > em > a[href$=".JPG"]:before,
.c-videoEmbed__caption > h2 > em > a[href$=".JPG"]:before,
.c-videoEmbed__caption > h3 > em > a[href$=".JPG"]:before,
.c-videoEmbed__caption > h4 > em > a[href$=".JPG"]:before,
.c-videoEmbed__caption > h5 > em > a[href$=".JPG"]:before,
.c-videoEmbed__caption > p > em > a[href$=".JPG"]:before,
.c-pollingTool__introtext > em > a[href$=".JPG"]:before,
.c-mediathekCard__caption > em > a[href$=".JPG"]:before,
.c-mediathekCard__caption > h1 > em > a[href$=".JPG"]:before,
.c-mediathekCard__caption > h2 > em > a[href$=".JPG"]:before,
.c-mediathekCard__caption > h3 > em > a[href$=".JPG"]:before,
.c-mediathekCard__caption > h4 > em > a[href$=".JPG"]:before,
.c-mediathekCard__caption > h5 > em > a[href$=".JPG"]:before,
.c-mediathekCard__caption > p > em > a[href$=".JPG"]:before,
.c-astlrSlider__caption > p > em > a[href$=".JPG"]:before,
.c-astlrSummary__copy > em > a[href$=".JPG"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href$=".JPG"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href$=".JPG"]:before,
.typography p.small > em > a[href$=".JPG"]:before,
.typography table > em > a[href$=".JPG"]:before,
.c-form .message > em > a[href$=".JPG"]:before, .c-elementalPublikationen__copystage > p > a[href$=".JPG"]:before, .dropzone-holder.uploadable > p > a[href$=".JPG"]:before, .c-schedule__copy > a[href$=".JPG"]:before, .c-lightbox__subline > a[href$=".JPG"]:before, .tobii__counter > a[href$=".JPG"]:before, .tobii-image figure > figcaption > a[href$=".JPG"]:before, .c-form .btn-toolbar > p > a[href$=".JPG"]:before, .c-books__autor > a[href$=".JPG"]:before, .c-books__copy > a[href$=".JPG"]:before, .c-books__verlag > a[href$=".JPG"]:before, .c-books__jahr > a[href$=".JPG"]:before, .c-books__isbn > a[href$=".JPG"]:before, .c-books__preis > a[href$=".JPG"]:before, .c-books__link > a[href$=".JPG"]:before, .c-astlrVideoDates__copy > a[href$=".JPG"]:before, .c-astlrFileItems__link > a[href$=".JPG"]:before, .c-astlrCopy__fieldname > a[href$=".JPG"]:before, .c-astlrCopy__field > a[href$=".JPG"]:before, .c-astlrCopy > p > a[href$=".JPG"]:before, .c-astlrCopy__accordionHeader > a[href$=".JPG"]:before, .c-astlrCopy__accordionField > a[href$=".JPG"]:before, .c-astlrStage__note > p > a[href$=".JPG"]:before, .c-astlrStage__uploader > p > a[href$=".JPG"]:before, .c-anncmts__body > a[href$=".JPG"]:before, .typography p > a[href$=".JPG"]:before, .c-form label > a[href$=".JPG"]:before, .c-form input.text > a[href$=".JPG"]:before, .c-form input.textarea > a[href$=".JPG"]:before,
.c-form textarea.text > a[href$=".JPG"]:before,
.c-form textarea.textarea > a[href$=".JPG"]:before, .c-form input[type=text] > a[href$=".JPG"]:before,
.c-form input[type=password] > a[href$=".JPG"]:before,
.c-form input[type=email] > a[href$=".JPG"]:before,
.c-form input[type=url] > a[href$=".JPG"]:before,
.c-form input[type=date] > a[href$=".JPG"]:before,
.c-form input[type=month] > a[href$=".JPG"]:before,
.c-form input[type=time] > a[href$=".JPG"]:before,
.c-form input[type=datetime] > a[href$=".JPG"]:before,
.c-form input[type=datetime-local] > a[href$=".JPG"]:before,
.c-form input[type=week] > a[href$=".JPG"]:before,
.c-form input[type=number] > a[href$=".JPG"]:before,
.c-form input[type=search] > a[href$=".JPG"]:before,
.c-form input[type=tel] > a[href$=".JPG"]:before,
.c-form input[type=color] > a[href$=".JPG"]:before,
.c-form textarea > a[href$=".JPG"]:before, .c-form__checkbox label > a[href$=".JPG"]:before, .c-form__dropdown > a[href$=".JPG"]:before, .c-form__dropdown select > option > a[href$=".JPG"]:before, .c-form__dropdown > label > a[href$=".JPG"]:before, .typography ul > a[href$=".JPG"]:before, .c-elementalPublikationen__copystage > p > strong > a[href$=".JPG"]:before, .dropzone-holder.uploadable > p > strong > a[href$=".JPG"]:before, .c-schedule__copy > strong > a[href$=".JPG"]:before, .c-lightbox__subline > strong > a[href$=".JPG"]:before, .tobii__counter > strong > a[href$=".JPG"]:before, .tobii-image figure > figcaption > strong > a[href$=".JPG"]:before, .c-form .btn-toolbar > p > strong > a[href$=".JPG"]:before, .c-books__autor > strong > a[href$=".JPG"]:before, .c-books__copy > strong > a[href$=".JPG"]:before, .c-books__verlag > strong > a[href$=".JPG"]:before, .c-books__jahr > strong > a[href$=".JPG"]:before, .c-books__isbn > strong > a[href$=".JPG"]:before, .c-books__preis > strong > a[href$=".JPG"]:before, .c-books__link > strong > a[href$=".JPG"]:before, .c-astlrVideoDates__copy > strong > a[href$=".JPG"]:before, .c-astlrFileItems__link > strong > a[href$=".JPG"]:before, .c-astlrCopy__fieldname > strong > a[href$=".JPG"]:before, .c-astlrCopy__field > strong > a[href$=".JPG"]:before, .c-astlrCopy > p > strong > a[href$=".JPG"]:before, .c-astlrCopy__accordionHeader > strong > a[href$=".JPG"]:before, .c-astlrCopy__accordionField > strong > a[href$=".JPG"]:before, .c-astlrStage__note > p > strong > a[href$=".JPG"]:before, .c-astlrStage__uploader > p > strong > a[href$=".JPG"]:before, .c-anncmts__body > strong > a[href$=".JPG"]:before, .typography p > strong > a[href$=".JPG"]:before, .c-form label > strong > a[href$=".JPG"]:before, .c-form input.text > strong > a[href$=".JPG"]:before, .c-form input.textarea > strong > a[href$=".JPG"]:before,
.c-form textarea.text > strong > a[href$=".JPG"]:before,
.c-form textarea.textarea > strong > a[href$=".JPG"]:before, .c-form input[type=text] > strong > a[href$=".JPG"]:before,
.c-form input[type=password] > strong > a[href$=".JPG"]:before,
.c-form input[type=email] > strong > a[href$=".JPG"]:before,
.c-form input[type=url] > strong > a[href$=".JPG"]:before,
.c-form input[type=date] > strong > a[href$=".JPG"]:before,
.c-form input[type=month] > strong > a[href$=".JPG"]:before,
.c-form input[type=time] > strong > a[href$=".JPG"]:before,
.c-form input[type=datetime] > strong > a[href$=".JPG"]:before,
.c-form input[type=datetime-local] > strong > a[href$=".JPG"]:before,
.c-form input[type=week] > strong > a[href$=".JPG"]:before,
.c-form input[type=number] > strong > a[href$=".JPG"]:before,
.c-form input[type=search] > strong > a[href$=".JPG"]:before,
.c-form input[type=tel] > strong > a[href$=".JPG"]:before,
.c-form input[type=color] > strong > a[href$=".JPG"]:before,
.c-form textarea > strong > a[href$=".JPG"]:before, .c-form__checkbox label > strong > a[href$=".JPG"]:before, .c-form__dropdown > strong > a[href$=".JPG"]:before, .c-form__dropdown select > option > strong > a[href$=".JPG"]:before, .c-form__dropdown > label > strong > a[href$=".JPG"]:before, .typography ul > strong > a[href$=".JPG"]:before,
.c-elementalPublikationen__copystage > p > em > a[href$=".JPG"]:before,
.dropzone-holder.uploadable > p > em > a[href$=".JPG"]:before,
.c-schedule__copy > em > a[href$=".JPG"]:before,
.c-lightbox__subline > em > a[href$=".JPG"]:before,
.tobii__counter > em > a[href$=".JPG"]:before,
.tobii-image figure > figcaption > em > a[href$=".JPG"]:before,
.c-form .btn-toolbar > p > em > a[href$=".JPG"]:before,
.c-books__autor > em > a[href$=".JPG"]:before,
.c-books__copy > em > a[href$=".JPG"]:before,
.c-books__verlag > em > a[href$=".JPG"]:before,
.c-books__jahr > em > a[href$=".JPG"]:before,
.c-books__isbn > em > a[href$=".JPG"]:before,
.c-books__preis > em > a[href$=".JPG"]:before,
.c-books__link > em > a[href$=".JPG"]:before,
.c-astlrVideoDates__copy > em > a[href$=".JPG"]:before,
.c-astlrFileItems__link > em > a[href$=".JPG"]:before,
.c-astlrCopy__fieldname > em > a[href$=".JPG"]:before,
.c-astlrCopy__field > em > a[href$=".JPG"]:before,
.c-astlrCopy > p > em > a[href$=".JPG"]:before,
.c-astlrCopy__accordionHeader > em > a[href$=".JPG"]:before,
.c-astlrCopy__accordionField > em > a[href$=".JPG"]:before,
.c-astlrStage__note > p > em > a[href$=".JPG"]:before,
.c-astlrStage__uploader > p > em > a[href$=".JPG"]:before,
.c-anncmts__body > em > a[href$=".JPG"]:before,
.typography p > em > a[href$=".JPG"]:before,
.c-form label > em > a[href$=".JPG"]:before,
.c-form input.text > em > a[href$=".JPG"]:before,
.c-form input.textarea > em > a[href$=".JPG"]:before,
.c-form textarea.text > em > a[href$=".JPG"]:before,
.c-form textarea.textarea > em > a[href$=".JPG"]:before,
.c-form input[type=text] > em > a[href$=".JPG"]:before,
.c-form input[type=password] > em > a[href$=".JPG"]:before,
.c-form input[type=email] > em > a[href$=".JPG"]:before,
.c-form input[type=url] > em > a[href$=".JPG"]:before,
.c-form input[type=date] > em > a[href$=".JPG"]:before,
.c-form input[type=month] > em > a[href$=".JPG"]:before,
.c-form input[type=time] > em > a[href$=".JPG"]:before,
.c-form input[type=datetime] > em > a[href$=".JPG"]:before,
.c-form input[type=datetime-local] > em > a[href$=".JPG"]:before,
.c-form input[type=week] > em > a[href$=".JPG"]:before,
.c-form input[type=number] > em > a[href$=".JPG"]:before,
.c-form input[type=search] > em > a[href$=".JPG"]:before,
.c-form input[type=tel] > em > a[href$=".JPG"]:before,
.c-form input[type=color] > em > a[href$=".JPG"]:before,
.c-form textarea > em > a[href$=".JPG"]:before,
.c-form__checkbox label > em > a[href$=".JPG"]:before,
.c-form__dropdown > em > a[href$=".JPG"]:before,
.c-form__dropdown select > option > em > a[href$=".JPG"]:before,
.c-form__dropdown > label > em > a[href$=".JPG"]:before,
.typography ul > em > a[href$=".JPG"]:before, .c-footer__typo > a[href$=".pdf"]:before, .c-footer__address > p > a[href$=".pdf"]:before, .c-videoEmbed__caption > strong > a[href$=".pdf"]:before, .c-videoEmbed__caption > h1 > strong > a[href$=".pdf"]:before, .c-videoEmbed__caption > h2 > strong > a[href$=".pdf"]:before, .c-videoEmbed__caption > h3 > strong > a[href$=".pdf"]:before, .c-videoEmbed__caption > h4 > strong > a[href$=".pdf"]:before, .c-videoEmbed__caption > h5 > strong > a[href$=".pdf"]:before, .c-videoEmbed__caption > p > strong > a[href$=".pdf"]:before, .c-pollingTool__introtext > strong > a[href$=".pdf"]:before, .c-mediathekCard__caption > strong > a[href$=".pdf"]:before, .c-mediathekCard__caption > h1 > strong > a[href$=".pdf"]:before, .c-mediathekCard__caption > h2 > strong > a[href$=".pdf"]:before, .c-mediathekCard__caption > h3 > strong > a[href$=".pdf"]:before, .c-mediathekCard__caption > h4 > strong > a[href$=".pdf"]:before, .c-mediathekCard__caption > h5 > strong > a[href$=".pdf"]:before, .c-mediathekCard__caption > p > strong > a[href$=".pdf"]:before, .c-astlrSlider__caption > p > strong > a[href$=".pdf"]:before, .c-astlrSummary__copy > strong > a[href$=".pdf"]:before, .c-ausstellerRegistration__submittedData > table th > strong > a[href$=".pdf"]:before, .c-ausstellerRegistration__submittedData > table tr > strong > a[href$=".pdf"]:before, .typography p.small > strong > a[href$=".pdf"]:before, .typography table > strong > a[href$=".pdf"]:before, .c-form .message > strong > a[href$=".pdf"]:before,
.c-videoEmbed__caption > em > a[href$=".pdf"]:before,
.c-videoEmbed__caption > h1 > em > a[href$=".pdf"]:before,
.c-videoEmbed__caption > h2 > em > a[href$=".pdf"]:before,
.c-videoEmbed__caption > h3 > em > a[href$=".pdf"]:before,
.c-videoEmbed__caption > h4 > em > a[href$=".pdf"]:before,
.c-videoEmbed__caption > h5 > em > a[href$=".pdf"]:before,
.c-videoEmbed__caption > p > em > a[href$=".pdf"]:before,
.c-pollingTool__introtext > em > a[href$=".pdf"]:before,
.c-mediathekCard__caption > em > a[href$=".pdf"]:before,
.c-mediathekCard__caption > h1 > em > a[href$=".pdf"]:before,
.c-mediathekCard__caption > h2 > em > a[href$=".pdf"]:before,
.c-mediathekCard__caption > h3 > em > a[href$=".pdf"]:before,
.c-mediathekCard__caption > h4 > em > a[href$=".pdf"]:before,
.c-mediathekCard__caption > h5 > em > a[href$=".pdf"]:before,
.c-mediathekCard__caption > p > em > a[href$=".pdf"]:before,
.c-astlrSlider__caption > p > em > a[href$=".pdf"]:before,
.c-astlrSummary__copy > em > a[href$=".pdf"]:before,
.c-ausstellerRegistration__submittedData > table th > em > a[href$=".pdf"]:before,
.c-ausstellerRegistration__submittedData > table tr > em > a[href$=".pdf"]:before,
.typography p.small > em > a[href$=".pdf"]:before,
.typography table > em > a[href$=".pdf"]:before,
.c-form .message > em > a[href$=".pdf"]:before, .c-elementalPublikationen__copystage > p > a[href$=".pdf"]:before, .dropzone-holder.uploadable > p > a[href$=".pdf"]:before, .c-schedule__copy > a[href$=".pdf"]:before, .c-lightbox__subline > a[href$=".pdf"]:before, .tobii__counter > a[href$=".pdf"]:before, .tobii-image figure > figcaption > a[href$=".pdf"]:before, .c-form .btn-toolbar > p > a[href$=".pdf"]:before, .c-books__autor > a[href$=".pdf"]:before, .c-books__copy > a[href$=".pdf"]:before, .c-books__verlag > a[href$=".pdf"]:before, .c-books__jahr > a[href$=".pdf"]:before, .c-books__isbn > a[href$=".pdf"]:before, .c-books__preis > a[href$=".pdf"]:before, .c-books__link > a[href$=".pdf"]:before, .c-astlrVideoDates__copy > a[href$=".pdf"]:before, .c-astlrFileItems__link > a[href$=".pdf"]:before, .c-astlrCopy__fieldname > a[href$=".pdf"]:before, .c-astlrCopy__field > a[href$=".pdf"]:before, .c-astlrCopy > p > a[href$=".pdf"]:before, .c-astlrCopy__accordionHeader > a[href$=".pdf"]:before, .c-astlrCopy__accordionField > a[href$=".pdf"]:before, .c-astlrStage__note > p > a[href$=".pdf"]:before, .c-astlrStage__uploader > p > a[href$=".pdf"]:before, .c-anncmts__body > a[href$=".pdf"]:before, .typography p > a[href$=".pdf"]:before, .c-form label > a[href$=".pdf"]:before, .c-form input.text > a[href$=".pdf"]:before, .c-form input.textarea > a[href$=".pdf"]:before,
.c-form textarea.text > a[href$=".pdf"]:before,
.c-form textarea.textarea > a[href$=".pdf"]:before, .c-form input[type=text] > a[href$=".pdf"]:before,
.c-form input[type=password] > a[href$=".pdf"]:before,
.c-form input[type=email] > a[href$=".pdf"]:before,
.c-form input[type=url] > a[href$=".pdf"]:before,
.c-form input[type=date] > a[href$=".pdf"]:before,
.c-form input[type=month] > a[href$=".pdf"]:before,
.c-form input[type=time] > a[href$=".pdf"]:before,
.c-form input[type=datetime] > a[href$=".pdf"]:before,
.c-form input[type=datetime-local] > a[href$=".pdf"]:before,
.c-form input[type=week] > a[href$=".pdf"]:before,
.c-form input[type=number] > a[href$=".pdf"]:before,
.c-form input[type=search] > a[href$=".pdf"]:before,
.c-form input[type=tel] > a[href$=".pdf"]:before,
.c-form input[type=color] > a[href$=".pdf"]:before,
.c-form textarea > a[href$=".pdf"]:before, .c-form__checkbox label > a[href$=".pdf"]:before, .c-form__dropdown > a[href$=".pdf"]:before, .c-form__dropdown select > option > a[href$=".pdf"]:before, .c-form__dropdown > label > a[href$=".pdf"]:before, .typography ul > a[href$=".pdf"]:before, .c-elementalPublikationen__copystage > p > strong > a[href$=".pdf"]:before, .dropzone-holder.uploadable > p > strong > a[href$=".pdf"]:before, .c-schedule__copy > strong > a[href$=".pdf"]:before, .c-lightbox__subline > strong > a[href$=".pdf"]:before, .tobii__counter > strong > a[href$=".pdf"]:before, .tobii-image figure > figcaption > strong > a[href$=".pdf"]:before, .c-form .btn-toolbar > p > strong > a[href$=".pdf"]:before, .c-books__autor > strong > a[href$=".pdf"]:before, .c-books__copy > strong > a[href$=".pdf"]:before, .c-books__verlag > strong > a[href$=".pdf"]:before, .c-books__jahr > strong > a[href$=".pdf"]:before, .c-books__isbn > strong > a[href$=".pdf"]:before, .c-books__preis > strong > a[href$=".pdf"]:before, .c-books__link > strong > a[href$=".pdf"]:before, .c-astlrVideoDates__copy > strong > a[href$=".pdf"]:before, .c-astlrFileItems__link > strong > a[href$=".pdf"]:before, .c-astlrCopy__fieldname > strong > a[href$=".pdf"]:before, .c-astlrCopy__field > strong > a[href$=".pdf"]:before, .c-astlrCopy > p > strong > a[href$=".pdf"]:before, .c-astlrCopy__accordionHeader > strong > a[href$=".pdf"]:before, .c-astlrCopy__accordionField > strong > a[href$=".pdf"]:before, .c-astlrStage__note > p > strong > a[href$=".pdf"]:before, .c-astlrStage__uploader > p > strong > a[href$=".pdf"]:before, .c-anncmts__body > strong > a[href$=".pdf"]:before, .typography p > strong > a[href$=".pdf"]:before, .c-form label > strong > a[href$=".pdf"]:before, .c-form input.text > strong > a[href$=".pdf"]:before, .c-form input.textarea > strong > a[href$=".pdf"]:before,
.c-form textarea.text > strong > a[href$=".pdf"]:before,
.c-form textarea.textarea > strong > a[href$=".pdf"]:before, .c-form input[type=text] > strong > a[href$=".pdf"]:before,
.c-form input[type=password] > strong > a[href$=".pdf"]:before,
.c-form input[type=email] > strong > a[href$=".pdf"]:before,
.c-form input[type=url] > strong > a[href$=".pdf"]:before,
.c-form input[type=date] > strong > a[href$=".pdf"]:before,
.c-form input[type=month] > strong > a[href$=".pdf"]:before,
.c-form input[type=time] > strong > a[href$=".pdf"]:before,
.c-form input[type=datetime] > strong > a[href$=".pdf"]:before,
.c-form input[type=datetime-local] > strong > a[href$=".pdf"]:before,
.c-form input[type=week] > strong > a[href$=".pdf"]:before,
.c-form input[type=number] > strong > a[href$=".pdf"]:before,
.c-form input[type=search] > strong > a[href$=".pdf"]:before,
.c-form input[type=tel] > strong > a[href$=".pdf"]:before,
.c-form input[type=color] > strong > a[href$=".pdf"]:before,
.c-form textarea > strong > a[href$=".pdf"]:before, .c-form__checkbox label > strong > a[href$=".pdf"]:before, .c-form__dropdown > strong > a[href$=".pdf"]:before, .c-form__dropdown select > option > strong > a[href$=".pdf"]:before, .c-form__dropdown > label > strong > a[href$=".pdf"]:before, .typography ul > strong > a[href$=".pdf"]:before,
.c-elementalPublikationen__copystage > p > em > a[href$=".pdf"]:before,
.dropzone-holder.uploadable > p > em > a[href$=".pdf"]:before,
.c-schedule__copy > em > a[href$=".pdf"]:before,
.c-lightbox__subline > em > a[href$=".pdf"]:before,
.tobii__counter > em > a[href$=".pdf"]:before,
.tobii-image figure > figcaption > em > a[href$=".pdf"]:before,
.c-form .btn-toolbar > p > em > a[href$=".pdf"]:before,
.c-books__autor > em > a[href$=".pdf"]:before,
.c-books__copy > em > a[href$=".pdf"]:before,
.c-books__verlag > em > a[href$=".pdf"]:before,
.c-books__jahr > em > a[href$=".pdf"]:before,
.c-books__isbn > em > a[href$=".pdf"]:before,
.c-books__preis > em > a[href$=".pdf"]:before,
.c-books__link > em > a[href$=".pdf"]:before,
.c-astlrVideoDates__copy > em > a[href$=".pdf"]:before,
.c-astlrFileItems__link > em > a[href$=".pdf"]:before,
.c-astlrCopy__fieldname > em > a[href$=".pdf"]:before,
.c-astlrCopy__field > em > a[href$=".pdf"]:before,
.c-astlrCopy > p > em > a[href$=".pdf"]:before,
.c-astlrCopy__accordionHeader > em > a[href$=".pdf"]:before,
.c-astlrCopy__accordionField > em > a[href$=".pdf"]:before,
.c-astlrStage__note > p > em > a[href$=".pdf"]:before,
.c-astlrStage__uploader > p > em > a[href$=".pdf"]:before,
.c-anncmts__body > em > a[href$=".pdf"]:before,
.typography p > em > a[href$=".pdf"]:before,
.c-form label > em > a[href$=".pdf"]:before,
.c-form input.text > em > a[href$=".pdf"]:before,
.c-form input.textarea > em > a[href$=".pdf"]:before,
.c-form textarea.text > em > a[href$=".pdf"]:before,
.c-form textarea.textarea > em > a[href$=".pdf"]:before,
.c-form input[type=text] > em > a[href$=".pdf"]:before,
.c-form input[type=password] > em > a[href$=".pdf"]:before,
.c-form input[type=email] > em > a[href$=".pdf"]:before,
.c-form input[type=url] > em > a[href$=".pdf"]:before,
.c-form input[type=date] > em > a[href$=".pdf"]:before,
.c-form input[type=month] > em > a[href$=".pdf"]:before,
.c-form input[type=time] > em > a[href$=".pdf"]:before,
.c-form input[type=datetime] > em > a[href$=".pdf"]:before,
.c-form input[type=datetime-local] > em > a[href$=".pdf"]:before,
.c-form input[type=week] > em > a[href$=".pdf"]:before,
.c-form input[type=number] > em > a[href$=".pdf"]:before,
.c-form input[type=search] > em > a[href$=".pdf"]:before,
.c-form input[type=tel] > em > a[href$=".pdf"]:before,
.c-form input[type=color] > em > a[href$=".pdf"]:before,
.c-form textarea > em > a[href$=".pdf"]:before,
.c-form__checkbox label > em > a[href$=".pdf"]:before,
.c-form__dropdown > em > a[href$=".pdf"]:before,
.c-form__dropdown select > option > em > a[href$=".pdf"]:before,
.c-form__dropdown > label > em > a[href$=".pdf"]:before,
.typography ul > em > a[href$=".pdf"]:before {
  margin-right: 0.2rem;
  display: inline-block;
}
.c-form h1, .c-elementalSimpleContent__headline > h1, .c-elementalSimpleContent__copy > h1, .c-astlrStage__uploader > h2, .typography h1 {
  color: var(--color-primary);
  line-height: 1.2em;
  letter-spacing: 0.01px;
}
.c-elementalPublikationen__headline > h2, .c-form h2, .c-elementalSimpleContent__headline > h2, .c-elementalSimpleContent__copy > h2, .c-astlrABC__letter, .c-astlrCopy__orgaName, .c-astlrStage__orgaName, .typography h2 {
  color: var(--color-secondary);
  line-height: 1.25em;
  letter-spacing: 0.24px;
}
.c-elementalPublikationen__headline > h3, .c-mediathek__headline, .c-lightbox__headline, .c-form h3, .c-faqAccordion__title, .c-elementalPlansGrid__headline > h2, .c-elementalPlanRoom__headline > h2, .c-astlrSlider__header, .c-astlrVideoDates__headline, .c-astlrSummary__title, .c-astlrSummary__bu, .c-ausstellerRegistration__submittedData > h2, .c-astlrStage__errorMessage, .typography h3 {
  color: var(--color-secondary);
  line-height: 1.4em;
  letter-spacing: 0px;
}
.c-elementalPublikationen__copystage > h4, .c-schedule__headline, .c-heroHome__stage-right > p, .c-form h4, .c-faqAccordion__subtitle, .c-elementalPlansGrid__imgTitle, .c-elementalPlanRoom__headline > h3, .c-books__titel, .c-ausstellerRegistration__submittedData > h3, .c-astlrStage__note > h5, .c-page__subheadline, .typography h4 {
  color: var(--color-secondary);
  line-height: 1.4em;
  letter-spacing: -0.1px;
}
.c-pollingTool__headline, .c-liveVideoGallery__title, .c-liveVideoMain__title, .c-icons__legendhead--kurzfristigEng, .c-icons__legendhead--digitalesEng, .c-icons__legendhead--bfd, .c-form h5, .c-elementalPlansGrid__headline > h3, .c-astlrABC__filterheadline, .c-astlrSummary__headline, .c-astlrSummary__iconholder > h3, .c-astlrFileItems__headline, .c-anncmts__topline, .c-anncmts__headline, .typography h5 {
  color: var(--color-secondary);
  line-height: 1.4em;
  letter-spacing: -0.04px;
}
.c-elementalPlanRoom__standnr, .c-books__subtitel, .c-astlrSlider__caption > h2, .c-astlrSlider__caption > h3, .c-astlrVideoDates__orgaName, .typography h6 {
  color: var(--color-secondary);
  line-height: 1.4em;
  letter-spacing: 0;
}
.typography p.intro {
  color: var(--color-copytext);
  letter-spacing: -0.5px;
  line-height: 1.55em;
}
.c-elementalPublikationen__copystage > p, .dropzone-holder.uploadable > p, .c-schedule__copy, .c-lightbox__subline, .tobii__counter, .tobii-image figure > figcaption, .c-form .btn-toolbar > p, .c-books__autor, .c-books__copy, .c-books__verlag, .c-books__jahr, .c-books__isbn, .c-books__preis, .c-books__link, .c-astlrVideoDates__copy, .c-astlrFileItems__link, .c-astlrCopy__fieldname, .c-astlrCopy__field, .c-astlrCopy > p, .c-astlrCopy__accordionHeader, .c-astlrCopy__accordionField, .c-astlrStage__note > p, .c-astlrStage__uploader > p, .c-anncmts__body, .typography p, .c-form label, .c-form input.text, .c-form input.textarea,
.c-form textarea.text,
.c-form textarea.textarea, .c-form input[type=text],
.c-form input[type=password],
.c-form input[type=email],
.c-form input[type=url],
.c-form input[type=date],
.c-form input[type=month],
.c-form input[type=time],
.c-form input[type=datetime],
.c-form input[type=datetime-local],
.c-form input[type=week],
.c-form input[type=number],
.c-form input[type=search],
.c-form input[type=tel],
.c-form input[type=color],
.c-form textarea, .c-form__checkbox label, .c-form__dropdown, .c-form__dropdown select > option, .c-form__dropdown > label, .typography ul {
  color: var(--color-copytext);
  letter-spacing: 0px;
  line-height: 1.6em;
}
.c-elementalPublikationen__copystage > p > strong, .dropzone-holder.uploadable > p > strong, .c-schedule__copy > strong, .c-lightbox__subline > strong, .tobii__counter > strong, .tobii-image figure > figcaption > strong, .c-form .btn-toolbar > p > strong, .c-books__autor > strong, .c-books__copy > strong, .c-books__verlag > strong, .c-books__jahr > strong, .c-books__isbn > strong, .c-books__preis > strong, .c-books__link > strong, .c-astlrVideoDates__copy > strong, .c-astlrFileItems__link > strong, .c-astlrCopy__fieldname > strong, .c-astlrCopy__field > strong, .c-astlrCopy > p > strong, .c-astlrCopy__accordionHeader > strong, .c-astlrCopy__accordionField > strong, .c-astlrStage__note > p > strong, .c-astlrStage__uploader > p > strong, .c-anncmts__body > strong, .typography p > strong, .c-form label > strong, .c-form input.text > strong, .c-form input.textarea > strong,
.c-form textarea.text > strong,
.c-form textarea.textarea > strong, .c-form input[type=text] > strong,
.c-form input[type=password] > strong,
.c-form input[type=email] > strong,
.c-form input[type=url] > strong,
.c-form input[type=date] > strong,
.c-form input[type=month] > strong,
.c-form input[type=time] > strong,
.c-form input[type=datetime] > strong,
.c-form input[type=datetime-local] > strong,
.c-form input[type=week] > strong,
.c-form input[type=number] > strong,
.c-form input[type=search] > strong,
.c-form input[type=tel] > strong,
.c-form input[type=color] > strong,
.c-form textarea > strong, .c-form__checkbox label > strong, .c-form__dropdown > strong, .c-form__dropdown select > option > strong, .c-form__dropdown > label > strong, .typography ul > strong,
.c-elementalPublikationen__copystage > p > em,
.dropzone-holder.uploadable > p > em,
.c-schedule__copy > em,
.c-lightbox__subline > em,
.tobii__counter > em,
.tobii-image figure > figcaption > em,
.c-form .btn-toolbar > p > em,
.c-books__autor > em,
.c-books__copy > em,
.c-books__verlag > em,
.c-books__jahr > em,
.c-books__isbn > em,
.c-books__preis > em,
.c-books__link > em,
.c-astlrVideoDates__copy > em,
.c-astlrFileItems__link > em,
.c-astlrCopy__fieldname > em,
.c-astlrCopy__field > em,
.c-astlrCopy > p > em,
.c-astlrCopy__accordionHeader > em,
.c-astlrCopy__accordionField > em,
.c-astlrStage__note > p > em,
.c-astlrStage__uploader > p > em,
.c-anncmts__body > em,
.typography p > em,
.c-form label > em,
.c-form input.text > em,
.c-form input.textarea > em,
.c-form textarea.text > em,
.c-form textarea.textarea > em,
.c-form input[type=text] > em,
.c-form input[type=password] > em,
.c-form input[type=email] > em,
.c-form input[type=url] > em,
.c-form input[type=date] > em,
.c-form input[type=month] > em,
.c-form input[type=time] > em,
.c-form input[type=datetime] > em,
.c-form input[type=datetime-local] > em,
.c-form input[type=week] > em,
.c-form input[type=number] > em,
.c-form input[type=search] > em,
.c-form input[type=tel] > em,
.c-form input[type=color] > em,
.c-form textarea > em,
.c-form__checkbox label > em,
.c-form__dropdown > em,
.c-form__dropdown select > option > em,
.c-form__dropdown > label > em,
.typography ul > em {
  letter-spacing: 0.08px;
}
.c-books__autor, .c-astlrCopy__fieldname, .c-astlrCopy__accordionHeader {
  letter-spacing: 0.08px;
}
.c-videoEmbed__caption, .c-videoEmbed__caption > h1, .c-videoEmbed__caption > h2, .c-videoEmbed__caption > h3, .c-videoEmbed__caption > h4, .c-videoEmbed__caption > h5, .c-videoEmbed__caption > p, .c-pollingTool__introtext, .c-mediathekCard__caption, .c-mediathekCard__caption > h1, .c-mediathekCard__caption > h2, .c-mediathekCard__caption > h3, .c-mediathekCard__caption > h4, .c-mediathekCard__caption > h5, .c-mediathekCard__caption > p, .c-astlrSlider__caption > p, .c-astlrSummary__copy, .c-ausstellerRegistration__submittedData > table th, .c-ausstellerRegistration__submittedData > table tr, .typography p.small, .typography table, .c-form .message {
  color: var(--color-copytext);
  letter-spacing: 0.1px;
  line-height: 1.54em;
}
.c-videoEmbed__caption > strong, .c-videoEmbed__caption > h1 > strong, .c-videoEmbed__caption > h2 > strong, .c-videoEmbed__caption > h3 > strong, .c-videoEmbed__caption > h4 > strong, .c-videoEmbed__caption > h5 > strong, .c-videoEmbed__caption > p > strong, .c-pollingTool__introtext > strong, .c-mediathekCard__caption > strong, .c-mediathekCard__caption > h1 > strong, .c-mediathekCard__caption > h2 > strong, .c-mediathekCard__caption > h3 > strong, .c-mediathekCard__caption > h4 > strong, .c-mediathekCard__caption > h5 > strong, .c-mediathekCard__caption > p > strong, .c-astlrSlider__caption > p > strong, .c-astlrSummary__copy > strong, .c-ausstellerRegistration__submittedData > table th > strong, .c-ausstellerRegistration__submittedData > table tr > strong, .typography p.small > strong, .typography table > strong, .c-form .message > strong,
.c-videoEmbed__caption > em,
.c-videoEmbed__caption > h1 > em,
.c-videoEmbed__caption > h2 > em,
.c-videoEmbed__caption > h3 > em,
.c-videoEmbed__caption > h4 > em,
.c-videoEmbed__caption > h5 > em,
.c-videoEmbed__caption > p > em,
.c-pollingTool__introtext > em,
.c-mediathekCard__caption > em,
.c-mediathekCard__caption > h1 > em,
.c-mediathekCard__caption > h2 > em,
.c-mediathekCard__caption > h3 > em,
.c-mediathekCard__caption > h4 > em,
.c-mediathekCard__caption > h5 > em,
.c-mediathekCard__caption > p > em,
.c-astlrSlider__caption > p > em,
.c-astlrSummary__copy > em,
.c-ausstellerRegistration__submittedData > table th > em,
.c-ausstellerRegistration__submittedData > table tr > em,
.typography p.small > em,
.typography table > em,
.c-form .message > em {
  letter-spacing: 0.2px;
}
.c-videoEmbed__caption > h1, .c-videoEmbed__caption > h2, .c-videoEmbed__caption > h3, .c-videoEmbed__caption > h4, .c-videoEmbed__caption > h5, .c-mediathekCard__caption > h1, .c-mediathekCard__caption > h2, .c-mediathekCard__caption > h3, .c-mediathekCard__caption > h4, .c-mediathekCard__caption > h5, .c-ausstellerRegistration__submittedData > table th {
  letter-spacing: 0.2px;
}
.c-schedule__figcaption, .c-figureImage__caption > p, .typography figcaption {
  color: var(--color-copytext);
  letter-spacing: 0.15px;
  line-height: 1.54em;
}
.typography ul {
  list-style: disc inside;
}
.typography ul > li {
  padding-left: 2.5em;
  text-indent: -1.4em;
}
@media (min-width: 568px) {
  .typography ul > li {
    padding-left: 3.5em;
    text-indent: -1.4em;
  }
}
.typography ol {
  list-style: decimal inside;
}
.typography ol > li {
  padding-left: 1.5em;
}
.c-button--ghost, .c-button--filled, .c-button__link--ghost, .c-button__link--filled, .c-button__download--ghost, .c-button__download--filled, .c-schedule__link, .c-mediathek__filter, .c-astlrVideoDates__link, .c-anncmts__button, .typography p a.button--ghost, .c-pollingTool__continue, .c-mediathek__filter.--active, .c-mediathek__filter.--active:hover, .c-form__action, .c-form__action--gray, .c-form--memberloginform input[type=submit], .typography p a.button--ghost:focus {
  color: var(--color-white);
  letter-spacing: 0.13px;
  line-height: 1.2em;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-button--tag {
  -webkit-hyphens: auto;
          hyphens: auto;
  letter-spacing: 0.25px;
  font-size: 0.75rem;
  line-height: 1em;
}
.c-button__select, .c-form__sortbutton {
  letter-spacing: 0.1px;
  line-height: 1em;
  text-decoration: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* HELPERS
* 
* ---------------------------------------------------------------------------- */
.h-show {
  display: block !important;
}

.h-hide {
  display: none !important;
}

.h-invers {
  color: var(--color-white);
}

.h-spacer {
  margin-top: 4%;
  margin-bottom: 4%;
}

.h-mobile--hide {
  display: none;
}
@media (min-width: 667px) {
  .h-mobile--hide {
    display: inherit;
  }
}

.h-mobile--show {
  display: inherit;
}
@media (min-width: 667px) {
  .h-mobile--show {
    display: none;
  }
}

.h-center--mobile {
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 667px) {
  .h-center--mobile {
    margin-bottom: inherit;
  }
}

@media print {
  .h-print-none,
  .c-page__header,
  .c-button--ghost,
  .c-button--filled,
  .c-button__link--ghost,
  .c-button__link--filled,
  .c-button__download--ghost,
  .c-button__download--filled,
  .c-schedule__link,
  .c-mediathek__filter,
  .c-astlrVideoDates__link,
  .c-anncmts__button,
  .typography p a.button--ghost,
  .c-pollingTool__continue,
  .c-mediathek__filter.--active,
  .c-mediathek__filter.--active:hover,
  .c-form__action,
  .c-form__action--gray,
  .c-form--memberloginform input[type=submit],
  .typography p a.button--ghost:focus {
    display: none !important;
  }
}

.c-button__download--ghost, .c-button__link--ghost, .c-button--ghost, .c-schedule__link, .c-mediathek__filter, .c-astlrVideoDates__link, .c-anncmts__button, .typography p a.button--ghost {
  background-color: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary) !important;
  display: inline-block;
  width: auto;
}
.c-button__download--ghost:link, .c-button__link--ghost:link, .c-button--ghost:link, .c-schedule__link:link, .c-mediathek__filter:link, .c-astlrVideoDates__link:link, .c-anncmts__button:link, .typography p a.button--ghost:link {
  text-decoration: none;
}
.c-button__download--ghost:before, .c-button__link--ghost:before, .c-button--ghost:before, .c-schedule__link:before, .c-mediathek__filter:before, .c-astlrVideoDates__link:before, .c-anncmts__button:before, .typography p a.button--ghost:before {
  content: none !important;
}
.c-button__download--ghost:hover, .c-button__link--ghost:hover, .c-button--ghost:hover, .c-schedule__link:hover, .c-mediathek__filter:hover, .c-astlrVideoDates__link:hover, .c-anncmts__button:hover, .typography p a.button--ghost:hover {
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: var(--color-white) !important;
}
.c-button__download--ghost:focus, .c-button__link--ghost:focus, .c-button--ghost:focus, .c-schedule__link:focus, .c-mediathek__filter:focus, .c-astlrVideoDates__link:focus, .c-anncmts__button:focus, .typography p a.button--ghost:focus {
  outline: none;
  background-color: var(--color-link--focus);
  color: var(--color-white) !important;
}

.c-button__download--filled, .c-button__link--filled, .c-button--filled, .c-pollingTool__continue, .c-mediathek__filter.--active, .c-mediathek__filter.--active:hover, .c-form__action, .c-form__action--gray, .c-form--memberloginform input[type=submit], .typography p a.button--ghost:focus {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white) !important;
  border: 1px solid var(--color-primary);
  width: auto;
}
.c-button__download--filled:link, .c-button__link--filled:link, .c-button--filled:link, .c-pollingTool__continue:link, .c-mediathek__filter.--active:link, .c-form__action:link, .c-form__action--gray:link, .c-form--memberloginform input[type=submit]:link, .typography p a.button--ghost:link:focus {
  text-decoration: none;
}
.c-button__download--filled:before, .c-button__link--filled:before, .c-button--filled:before, .c-pollingTool__continue:before, .c-mediathek__filter.--active:before, .c-mediathek__filter.--active:hover:before, .c-form__action:before, .c-form__action--gray:before, .c-form--memberloginform input[type=submit]:before, .typography p a.button--ghost:focus:before {
  content: none !important;
}
.c-button__download--filled:hover, .c-button__link--filled:hover, .c-button--filled:hover, .c-pollingTool__continue:hover, .c-mediathek__filter.--active:hover, .c-form__action:hover, .c-form__action--gray:hover, .c-form--memberloginform input[type=submit]:hover, .typography p a.button--ghost:hover:focus {
  color: var(--color-white);
  background-color: var(--color-secondary-dark);
  border: 1px solid var(--color-secondary-dark);
}
.c-button__download--filled:hover:after, .c-button__link--filled:hover:after, .c-button--filled:hover:after, .c-pollingTool__continue:hover:after, .c-mediathek__filter.--active:hover:after, .c-form__action:hover:after, .c-form__action--gray:hover:after, .c-form--memberloginform input[type=submit]:hover:after, .typography p a.button--ghost:hover:focus:after {
  color: rgba(var(--color-white), 1);
}
.c-button__download--filled:focus, .c-button__link--filled:focus, .c-button--filled:focus, .c-pollingTool__continue:focus, .c-mediathek__filter.--active:focus, .c-form__action:focus, .c-form__action--gray:focus, .c-form--memberloginform input[type=submit]:focus, .typography p a.button--ghost:focus {
  outline: none;
  background-color: var(--color-link--focus);
  color: var(--color-white);
}

.c-button--tag {
  display: inline-block;
  color: var(--color-copytext) !important;
  background-color: var(--color-fond-light);
  border: 1px solid var(--color-line);
  width: auto;
}
.c-button--tag:link {
  text-decoration: none;
}
.c-button--tag:before {
  content: none !important;
}
.c-button--tag:focus {
  outline: none;
  color: var(--color-white);
}

.c-button--ghost, .c-schedule__link, .c-mediathek__filter, .c-astlrVideoDates__link, .c-anncmts__button, .typography p a.button--ghost {
  padding: 0.75rem 3.25rem;
  border-radius: 0.3125rem;
  text-align: center;
}
.c-button--filled, .c-pollingTool__continue, .c-mediathek__filter.--active, .c-mediathek__filter.--active:hover, .c-form__action, .c-form__action--gray, .c-form--memberloginform input[type=submit], .typography p a.button--ghost:focus {
  padding: 0.75rem 3.25rem;
  border-radius: 0.3125rem;
  text-align: center;
}
.c-button__select, .c-form__sortbutton {
  color: var(--color-primary) !important;
  text-align: center;
  background-color: transparent;
  padding: 0.5rem 1rem;
  border: 2px solid var(--color-primary);
  border-radius: 0.3125rem;
}
.c-button__select:link, .c-form__sortbutton:link {
  color: var(--color-primary);
  text-decoration: none;
}
.c-button__select:before, .c-form__sortbutton:before {
  content: none !important;
}
.c-button__select:hover, .c-form__sortbutton:hover {
  background-color: var(--color-primary);
  border: 2px solid var(--color-primary);
  color: var(--color-white) !important;
}
.c-button__select:focus, .c-form__sortbutton:focus {
  outline: none;
  background-color: var(--color-primary);
  color: var(--color-white) !important;
}
.c-button__select--active, .c-form__sortbutton--active {
  color: var(--color-white) !important;
  background-color: var(--color-primary);
}
.c-button--tag {
  padding: 0.375rem 0.75rem;
  text-align: center;
}
.c-button__link--ghost {
  padding: 2.5rem 3rem 0.5rem 0.75rem;
  position: relative;
}
.c-button__link--ghost:after {
  font-size: 32px;
  position: absolute;
  right: 0.8125rem;
  bottom: 0.8125rem;
}
.c-button__download--ghost {
  padding: 2.5rem 3rem 0.5rem 0.75rem;
  position: relative;
}
.c-button__download--ghost:after {
  font-size: 32px;
  position: absolute;
  right: 0.5rem;
  bottom: 0.8125rem;
}
/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONTENT BUTTON
*
* --------------------------------------------------------------------------- */
.c-form input.text::-moz-placeholder, .c-form input.textarea::-moz-placeholder, .c-form textarea.text::-moz-placeholder, .c-form textarea.textarea::-moz-placeholder {
  color: var(--color-disabled);
}
.c-form input.text::placeholder, .c-form input.textarea::placeholder,
.c-form textarea.text::placeholder,
.c-form textarea.textarea::placeholder {
  color: var(--color-disabled);
}
.c-form__checkbox {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
}
.c-form__checkbox input[type=checkbox] {
  flex: 0 0 auto;
  width: 1rem;
  height: 1rem;
  margin-bottom: 0.125rem;
  margin-right: 0.75rem;
}
.c-form__checkbox input[type=checkbox]:checked {
  background-color: var(--color-success);
}
.c-form__checkbox label {
  flex: 1 1 auto;
}
.c-form__dropdown {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  margin-top: 0.5rem;
  position: relative;
}
.c-form__dropdown:after {
  margin-right: 0.3125rem;
  font-size: 1.5em;
  color: #C0C0C0;
  position: absolute;
  right: 0.25rem;
  bottom: 0.375rem;
}
.c-form__dropdown select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 5px 2px;
  border: none;
  border-bottom: 2px solid #C0C0C0;
  border-radius: 0;
  background-color: transparent;
  outline: none;
  width: auto;
}
.c-form__dropdown select::-ms-expand {
  display: none;
}
.c-form__dropdown select:focus {
  border-bottom: 2px solid var(--color-secondary);
}
.c-form input.text, .c-form input.textarea,
.c-form textarea.text,
.c-form textarea.textarea, .c-form input[type=text],
.c-form input[type=password],
.c-form input[type=email],
.c-form input[type=url],
.c-form input[type=date],
.c-form input[type=month],
.c-form input[type=time],
.c-form input[type=datetime],
.c-form input[type=datetime-local],
.c-form input[type=week],
.c-form input[type=number],
.c-form input[type=search],
.c-form input[type=tel],
.c-form input[type=color],
.c-form textarea {
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
  background: #FFFFFF;
  border-radius: 5px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-form input[type=text]:focus,
.c-form input[type=password]:focus,
.c-form input[type=email]:focus,
.c-form input[type=url]:focus,
.c-form input[type=date]:focus,
.c-form input[type=month]:focus,
.c-form input[type=time]:focus,
.c-form input[type=datetime]:focus,
.c-form input[type=datetime-local]:focus,
.c-form input[type=week]:focus,
.c-form input[type=number]:focus,
.c-form input[type=search]:focus,
.c-form input[type=tel]:focus,
.c-form input[type=color]:focus,
.c-form textarea:focus {
  outline: 0;
  outline: thin dotted \9 ; /* IE6-9 */
  border-bottom: 2px solid var(--color-secondary) !important;
}
.c-form input[type=text]:required,
.c-form input[type=password]:required,
.c-form input[type=email]:required,
.c-form input[type=url]:required,
.c-form input[type=date]:required,
.c-form input[type=month]:required,
.c-form input[type=time]:required,
.c-form input[type=datetime]:required,
.c-form input[type=datetime-local]:required,
.c-form input[type=week]:required,
.c-form input[type=number]:required,
.c-form input[type=search]:required,
.c-form input[type=tel]:required,
.c-form input[type=color]:required,
.c-form textarea:required {
  border-bottom: 1px solid var(--color-secondary);
}
.c-form input[type=text]:required:focus,
.c-form input[type=password]:required:focus,
.c-form input[type=email]:required:focus,
.c-form input[type=url]:required:focus,
.c-form input[type=date]:required:focus,
.c-form input[type=month]:required:focus,
.c-form input[type=time]:required:focus,
.c-form input[type=datetime]:required:focus,
.c-form input[type=datetime-local]:required:focus,
.c-form input[type=week]:required:focus,
.c-form input[type=number]:required:focus,
.c-form input[type=search]:required:focus,
.c-form input[type=tel]:required:focus,
.c-form input[type=color]:required:focus,
.c-form textarea:required:focus {
  border-bottom: 2px solid var(--color-warning) !important;
}
.c-form label, .c-form__dropdown > label {
  color: var(--color-secondary);
}
.c-form .message {
  color: var(--color-secondary);
}
.c-form .message.error, .c-form .message.bad, .c-form .message.required {
  color: var(--color-warning);
}
/* -----------------------------------------------------------------------------
*
* EXTENDS TYPOGRAPHY
*
* --------------------------------------------------------------------------- */
.c-astlrTabs__selector, .c-astlrTabs__mainselector {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.3);
}
/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* EXTENDS Test
*
* Outline für Testzwecke
*
* --------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
*
* COMPONTENT BUTTON
*
* --------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
*
* COMPONTENT BUTTON
*
* --------------------------------------------------------------------------- */
/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
.typography h1 {
  margin-top: 1em;
}
.typography h2 {
  margin-top: 3em;
}
.typography h3 {
  margin-top: 2.5em;
}
.typography h4 {
  margin-top: 2em;
}
.typography h5 {
  margin-top: 2em;
}
.typography h6 {
  margin-top: 1.5em;
}
.typography p {
  margin-top: 1em;
}
.typography p a.button--ghost {
  display: block;
  margin-bottom: 0.4rem;
  width: 100%;
}
@media (min-width: 568px) {
  .typography p a.button--ghost {
    width: auto;
    margin-right: 0.5rem;
    display: inline-block;
    margin-bottom: 0.5rem;
  }
}
.typography p.small {
  margin-top: 1em;
}
.typography ul {
  margin-top: 1em;
}
.typography ol {
  margin-top: 1em;
}
.typography code {
  margin-top: 1em;
}
.typography h1, .typography h2, .typography h3, .typography h4, .typography h5, .typography h6, .typography p, .typography ul, .typography ol, .typography code {
  display: block;
}
.typography h1:first-child, .typography h2:first-child, .typography h3:first-child, .typography h4:first-child, .typography h5:first-child, .typography h6:first-child, .typography p:first-child, .typography ul:first-child, .typography ol:first-child, .typography code:first-child {
  margin-top: 0.1em;
}
.typography h1.text-center, .typography h2.text-center, .typography h3.text-center, .typography h4.text-center, .typography h5.text-center, .typography h6.text-center, .typography p.text-center, .typography ul.text-center, .typography ol.text-center, .typography code.text-center {
  text-align: center;
}
.typography h1 + h2 {
  margin-top: 2.5em;
}
.typography h1 + p, .typography h1 + ul, .typography h1 + ol {
  margin-top: 3em;
}
.typography h2 + h3 {
  margin-top: 1.25em;
}
.typography h2 + p, .typography h2 + ul, .typography h2 + ol {
  margin-top: 1.5em;
}
.typography h3 + h4 {
  margin-top: 0.5em;
}
.typography h3 + p, .typography h3 + ul, .typography h3 + ol {
  margin-top: 1.5em;
}
.typography h4 + p, .typography h4 + ul, .typography h4 + ol {
  margin-top: 1.5em;
}
.typography h5 + p, .typography h5 + ul, .typography h5 + ol {
  margin-top: 0.5em;
}
.typography blockquote {
  padding-left: 1.5rem;
  border-left: 3px solid var(--color-primary);
}
@media (min-width: 1240px) {
  .typography blockquote {
    margin-left: -1.5rem;
  }
}
.typography img,
.typography .image {
  display: inline-block;
}
.typography img.left,
.typography .image.left {
  float: none;
  width: 100%;
  margin-bottom: 1.75rem;
}
@media (min-width: 568px) {
  .typography img.left,
  .typography .image.left {
    float: left;
    margin-left: 0;
    width: auto;
    margin-right: 1.5rem;
    margin-top: 0.4375rem;
  }
}
.typography img.center,
.typography .image.center {
  text-align: center;
}
.typography img.right,
.typography .image.right {
  float: none;
  width: 100%;
  margin-bottom: 1.75rem;
}
@media (min-width: 568px) {
  .typography img.right,
  .typography .image.right {
    float: right;
    margin-left: 1.5rem;
    width: auto;
    margin-right: 0.75rem;
    margin-top: 0.4375rem;
  }
}
.typography .captionImage {
  margin-bottom: 1.5rem;
}
.typography .caption {
  margin-top: 0.25rem;
}
.typography hr {
  border-top: 1px solid var(--color-line-dark);
  margin: 3rem 0;
}
.typography figure {
  margin-top: 2.5rem;
  overflow: auto;
}
.typography figcaption {
  margin-top: 0.75rem;
}
.typography .invers {
  color: var(--color-white);
}
@media (min-width: 667px) {
  .typography .flex-margin {
    margin-left: calc(30vw - 13.2rem);
  }
}
@media (min-width: 1240px) {
  .typography .flex-margin {
    margin-left: 13rem;
  }
}
.typography .message {
  margin-bottom: 1.5rem;
}
.typography .message.warning {
  color: var(--color-warning);
}
.typography .message.bad {
  color: var(--color-error);
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT PAGE
*
* Sticky Footer Bug in IE:
* https://philipwalton.com/articles/normalizing-cross-browser-flexbox-bugs/
* 
* ---------------------------------------------------------------------------- */
.c-page__footer, .c-page__main, .c-page__announcements, .c-page__mediathek, .c-page__heroHome, .c-page__header {
  max-width: 94rem;
  width: 100%;
  margin: 0 auto;
  border-left: 1px solid var(--color-line);
  border-right: 1px solid var(--color-line);
}

.c-page {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow-x: hidden;
  position: relative;
  background-color: var(--color-fond-medium);
}
.c-page__header {
  background-color: var(--color-white);
  background-color: var(--color-white);
  display: block;
  flex-shrink: 0;
  overflow: auto;
  padding-top: 0.75rem;
  padding-left: calc(0.25rem + 1vw);
  padding-right: calc(0.25rem + 1vw);
}
@media (min-width: 568px) {
  .c-page__header {
    padding-left: calc(0.5rem + 1.5vw);
    padding-right: calc(0.5rem + 1.5vw);
  }
}
@media (min-width: 94rem) {
  .c-page__header {
    padding-left: 2.8rem;
    padding-right: 2.8rem;
  }
}
@media (min-width: 768px) {
  .c-page__header {
    padding-top: 1.25rem;
  }
}
.c-page__heroHome {
  background-color: var(--color-white);
  display: block;
  flex-shrink: 0;
  overflow: auto;
  overflow-x: hidden;
  padding-top: 0;
}
@media (min-width: 667px) {
  .c-page__heroHome {
    padding-top: 0.5rem;
  }
}
.c-page__announcements, .c-page__mediathek {
  display: block;
  overflow: visible;
  padding-top: 1rem;
  flex: 10 0 auto;
  padding-bottom: 2.5rem;
}
@media (min-width: 667px) {
  .c-page__announcements, .c-page__mediathek {
    padding-top: 2.5rem;
  }
}
.c-page__announcements {
  background-color: var(--color-white);
}
.c-page__mediathek {
  padding-top: 0;
  padding-bottom: 0;
}
.c-page__main {
  padding-top: calc(4vmin + 2rem);
  padding-bottom: calc(2vmin + 1rem);
  background-color: var(--color-white);
  display: block;
  overflow: visible;
  flex: 1 1 auto;
}
.c-page__main.-state--active {
  overflow: hidden;
}
.c-page__astlrGalerieStage {
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  padding-left: calc(0.25rem + 1vw);
  padding-right: calc(0.25rem + 1vw);
}
@media (min-width: 568px) {
  .c-page__astlrGalerieStage {
    padding-left: calc(11vw - 3rem);
    padding-right: calc(11vw - 3rem);
  }
}
@media (min-width: 94rem) {
  .c-page__astlrGalerieStage {
    padding-left: 6.8rem;
    padding-right: 6.8rem;
  }
}
@media (min-width: 667px) {
  .c-page__astlrGalerieStage {
    flex-wrap: nowrap;
  }
}
.c-page__astlrGalerieCol {
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: 100%;
  max-width: 98%;
  margin-bottom: 4rem;
}
@media (min-width: 667px) {
  .c-page__astlrGalerieCol {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 50%;
    max-width: 48%;
  }
}
.c-page__liveVideo {
  margin-bottom: 1rem;
}
.c-page__footer {
  background-color: var(--color-secondary-darker);
  flex-shrink: 0;
  margin-top: 0rem;
  padding-left: calc(0.25rem + 1vw);
  padding-right: calc(0.25rem + 1vw);
}
@media (min-width: 568px) {
  .c-page__footer {
    padding-left: calc(0.5rem + 1.5vw);
    padding-right: calc(0.5rem + 1.5vw);
  }
}
@media (min-width: 94rem) {
  .c-page__footer {
    padding-left: 2.8rem;
    padding-right: 2.8rem;
  }
}
.c-page__hamburger {
  z-index: 300;
  display: block;
  position: absolute;
  right: 0.625rem;
  top: 0.5rem;
}
.c-page__naviMobile {
  display: block;
  width: 100%;
  height: 100%;
  opacity: 0;
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  z-index: 200;
}
.c-page__naviMobile.-state--off {
  opacity: 0;
  transform: translateX(-100%);
  transition: transform 0.2s ease-in, opacity 0.2s;
}
.c-page__naviMobile.-state--active {
  opacity: 0.95;
  transform: translateX(0%);
  transition: transform 0.2s ease-in, opacity 0.3s;
}
.c-page__subheadline {
  margin-bottom: 2rem;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT stage
* 
* ---------------------------------------------------------------------------- */
.c-stage {
  overflow: auto;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  padding-left: calc(0.25rem + 1vw);
  padding-right: calc(0.25rem + 1vw);
}
@media (min-width: 568px) {
  .c-stage {
    padding-left: calc(11vw - 3rem);
    padding-right: calc(11vw - 3rem);
  }
}
@media (min-width: 94rem) {
  .c-stage {
    padding-left: 6.8rem;
    padding-right: 6.8rem;
  }
}
@media (min-width: 1024px) {
  .c-stage {
    flex-wrap: nowrap;
  }
}
.c-stage__maincontent {
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: 100%;
  max-width: 98%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .c-stage__maincontent {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 66.6666666667%;
    max-width: 64.6666666667%;
  }
}
.c-stage--sort1 {
  order: 1;
}
.c-stage--sort2 {
  order: 2;
}
.c-stage--sort3 {
  order: 3;
}
.c-stage--sort4 {
  order: 4;
}
.c-stage--sort5 {
  order: 5;
}
.c-stage--sort6 {
  order: 6;
}
.c-stage--sort7 {
  order: 7;
}
.c-stage__sidebar {
  margin-top: 2rem;
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: 100%;
  max-width: 98%;
}
@media (min-width: 1024px) {
  .c-stage__sidebar {
    margin-top: 0;
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 33.3333333333%;
    max-width: 31.3333333333%;
  }
}
.c-stage__sidebarCopy {
  margin-bottom: 4rem;
}
.c-stage__content {
  -moz-column-count: 1;
       column-count: 1;
  margin-bottom: 3rem;
}
.c-stage__content--columns {
  -moz-column-count: unset;
       column-count: unset;
  -moz-column-gap: 1.8rem;
       column-gap: 1.8rem;
  -moz-column-width: 300px;
       column-width: 300px;
  max-width: unset;
}
@media (min-width: 1024px) {
  .c-stage__content--columns {
    -moz-column-width: 380px;
         column-width: 380px;
  }
}
@supports not ((-moz-column-span: all) or (column-span: all)) {
  .c-stage__content {
    -moz-column-count: 1;
         column-count: 1;
    max-width: 60rem;
  }
}
.c-stage__videoEmbed {
  margin-bottom: 3rem;
}
.c-stage__content + .c-stage__form {
  margin-top: 3rem;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT stageTabs
* 
* ---------------------------------------------------------------------------- */
.c-stageTabs__link {
  color: var(--color-link);
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: 0.13px;
  line-height: 1em;
  text-decoration: none;
  outline: none;
}
.c-stageTabs__link:link {
  color: var(--color-secondary);
}
.c-stageTabs__link:visited {
  color: var(--color-secondary);
}
.c-stageTabs__link:hover {
  color: var(--color-primary);
}
.c-stageTabs__link:focus {
  color: var(--color-primary);
}
.-state--active.c-stageTabs__link, .section.c-stageTabs__link {
  color: var(--color-white);
  outline: none;
}
.-state--active.c-stageTabs__link:focus, .section.c-stageTabs__link:focus {
  color: var(--color-white);
}
.-state--active.c-stageTabs__link:focus-within, .section.c-stageTabs__link:focus-within {
  color: var(--color-white);
}
.-state--active.c-stageTabs__link:hover, .section.c-stageTabs__link:hover {
  color: var(--color-white);
}

.c-stageTabs {
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: 100%;
  max-width: 98%;
}
.c-stageTabs__navi {
  display: block;
}
@media (min-width: 667px) {
  .c-stageTabs__navi {
    margin-left: -0.75rem;
    padding-left: 0.75rem;
    border-bottom: 2px solid var(--color-secondary-light);
  }
}
.c-stageTabs__link {
  display: block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.7rem;
  text-align: center;
  margin-bottom: 0.5rem;
  border: 2px solid var(--color-secondary);
  border-radius: 8px;
  transition: background 0.2s, color 0.2s, border 0.2s;
}
.c-stageTabs__link:hover {
  border: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-secondary-light);
}
.c-stageTabs__link.-state--active {
  border: 2px solid var(--color-primary);
  background-color: var(--color-primary);
}
@media (min-width: 667px) {
  .c-stageTabs__link {
    border-radius: 8px 8px 0 0;
    border-bottom: 2px solid var(--color-secondary-light);
    padding: 1.3rem 2rem 1.2rem 2rem;
    text-align: left;
    display: inline-block;
    margin-right: 0.375rem;
    margin-bottom: -2px;
  }
}
.c-stageTabs__content {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.c-stageTabs__content.-state--active {
  display: block;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT Announcements
* 
* ---------------------------------------------------------------------------- */
.c-anncmts__datetime {
  color: var(--color-primary);
  line-height: 1.15em;
  letter-spacing: 0.2px;
}
.c-anncmts__buttonstage, .c-anncmts__body, .c-anncmts__headline, .c-anncmts__datetime {
  padding-left: 1.15rem;
  padding-right: 0.5rem;
}

.c-anncmts {
  overflow: hidden;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  padding-left: calc(0.25rem + 1vw);
  padding-right: calc(0.25rem + 1vw);
}
@media (min-width: 568px) {
  .c-anncmts {
    padding-left: calc(11vw - 3rem);
    padding-right: calc(11vw - 3rem);
  }
}
@media (min-width: 94rem) {
  .c-anncmts {
    padding-left: 6.8rem;
    padding-right: 6.8rem;
  }
}
@media (min-width: 568px) {
  .c-anncmts {
    flex-wrap: nowrap;
  }
}
.c-anncmts__item {
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: 100%;
  max-width: 98%;
  margin-bottom: 2rem;
  display: block;
}
@media (min-width: 568px) {
  .c-anncmts__item {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 50%;
    max-width: 48%;
  }
}
.c-anncmts__stage {
  padding-bottom: 1.9rem;
  border-bottom: 1px solid var(--color-secondary);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
  align-items: stretch;
  height: 100%;
}
.c-anncmts__topline {
  padding-left: 0.25rem;
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 1.3rem;
  border-bottom: 1px solid var(--color-secondary);
}
.c-anncmts__datetime {
  margin-bottom: 2.15rem;
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
}
.c-anncmts__headline {
  margin-bottom: 0.75rem;
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
}
.c-anncmts__body {
  margin-bottom: 1.75rem;
  order: 0;
  flex: 1 1 auto;
  align-self: auto;
}
.c-anncmts__buttonstage {
  order: 0;
  flex: 0 1 auto;
  align-self: flex-start;
}
/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT Aussteller Stage
* 
* ---------------------------------------------------------------------------- */
.c-astlrStage__uploader, .c-astlrStage__note {
  border-top: 2px dashed var(--color-primary);
  padding-top: 0.8rem;
}
.c-astlrStage__uploader, .c-astlrStage__note {
  border-bottom: 2px dashed var(--color-primary);
  padding-bottom: 1rem;
}

.c-astlrStage__note > h5 {
  color: var(--color-warning);
}
.c-astlrStage__orgaName {
  color: inherit;
}
.c-astlrStage__errorMessage {
  color: var(--color-warning);
}
.c-astlrStage {
  overflow: auto;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  margin-bottom: 4vmin;
  display: flex;
  justify-content: space-between;
  padding-left: calc(0.25rem + 1vw);
  padding-right: calc(0.25rem + 1vw);
}
@media (min-width: 568px) {
  .c-astlrStage {
    padding-left: calc(11vw - 3rem);
    padding-right: calc(11vw - 3rem);
  }
}
@media (min-width: 94rem) {
  .c-astlrStage {
    padding-left: 6.8rem;
    padding-right: 6.8rem;
  }
}
@media (min-width: 1024px) {
  .c-astlrStage {
    flex-wrap: wrap;
  }
}
.c-astlrStage__tabs {
  margin-top: 1.5rem;
  margin-bottom: 8vmin;
  overflow: visible;
}
.c-astlrStage__header {
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: 100%;
  max-width: 98%;
  width: 100%;
  margin-bottom: calc(3vmin + 1rem);
}
@media (min-width: 1024px) {
  .c-astlrStage__header {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 66.6666666667%;
    max-width: 64.6666666667%;
  }
}
.c-astlrStage__note {
  margin-bottom: 4rem;
}
.c-astlrStage__note > h5 {
  margin-bottom: 1rem;
}
.c-astlrStage__maincontent {
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: 100%;
  max-width: 98%;
  display: flex;
  flex-direction: column;
  width: 100%;
}
@media (min-width: 1024px) {
  .c-astlrStage__maincontent {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 66.6666666667%;
    max-width: 64.6666666667%;
  }
}
.c-astlrStage__uploader {
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.c-astlrStage__uploader > h2 {
  margin-bottom: 1.5rem;
}
.c-astlrStage__uploader > p {
  margin-bottom: 2rem;
}
.c-astlrStage__sidebar {
  margin-top: 2rem;
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: 100%;
  max-width: 98%;
}
@media (min-width: 1024px) {
  .c-astlrStage__sidebar {
    margin-top: 0;
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 33.3333333333%;
    max-width: 31.3333333333%;
  }
}
.c-astlrStage__sidebarvideos {
  margin-bottom: 3rem;
}
/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT aussteller 
*
* --------------------------------------------------------------------------- */
.c-astlrCopy__orgaName {
  color: inherit;
}
.c-astlrCopy {
  overflow: auto;
  flex-wrap: wrap;
  display: flex;
  justify-content: flex-end;
}
.c-astlrCopy__orgaName {
  margin-bottom: 3rem;
  width: 100%;
}
.c-astlrCopy__maincol {
  width: 100%;
  max-width: 54rem;
}
.c-astlrCopy__item {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}
@media (min-width: 568px) {
  .c-astlrCopy__item {
    flex-wrap: nowrap;
  }
}
.c-astlrCopy__fieldname {
  width: 100%;
  margin-bottom: 0.4rem;
}
@media (min-width: 568px) {
  .c-astlrCopy__fieldname {
    width: 30%;
    margin-bottom: 0;
    margin-right: 1.25rem;
    text-align: right;
  }
}
.c-astlrCopy__field {
  width: 100%;
}
@media (min-width: 568px) {
  .c-astlrCopy__field {
    width: 70%;
  }
}
.c-astlrCopy > hr {
  border: none;
  border-top: 1px solid var(--color-line);
  margin: 2rem 0;
}
.c-astlrCopy > p {
  margin-bottom: 1rem;
}
.c-astlrCopy__accordionItem {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.c-astlrCopy__accordionHeader {
  position: relative;
  border-top: 1px solid var(--color-line);
  margin-top: 0.4rem;
  padding-top: 0.4rem;
  width: 100%;
}
.c-astlrCopy__accordionHeader:after {
  position: absolute;
  right: 0.75rem;
}
.c-astlrCopy__accordionField {
  display: none;
  width: 100%;
}
@media (min-width: 568px) {
  .c-astlrCopy__accordionField {
    padding-left: 1.25rem;
    width: 70%;
  }
}
.c-astlrCopy__accordionField.-state--active {
  display: block;
  padding-top: 0.25rem;
  padding-bottom: 1.25rem;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT Aussteller File Items
* 
* ---------------------------------------------------------------------------- */
.c-astlrFileItems__headline {
  margin-top: 5rem;
  margin-bottom: 2rem;
}
.c-astlrFileItems__link {
  margin-bottom: 1rem;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT AusstellerForm
* 
* ---------------------------------------------------------------------------- */
.c-ausstellerForm__fieldList {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: stretch;
}
.c-ausstellerForm__compositeField {
  order: 0;
  flex: 1 0 100%;
  max-width: 55rem;
  align-self: auto;
  background-color: var(--color-white);
  padding-top: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-secondary);
}
.c-ausstellerForm__literalField {
  margin-bottom: 2rem;
}
.c-ausstellerForm__oneline {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 0 !important;
}
.c-ausstellerForm__oneline--one > * {
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: 100%;
  max-width: 99%;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .c-ausstellerForm__oneline--one > * {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 100%;
    max-width: 99%;
  }
}
.c-ausstellerForm__oneline--two > * {
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: 100%;
  max-width: 99%;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .c-ausstellerForm__oneline--two > * {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 50%;
    max-width: 49%;
  }
}
.c-ausstellerForm__oneline--three > * {
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: 100%;
  max-width: 99%;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .c-ausstellerForm__oneline--three > * {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 33.3333333333%;
    max-width: 32.3333333333%;
  }
}
.c-ausstellerForm__oneline--four > * {
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: 100%;
  max-width: 99%;
  margin-bottom: 2rem;
}
@media (min-width: 640px) {
  .c-ausstellerForm__oneline--four > * {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 33.3333333333%;
    max-width: 32.3333333333%;
  }
}
.c-ausstellerForm__radioButton ul {
  display: flex;
  flex-wrap: wrap;
}
.c-ausstellerForm__radioButton ul > li {
  flex: 0 0 auto;
  margin-right: 1rem;
  display: inline-block;
}
.c-ausstellerForm__radioButton ul > li:last-child {
  margin-right: 0;
}
.c-ausstellerForm__radioButton ul > li > label, .c-ausstellerForm__radioButton ul > li input {
  display: inline-block;
}
.c-ausstellerForm__actionbox {
  margin-top: 2rem;
}
.c-ausstellerForm .field {
  margin-bottom: 2rem;
}
.c-ausstellerForm .field > .middleColumn {
  overflow: auto;
}
.c-ausstellerForm .field > .middleColumn > * {
  width: 100%;
}
/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT Quilifizierungsböres Registration
* 
* ---------------------------------------------------------------------------- */
.c-ausstellerRegistration {
  padding-left: calc(0.25rem + 1vw);
  padding-right: calc(0.25rem + 1vw);
}
@media (min-width: 568px) {
  .c-ausstellerRegistration {
    padding-left: calc(11vw - 3rem);
    padding-right: calc(11vw - 3rem);
  }
}
@media (min-width: 94rem) {
  .c-ausstellerRegistration {
    padding-left: 6.8rem;
    padding-right: 6.8rem;
  }
}
.c-ausstellerRegistration__content, .c-ausstellerRegistration__submittedData {
  margin-bottom: 4rem;
}
@media (min-width: 1240px) {
  .c-ausstellerRegistration__content, .c-ausstellerRegistration__submittedData {
    padding-right: 14%;
  }
}
.c-ausstellerRegistration__submittedData > h2 {
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.c-ausstellerRegistration__submittedData > h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.c-ausstellerRegistration__submittedData > table th {
  text-align: left;
  padding-right: 1rem;
  width: 20vw;
}
.c-ausstellerRegistration__submittedData > table tr {
  text-align: left;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT blank
* 
* ---------------------------------------------------------------------------- */
.c-astlrSummary {
  max-width: 30rem;
  margin-bottom: 3rem;
  background-color: var(--color-fond-lightest);
}
.c-astlrSummary__copystage {
  padding: 2.5rem 1.5rem 2.5rem 1.5rem;
}
@media (min-width: 1024px) {
  .c-astlrSummary__copystage {
    padding: 2rem 8% 2.5rem 8%;
    width: 100%;
  }
}
.c-astlrSummary__title {
  margin-bottom: 4rem;
}
.c-astlrSummary__copy {
  margin-bottom: 2rem;
}
.c-astlrSummary__copy:last-child {
  margin-bottom: 0.5rem;
}
.c-astlrSummary__headline {
  margin-bottom: 0.5rem;
  margin-top: 1.5rem;
}
.c-astlrSummary__headline--divider {
  margin-top: 2.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--color-line);
}
.c-astlrSummary__iconholder {
  display: flex;
}
.c-astlrSummary__iconholder > div {
  flex: 0 1 10%;
}
.c-astlrSummary__iconholder > h3 {
  flex: 1 1 10%;
}
.c-astlrSummary__raumplanZoom {
  display: block;
  overflow: hidden;
  position: relative;
}
.c-astlrSummary__raumplanZoom:hover {
  cursor: pointer;
}
.c-astlrSummary__raumplanZoom.-state--active {
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-content: center;
  align-items: center;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  background-color: rgba(39, 39, 39, 0.8588235294);
  z-index: 999;
}
.c-astlrSummary__raumplanZoom.-state--active .c-astlrSummary__bu {
  display: block;
}
.c-astlrSummary__raumplanZoom.-state--active .c-astlrSummary__raumplan {
  transform: none;
}
.c-astlrSummary__raumplanZoom.-state--active:hover .c-astlrSummary__raumplan {
  transform: none;
}
.c-astlrSummary__raumplanZoom.-state--active .c-astlrSummary__raumplan > img {
  max-height: 100vh;
  width: auto;
}
.c-astlrSummary__raumplanZoom.-state--active .c-astlrSummary__modalclose {
  display: block;
}
@media (min-width: 568px) {
  .c-astlrSummary__raumplanZoom.-state--active .c-astlrSummary__marker {
    border-width: 4px;
  }
}
@media (min-width: 94rem) {
  .c-astlrSummary__raumplanZoom.-state--active .c-astlrSummary__marker {
    border-width: 6px;
  }
}
.c-astlrSummary__raumplan {
  overflow: auto;
  position: relative;
  overflow: hidden;
}
.c-astlrSummary__marker {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 0;
  left: 0;
  border: 2px dashed var(--color-primary);
}
.c-astlrSummary__marker > span {
  display: none;
}
.c-astlrSummary__bu {
  position: absolute;
  bottom: 1.7%;
  left: 1.8%;
  display: none;
}
.c-astlrSummary__modalclose {
  z-index: 10;
  display: none;
  position: absolute;
  right: 3vw;
  top: 3vw;
  width: auto;
}
.c-astlrSummary__modalclose > svg {
  stroke: var(--color-link);
  stroke-width: 3px;
}
.c-astlrSummary__modalclose > svg:hover {
  stroke: var(--color-link--focus);
}
@media (min-width: 568px) {
  .c-astlrSummary__modalclose {
    right: 1rem;
    top: 1rem;
  }
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT Aussteller Video Dates
* 
* ---------------------------------------------------------------------------- */
.c-astlrVideoDates__orgaName:before {
  line-height: 1em;
  color: var(--color-secondary-lighter);
}
.c-astlrVideoDates__orgaName:link:before {
  color: var(--color-secondary-lighter);
}
.c-astlrVideoDates__orgaName:visited:before {
  color: var(--color-secondary);
  text-decoration: none;
}
.c-astlrVideoDates__orgaName:hover:before {
  color: var(--color-link--focus);
}
.c-astlrVideoDates__orgaName:active:before {
  color: var(--color-link--active);
}
.c-astlrVideoDates__accordionHeader:after {
  color: var(--color-copytext);
}
.c-astlrVideoDates__date {
  color: var(--color-primary);
  line-height: 1.25em;
  letter-spacing: 0.5px;
}
.c-astlrVideoDates__orgaName {
  color: var(--color-copytext);
}
.c-astlrVideoDates__title {
  color: var(--color-secondary);
  line-height: 1.4em;
  letter-spacing: 0.05px;
}
.c-astlrVideoDates {
  margin-bottom: 3rem;
}
.c-astlrVideoDates__stage {
  padding-bottom: 0.9rem;
}
.c-astlrVideoDates__stage:last-child {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-secondary);
}
.c-astlrVideoDates__accordionHeader {
  position: relative;
  width: 100%;
  border-top: 1px solid var(--color-secondary);
  margin-top: 0;
  padding-top: 1rem;
}
.c-astlrVideoDates__accordionHeader:after {
  position: absolute;
  top: 1rem;
  right: 0.25rem;
}
.c-astlrVideoDates__accordionField {
  display: none;
  width: 100%;
}
.c-astlrVideoDates__accordionField.-state--active {
  display: block;
  padding-top: 1.75rem;
  padding-bottom: 0.75rem;
}
.c-astlrVideoDates__date {
  margin-bottom: 0.2rem;
}
.c-astlrVideoDates__orgaName {
  display: block;
  margin-bottom: 0.7rem;
  padding-left: 1.15rem;
  position: relative;
  width: 100%;
}
.c-astlrVideoDates__orgaName:before {
  font-size: 1.3em;
  position: absolute;
  left: 0rem;
  top: 0;
}
@media (min-width: 667px) {
  .c-astlrVideoDates__orgaName:before {
    top: 0px;
  }
}
.c-astlrVideoDates__headline {
  margin-bottom: 2.25rem;
}
.c-astlrVideoDates__infotext {
  margin-bottom: 1rem;
}
.c-astlrVideoDates__link {
  margin-top: 1.25rem;
}

/* -----------------------------------------------------------------------------
*
* COMPONENT Aussteller Liste ABC
* 
* ---------------------------------------------------------------------------- */
/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT Aussteller Konfig
* 
* ---------------------------------------------------------------------------- */
.c-astlrList__link, .c-elementalPlanRoom__link, .c-astlrABC__link {
  font-size: 14.4px;
  letter-spacing: -0.2px;
  line-height: 1.25em;
  text-decoration: none;
  color: var(--color-copytext);
}
@media (min-width: 667px) {
  .c-astlrList__link, .c-elementalPlanRoom__link, .c-astlrABC__link {
    font-size: 15.5px;
  }
}
.c-astlrList__link:link, .c-elementalPlanRoom__link:link, .c-astlrABC__link:link {
  color: var(--color-copytext);
}
.c-astlrList__link:visited, .c-elementalPlanRoom__link:visited, .c-astlrABC__link:visited {
  color: var(--color-link--visited);
  text-decoration: none;
}
.c-astlrList__link:hover, .c-elementalPlanRoom__link:hover, .c-astlrABC__link:hover {
  color: var(--color-link--focus);
  text-decoration: none;
}
.c-astlrList__link:active, .c-elementalPlanRoom__link:active, .c-astlrABC__link:active {
  color: var(--color-link--active);
}
.c-astlrList__nolink, .c-astlrABC__nolink {
  font-size: 14.4px;
  letter-spacing: -0.2px;
  line-height: 1.25em;
  text-decoration: none;
  color: var(--color-copytext);
}
@media (min-width: 667px) {
  .c-astlrList__nolink, .c-astlrABC__nolink {
    font-size: 15.5px;
  }
}

.c-astlrABC__filterbar {
  margin-top: -3rem;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: flex-start;
  align-items: center;
}
.c-astlrABC__filterheadline {
  flex: 1 1 auto;
  margin-bottom: 1rem;
  margin-right: 1rem;
}
.c-astlrABC__filterbuttons {
  flex: 0 1 auto;
  display: flex;
  flex-wrap: wrap;
}
.c-astlrABC__filter {
  margin-right: 0.25rem;
  margin-bottom: 0.5rem;
  flex: 1 1 auto;
}
.c-astlrABC__link, .c-astlrABC__nolink {
  display: block;
  width: 100%;
  padding-left: 0.75rem;
  position: relative;
}
.c-astlrABC__table {
  width: 100%;
}
.c-astlrABC__item {
  border-bottom: 1px solid var(--color-line);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: center;
}
.c-astlrABC__item > td {
  padding: 0.5rem 0;
  vertical-align: middle;
}
.c-astlrABC__item > td:first-child {
  width: 88%;
  padding-right: 0.75rem;
}
.c-astlrABC__aussteller {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.c-astlrABC__letter {
  padding-top: 2rem;
  padding-bottom: 0.35rem;
  text-align: left;
}
.c-astlrABC__icons {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.c-astlrABC__icon {
  margin-right: 0.5rem;
}
.c-astlrABC__icon > span {
  display: none;
}
.c-astlrABC__legend {
  margin-top: 4rem;
}

/* -----------------------------------------------------------------------------
*
* COMPONENT Aussteller Liste ABC
* 
* ---------------------------------------------------------------------------- */
/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT Aussteller Liste
*
* --------------------------------------------------------------------------- */
.c-astlrList__header:after, .c-astlrList__trigger:checked + .c-astlrList__header:after {
  color: var(--color-white);
  font-size: 17px;
}
@media (min-width: 667px) {
  .c-astlrList__header:after, .c-astlrList__trigger:checked + .c-astlrList__header:after {
    font-size: 22px;
  }
}
.c-astlrList__title {
  color: var(--color-white);
  line-height: 1.5em;
  letter-spacing: 0.35px;
}
.c-astlrList__subtitle {
  color: var(--color-secondary);
  line-height: 1.14em;
  letter-spacing: 0.06px;
}
.c-astlrList {
  display: flex;
  flex-direction: column;
}
.c-astlrList__item:last-child .c-astlrList__header {
  border-bottom: none;
}
.c-astlrList__trigger {
  display: none;
}
.c-astlrList__trigger:checked + .c-astlrList__header + .c-astlrList__bodystage {
  height: 100%;
  opacity: 1;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  transition: opacity 0.6s, padding 0.2s ease-out;
}
.c-astlrList__trigger:checked + .c-astlrList__header + .c-astlrList__bodystage--blank {
  padding: 0;
}
@media (min-width: 667px) {
  .c-astlrList__trigger:checked + .c-astlrList__header + .c-astlrList__bodystage {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.c-astlrList__trigger:checked + .c-astlrList__header {
  border-bottom: none;
}
.c-astlrList__trigger:hover + .c-astlrList__header {
  cursor: pointer;
}
.c-astlrList__header {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.5rem;
  padding-right: 2rem;
  position: relative;
}
@media (min-width: 667px) {
  .c-astlrList__header {
    padding-top: 1.2rem;
    padding-bottom: 1.1rem;
  }
}
.c-astlrList__header:after {
  position: absolute;
  right: 1.35rem;
  top: 50%;
}
.c-astlrList__bodystage {
  background-color: var(--color-fond-lightest);
  display: block;
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding-bottom: 0;
  padding-top: 0;
  transition: opacity 0.8s, padding 0.1s ease-out;
}
.c-astlrList__list {
  padding-left: 1.2rem;
  padding-right: 1.5rem;
}
@media (min-width: 667px) {
  .c-astlrList__list {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }
}
.c-astlrList__listitem {
  border-bottom: 1px solid var(--color-line);
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}
.c-astlrList__listitem:first-child {
  border-top: 1px solid var(--color-line);
}
@media (min-width: 667px) {
  .c-astlrList__listitem {
    padding-top: 0.65rem;
    padding-bottom: 0.65rem;
  }
}
.c-astlrList__link, .c-astlrList__nolink {
  display: block;
  width: 100%;
  margin-left: 0.75rem;
  position: relative;
}
/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT Aussteller Schedule
* 
* ---------------------------------------------------------------------------- */
.c-astlrSchedule__date {
  color: var(--color-primary);
  line-height: 1.25em;
  letter-spacing: 0.35px;
}

.c-astlrSchedule {
  width: 100%;
  -moz-column-count: 1;
       column-count: 1;
  -moz-column-gap: 4%;
       column-gap: 4%;
  max-width: 40rem;
}
.c-astlrSchedule__dayblock {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  overflow: hidden;
  height: auto;
  margin-top: 4rem;
  margin-bottom: 0;
}
.c-astlrSchedule__dayblock:first-child {
  margin-top: 0;
}
.c-astlrSchedule__date {
  border-top: 2px solid var(--color-primary);
  padding-top: 0.25rem;
  margin-bottom: 3rem;
  margin-top: 0;
}
@media (min-width: 667px) {
  .c-astlrSchedule__date ~ article {
    margin-left: 1.5rem;
    margin-right: 1.5rem;
  }
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT newscarousel
* 
* ---------------------------------------------------------------------------- */
.tns-outer {
  padding: 0 !important;
}
.tns-outer [hidden] {
  display: none !important;
}
.tns-outer [aria-controls], .tns-outer [data-action] {
  cursor: pointer;
}

.tns-slider {
  transition: all 0s;
}
.tns-slider > .tns-item {
  box-sizing: border-box;
}

.tns-horizontal.tns-subpixel {
  white-space: nowrap;
}
.tns-horizontal.tns-subpixel > .tns-item {
  display: inline-block;
  vertical-align: top;
  white-space: normal;
}
.tns-horizontal.tns-no-subpixel:after {
  content: "";
  display: table;
  clear: both;
}
.tns-horizontal.tns-no-subpixel > .tns-item {
  float: left;
}
.tns-horizontal.tns-carousel.tns-no-subpixel > .tns-item {
  margin-right: -100%;
}

.tns-no-calc {
  position: relative;
  left: 0;
}

.tns-gallery {
  position: relative;
  left: 0;
  min-height: 1px;
}
.tns-gallery > .tns-item {
  position: absolute;
  left: -100%;
  transition: transform 0s, opacity 0s;
}
.tns-gallery > .tns-slide-active {
  position: relative;
  left: auto !important;
}
.tns-gallery > .tns-moving {
  transition: all 0.25s;
}

.tns-autowidth {
  display: inline-block;
}

.tns-lazy-img {
  transition: opacity 0.6s;
  opacity: 0.6;
}
.tns-lazy-img.tns-complete {
  opacity: 1;
}

.tns-ah {
  transition: height 0s;
}

.tns-ovh {
  overflow: hidden;
}

.tns-visually-hidden {
  position: absolute;
  left: -10000em;
}

.tns-transparent {
  opacity: 0;
  visibility: hidden;
}

.tns-fadeIn {
  opacity: 1;
  filter: alpha(opacity=100);
  z-index: 0;
}

.tns-normal, .tns-fadeOut {
  opacity: 0;
  filter: alpha(opacity=0);
  z-index: -1;
}

.tns-vpfix {
  white-space: nowrap;
}
.tns-vpfix > div, .tns-vpfix > li {
  display: inline-block;
}

.tns-t-subp2 {
  margin: 0 auto;
  width: 310px;
  position: relative;
  height: 10px;
  overflow: hidden;
}
.tns-t-ct {
  width: 2333.3333333333%;
  width: calc(100% * 70 / 3);
  position: absolute;
  right: 0;
}
.tns-t-ct:after {
  content: "";
  display: table;
  clear: both;
}
.tns-t-ct > div {
  width: 1.4285714286%;
  width: calc(100% / 70);
  height: 10px;
  float: left;
}

.c-astlrSlider__prev:before, .c-astlrSlider__next:before {
  color: var(--color-white);
  font-size: 1.5rem;
}
.c-astlrSlider {
  position: relative;
  display: block;
  width: 100%;
  margin-bottom: 2rem;
}
.c-astlrSlider__header {
  margin-bottom: 2rem;
}
.c-astlrSlider__container {
  margin-bottom: 2rem;
}
.c-astlrSlider__item {
  position: relative;
  height: 100%;
}
.c-astlrSlider__item > img {
  z-index: 0;
}
.c-astlrSlider__item.tns-slide-active .c-astlrSlider__caption {
  opacity: 1;
  transition: opacity 0.2s ease-in 0.3s;
}
.c-astlrSlider__caption {
  margin-top: 0.75rem;
  padding-right: 2rem;
  opacity: 0;
  overflow: auto;
}
.c-astlrSlider__caption > h2 {
  margin-bottom: 0.5rem;
}
.c-astlrSlider__caption > h3 {
  margin-bottom: 0.5rem;
}
.c-astlrSlider__overlay {
  background-color: var(--color-primary);
  position: absolute;
  opacity: 0.8;
  width: 70%;
  top: 5%;
  left: 0;
  z-index: 1;
}
.c-astlrSlider__controls {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  top: 40%;
  left: 0;
  transform: translateY(-50%);
  outline: none;
}
.c-astlrSlider__prev, .c-astlrSlider__next {
  outline: none;
}
.c-astlrSlider__prev:hover:before, .c-astlrSlider__next:hover:before {
  color: var(--color-primary);
}
.c-astlrSlider__prev:active:before, .c-astlrSlider__next:active:before {
  color: var(--color-primary);
}
.c-astlrSlider__prev:before {
  padding-left: 0.75rem;
}
.c-astlrSlider__next:before {
  padding-right: 0.75rem;
}
.c-astlrSlider__nav {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  text-align: center;
  width: 100%;
  top: 2%;
  left: 0;
  transform: translateY(-50%);
  outline: none;
}
.c-astlrSlider__nav > li {
  display: inline-block;
  margin-right: 0.2rem;
  height: 8px;
  width: 8px;
  border-radius: 6px;
  background: var(--color-secondary);
}
.c-astlrSlider__nav > li.tns-nav-active {
  background: var(--color-primary);
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT blank
* 
* ---------------------------------------------------------------------------- */
.c-astlrTabs__title {
  color: var(--color-white);
  line-height: 1.5em;
  letter-spacing: 0.35px;
}

.c-astlrTabs {
  position: relative;
  width: 100%;
  height: 2.8rem;
  z-index: 100;
}
@media (min-width: 667px) {
  .c-astlrTabs {
    height: 4.8rem;
  }
}
.c-astlrTabs__selector {
  position: absolute;
  width: 100%;
  max-width: 30rem;
  left: 0;
  top: -2.8rem;
  padding-top: 3rem;
}
@media (min-width: 667px) {
  .c-astlrTabs__selector {
    top: -3.3rem;
    padding-top: 4.3rem;
  }
}
.c-astlrTabs__trigger {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  right: 1.5rem;
  top: 1.375rem;
  display: none;
  z-index: 10;
}
.c-astlrTabs__trigger > span {
  display: none;
}
.c-astlrTabs__trigger:before {
  font-size: 2.0625rem;
  color: var(--color-white);
  margin-right: 0.1875rem;
  visibility: visible;
}
.c-astlrTabs__trigger:before:link, .c-astlrTabs__trigger:before:visited {
  color: var(--color-white);
}
.c-astlrTabs__trigger:before:hover {
  color: var(--color-link);
}
.c-astlrTabs__trigger.-state--active:before {
  color: var(--color-white);
}
@media (min-width: 667px) {
  .c-astlrTabs__trigger {
    display: block;
  }
}
.c-astlrTabs__mainselector {
  display: none;
  max-width: 30rem;
  width: 0;
  position: absolute;
  overflow: hidden;
  top: 4.8rem;
  right: 0;
  transform: translateX(100%);
  opacity: 1;
  z-index: 0;
}
.c-astlrTabs__mainselector.-state--active {
  transition: transform 0.25s, opacity 0.25s;
  transform: translateX(0);
  width: 100%;
  opacity: 1;
}
.c-astlrTabs__mainselector.-state--off {
  transition: transform 0.25s, opacity 0.25s, width 0s 0.25s;
  transform: translateX(100%);
  width: 0;
  opacity: 0;
}
@media (min-width: 667px) {
  .c-astlrTabs__mainselector {
    display: block;
  }
}
.c-astlrTabs__title {
  padding-top: 1rem;
  padding-bottom: 4rem;
  margin-bottom: calc(6vmin + 2rem);
  padding-left: calc(0.25rem + 1vw);
  padding-right: calc(0.25rem + 1vw);
}
@media (min-width: 568px) {
  .c-astlrTabs__title {
    padding-left: calc(11vw - 3rem);
    padding-right: calc(11vw - 3rem);
  }
}
@media (min-width: 94rem) {
  .c-astlrTabs__title {
    padding-left: 6.8rem;
    padding-right: 6.8rem;
  }
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT books
* 
* ---------------------------------------------------------------------------- */
.c-books {
  overflow: hidden;
  flex-wrap: wrap;
  align-items: stretch;
  margin-bottom: 1rem;
  display: flex;
  justify-content: space-between;
  padding-left: calc(0.25rem + 1vw);
  padding-right: calc(0.25rem + 1vw);
}
@media (min-width: 568px) {
  .c-books {
    padding-left: calc(11vw - 3rem);
    padding-right: calc(11vw - 3rem);
  }
}
@media (min-width: 94rem) {
  .c-books {
    padding-left: 6.8rem;
    padding-right: 6.8rem;
  }
}
.c-books__item {
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: 100%;
  max-width: 98%;
  margin-bottom: 2.5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--color-line);
  max-width: 60rem;
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 568px) {
  .c-books__item {
    flex-wrap: nowrap;
  }
}
.c-books__cover {
  order: 0;
  flex: 1 1 100%;
  align-self: auto;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
  max-width: 15rem;
}
@media (min-width: 568px) {
  .c-books__cover {
    flex: 0 1 25%;
  }
}
.c-books__cover:not(.c-books__cover--blank) > img,
.c-books__cover:not(.c-books__cover--blank) > a img {
  background: #FFFFFF;
  border: 1px solid #E9E9E9;
}
.c-books__body {
  order: 0;
  flex: 1 1 60%;
  align-self: flex-start;
  margin-top: 0.1rem;
}
.c-books__autor {
  margin-bottom: 1rem;
}
.c-books__subtitel {
  margin-top: 0.75rem;
}
.c-books__copy {
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.c-books__link {
  margin-top: 1rem;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT Countdown 
*
* --------------------------------------------------------------------------- */
.c-countdown__timer {
  font-size: 1rem;
  color: var(--color-white);
  line-height: 1.15em;
  letter-spacing: 0.2px;
}
@media (min-width: 568px) {
  .c-countdown__timer {
    font-size: 2.4vw;
  }
}
@media (min-width: 94rem) {
  .c-countdown__timer {
    font-size: 2.3125rem;
  }
}

.c-countdown__timer {
  display: inline-block;
  width: 100%;
  text-align: right;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT elementalStage
* 
* ---------------------------------------------------------------------------- */
.element {
  margin-bottom: calc(1rem + 8vw);
}
@media screen and (min-width: 667px) {
  .element {
    margin-bottom: calc(1rem + 4vw);
  }
}
@media screen and (min-width: 94rem) {
  .element {
    margin-bottom: 4rem;
  }
}

.elemental__publikationen__elementalpublikationen, .elemental__simplecontent__elementalsimplecontent, .elemental__planroom__elementalplanroom, .elemental__plansgrid__elementalplansgrid {
  padding-left: calc(0.25rem + 1vw);
  padding-right: calc(0.25rem + 1vw);
}
@media (min-width: 568px) {
  .elemental__publikationen__elementalpublikationen, .elemental__simplecontent__elementalsimplecontent, .elemental__planroom__elementalplanroom, .elemental__plansgrid__elementalplansgrid {
    padding-left: calc(11vw - 3rem);
    padding-right: calc(11vw - 3rem);
  }
}
@media (min-width: 94rem) {
  .elemental__publikationen__elementalpublikationen, .elemental__simplecontent__elementalsimplecontent, .elemental__planroom__elementalplanroom, .elemental__plansgrid__elementalplansgrid {
    padding-left: 6.8rem;
    padding-right: 6.8rem;
  }
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONTENT BUTTON
*
* --------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
*
* COMPONENT ElementalPublikationen
* 
* ---------------------------------------------------------------------------- */
.c-elementalPublikationen__copystage > h4 {
  color: var(--color-primary);
}
.c-elementalPublikationen__copystage > p > a:before {
  margin-right: 0.5rem !important;
}

.c-elementalPublikationen {
  overflow: visible;
  height: auto;
  border-top: 1px solid var(--color-line-dark);
  padding-top: calc(1rem + 8vw);
}
@media screen and (min-width: 667px) {
  .c-elementalPublikationen {
    padding-top: calc(1rem + 4vw);
  }
}
@media screen and (min-width: 94rem) {
  .c-elementalPublikationen {
    padding-top: 4rem;
  }
}
.c-elementalPublikationen__headline {
  max-width: 54rem;
  margin-bottom: 2rem;
}
.c-elementalPublikationen__headline > h2 {
  margin-bottom: 3rem;
}
.c-elementalPublikationen__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: auto;
  grid-auto-flow: row;
  grid-column-gap: 4.5%;
}
@media screen and (min-width: 667px) {
  .c-elementalPublikationen__items {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-elementalPublikationen__item {
  border-top: 1px solid var(--color-line);
  display: grid;
  grid-auto-flow: row;
  grid-auto-rows: auto;
  grid-column: span 1;
  grid-row: span 1;
  grid-template-columns: 1fr;
  margin-bottom: calc(1rem + 4vw);
  padding-left: 0.15rem;
  padding-right: 0.15rem;
  padding-top: calc(1rem + 4vw);
}
.c-elementalPublikationen__item:first-child {
  border-top: none;
}
@media screen and (min-width: 568px) {
  .c-elementalPublikationen__item {
    grid-column-gap: 3%;
    grid-template-columns: 2fr 5fr;
    margin-bottom: calc(1rem + 2vw);
    padding-top: calc(1rem + 2vw);
  }
}
@media screen and (min-width: 1024px) {
  .c-elementalPublikationen__item {
    margin-left: calc(0.5rem + 2vw);
    margin-right: calc(0.5rem + 2vw);
  }
}
@media screen and (min-width: 94rem) {
  .c-elementalPublikationen__item {
    margin-bottom: 3rem;
    padding-top: 3rem;
    margin-left: 3rem;
    margin-right: 3rem;
  }
}
.c-elementalPublikationen__item--withImage .c-elementalPublikationen__copystage {
  grid-column: span 1;
}
.c-elementalPublikationen__image {
  align-self: flex-start;
  display: flex;
  grid-column: span 1;
  grid-row: span 1;
  margin-bottom: 1rem;
  order: 1;
  overflow: hidden;
}
@media screen and (min-width: 568px) {
  .c-elementalPublikationen__image {
    margin-bottom: 0;
  }
}
.c-elementalPublikationen__image > img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.c-elementalPublikationen__copystage {
  grid-column: span 2;
  grid-row: span 1;
  order: 2;
}
.c-elementalPublikationen__copystage > h4 {
  margin-bottom: 1rem;
}
.c-elementalPublikationen__copystage > p {
  max-width: 42rem;
  margin-bottom: 1.75rem;
}
.c-elementalPublikationen__copystage > p:last-child {
  margin-bottom: 0;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT elementalSimpleContent
* 
* ---------------------------------------------------------------------------- */
.c-elementalSimpleContent__headline, .c-elementalSimpleContent__copy {
  grid-column: 1/48;
  max-width: 54rem;
}
.c-elementalSimpleContent__headline > h2, .c-elementalSimpleContent__copy > h2 {
  margin-top: 0.75em;
}
.c-elementalSimpleContent__headline {
  order: 1;
  margin-bottom: 2rem;
}
.c-elementalSimpleContent__copy {
  order: 2;
}
.c-elementalSimpleContent--withImage .c-elementalSimpleContent__headline {
  order: 1;
  grid-column: 1/48;
  grid-row: 1/span 1;
}
.c-elementalSimpleContent--withImage .c-elementalSimpleContent__img {
  order: 2;
  grid-column: 1/48;
  grid-row: 2/span 1;
}
@media screen and (min-width: 667px) {
  .c-elementalSimpleContent--withImage .c-elementalSimpleContent__img {
    grid-column: 1/span 23;
  }
}
.c-elementalSimpleContent--withImage .c-elementalSimpleContent__copy {
  order: 3;
  grid-column: 1/48;
  grid-row: 3/span 1;
}
@media screen and (min-width: 667px) {
  .c-elementalSimpleContent--withImage .c-elementalSimpleContent__copy {
    grid-row: 2/span 1;
    grid-column: 25/span 24;
  }
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT elementalPlanRoom
* 
* ---------------------------------------------------------------------------- */
.c-elementalPlanRoom__headline > h2 {
  color: var(--color-primary);
}
.c-elementalPlanRoom__standnr {
  color: var(--color-white);
}

.c-elementalPlanRoom {
  margin-bottom: 6rem;
}
.c-elementalPlanRoom__item {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .c-elementalPlanRoom__item {
    flex-wrap: nowrap;
  }
}
.c-elementalPlanRoom__img {
  flex: 1 0 100%;
}
@media (min-width: 1024px) {
  .c-elementalPlanRoom__img {
    flex: 1 1 50%;
  }
}
@media (min-width: 1240px) {
  .c-elementalPlanRoom__img {
    flex: 1 1 60%;
  }
}
.c-elementalPlanRoom__bodystage {
  flex: 1 0 100%;
}
@media (min-width: 1024px) {
  .c-elementalPlanRoom__bodystage {
    flex: 1 1 50%;
  }
}
@media (min-width: 1240px) {
  .c-elementalPlanRoom__bodystage {
    flex: 1 1 40%;
  }
}
.c-elementalPlanRoom__headline {
  max-width: 54rem;
  margin-bottom: 2.5rem;
}
.c-elementalPlanRoom__headline > h2 {
  margin-bottom: 0.5rem;
}
.c-elementalPlanRoom__list {
  margin-top: 2rem;
}
@media (min-width: 1024px) {
  .c-elementalPlanRoom__list {
    margin-top: 0;
  }
}
.c-elementalPlanRoom__list > li {
  border-bottom: 1px solid var(--color-line);
  padding: 0.45rem 0.25rem 0.4rem 0.25rem;
}
.c-elementalPlanRoom__list > li:first-child {
  border-top: 1px solid var(--color-line);
}
@media (min-width: 1024px) {
  .c-elementalPlanRoom__list > li {
    padding-top: 0.6rem;
    padding-bottom: 0.55rem;
  }
}
.c-elementalPlanRoom__link {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: stretch;
  align-items: center;
  gap: 1rem;
}
.c-elementalPlanRoom__standnr {
  min-height: 1.5rem;
  min-width: 2rem;
  text-align: center;
  padding: 0.25rem;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT elementalPlansGrid
* 
* ---------------------------------------------------------------------------- */
.c-elementalPlansGrid__headline > h2 {
  color: var(--color-primary);
}
.c-elementalPlansGrid__imgTitle {
  color: var(--color-primary);
}

.c-elementalPlansGrid__headline {
  max-width: 54rem;
  margin-bottom: 2.5rem;
}
.c-elementalPlansGrid__headline > h2 {
  margin-bottom: 0.5rem;
}
.c-elementalPlansGrid__imgGrid {
  display: grid;
  gap: 2rem;
  margin-bottom: 8rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 1024px) {
  .c-elementalPlansGrid__imgGrid {
    grid-template-columns: 7fr 3fr;
  }
}
.c-elementalPlansGrid__imgLeft {
  grid-column: 1/3;
  grid-row: 1/2;
}
@media (min-width: 1024px) {
  .c-elementalPlansGrid__imgLeft {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}
.c-elementalPlansGrid__imgRightTop {
  grid-column: 1/3;
  grid-row: 2/3;
}
@media (min-width: 568px) {
  .c-elementalPlansGrid__imgRightTop {
    grid-column: 1/2;
    grid-row: 2/3;
  }
}
@media (min-width: 1024px) {
  .c-elementalPlansGrid__imgRightTop {
    grid-column: 2/3;
    grid-row: 1/2;
  }
}
.c-elementalPlansGrid__imgRightBtm {
  grid-column: 1/3;
  grid-row: 3/4;
}
@media (min-width: 568px) {
  .c-elementalPlansGrid__imgRightBtm {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
@media (min-width: 1024px) {
  .c-elementalPlansGrid__imgRightBtm {
    grid-column: 2/3;
    grid-row: 2/3;
  }
}
.c-elementalPlansGrid__imgTitle {
  margin-bottom: 1rem;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT FAQ ACCORDION
*
* --------------------------------------------------------------------------- */
.c-faqAccordion__header:after, .c-faqAccordion__trigger:checked + .c-faqAccordion__header:after {
  color: var(--color-secondary);
  font-size: 1em;
}
@media (min-width: 667px) {
  .c-faqAccordion__header:after, .c-faqAccordion__trigger:checked + .c-faqAccordion__header:after {
    font-size: 1.5em;
  }
}
.c-faqAccordion__subtitle {
  color: var(--color-primary);
}
.c-faqAccordion {
  margin-top: 2rem;
  padding-left: calc(0.25rem + 1vw);
  padding-right: calc(0.25rem + 1vw);
}
@media (min-width: 568px) {
  .c-faqAccordion {
    padding-left: calc(11vw - 3rem);
    padding-right: calc(11vw - 3rem);
  }
}
@media (min-width: 94rem) {
  .c-faqAccordion {
    padding-left: 6.8rem;
    padding-right: 6.8rem;
  }
}
.c-faqAccordion__item {
  display: block;
}
.c-faqAccordion__item .c-faqAccordion__header {
  border-bottom: 1px solid #7CA5C3;
}
.c-faqAccordion__item:first-child .c-faqAccordion__header {
  border-top: 1px solid #7CA5C3;
}
.c-faqAccordion__trigger {
  display: none;
}
.c-faqAccordion__trigger:checked + .c-faqAccordion__header + .c-faqAccordion__bodystage {
  height: auto;
  opacity: 1;
  padding-bottom: 2rem;
  padding-top: 1.5rem;
  transition: opacity 0.5s;
  border-bottom: 1px solid #7CA5C3;
}
.c-faqAccordion__trigger:checked + .c-faqAccordion__header + .c-faqAccordion__bodystage--blank {
  padding: 0;
}
.c-faqAccordion__trigger:checked + .c-faqAccordion__header {
  border-bottom: none;
  background-color: var(--color-fond-lightest);
}
.c-faqAccordion__trigger:hover + .c-faqAccordion__header {
  cursor: pointer;
  background-color: var(--color-fond-lightest);
}
.c-faqAccordion__header {
  background-color: var(--color-white);
  padding: 1.25rem 5rem 1.25rem 1.5rem;
  min-height: 3rem;
  position: relative;
}
.c-faqAccordion__header:after {
  position: absolute;
  right: 1em;
  top: 50%;
}
.c-faqAccordion__title {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.c-faqAccordion__subtitle {
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.c-faqAccordion__bodystage {
  background-color: var(--color-fond-lightest);
  display: block;
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding-bottom: 0;
  padding-top: 0;
  transition: opacity 0.1s;
}
.c-faqAccordion__body {
  display: flex;
  justify-content: space-between;
  justify-content: flex-end;
  flex-wrap: wrap;
  padding: 0 1.5rem 0 1.5rem;
}
@media (min-width: 667px) {
  .c-faqAccordion__body {
    flex-wrap: nowrap;
    padding: 0 4rem 0 4rem;
  }
}
.c-faqAccordion__img {
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: 100%;
  max-width: 98%;
  margin-bottom: 2rem;
}
@media (min-width: 667px) {
  .c-faqAccordion__img {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 33.3333333333%;
    max-width: 31.3333333333%;
    padding-right: 2rem;
  }
}
.c-faqAccordion__copy {
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: 100%;
  max-width: 98%;
}
@media (min-width: 667px) {
  .c-faqAccordion__copy {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 66.6666666667%;
    max-width: 64.6666666667%;
    align-self: flex-start;
  }
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT figureImage
* 
* ---------------------------------------------------------------------------- */
.c-figureImage {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}
.c-figureImage > img {
  order: 0;
  flex: 1 1 10%;
  align-self: stretch;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.c-figureImage__caption {
  margin-top: 0.5rem;
  order: 0;
  flex: 0 1 10%;
  align-self: stretch;
}
/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT footer
* 
* ---------------------------------------------------------------------------- */
/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENTE LOGOLEISTE
* 
* ---------------------------------------------------------------------------- */
.c-footerLogoleiste {
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
  width: 100%;
}
@media (min-width: 568px) {
  .c-footerLogoleiste {
    flex-wrap: nowrap;
  }
}
.c-footerLogoleiste__items {
  flex: 0 1 auto;
  order: 0;
  align-self: center;
  margin-bottom: 2.5rem;
  margin-right: 0rem;
  width: 100%;
}
.c-footerLogoleiste__items > img {
  width: 100%;
  padding-right: 2rem;
}
.c-footerLogoleiste__items--bmbf {
  max-width: 14rem;
}
.c-footerLogoleiste__items--esf {
  max-width: 14rem;
}
.c-footerLogoleiste__items--gs {
  max-width: 15rem;
}
.c-footerLogoleiste__items--mf {
  max-width: 13rem;
}
@media (min-width: 568px) {
  .c-footerLogoleiste__items {
    flex: 1 1 25%;
    margin-right: 1.25rem;
    margin-right: calc(0.25rem + 2vw);
    margin-bottom: 0;
  }
  .c-footerLogoleiste__items > img {
    padding-right: 0rem;
  }
  .c-footerLogoleiste__items--bmbf {
    max-width: 12rem;
  }
  .c-footerLogoleiste__items--esf {
    max-width: 12rem;
  }
  .c-footerLogoleiste__items--gs {
    max-width: 13rem;
  }
  .c-footerLogoleiste__items--mf {
    max-width: 11rem;
  }
}

.c-footer__link {
  color: var(--color-white);
  letter-spacing: 0.5px;
  line-height: 1em;
  text-decoration: none;
  outline: none;
}
.c-footer__link:link {
  color: var(--color-white);
}
.c-footer__link:visited {
  color: var(--color-white);
}
.c-footer__link:hover {
  color: var(--color-primary);
}
.c-footer__link:active, .current.c-footer__link {
  color: var(--color-primary);
}
.c-footer__address > p, .c-footer__typo {
  color: var(--color-white);
  letter-spacing: 0.65px;
  line-height: 1.5em;
}
.c-footer__address > p > a, .c-footer__typo > a {
  text-decoration: none;
}
.c-footer__address > p > a:link, .c-footer__typo > a:link {
  color: var(--color-white);
}
.c-footer__address > p > a:visited, .c-footer__typo > a:visited {
  color: var(--color-white);
}
.c-footer__address > p > a:hover, .c-footer__typo > a:hover {
  color: var(--color-primary);
}

.c-footer__icon--twitter:before, .c-footer__icon--fb:before, .c-footer__icon--rss:before, .c-footer__icon--instagram:before {
  font-size: 2rem;
  line-height: 1em;
  color: var(--color-white);
}
.c-footer__icon--twitter:link:before, .c-footer__icon--fb:link:before, .c-footer__icon--rss:link:before, .c-footer__icon--instagram:link:before {
  color: var(--color-white);
}
.c-footer__icon--twitter:visited:before, .c-footer__icon--fb:visited:before, .c-footer__icon--rss:visited:before, .c-footer__icon--instagram:visited:before {
  color: var(--color-white);
}
.c-footer__icon--twitter:hover:before, .c-footer__icon--fb:hover:before, .c-footer__icon--rss:hover:before, .c-footer__icon--instagram:hover:before {
  color: var(--color-primary);
}
.c-footer__top {
  background-color: transparent;
  padding-top: 4rem;
  padding-bottom: 2rem;
}
.c-footer__btm {
  background-color: transparent;
  padding-bottom: 2rem;
}
.c-footer__top-stage, .c-footer__btm-stage {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-content: flex-start;
  align-items: flex-start;
}
@media (min-width: 667px) {
  .c-footer__top-stage, .c-footer__btm-stage {
    flex-wrap: nowrap;
  }
}
.c-footer__navi {
  order: 0;
  flex: 1 1 100%;
  align-self: auto;
  margin-bottom: 4rem;
}
@media (min-width: 568px) {
  .c-footer__navi {
    order: 0;
    flex: 0 1 auto;
    margin-bottom: 2rem;
  }
}
.c-footer__contact {
  display: none;
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
  max-width: 17rem;
}
@media (min-width: 568px) {
  .c-footer__contact {
    display: block;
  }
}
.c-footer__copyright {
  order: 1;
  flex: 1 1 100%;
  align-self: flex-end;
}
@media (min-width: 667px) {
  .c-footer__copyright {
    order: 0;
    flex: 0 1 auto;
  }
}
.c-footer__logoleiste {
  order: 0;
  flex: 1 1 100%;
  margin-bottom: 2.75rem;
}
@media (min-width: 667px) {
  .c-footer__logoleiste {
    margin-bottom: 0;
    flex: 1 1 auto;
  }
}
.c-footer__gefoerdert {
  display: block;
  margin-bottom: 2rem;
}
.c-footer__logo-foebe {
  width: calc(6rem + 19vw);
  height: auto;
  margin-bottom: 1.5rem;
}
@media (min-width: 667px) {
  .c-footer__logo-foebe {
    width: 260px;
    height: auto;
  }
}
.c-footer__social {
  margin-top: 1.75rem;
}
.c-footer__link {
  display: block;
  margin-bottom: 0.5rem;
}
.c-footer__address {
  order: 0;
  flex: 0 1 auto;
  align-self: auto;
}
.c-footer__address > p {
  margin-bottom: 1rem;
}
.c-footer__icon {
  display: inline-block;
  margin-right: 0.75rem;
  color: var(--color-white);
  text-decoration: none;
}
.c-footer__icon > span {
  display: none;
}
/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
.c-form > form {
  align-items: stretch;
  border: 1px solid var(--color-line);
  background-color: var(--color-white);
  display: inline-flex;
  flex-direction: column;
  flex-wrap: nowrap;
  max-width: 35rem;
  padding: 1.5rem 1rem;
}
.c-form > form > * {
  flex: 0 1 auto;
  align-self: auto;
}
.c-form fieldset {
  display: inline-block;
  margin-bottom: 1.5rem;
  width: 100%;
}
.c-form .message {
  display: block;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}
.c-form__compositeField {
  margin-bottom: 2rem;
}
.c-form__actionbox {
  margin-top: 0;
  margin-bottom: 10rem;
}
.c-form .field {
  margin-bottom: 3rem;
}
.c-form .field > .middleColumn {
  overflow: auto;
}
.c-form .field > .middleColumn > * {
  width: 100%;
}
.c-form .field.text {
  display: block;
}
.c-form .field.text > :nth-child(1) {
  width: 100%;
  display: block;
}
.c-form .field.text > :nth-child(2) {
  width: 100%;
  display: block;
}
.c-form .field.text > :nth-child(2) > * {
  width: 100%;
}
.c-form h1 {
  margin-bottom: 2rem;
}
.c-form h2 {
  margin-top: 6rem;
  margin-bottom: 2rem;
}
.c-form h3 {
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.c-form h4 {
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.c-form h5 {
  margin-top: 4rem;
  margin-bottom: 2rem;
}
.c-form h1:first-child, .c-form h2:first-child, .c-form h3:first-child, .c-form h4:first-child, .c-form h5:first-child {
  margin-top: 0;
}
.c-form h2 + h4 {
  margin-top: 0rem;
}
.c-form label {
  display: inline-block;
  margin-bottom: 0.5rem;
  margin-left: 0.125rem;
}
.c-form input.text, .c-form input.textarea,
.c-form textarea.text,
.c-form textarea.textarea {
  padding: 0.5rem 0.75rem;
}
.c-form__action {
  margin-right: 0.5rem;
}
.c-form__action:last-child {
  margin-right: 0;
}
.c-form--memberloginform {
  max-width: 25rem;
}
.c-form--memberloginform input[type=submit] {
  margin-top: 2rem;
}
.c-form .btn-toolbar > p {
  margin-top: 1.5rem;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT header
* 
* ---------------------------------------------------------------------------- */
.c-header {
  background-color: var(--color-white);
  padding-bottom: 0;
  display: flex;
  align-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.c-header__mainnavi {
  align-self: flex-start;
  display: none;
  flex: 0 1 auto;
  margin-top: 0;
  order: 2;
}
@media (min-width: 768px) {
  .c-header__mainnavi {
    display: inherit;
  }
}
.c-header__logo {
  align-self: auto;
  flex: 0 1 auto;
  order: 1;
  padding-right: 2rem;
}
@media (min-width: 768px) {
  .c-header__logo {
    margin-top: 0.35rem;
  }
}
@media (min-width: 1024px) {
  .c-header__logo {
    margin-top: -0.1rem;
  }
}
.c-header__logo-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 16rem;
}
@media (min-width: 768px) {
  .c-header__logo-img {
    max-width: 11.25rem;
  }
}
@media (min-width: 1024px) {
  .c-header__logo-img {
    max-width: 15rem;
  }
}

.c-headerHome__logo {
  align-self: auto;
  flex: 0 1 auto;
  order: 1;
  padding-right: 2rem;
}
.c-headerHome__logo-img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 13.75rem;
}
@media (min-width: 768px) {
  .c-headerHome__logo-img {
    max-width: 11.875rem;
  }
}
@media (min-width: 1024px) {
  .c-headerHome__logo-img {
    max-width: 23.75rem;
  }
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT Hero Home
* 
* ---------------------------------------------------------------------------- */
.c-heroHome__link:after {
  font-size: 1.1em;
}

.c-heroHome__stage-left > h2 {
  color: var(--color-white);
  line-height: 1.15em;
  letter-spacing: 0.5px;
}
@media (min-width: 375px) {
  .c-heroHome__stage-left > h2 {
    font-size: 6vw;
  }
}
@media (min-width: 94rem) {
  .c-heroHome__stage-left > h2 {
    font-size: 5.625rem;
  }
}
.c-heroHome__stage-left > h3 {
  font-size: 0.75rem;
  color: var(--color-white);
  line-height: 1.2em;
  letter-spacing: 0.5px;
}
@media (min-width: 375px) {
  .c-heroHome__stage-left > h3 {
    font-size: 2.9vw;
  }
}
@media (min-width: 94rem) {
  .c-heroHome__stage-left > h3 {
    font-size: 2.5rem;
  }
}
.c-heroHome__stage-right > p {
  text-align: right;
  color: var(--color-white);
}
.c-heroHome__stage-right > a {
  font-size: 0.875rem;
  color: var(--color-white);
  line-height: 1.15em;
  letter-spacing: 0.25px;
  text-decoration: none;
}
.c-heroHome__stage-right > a:hover {
  text-decoration: underline;
}
@media (min-width: 375px) {
  .c-heroHome__stage-right > a {
    font-size: 2.3vw;
  }
}
@media (min-width: 94rem) {
  .c-heroHome__stage-right > a {
    font-size: 1.9375rem;
  }
}

.c-heroHome {
  position: relative;
  overflow: hidden;
}
.c-heroHome__keyvisual {
  display: flex;
}
.c-heroHome__keyvisual > img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-heroHome__overlay {
  position: absolute;
  bottom: -6%;
  left: 0;
  width: 100%;
  height: 34%;
  transform: skewY(-3deg);
  opacity: 0.94;
  background-image: linear-gradient(146deg, #F75605 29%, #E13E00 100%);
}
.c-heroHome__stage-left {
  transform: skewY(3deg);
  position: absolute;
  bottom: 28%;
  max-width: 75rem;
  padding-left: calc(0.25rem + 1vw);
  padding-right: calc(0.25rem + 1vw);
}
@media (min-width: 568px) {
  .c-heroHome__stage-left {
    padding-left: calc(0.5rem + 1.5vw);
    padding-right: calc(0.5rem + 1.5vw);
  }
}
@media (min-width: 94rem) {
  .c-heroHome__stage-left {
    padding-left: 2.8rem;
    padding-right: 2.8rem;
  }
}
.c-heroHome__stage-right {
  position: absolute;
  bottom: 15%;
  display: none;
  right: 0%;
  transform: skewY(3deg);
  padding-left: calc(0.25rem + 1vw);
  padding-right: calc(0.25rem + 1vw);
}
@media (min-width: 568px) {
  .c-heroHome__stage-right {
    padding-left: calc(0.5rem + 1.5vw);
    padding-right: calc(0.5rem + 1.5vw);
  }
}
@media (min-width: 94rem) {
  .c-heroHome__stage-right {
    padding-left: 2.8rem;
    padding-right: 2.8rem;
  }
}
@media (min-width: 375px) {
  .c-heroHome__stage-right {
    display: block;
  }
}
.c-heroHome__link:after {
  margin-left: 0.8rem;
}
.c-heroHome__link:after:hover {
  text-decoration: none;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT Icons
* 
* ---------------------------------------------------------------------------- */
.c-icons__legendhead--bfd, .c-icons__legendhead--digitalesEng, .c-icons__legendhead--kurzfristigEng {
  margin-bottom: 0.5rem;
}

.c-icons__bfd,
.c-icons__legendhead--bfd:before,
.c-icons__bfd:before, .c-icons__digitalesEng,
.c-icons__legendhead--digitalesEng:before,
.c-icons__digitalesEng:before, .c-icons__kurzfristigEng,
.c-icons__legendhead--kurzfristigEng:before,
.c-icons__kurzfristigEng:before {
  padding: 0px 7px;
  border-radius: 3px;
  display: inline-block;
}
.c-icons__bfd:before,
.c-icons__legendhead--bfd:before, .c-icons__digitalesEng:before,
.c-icons__legendhead--digitalesEng:before, .c-icons__kurzfristigEng:before,
.c-icons__legendhead--kurzfristigEng:before {
  color: var(--color-white);
  display: inline-block;
  font-size: 0.9em;
  line-height: 1em;
  padding: 3px 4px 0px;
}
@media (min-width: 667px) {
  .c-icons__bfd:before,
  .c-icons__legendhead--bfd:before, .c-icons__digitalesEng:before,
  .c-icons__legendhead--digitalesEng:before, .c-icons__kurzfristigEng:before,
  .c-icons__legendhead--kurzfristigEng:before {
    font-size: 1.2em;
  }
}

.c-icons__kurzfristigEng,
.c-icons__legendhead--kurzfristigEng:before,
.c-icons__kurzfristigEng:before {
  background-color: var(--color-primary);
}
.c-icons__digitalesEng,
.c-icons__legendhead--digitalesEng:before,
.c-icons__digitalesEng:before {
  background-color: var(--color-secondary);
}
.c-icons__bfd,
.c-icons__legendhead--bfd:before,
.c-icons__bfd:before {
  background-color: var(--color-tertiary);
}
.c-icons__kurzfristigEng--disabled, .c-icons__digitalesEng--disabled, .c-icons__bfd--disabled {
  background-color: var(--color-fond-medium);
}
.c-icons__kurzfristigEng--disabled:before, .c-icons__digitalesEng--disabled:before, .c-icons__bfd--disabled:before {
  background-color: var(--color-fond-medium);
}

.c-icons__legendhead--kurzfristigEng:before {
  width: 2rem;
  margin-right: 0.5rem;
  text-align: center;
}
.c-icons__legendhead--digitalesEng:before {
  width: 2rem;
  margin-right: 0.5rem;
  text-align: center;
}
.c-icons__legendhead--bfd:before {
  width: 2rem;
  margin-right: 0.5rem;
  text-align: center;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT lightbox
* 
* ---------------------------------------------------------------------------- */
:root {
  --tobii-lightbox-background: rgba(29,42,51,0.90);
  --tobii-caption-background: rgba(0,0,0,0.35);
}

.c-lightbox__headline {
  margin-bottom: 2rem;
}
.c-lightbox__subline {
  margin-top: 1rem;
  max-width: 53rem;
}
.c-lightbox__items {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem 1rem;
  grid-auto-flow: row dense;
  grid-auto-rows: 1fr;
}
@media screen and (min-width: 568px) {
  .c-lightbox__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .c-lightbox__items {
    grid-template-columns: repeat(3, 1fr);
  }
}
.c-lightbox__item--portrait {
  grid-column: span 1;
  grid-row: span 2;
}
.c-lightbox__item--landscape {
  grid-column: span 1;
  grid-row: span 1;
}
.c-lightbox__item--square {
  grid-column: span 1;
  grid-row: span 1;
}
.c-lightbox__link {
  display: flex;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.c-lightbox__link > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
/* -----------------------------------------------------------------------------
*
* COMPONENT LiveVideo
* 
* ---------------------------------------------------------------------------- */
/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT blank
* 
* ---------------------------------------------------------------------------- */
.c-liveVideoMain {
  flex-wrap: wrap;
  margin-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  padding-left: calc(0.25rem + 1vw);
  padding-right: calc(0.25rem + 1vw);
}
@media (min-width: 568px) {
  .c-liveVideoMain {
    padding-left: calc(11vw - 3rem);
    padding-right: calc(11vw - 3rem);
  }
}
@media (min-width: 94rem) {
  .c-liveVideoMain {
    padding-left: 6.8rem;
    padding-right: 6.8rem;
  }
}
.c-liveVideoMain__stage {
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: 100%;
  max-width: 98%;
  width: 100%;
}
.c-liveVideoMain__title {
  margin-bottom: 1rem;
}
.c-liveVideoMain__polling {
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: 100%;
  max-width: 98%;
  width: 100%;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT blank
* 
* ---------------------------------------------------------------------------- */
.c-liveVideoGallery {
  background-color: var(--color-fond-lightest);
  padding-top: 1.6rem;
  padding-bottom: 1.6rem;
}
.c-liveVideoGallery__stage {
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  padding-left: calc(0.25rem + 1vw);
  padding-right: calc(0.25rem + 1vw);
}
@media (min-width: 568px) {
  .c-liveVideoGallery__stage {
    padding-left: calc(11vw - 3rem);
    padding-right: calc(11vw - 3rem);
  }
}
@media (min-width: 94rem) {
  .c-liveVideoGallery__stage {
    padding-left: 6.8rem;
    padding-right: 6.8rem;
  }
}
@media (min-width: 667px) {
  .c-liveVideoGallery__stage {
    flex-wrap: nowrap;
  }
}
.c-liveVideoGallery__item {
  background-color: var(--color-white);
  border: 1px solid #E9E9E9;
  align-self: auto;
  margin-bottom: 1.5rem;
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: 100%;
  max-width: 98%;
}
@media (min-width: 667px) {
  .c-liveVideoGallery__item {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 50%;
    max-width: 48%;
  }
}
.c-liveVideoGallery__item.--hidden {
  will-change: transform;
  will-change: opacity;
  opacity: 0;
  transform: scale(0.3);
  transition: 0.25s transform ease-out, 0.6s opacity;
  transition-delay: 0.3s;
}
.c-liveVideoGallery__item.--hide {
  display: none;
}
.c-liveVideoGallery__item:empty {
  height: 0;
  margin-top: 0;
  margin-bottom: 0;
  border: none;
}
.c-liveVideoGallery__header {
  display: flex;
  justify-content: space-between;
  padding-left: calc(0.25rem + 1vw);
  padding-right: calc(0.25rem + 1vw);
}
@media (min-width: 568px) {
  .c-liveVideoGallery__header {
    padding-left: calc(11vw - 3rem);
    padding-right: calc(11vw - 3rem);
  }
}
@media (min-width: 94rem) {
  .c-liveVideoGallery__header {
    padding-left: 6.8rem;
    padding-right: 6.8rem;
  }
}
.c-liveVideoGallery__title {
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: 100%;
  max-width: 98%;
  margin-bottom: 1rem;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT Expose
* 
* ---------------------------------------------------------------------------- */
.c-mediathek {
  padding-top: 1.25rem;
  padding-bottom: 2rem;
  border-bottom: 2.3rem solid #fff;
  background-color: var(--color-fond-lightest);
}
.c-mediathek__items {
  overflow: hidden;
  flex-wrap: wrap;
  display: flex;
  justify-content: space-between;
  padding-left: calc(0.25rem + 1vw);
  padding-right: calc(0.25rem + 1vw);
}
@media (min-width: 568px) {
  .c-mediathek__items {
    padding-left: calc(11vw - 3rem);
    padding-right: calc(11vw - 3rem);
  }
}
@media (min-width: 94rem) {
  .c-mediathek__items {
    padding-left: 6.8rem;
    padding-right: 6.8rem;
  }
}
.c-mediathek__item {
  background-color: var(--color-white);
  border: 1px solid #E9E9E9;
  align-self: auto;
  margin-bottom: 1.5rem;
  flex-shrink: 1;
  flex-grow: 0;
  flex-basis: 100%;
  max-width: 99.5%;
}
@media (min-width: 667px) {
  .c-mediathek__item {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 50%;
    max-width: 49.5%;
  }
}
@media (min-width: 1024px) {
  .c-mediathek__item {
    flex-shrink: 1;
    flex-grow: 0;
    flex-basis: 33.3333333333%;
    max-width: 32.8333333333%;
  }
}
.c-mediathek__item.--hidden {
  will-change: transform;
  will-change: opacity;
  opacity: 0;
  transform: scale(0.3);
  transition: 0.25s transform ease-out, 0.6s opacity;
  transition-delay: 0.3s;
}
.c-mediathek__item.--hide {
  display: none;
}
.c-mediathek__item:empty {
  height: 0;
  margin-top: 0;
  margin-bottom: 0;
  border: none;
}
.c-mediathek__header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: center;
  margin-bottom: 2rem;
  padding-left: calc(0.25rem + 1vw);
  padding-right: calc(0.25rem + 1vw);
}
@media (min-width: 568px) {
  .c-mediathek__header {
    padding-left: calc(11vw - 3rem);
    padding-right: calc(11vw - 3rem);
  }
}
@media (min-width: 94rem) {
  .c-mediathek__header {
    padding-left: 6.8rem;
    padding-right: 6.8rem;
  }
}
@media (min-width: 768px) {
  .c-mediathek__header {
    flex-wrap: nowrap;
  }
}
.c-mediathek__headline {
  order: 0;
  flex: 1 0 100%;
  align-self: auto;
  margin-top: 0.75rem;
}
@media (min-width: 768px) {
  .c-mediathek__headline {
    flex: 3 1 auto;
  }
}
.c-mediathek__filterbar {
  order: 0;
  flex: 1 0 100%;
  align-self: auto;
}
@media (min-width: 768px) {
  .c-mediathek__filterbar {
    flex: 2 1 auto;
  }
}
.c-mediathek__filter {
  display: block;
  margin-bottom: 0.3rem;
}
@media (min-width: 568px) {
  .c-mediathek__filter {
    margin-right: 0.25rem;
    display: inline-block;
  }
}
.c-mediathek__form > fieldset {
  margin: 0;
  padding: 0;
  display: inline;
}
.c-mediathek__form > .btn-toolbar {
  display: flex;
  flex-wrap: nowrap;
}
.c-mediathek__form > .btn-toolbar > input {
  flex: 1 1 auto;
  margin-right: 0.5rem;
}
.c-mediathek__form > .btn-toolbar > input:last-child {
  margin-right: 0;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT MEDIATHEKCARD
* 
* ---------------------------------------------------------------------------- */
.tobii {
  background-color: rgba(0, 45, 69, 0.94);
}
.tobii__slider-slide > div {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
}
.tobii__slider-slide > div > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
}

.tobii > button:active,
.tobii > button:focus,
.tobii > button:hover {
  outline-style: none;
}

.c-mediathekCard__frame:after {
  font-size: 1.75rem;
}

.c-mediathekCard__caption > h1, .c-mediathekCard__caption > h2, .c-mediathekCard__caption > h3, .c-mediathekCard__caption > h4, .c-mediathekCard__caption > h5 {
  line-height: 1.32em;
}
.c-mediathekCard__stage {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
  background-color: var(--color-copytext);
  margin-bottom: 0.5rem;
}
.c-mediathekCard__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-line);
  overflow: hidden;
  max-width: 100%;
}
.c-mediathekCard__frame > img {
  width: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.c-mediathekCard__frame:after {
  background-color: var(--color-primary);
  color: var(--color-white);
  opacity: 0.9;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  padding: 0.15em 0.6em 0.1em 0.7em;
  border-radius: 4.3px;
  transition: color 0.12s ease-out, background-color 0.12s ease-out, opacity 0.12s ease-out;
}
.c-mediathekCard__frame:hover:after {
  opacity: 0.95;
  background-color: var(--color-white);
  color: var(--color-primary);
}
.c-mediathekCard__caption {
  padding: 0.75rem 0.75rem 1.2rem 0.75rem;
}
.c-mediathekCard__caption > h1, .c-mediathekCard__caption > h2, .c-mediathekCard__caption > h3, .c-mediathekCard__caption > h4, .c-mediathekCard__caption > h5 {
  margin-bottom: 0.3rem;
}
.c-mediathekCard__caption > p {
  margin-bottom: 1.25rem;
}
.c-mediathekCard__caption--nopadding {
  padding: 0.25rem 0;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT naviMain
* 
* ---------------------------------------------------------------------------- */
.c-naviMain__link-e2, .c-naviMain__link-e1 {
  color: var(--color-secondary);
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: 0.15px;
  line-height: 1em;
  text-decoration: none;
  outline: none;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .c-naviMain__link-e2, .c-naviMain__link-e1 {
    font-size: 1rem;
  }
}
@media (min-width: 1024px) {
  .c-naviMain__link-e2, .c-naviMain__link-e1 {
    font-size: 1.125rem;
  }
}
.c-naviMain__link-e2:link, .c-naviMain__link-e1:link {
  color: var(--color-secondary);
}
.c-naviMain__link-e2:visited, .c-naviMain__link-e1:visited {
  color: var(--color-secondary);
}
.c-naviMain__link-e2:hover, .c-naviMain__link-e1:hover {
  color: var(--color-primary);
}
.c-naviMain__link-e2:focus, .c-naviMain__link-e1:focus {
  outline-color: var(--color-link--focus);
  outline-offset: 0px;
  outline-style: solid;
  outline-width: 2px;
}
.c-naviMain__link-e2:active, .c-naviMain__link-e1:active, .current.c-naviMain__link-e2, .current.c-naviMain__link-e1, .section.c-naviMain__link-e2, .section.c-naviMain__link-e1 {
  color: var(--color-primary);
  outline: none;
}
.c-naviMain__link-e2:active:focus, .c-naviMain__link-e1:active:focus, .current.c-naviMain__link-e2:focus, .current.c-naviMain__link-e1:focus, .section.c-naviMain__link-e2:focus, .section.c-naviMain__link-e1:focus {
  outline-color: var(--color-link--focus);
  outline-offset: 0px;
  outline-style: solid;
  outline-width: 2px;
}
.c-naviMain__link-e2:active:focus-within, .c-naviMain__link-e1:active:focus-within, .current.c-naviMain__link-e2:focus-within, .current.c-naviMain__link-e1:focus-within, .section.c-naviMain__link-e2:focus-within, .section.c-naviMain__link-e1:focus-within {
  color: var(--color-primary);
}
.c-naviMain__link-e2:active:hover, .c-naviMain__link-e1:active:hover, .current.c-naviMain__link-e2:hover, .current.c-naviMain__link-e1:hover, .section.c-naviMain__link-e2:hover, .section.c-naviMain__link-e1:hover {
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .c-naviMain__subnavi {
    margin-left: 0.75rem;
  }
}
.c-naviMain__link-e1 {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.2rem;
  margin-right: 0.5rem;
  margin-right: calc(0.3vw + 0.1rem);
}
@media (min-width: 94rem) {
  .c-naviMain__link-e1 {
    margin-right: 0.5625rem;
  }
}
.c-naviMain__link-e1:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.c-naviMain__link-e1--es {
  display: inline-block;
}
.c-naviMain__link-e1--es > span {
  display: none;
}
.c-naviMain__link-e1--es:after {
  font-size: 2.4rem;
}
.c-naviMain__link-e2 {
  display: block;
  margin-bottom: 0.6rem;
  outline: none !important;
  text-decoration: none;
}
@media (min-width: 768px) {
  .c-naviMain__link-e2 {
    display: inline-block;
    margin-bottom: 0rem;
    margin-right: 0.7rem;
  }
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT naviMobile
* 
* ---------------------------------------------------------------------------- */
.c-naviMobile__stage {
  background-color: var(--color-primary);
}

.c-naviMobile__link-e1, .c-naviMobile__link-e2 {
  font-size: 1.375rem;
  -webkit-hyphens: none;
          hyphens: none;
  letter-spacing: 0.2px;
  line-height: 1em;
  text-decoration: none;
  outline: none;
  color: var(--color-white);
}
.c-naviMobile__link-e1:link, .c-naviMobile__link-e2:link {
  color: var(--color-white);
}
.c-naviMobile__link-e1:visited, .c-naviMobile__link-e2:visited {
  color: var(--color-white);
}
.c-naviMobile__link-e1:hover, .c-naviMobile__link-e2:hover {
  color: var(--color-secondary-dark);
}
.c-naviMobile__link-e1:focus, .c-naviMobile__link-e2:focus {
  color: var(--color-secondary-dark);
}
.c-naviMobile__link-e1:active, .current.c-naviMobile__link-e1, .section.c-naviMobile__link-e1, .c-naviMobile__link-e2:active, .current.c-naviMobile__link-e2, .section.c-naviMobile__link-e2 {
  color: var(--color-secondary-dark);
  outline: none;
}
.c-naviMobile__link-e1:active:focus, .current.c-naviMobile__link-e1:focus, .section.c-naviMobile__link-e1:focus, .c-naviMobile__link-e2:active:focus, .current.c-naviMobile__link-e2:focus, .section.c-naviMobile__link-e2:focus {
  color: var(--color-secondary-dark);
}
.c-naviMobile__link-e1:active:focus-within, .current.c-naviMobile__link-e1:focus-within, .section.c-naviMobile__link-e1:focus-within, .c-naviMobile__link-e2:active:focus-within, .current.c-naviMobile__link-e2:focus-within, .section.c-naviMobile__link-e2:focus-within {
  color: var(--color-secondary-dark);
}
.c-naviMobile__link-e1:active:hover, .current.c-naviMobile__link-e1:hover, .section.c-naviMobile__link-e1:hover, .c-naviMobile__link-e2:active:hover, .current.c-naviMobile__link-e2:hover, .section.c-naviMobile__link-e2:hover {
  color: var(--color-secondary-dark);
}

@keyframes slideIntoPlace {
  0% {
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    transform: translateX(0px);
    opacity: 1;
  }
}
.c-naviMobile {
  width: 100%;
  height: auto;
  overflow: auto;
}
.c-naviMobile__stage {
  display: block;
  height: 100%;
  overflow: auto;
  padding: 12vh 2vw 2vh 8vw;
  padding-left: calc(0.7rem + 5vw);
  width: 100%;
  z-index: 800;
}
.c-naviMobile__trigger > span {
  display: none;
}
.c-naviMobile__trigger:before {
  font-size: 2.0625rem;
  color: var(--color-link);
  margin-right: 0.1875rem;
  visibility: visible;
}
.c-naviMobile__trigger:before:link, .c-naviMobile__trigger:before:visited {
  color: var(--color-link);
}
.c-naviMobile__trigger:before:hover {
  color: var(--color-link);
}
@media (min-width: 768px) {
  .c-naviMobile__trigger, .c-naviMobile__trigger.-state--active, .c-naviMobile__trigger.-state--off {
    display: none;
  }
  .c-naviMobile__trigger:before {
    visibility: hidden;
  }
}
.c-naviMobile__trigger.-state--active:before {
  color: var(--color-white);
}
.c-naviMobile__top {
  padding-bottom: 1.5rem;
}
.c-naviMobile__btm {
  padding-top: 1.5rem;
}
.c-naviMobile__menu-e1 {
  overflow: hidden;
}
.c-naviMobile__menu-e2 {
  padding-top: 1rem;
  padding-bottom: 0.6rem;
  padding-left: 1.625rem;
}
.c-naviMobile__element-e1 {
  display: block;
  margin-bottom: 1rem;
}
.c-naviMobile__element-e1:last-child {
  margin-bottom: 0;
}
.c-naviMobile__element-e2 {
  display: block;
  margin-bottom: 0.8rem;
}
.c-naviMobile__element-e2:last-child {
  margin-bottom: 0;
}
.c-naviMobile__link-e1--es {
  display: inline-block;
}
.c-naviMobile__link-e1--es > span {
  display: none;
}
.c-naviMobile__link-e1--es:after {
  font-size: 3rem;
}
/* -----------------------------------------------------------------------------
*
* COMPONENT NEWSLETTERABO
* 
* ---------------------------------------------------------------------------- */
/* -----------------------------------------------------------------------------
*
* COMPONENT NEWSLETTERABOFORM
* 
* ---------------------------------------------------------------------------- */
.c-newsletterAboForm {
  background-color: var(--color-fond-lightest);
  max-width: 30rem;
  padding: 1.5rem 1.25rem;
  margin-top: 1.5rem;
}
.c-newsletterAboForm h4 {
  margin-bottom: 4rem;
}
.c-newsletterAboForm__compositeField {
  margin-bottom: 2rem;
}
.c-newsletterAboForm__actionbox {
  margin-top: 2rem;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT POLLING TOOL
* 
* ---------------------------------------------------------------------------- */
.c-pollingTool {
  width: 100%;
  padding: 1rem 0.25rem 1.2rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--color-secondary);
  border-bottom: 1px solid var(--color-secondary);
  display: flex;
  flex-wrap: wrap;
}
@media (min-width: 667px) {
  .c-pollingTool {
    flex-wrap: nowrap;
  }
}
.c-pollingTool__form fieldset {
  flex: 1 1 70%;
  margin-bottom: 0;
}
.c-pollingTool__headline {
  margin-bottom: 1rem;
}
.c-pollingTool__left {
  flex: 1 1 100%;
  margin-bottom: 2rem;
}
@media (min-width: 667px) {
  .c-pollingTool__left {
    padding-right: 2rem;
    margin-bottom: 0rem;
    flex: 1 1 40%;
  }
}
.c-pollingTool__right {
  flex: 1 1 100%;
}
@media (min-width: 667px) {
  .c-pollingTool__right {
    flex: 1 1 60%;
  }
  .c-pollingTool__right--right {
    text-align: right;
  }
}
/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT standnr
* 
* ---------------------------------------------------------------------------- */
.c-standnr {
  color: var(--color-white);
  letter-spacing: 0.5px;
  line-height: 1em;
  text-rendering: optimizeLegibility;
}

.c-standnr {
  display: inline-block;
  padding: 0.35rem;
  min-width: 2rem;
  text-align: center;
  border-radius: 3px;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT aussteller 
*
* --------------------------------------------------------------------------- */
.c-schedule__date {
  color: var(--color-primary);
  line-height: 1.25em;
  letter-spacing: 0.35px;
}
.c-schedule__time {
  color: var(--color-white);
  line-height: 1em;
  letter-spacing: 0.35px;
}
.c-schedule__next {
  color: var(--color-white);
  line-height: 1em;
  letter-spacing: 0.05px;
}
.c-schedule__stage {
  width: 100%;
  -moz-column-count: 1;
       column-count: 1;
  -moz-column-gap: 2%;
       column-gap: 2%;
}
@media (min-width: 1240px) {
  .c-schedule__stage {
    -moz-column-count: 2;
         column-count: 2;
  }
}
.c-schedule__block {
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  overflow: hidden;
  height: auto;
}
.c-schedule__block.-state--active {
  height: auto;
}
.c-schedule__item {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: stretch;
}
.c-schedule__item:first-child .c-schedule__right,
.c-schedule__item:first-child .c-schedule__left {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.c-schedule__left {
  background-color: var(--color-primary);
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: 15%;
  flex-basis: calc(4.5rem + 4vw);
  align-self: stretch;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (min-width: 667px) {
  .c-schedule__left {
    flex-basis: 20%;
    flex-basis: calc(5.5rem + 4vw);
  }
}
@media (min-width: 1240px) {
  .c-schedule__left {
    flex-basis: 20%;
    flex-basis: calc(25% - 2vw);
  }
}
@media (min-width: 94rem) {
  .c-schedule__left {
    flex-basis: 20%;
  }
}
.c-schedule__left--divider {
  padding: 2rem 0.7rem 2rem 0.7rem;
}
.c-schedule__left--divider > div {
  display: block;
  border-top: 2px solid var(--color-white);
  margin-top: 2rem;
}
.c-schedule__left--divider > div > span {
  display: none;
}
.c-schedule__left--upcoming {
  background-color: var(--color-focus);
}
.c-schedule__right {
  padding-top: 2rem;
  padding-bottom: 2rem;
  padding-right: 0.5rem;
  padding-left: 1.5rem;
  padding-left: calc(0.4rem + 1.3vw);
  order: 0;
  flex: 1 0 80%;
  align-self: stretch;
}
@media (min-width: 94rem) {
  .c-schedule__right {
    padding-left: 1.5rem;
  }
}
.c-schedule__right--upcoming {
  background-color: var(--color-fond-light);
}
.c-schedule__date {
  border-top: 2px solid var(--color-primary);
  margin-bottom: 0.8rem;
  margin-top: 2rem;
  padding-top: 0.4rem;
}
.c-schedule__time {
  text-align: center;
}
.c-schedule__next {
  display: block;
  margin-top: 0.75rem;
  text-align: center;
}
.c-schedule__headline {
  margin-bottom: 0.7rem;
}
.c-schedule__figure {
  margin-top: 1.2rem;
}
.c-schedule__figcaption {
  margin-top: 0.2rem;
}
.c-schedule__link {
  margin-top: 1.2rem;
  margin-left: -0.1rem;
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT blank
* 
* ---------------------------------------------------------------------------- */
.c-testimonial:before {
  color: var(--color-primary);
  line-height: 1em;
  font-size: 3em;
}

.c-testimonial__cite {
  color: var(--color-copytext);
  letter-spacing: 0.01px;
  line-height: 1.53em;
}
.c-testimonial__autor {
  color: var(--color-copytext);
  line-height: 1.4em;
  letter-spacing: 0.25px;
}
.c-testimonial__tag {
  line-height: 1.1em;
  color: var(--color-copytext);
  font-size: f-responsiveFontSize(375px, 667px, 14px, 26px);
}
@media (min-width: 667px) {
  .c-testimonial__tag {
    font-size: f-responsiveFontSize(667px, 1504px, 26px, 48px);
  }
}
@media (min-width: 94rem) {
  .c-testimonial__tag {
    font-size: 48px;
  }
}

.c-testimonial {
  border-top: 2px solid var(--color-primary);
  border-bottom: 2px solid var(--color-primary);
  margin: 0.5rem 0 2rem 0;
}
@media (min-width: 667px) {
  .c-testimonial {
    flex-wrap: nowrap;
  }
}
.c-testimonial:before {
  position: relative;
  top: 0;
  left: -0.2rem;
}
.c-testimonial__blockquote {
  position: relative;
  padding: 0 0 1.2rem 0;
}
@media (min-width: 667px) {
  .c-testimonial__blockquote {
    margin-bottom: 0;
  }
}
.c-testimonial__tags {
  display: none;
  flex: 1 0 100%;
  align-self: flex-start;
}
@media (min-width: 667px) {
  .c-testimonial__tags {
    flex: 0 1 40%;
    display: block;
  }
}
.c-testimonial__cite {
  text-align: center;
  margin-bottom: 2rem;
}
.c-testimonial__autor {
  text-align: center;
  display: block;
}
.c-testimonial__tag {
  display: block;
  margin-bottom: 0.1rem;
  text-align: center;
}
@media (min-width: 667px) {
  .c-testimonial__tag {
    text-align: right;
  }
}

/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT UploadForm
* 
* ---------------------------------------------------------------------------- */
/**
* Main style sheed
*
* Mobile first with susy and breakpoints
*
* Using BEM (Block, Element, Modifier) methodology:
* Block: .block
* Element .block__element
* Modifier: .block--mod
*
* In SASS:
* .block {
*    &__element {
*       //some styles here
*    }
*
*    &--mod {
*       //some styles here
*    }
* }
*
* Die Typografie wird zentral in _extends.typography.scss verwaltet und mittels @extend 
* an die Componententklassen gebunden. Das heißt es gibt keine zentrale Definion von 
* Typo Tags (h1, h2, p …). Ausnahme ist nur der WYSIWYG Editor der eine eigene Wrapper Klasse
* (z.B. .typography in Silverstripe) hat. 
* 
* für weitere gute Anregungen: https://css-tricks.com/combining-the-powers-of-sem-and-bio-for-improving-css/
*
* @author Martin Hasieber
* @copyright MHKD - Martin Hasieber Kommunikatiionsdesign
* @package: 
* 
*/
/* -----------------------------------------------------------------------------
*
* COMPONENT videoEmbed
* 
* ---------------------------------------------------------------------------- */
.c-videoEmbed__stage:before {
  font-size: 4rem;
  color: var(--color-primary);
}

.c-videoEmbed__stage {
  display: block;
  position: relative;
  overflow: hidden;
  width: 100%;
  border: 1px solid var(--color-line);
  background-color: var(--color-copytext);
  margin-bottom: 0.5rem;
}
.c-videoEmbed__stage:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
}
.c-videoEmbed__frame {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  max-width: 100%;
}
.c-videoEmbed__frame > img {
  width: 100%;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
.c-videoEmbed__caption {
  padding: 0.1rem 0 0.5rem;
}
.c-videoEmbed__caption > h1, .c-videoEmbed__caption > h2, .c-videoEmbed__caption > h3, .c-videoEmbed__caption > h4, .c-videoEmbed__caption > h5 {
  margin-bottom: 0.25rem;
}
.c-videoEmbed__caption > p {
  margin-bottom: 1.25rem;
}

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