@charset "UTF-8";
/**
 * Default clearfix implementation.
 *
 * @usage
 *    .box {
 *      @include clearfix;
 *    }
 */
/**
 * Casts a string into a number.
 *
 * @param {string} $value
 *    Tje string to cast to a number.
 * @return {$number}
 *    The value as number.
 */
/**
 * Split a string into a list of strings.
 *
 * @param {string} $string
 *    Tje string to be split.
 * @param {string} $delimiter
 *    The boundary string.
 * @return {list} $result
 *    The result list.
 */
figure {
  position: relative;
  display: inline-block;
  margin: 0;
}
figure img {
  position: relative;
  z-index: 2;
}
figure a.figure__zoom {
  position: relative;
  display: block;
}
figure a.figure__zoom:before {
  font-family: "iconfont";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  speak: none;
  text-decoration: none;
  text-transform: none;
  vertical-align: middle;
  content: "\e055";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  width: 1.75rem;
  height: 1.75rem;
  font-size: 1rem;
  background: #05598C;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 3px;
  z-index: 3;
}
figure a.figure__zoom:hover:before, figure a.figure__zoom:focus:before {
  background: #0378A3;
}
figure figcaption {
  display: block;
  font-size: 0.69rem;
  font-style: italic;
  border-bottom: none;
  margin-top: 0;
  position: relative;
  z-index: 3;
}
figure figcaption .figcaptionbg {
  display: inline-block;
  background: #fff;
  opacity: 1;
  padding: 0 0.25rem;
}
figure figcaption .copyright {
  border-bottom: none;
  height: 1rem;
}
figure figcaption .copyright:before {
  content: "© ";
}
figure figcaption .copyright, figure figcaption .caption-text {
  color: #767676;
  font-size: 0.69rem;
}
figure figcaption.figure__caption-switched {
  position: absolute;
  right: 0.5rem;
  top: 0.5rem;
  border-radius: 3px;
  background: #05598C;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
figure figcaption.figure__caption-switched .figcaptionbg {
  background: transparent;
  opacity: 1;
  display: inline-block;
  padding: 0.3rem 0.5rem 0.4rem 0.5rem;
}
figure figcaption.figure__caption-switched .figcaptionbg.hidden {
  display: none;
}
figure figcaption.figure__caption-switched .copyright, figure figcaption.figure__caption-switched .caption-text {
  display: block;
  color: #fff;
}
figure figcaption.figure__caption-switched .button {
  margin: 0;
  display: inline-block;
  pointer-events: all;
  cursor: pointer;
}
figure figcaption.figure__caption-switched .button i.icon {
  margin-left: 0;
  position: relative;
  top: -0.1rem;
}

/* Reponsive image noscript fallback handling */
figure.responsive_image {
  width: 100%;
}
figure.responsive_image img {
  display: none;
  position: relative;
}
.js figure.responsive_image img {
  display: block;
}
.js figure.responsive_image img.placeholder {
  width: 100%;
  background-image: -webkit-gradient(linear, left top, right top, from(#DAE6EE), color-stop(#DAE6EE), color-stop(#EDEFF8), color-stop(#DAE6EE), to(#DAE6EE));
  background-image: -o-linear-gradient(left, #DAE6EE, #DAE6EE, #EDEFF8, #DAE6EE, #DAE6EE);
  background-image: linear-gradient(90deg, #DAE6EE, #DAE6EE, #EDEFF8, #DAE6EE, #DAE6EE);
  background-size: 200% 100%;
  -webkit-animation: placeholderbg 2s ease infinite;
          animation: placeholderbg 2s ease infinite;
}
.js figure.responsive_image img.placeholder:not([src]) {
  text-indent: -10000rem;
}
figure.responsive_image noscript img {
  display: block;
}
.js figure.responsive_image noscript img {
  display: none;
}

@-webkit-keyframes placeholderbg {
  0% {
    background-position: -50% 0%;
  }
  100% {
    background-position: -250% 0%;
  }
}

@keyframes placeholderbg {
  0% {
    background-position: -50% 0%;
  }
  100% {
    background-position: -250% 0%;
  }
}
.text-formatted a[href]:has(figure):before {
  position: absolute;
  left: 5px;
  top: 5px;
  z-index: 2;
  background: #fff;
  display: block;
  width: auto;
  padding: 3px 6px;
}
.text-formatted a[href]:has(figure):hover:before {
  background: #E7F0D4;
}
.text-formatted a[href] figure {
  position: relative;
  z-index: 1;
  border: 2px solid #0378A3;
  padding: 5px 5px 3px 5px;
  margin-right: 1px;
  margin-bottom: calc(1px + 1rem);
}
.text-formatted a[href] figure .figcaptionbg {
  padding: 0.5rem;
}
.text-formatted a[href]:hover figure {
  border: 2px solid #05598C;
  border-bottom-width: 3px;
  border-right-width: 3px;
  margin-right: 0;
  margin-bottom: 1rem;
  -webkit-box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  background: #E7F0D4;
}
.text-formatted a[href]:hover figure .figcaptionbg {
  display: block;
  background: #E7F0D4;
}
.text-formatted a[href]:hover figure .figcaptionbg .copyright,
.text-formatted a[href]:hover figure .figcaptionbg .caption-text {
  color: #4F6325;
}