@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

html {
  -webkit-text-size-adjust: 100%;
}

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;
}

blockquote, q {
  quotes: none;
}

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

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

@media all and (-ms-high-contrast: none) {
  table {
    border-collapse: inherit;
  }
}

/*
  Gets rid of the annoying outline for mouse users but preserves it for keyboard users, and is ignored by browsers that don’t support :focus-visible.
  @Link: https://twitter.com/LeaVerou/status/1045768279753666562
 */
:focus:not(:focus-visible) {
  outline: none;
}

/*
  Gets rid of the deleting "x" on chrome
  @Link: https://stackoverflow.com/questions/11538192/stop-chrome-from-auto-styling-input-type-search
*/
input[type="search"] {
  -webkit-appearance: none;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

::-ms-clear {
  display: none;
  width: 0;
  height: 0;
}

.sr {
  position: absolute;
  height: 1px;
  width: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  white-space: nowrap;
}

@font-face {
  font-family: 'TheSerif';
  src: url("../fonts/TheSerifB-W6SemiBold.eot");
  src: url("../fonts/TheSerifB-W6SemiBold.eot?#iefix") format("embedded-opentype"), url("../fonts/TheSerifB-W6SemiBold.woff2") format("woff2"), url("../fonts/TheSerifB-W6SemiBold.woff") format("woff"), url("../fonts/TheSerifB-W6SemiBold.ttf") format("truetype"), url("../fonts/TheSerifB-W6SemiBold.svg#TheSerifB-W6SemiBold") format("svg");
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'Verdana';
  src: url("../fonts/Verdana.eot");
  src: url("../fonts/Verdana.eot?#iefix") format("embedded-opentype"), url("../fonts/Verdana.woff2") format("woff2"), url("../fonts/Verdana.woff") format("woff"), url("../fonts/Verdana.ttf") format("truetype"), url("../fonts/Verdana.svg#Verdana") format("svg");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Verdana';
  src: url("../fonts/Verdana-Bold.eot");
  src: url("../fonts/Verdana-Bold.eot?#iefix") format("embedded-opentype"), url("../fonts/Verdana-Bold.woff2") format("woff2"), url("../fonts/Verdana-Bold.woff") format("woff"), url("../fonts/Verdana-Bold.ttf") format("truetype"), url("../fonts/Verdana-Bold.svg#Verdana-Bold") format("svg");
  font-weight: 700;
  font-style: normal;
}

/*
  declares font-size (first value) and line-height (second value) per breakpoint
*/
/*
  The higher in list, the higher the z-index
  Usage: z-index: z('overlay')
  More information: https://engageinteractive.co.uk/blog/top-10-scss-mixins#z-index
*/
/*
how z-index was set before changes
.menu-service--level-1 --> 20
.header --> 10
.button--search --> 5

*/
/*
  Usage:
  @include xs-min() {

  }
*/
/*
  Usage:
  @include sm-min() {

  }
*/
/*
  Usage:
  @include md-min() {

  }
*/
/*
  Usage:
  @include lg-min() {

  }
*/
/*
  Usage:
  @include xl-min() {

  }
*/
/*
  Usage:
  @include xs-max() {

  }
*/
/*
  Usage:
  @include sm-max() {

  }
*/
/*
  Usage:
  @include md-max() {

  }
*/
/*
  Usage:
  @include lg-max() {

  }
*/
/*
  Usage:
  @include between(sm, md) {

  }
*/
/*
  HELPER MIXINS (do not use)
*/
/*
 * Helper Mixin for Layout Mixins to have one movile breakpoint
 */
/*
  Usage:
  @include font-size(font-size-variable);
*/
/*
  HELPER MIXINS (do not use)
*/
/*
  Usage:
  Livingdocs component margin-bottom
*/
/*
  Usage:
  @include spacing(type, spacing-variable);
*/
/*
  Usage:
  @include spacing-top-bottom(type, spacing-variable);
*/
/*
  Usage:
  @include spacing-top(type, spacing-variable);
*/
/*
  Usage:
  @include spacing-bottom(type, spacing-variable);
*/
/*
  Usage:
  @include spacing-left-right(type, spacing-variable);
*/
/*
  Usage:
  @include spacing-left(type, spacing-variable);
*/
/*
  Usage:
  @include spacing-right(type, spacing-variable);
*/
/*
  Usage:
  @include vertical-align-middle(position, width);
*/
/*
  Usage:
  @include vertical-align(position);
*/
/*
  Usage:
  @include type-face-italic(typeface, font-weight);
*/
/*
  Usage:
  @include clearfix();
*/
/*
  Usage:
  @include responsive-ratio(width%, ratiowidth, ratioheight, 'childelement as string');
*/
/*
  Usage:
  @include size(width unit, height unit);
*/
/*
  Usage:
  @include responsive-ratio-grid(columnsPerRow, widthofItemInRow, marginRight, marginBottom, ratioWidth, ratioHeight, 'childelement as string');
  Combine with breakpoints for responsive.
*/
/*
  Usage:
  @include grid-item-margin(columnsPerRow, widthofItemInRow, marginRight, marginBottom);
  Combine with breakpoints for responsive.
*/
/*
  Usage:
  @include flexbox(direction, wrap, justify-content, align-content);
*/
*:focus {
  outline: 0;
}

* {
  -webkit-font-variant-ligatures: none !important;
          font-variant-ligatures: none !important;
}

html {
  font-size: 62.5%;
}

html,
body {
  height: 100%;
}

@media screen and (max-width: 991.98px) {
  html,
  body {
    overflow-y: scroll !important;
    -ms-touch-action: auto;
        touch-action: auto;
    z-index: 999;
  }
}

html.notes-active, html.nav-open,
body.notes-active,
body.nav-open {
  height: 100%;
  width: 100%;
  position: fixed;
}

body {
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.2;
  color: #333333;
  background-color: #ffffff;
  max-width: 100%;
  width: 100%;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.superscript,
sup,
sub,
.subscript,
.subblue,
.supblue {
  font-size: 60%;
  line-height: 0;
  vertical-align: baseline;
  position: relative;
  padding: 0 1px;
  top: -0.6em;
}

sub,
.subscript,
.subblue {
  top: 0.4em;
}

b,
strong,
.ns-bold {
  font-weight: 700;
}

span.ns-highlight {
  color: #00519e;
}

h1,
h2,
h3,
h4 {
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
}

h5 {
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

h1,
h2 {
  color: #00519e;
}

@media screen and (min-width: 0) {
  h1 {
    font-size: 3rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 3.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  h1 {
    font-size: 6rem;
    line-height: 1.25;
  }
}

@media screen and (min-width: 0) {
  h2 {
    font-size: 2.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  h2 {
    font-size: 2.8rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  h2 {
    font-size: 3.5rem;
    line-height: 1.272;
  }
}

@media screen and (min-width: 0) {
  h3 {
    font-size: 2.2rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  h3 {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  h3 {
    font-size: 2.6rem;
    line-height: 1.3;
  }
}

@media screen and (min-width: 0) {
  h4 {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  h4 {
    font-size: 2rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  h4 {
    font-size: 2rem;
    line-height: 1.4;
  }
}

@media screen and (min-width: 0) {
  h5 {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  h5 {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  h5 {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

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

img.lazy {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

img.loaded {
  opacity: 1;
  visibility: visible;
}

strong {
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

p {
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

@media screen and (min-width: 0) {
  p {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  p {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  p {
    font-size: 1.4rem;
    line-height: 1.57;
  }
}

img:not([src]) {
  max-height: 0;
}

.hyphenate {
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}

.donthyphenate {
  -webkit-hyphens: none;
      -ms-hyphens: none;
          hyphens: none;
}

.bold {
  font-weight: 700;
}

.srl-nowrap,
.ns-nowrap {
  white-space: nowrap;
}

.ns-horizontal-left {
  text-align: left;
}

.ns-horizontal-center {
  text-align: center;
}

.ns-horizontal-right {
  text-align: right;
}

.ns-vertical-top {
  vertical-align: top;
}

.ns-vertical-middle {
  vertical-align: middle;
}

.ns-vertical-bottom {
  vertical-align: bottom;
}

.responsive-embed {
  position: relative;
  width: 100%;
  height: 0;
  padding: 56.25% 0 0 0;
  display: block;
  position: relative;
  width: 100%;
  height: 0;
  padding: 56.25% 0 0 0;
  display: block;
}

.responsive-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.responsive-embed video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

@-webkit-keyframes pulsating {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pulsating {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.nhs-icon {
  display: inline-block;
  vertical-align: middle;
}

.icon {
  display: block;
}

.icon-gkb {
  width: 12.8rem;
  height: 2.6rem;
}

@media (min-width: 992px) {
  .icon-gkb {
    width: 16rem;
    height: 3.4rem;
  }
}

.icon-gkb-footer {
  height: 5.8rem;
  max-width: 29.8rem;
}

.icon-search {
  width: 2rem;
  height: 2rem;
  fill: #ffffff;
}

.header .icon-search {
  fill: #00519e;
}

.icon-arrow-down {
  width: 1.6rem;
  height: 1.6rem;
}

.icon-breadcrumb-separator {
  width: 0.4rem;
  height: 0.6rem;
}

.icon-prev,
.icon-next {
  width: 0.8rem;
  height: 1.2rem;
}

@media (min-width: 992px) {
  .icon-prev,
  .icon-next {
    width: 1.1rem;
    height: 2.1rem;
  }
}

.icon-prev__st0,
.icon-next__st0 {
  stroke: #00519e;
  stroke-width: 3;
}

@media (min-width: 992px) {
  .icon-prev__st0,
  .icon-next__st0 {
    stroke: #ffffff;
  }
}

.icon-to-top {
  width: 2.1rem;
  height: 1.1rem;
  display: inline-block;
}

.icon-to-top__st0 {
  width: 2.1rem;
  height: 1.1rem;
  stroke: #00519e;
  stroke-width: 3;
}

@media (min-width: 992px) {
  .icon-to-top__st0 {
    stroke: #ffffff;
  }
}

.icon-pdf {
  width: 1.9rem;
  height: 2.4rem;
}

.icon-pdf__st0 {
  stroke: #b2b2b2;
}

.icon-pdf__st1 {
  fill: #b2b2b2;
}

.icon-link {
  width: 2rem;
  height: 2rem;
}

.icon-link__st0 {
  fill: #b2b2b2;
}

.icon-twitter,
.icon-facebook,
.icon-youtube,
.icon-flickr,
.icon-xing,
.icon-linkedin,
.icon-instagram {
  width: 3.2rem;
  height: 3.2rem;
}

.icon-play {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -25px;
  margin-left: -25px;
  z-index: 2;
  color: #00519e;
  -webkit-animation: pulsating 1.75s ease-in-out infinite;
          animation: pulsating 1.75s ease-in-out infinite;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 10;
  background: #ffffff;
}

.nav-open .header {
  overflow-y: auto;
  position: static;
}

.header__link {
  padding: 2.5rem 2rem;
  display: inline-block;
  vertical-align: middle;
}

@media (min-width: 768px) {
  .header__link {
    padding: 0 12px;
  }
}

.header__top {
  border-bottom: 1px solid #cccccc;
}

.header__bottom {
  display: none;
  overflow-y: auto;
}

@media (min-width: 992px) {
  .header__bottom {
    display: block;
    background: #ffffff;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 6;
    overflow: inherit;
  }
}

@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {
  .header__bottom {
    overflow-y: auto;
    max-height: calc(100vh - 115px);
  }
}

.header__inner {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (min-width: 992px) {
  .header__inner {
    width: auto;
    max-width: 1164px;
    position: static;
    margin-left: auto;
    margin-right: auto;
    padding-left: 12px;
    padding-right: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (min-width: 992px) {
  .header__inner--top {
    padding-top: 0.8rem;
    padding-bottom: 0.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__left {
  border-bottom: 1px solid #cccccc;
  width: 100%;
}

@media only screen and (min-width: 991.98px) {
  .header__left {
    padding: 25px 12px;
  }
}

@media (max-width: 991.98px) {
  .header__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: none;
  }
  .nav-open .header__left {
    border-bottom: 1px solid #cccccc;
  }
}

@media (min-width: 992px) {
  .header__left {
    padding: 0;
    border: none;
    width: auto;
  }
}

.header__middle {
  position: static;
  width: 100%;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  display: none;
}

@media only screen and (max-width: 1040px) and (min-width: 990px) {
  .header__middle {
    margin-left: -10px;
  }
}

@media (min-width: 992px) {
  .header__middle {
    width: auto;
    -webkit-box-ordinal-group: inherit;
        -ms-flex-order: inherit;
            order: inherit;
    display: block;
  }
}

.header__right {
  padding: 0 1.6rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  width: 100%;
  opacity: 0;
  height: 0;
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
  width: auto;
}

.nav-open .header__right {
  width: 100%;
  opacity: 1;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 60px;
  -webkit-transition: height 0.5s ease;
  transition: height 0.5s ease;
}

@media (min-width: 992px) {
  .header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    opacity: 1;
    display: flex;
    padding: 0;
    -webkit-box-ordinal-group: inherit;
        -ms-flex-order: inherit;
            order: inherit;
  }
}

.header__meta {
  width: 100%;
}

@media (max-width: 991.98px) {
  .header__meta {
    padding-right: 10px;
  }
}

@media (min-width: 992px) {
  .header__meta {
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__list {
  display: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

@media (min-width: 992px) {
  .header__list {
    display: inline-block;
  }
}

.header__element {
  display: inline-block;
}

.header__release {
  display: none;
  color: #00519e;
  font-size: 1.4rem;
  line-height: 1.8rem;
  text-align: left;
  position: absolute;
  top: -1.9rem;
  left: 1.5rem;
}

.header__text {
  color: #00519e;
}

.header__nav-link {
  display: block;
  padding: 2.4rem 1.5rem;
  color: #333333;
  position: relative;
  background: none;
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.22;
}

@media screen and (min-width: 0) {
  .header__nav-link {
    font-size: 1.8rem;
    line-height: 1.22;
  }
}

@media screen and (min-width: 768px) {
  .header__nav-link {
    font-size: 1.8rem;
    line-height: 1.22;
  }
}

@media screen and (min-width: 992px) {
  .header__nav-link {
    font-size: 1.6rem;
    line-height: 1;
  }
}

@media screen and (min-width: 1200px) {
  .header__nav-link {
    font-size: 1.8rem;
    line-height: 1;
  }
}

.header__nav-link:focus, .header__nav-link:hover {
  color: #00519e;
  text-decoration: none;
}

@media (min-width: 992px) {
  .header__nav-link--active {
    color: #00519e;
  }
}

.header__nav-link.header__nav-link--hidden {
  visibility: hidden;
}

.header__nav-link[aria-expanded="true"] {
  color: #00519e;
}

.header__nav-link[aria-expanded="true"]:after {
  content: url("../images/nav-hover.svg");
  opacity: 1;
}

.header__nav-link:after {
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -1.3rem;
  width: 2.6rem;
  height: 1.3rem;
  color: transparent;
  opacity: 0;
}

.header__nav-link:disabled {
  color: #b2b2b2;
}

.header__nav-link:disabled:focus, .header__nav-link:disabled:hover {
  cursor: inherit;
  color: #b2b2b2;
}

.header__nav-link:disabled .header__release {
  display: block;
}

.header__nav-link:disabled .header__text {
  color: #b2b2b2;
}

.header__nav-text {
  font-size: 1.4rem;
}

@media (min-width: 992px) {
  .header__service-nav {
    position: relative;
    z-index: 10;
    margin-right: 2.5rem;
  }
}

@media (min-width: 992px) {
  .header__service-nav--mobile {
    display: none;
  }
}

.header__service-nav--desktop {
  display: none;
}

@media (min-width: 992px) {
  .header__service-nav--desktop {
    display: block;
  }
}

@media (min-width: 992px) {
  .header__navigation {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 992px) {
  .header__navigation {
    margin: 0;
  }
}

.header__navigation .button__text {
  display: block;
  line-height: 2.1rem;
}

.header__burger-container {
  display: none;
}

@media (max-width: 991.98px) {
  .header__burger-container {
    display: block;
    padding: 2.5rem 2rem;
  }
}

.lc-button {
  border-radius: 50%;
  padding: 9px 16px;
  text-decoration: none;
  display: inline-block;
  line-height: 1;
  cursor: pointer;
  color: #000000;
  -webkit-transition: background 0.4s ease, color, 0.4s ease;
  transition: background 0.4s ease, color, 0.4s ease;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
}

@media (prefers-reduced-motion: reduce) {
  .lc-button {
    -webkit-transition-duration: 0s;
            transition-duration: 0s;
  }
}

.lc-button.lc-button--active {
  border: 1px solid #000000;
  background-color: transparent;
}

.lc-button.lc-button--active svg path {
  stroke: #000000;
}

.lc-button--round {
  border-radius: 50%;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
}

.lc-button--active .lc-button__icon--visible, .lc-button--active
.lc-button__text--visible {
  display: none;
}

.lc-button__icon--invisible,
.lc-button__text--invisible {
  display: none;
}

.lc-button--active .lc-button__icon--invisible, .lc-button--active
.lc-button__text--invisible {
  display: inline-block;
}

.svg-burger,
.svg-close {
  width: 18px;
  height: 15px;
}

.menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu .menu__item--level-1:nth-of-type(1) {
  margin-top: 0;
}

@media (min-width: 992px) {
  .menu .menu__item--level-1 {
    margin-top: 15px;
  }
}

.menu--level-0 {
  position: static;
  padding: 0;
}

@media (min-width: 992px) {
  .menu--level-0 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.menu--level-1 {
  color: #333333;
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.22;
}

@media screen and (min-width: 0) {
  .menu--level-1 {
    font-size: 1.8rem;
    line-height: 1.22;
  }
}

@media screen and (min-width: 768px) {
  .menu--level-1 {
    font-size: 1.8rem;
    line-height: 1.22;
  }
}

@media screen and (min-width: 992px) {
  .menu--level-1 {
    font-size: 1.6rem;
    line-height: 1;
  }
}

@media screen and (min-width: 1200px) {
  .menu--level-1 {
    font-size: 1.8rem;
    line-height: 1;
  }
}

@media (min-width: 992px) {
  .menu--level-1 {
    max-width: 1164px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding: 30px 12px;
  }
}

.menu__wrap--level-1 {
  display: none;
}

@media (min-width: 992px) {
  .menu__wrap--level-1 {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    width: 100%;
    z-index: 10;
    background: #ffffff;
  }
}

.open .menu__wrap--level-1 {
  display: block;
}

.menu__item {
  border-top: 1px solid #cccccc;
}

.menu__item.menu__item--level-1 {
  /*    @include md-max {
          height: 60px;
        }*/
}

@media (min-width: 992px) {
  .menu__item {
    border: none;
  }
}

@media (max-width: 991.98px) {
  .open .menu__item, .menu__item.open {
    border-color: #3b6cae;
  }
}

.menu__item--level-0 {
  position: static;
}

.menu__link {
  padding: 16px 22px;
  display: block;
  font-size: 1.2rem;
  line-height: 1.9166;
}

@media screen and (min-width: 0) {
  .menu__link {
    font-size: 1.2rem;
    line-height: 1.9166;
  }
}

@media screen and (min-width: 768px) {
  .menu__link {
    font-size: 1.4rem;
    line-height: 1.9166;
  }
}

@media screen and (min-width: 992px) {
  .menu__link {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 1200px) {
  .menu__link {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

@media (min-width: 992px) {
  .menu__link {
    padding: 3px 22px;
  }
}

.menu__link:hover {
  text-decoration: none;
  color: #00519e;
}

@media (max-width: 991.98px) {
  .open .menu__link {
    background: #00519e;
    color: #ffffff;
  }
}

.menu__link--level-0 {
  padding: 1.6rem 1.2rem;
  color: #333333;
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  line-height: 1.22;
}

@media only screen and (max-width: 1040px) {
  .menu__link--level-0 {
    padding: 1.6rem 0.5rem;
  }
}

@media screen and (min-width: 0) {
  .menu__link--level-0 {
    font-size: 1.8rem;
    line-height: 1.22;
  }
}

@media screen and (min-width: 768px) {
  .menu__link--level-0 {
    font-size: 1.8rem;
    line-height: 1.22;
  }
}

@media screen and (min-width: 992px) {
  .menu__link--level-0 {
    font-size: 1.6rem;
    line-height: 1;
  }
}

@media screen and (min-width: 1200px) {
  .menu__link--level-0 {
    font-size: 1.8rem;
    line-height: 1;
  }
}

@media (max-width: 991.98px) {
  .open .menu__link--level-0 {
    background: #13274c;
    color: #ffffff;
  }
}

.menu__link--level-0.menu__link--has-children {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 992px) {
  .menu__link--level-0.menu__link--has-children {
    display: block;
  }
}

@media (min-width: 992px) {
  .menu__link--level-1 {
    margin-left: -22px;
    font-size: 1.8rem;
    line-height: 1.22;
    line-height: 1.2 !important;
  }
}

@media screen and (min-width: 992px) and (min-width: 0) {
  .menu__link--level-1 {
    font-size: 1.8rem;
    line-height: 1.22;
  }
}

@media screen and (min-width: 992px) and (min-width: 768px) {
  .menu__link--level-1 {
    font-size: 1.8rem;
    line-height: 1.22;
  }
}

@media screen and (min-width: 992px) and (min-width: 992px) {
  .menu__link--level-1 {
    font-size: 1.6rem;
    line-height: 1;
  }
}

@media screen and (min-width: 992px) and (min-width: 1200px) {
  .menu__link--level-1 {
    font-size: 1.8rem;
    line-height: 1;
  }
}

.menu__link--level-2 {
  padding-left: 32px;
  color: #333333;
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

@media (min-width: 992px) {
  .menu__link--level-2 {
    padding-left: 16px;
  }
}

@media (min-width: 992px) {
  .menu__toggler--level-0 {
    display: none;
  }
}

.menu__toggler--level-1 {
  display: none;
}

.menu-service {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.menu-service--level-0.menu-service--nav-open {
  background: #13274c;
}

.menu-service--level-0.menu-service--nav-open .menu-service__link--level-0 {
  color: #ffffff;
}

.menu-service--level-1 {
  display: none;
}

@media (min-width: 992px) {
  .menu-service--level-1 {
    position: absolute;
    top: 100%;
    left: -0.7rem;
    width: auto;
    background: #fbfbfb;
    z-index: 4;
    border: 1px solid #e5e5e5;
  }
}

.menu-service__toggler {
  background: none;
  -webkit-appearance: none;
  border: none;
  border-radius: 0;
  padding: 12px;
}

@media (min-width: 992px) {
  .menu-service__toggler {
    display: none;
  }
}

.menu-service__toggler--nav-open {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.menu-service__toggler :focus:not(:focus-visible) {
  outline: none;
}

.menu-service__toggler .icon {
  color: #b2b2b2;
}

.menu-service__arrow {
  display: none;
}

@media (min-width: 992px) {
  .menu-service__arrow {
    display: inline-block;
  }
}

.menu-service__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu-service__item--level-0 {
  border-bottom: 1px solid #cccccc;
}

@media (min-width: 992px) {
  .menu-service__item--level-0 {
    border: none;
    position: relative;
  }
}

@media (min-width: 992px) {
  .menu-service__item--level-0:focus > .menu-service__link--level-0, .menu-service__item--level-0:hover > .menu-service__link--level-0 {
    color: #00519e;
  }
}

@media (min-width: 992px) {
  .menu-service__item--level-0:focus .menu-service--level-1, .menu-service__item--level-0:hover .menu-service--level-1 {
    display: block;
  }
}

.menu-service__item--level-1 {
  border-bottom: 1px solid #3b6cae;
}

@media (min-width: 992px) {
  .menu-service__item--level-1 {
    border: none;
  }
}

@media (min-width: 992px) {
  .menu-service__item--level-1:focus > .menu-service__link--level-1, .menu-service__item--level-1:hover > .menu-service__link--level-1 {
    color: #00519e;
  }
}

.menu-service__link {
  display: block;
  padding: 1.2rem 1.6rem;
  color: #4d4d4d;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 1.2rem;
  line-height: 1.9166;
}

@media screen and (min-width: 0) {
  .menu-service__link {
    font-size: 1.2rem;
    line-height: 1.9166;
  }
}

@media screen and (min-width: 768px) {
  .menu-service__link {
    font-size: 1.4rem;
    line-height: 1.9166;
  }
}

@media screen and (min-width: 992px) {
  .menu-service__link {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 1200px) {
  .menu-service__link {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

@media (min-width: 992px) {
  .menu-service__link {
    padding: 0.3rem 0;
  }
}

.menu-service__link:focus, .menu-service__link:hover {
  text-decoration: none;
}

@media (min-width: 992px) {
  .menu-service__link:focus, .menu-service__link:hover {
    color: #00519e;
  }
}

.menu-service__link--level-0 {
  color: #333333;
  padding: 1.6rem;
  font-size: 1.8rem;
  line-height: 1.22;
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
}

@media (min-width: 992px) {
  .menu-service__link--level-0 {
    font-size: 1.2rem;
    padding: 0.9rem;
    font-family: "Verdana", Arial, Helvetica, sans-serif;
    font-weight: 700;
  }
}

.menu-service__link--level-1 {
  background: #00519e;
  color: #ffffff;
  font-size: 1.2rem;
  line-height: 1.9166;
}

@media (min-width: 992px) {
  .menu-service__link--level-1 {
    background: none;
    color: #333333;
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid #cccccc;
    font-size: 1.3rem;
    line-height: 1;
    white-space: nowrap;
    font-family: "Verdana", Arial, Helvetica, sans-serif;
    font-weight: 400;
  }
}

@media (min-width: 992px) {
  .menu-service__link--level-1:focus, .menu-service__link--level-1:hover {
    background: #e5e5e5;
  }
}

.menu-service__link-text {
  display: inline-block;
  vertical-align: middle;
}

.report {
  background: #00519e;
  color: #ffffff;
  font-size: 1.6rem;
  padding: 1rem 1.6rem;
  top: 7.7rem;
  position: fixed;
  width: 100%;
  z-index: 3;
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
}

@media (min-width: 992px) {
  .report {
    display: none;
  }
}

.button-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
}

@media (min-width: 992px) {
  .button-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.button {
  background: #00519e;
  display: inline-block;
  color: #ffffff;
  text-align: center;
  border-radius: 0.3rem;
  border: none;
  -webkit-appearance: none;
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
  padding: 0.7rem 2rem 0.8rem;
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
}

.header .button {
  background-color: transparent;
  color: #000000;
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

@media screen and (min-width: 0) {
  .header .button {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .header .button {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .header .button {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.button:focus, .button:hover {
  text-decoration: none;
  background: #004485;
}

.header__navigation .button:focus, .header__navigation .button:hover {
  background: none;
}

.button:focus.button--search, .button:hover.button--search {
  background: #00519e;
}

.button--archive {
  display: block;
  padding: 0.8rem 0;
  width: 100%;
}

@media (max-width: 991.98px) {
  .button--archive {
    text-align: right;
  }
}

@media (min-width: 992px) {
  .button--archive {
    width: auto;
    padding: 0.8rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .button--archive {
    margin-right: 0.5rem;
    margin-bottom: 0;
    padding: 0;
  }
}

.button--search {
  z-index: 1;
  background: none;
  color: #b2b2b2;
  padding: 1rem;
  border-radius: 50%;
}

.button--search:hover, .button--search:active {
  background: #00519e;
}

.button--search:hover .icon-search, .button--search:active .icon-search {
  fill: #ffffff;
}

@media (max-width: 991.98px) {
  .button--search-mobile {
    position: absolute;
  }
}

.button--is-search {
  padding: 1.1rem 1.15rem;
  color: #ffffff;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-left: 0.4rem;
}

.button--is-search:focus, .button--is-search:hover {
  background-color: #004485;
  color: #ffffff;
}

@supports (-ms-ime-align: auto) {
  .button--is-search {
    padding: 0 1.15rem;
    height: 3.5rem;
    position: relative;
    top: -0.1rem;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .button--is-search {
    position: relative;
    top: 0.1rem;
  }
}

* .button--search-mobile {
  right: 0.6rem;
}

* .button--search-mobile .icon-search {
  width: 1.8rem;
  height: 1.9rem;
}

@media (min-width: 992px) {
  * .button--search-mobile {
    display: none;
  }
}

.nav-open * .button--search-mobile {
  display: none;
}

.button__icon {
  line-height: 0;
}

@media (min-width: 992px) {
  .backdrop {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 2;
    background: #999999;
    opacity: 0.4;
  }
}

.header__list .backdrop {
  position: absolute;
}

.header__list li {
  z-index: 7;
}

ul.menu li {
  z-index: 5;
}

.form__group {
  position: relative;
}

.form__group--is-search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.header .form__group {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 992px) {
  .header .form__group {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.form__input {
  -webkit-appearance: none;
  display: block;
  border-radius: 0.3rem;
  color: #cccccc;
  border: 1px solid #cccccc;
  background: #fbfbfb;
  -webkit-box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 0.1rem 0.1rem rgba(0, 0, 0, 0.1);
  min-height: 3.5rem;
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.header .form__input {
  border: 0;
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.form__input--search {
  width: 100%;
  font-size: 1.2rem;
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

@media (min-width: 992px) {
  .form__input--search {
    width: 6rem;
  }
}

.header .form__input--search {
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 400;
  color: #000000;
  line-height: 1 !important;
}

@media screen and (min-width: 0) {
  .header .form__input--search {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .header .form__input--search {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .header .form__input--search {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.form__input--search::-webkit-input-placeholder {
  color: #000000;
}

.form__input--search::-moz-placeholder {
  color: #000000;
}

.form__input--search:-ms-input-placeholder {
  color: #000000;
}

.form__input--search::-ms-input-placeholder {
  color: #000000;
}

.form__input--search::placeholder {
  color: #000000;
}

.form__input--is-search {
  padding: 0.9rem 4rem 0.9rem 0.7rem;
  font-size: 1.2rem;
  color: #444444;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

@media (min-width: 992px) {
  .form__input--search-mobile {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .form__input--search-desktop {
    display: none;
  }
}

.ld-content {
  padding-top: 7.7rem;
}

@media (min-width: 992px) {
  .ld-content {
    padding-top: 11.5rem;
    min-height: calc(100vh - 338px);
  }
}

.footer {
  background: #00284d;
  color: #ffffff;
  font-size: 1.3rem;
  line-height: 1.53;
}

.footer__top {
  padding: 6rem 0;
}

@media (min-width: 992px) {
  .footer__top {
    padding: 7rem 0 5rem;
  }
}

.footer__bottom {
  background: #00519e;
  padding: 2rem 0;
}

.footer__inner {
  padding: 0 1.6rem;
}

@media (min-width: 992px) {
  .footer__inner {
    max-width: 1164px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    padding-left: 12px;
    padding-right: 12px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (min-width: 992px) {
  .footer__inner--bottom {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.footer__col {
  margin-top: 3rem;
}

@media (min-width: 992px) {
  .footer__col {
    margin-top: 0;
    width: calc((100% - (4 - 1) * 24px) / 4 * 1);
  }
  .footer__col:nth-of-type(n) {
    margin-bottom: 0px;
    margin-right: 24px;
  }
  .footer__col:last-of-type, .footer__col:nth-of-type(4n) {
    margin-right: 0;
  }
}

.footer__col:first-child {
  margin-top: 0;
}

@media (min-width: 992px) {
  .footer__col--bottom {
    width: calc((100% - (2 - 1) * 24px) / 2 * 1);
    width: auto;
    max-width: 100%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .footer__col--bottom:nth-of-type(n) {
    margin-bottom: 0px;
    margin-right: 24px;
  }
  .footer__col--bottom:last-of-type, .footer__col--bottom:nth-of-type(2n) {
    margin-right: 0;
  }
  .footer__col--bottom.footer__col--slogan {
    margin: 0;
  }
}

.footer__col--legal-nav {
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 700;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  .footer__col--legal-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (min-width: 992px) {
  .footer__col--slogan {
    text-align: right;
  }
}

.footer__col--last {
  padding-top: 50px;
}

@media (max-width: 991.98px) {
  .footer__col--last {
    padding-top: 30px;
  }
}

.footer__col--last .menu-footer__title {
  font-size: 2rem;
}

@media (min-width: 768px) {
  .footer__col--last {
    padding-top: 0;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    justify-content: flex-end;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.footer__content {
  /*  @include lg-min {
      max-width: 18.2rem;
    }*/
}

.footer__link {
  color: #ffffff;
}

@media (min-width: 992px) {
  .footer__link--telephone {
    pointer-events: none;
  }
}

.footer__logo {
  color: #ffffff;
}

.footer__slogan {
  font-size: 2rem;
  line-height: 1.33;
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
}

.footer__address {
  margin-top: 20px;
}

.footer__copyright {
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
}

@media (max-width: 991.98px) {
  .footer__copyright {
    padding-bottom: 8px;
  }
}

.menu-footer {
  list-style: none;
  padding: 0;
  margin: 0;
}

.menu-footer__title {
  font-size: 1.8rem;
  line-height: 1;
  margin-bottom: 2.5rem;
}

@media (min-width: 992px) {
  .menu-footer__title {
    margin-bottom: 7rem;
    font-size: 2rem;
  }
}

.menu-footer__item {
  color: #ffffff;
  list-style: none;
  font-size: 1.4rem;
}

@media (max-width: 991.98px) {
  .menu-footer__item {
    padding: 5px 0;
  }
}

.menu-footer__link {
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.53;
}

.social {
  margin-bottom: 3.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.social__link {
  display: inline-block;
  color: #00284d;
  cursor: pointer;
}

.social__link:first-child {
  margin-left: 0;
}

.social__link svg {
  color: #ffffff;
}

.social__link--twitter:hover svg {
  fill: #1da1f2;
}

.social__link--facebook:hover svg {
  fill: #395490;
}

.social__link--youtube:hover svg {
  fill: #f20000;
}

.social__link--flickr:hover .icon-flickr__pink {
  fill: #fb1483;
}

.social__link--flickr:hover .icon-flickr__blue {
  fill: #2970d5;
}

.social__link--linkedin:hover .icon-linkedin__blue {
  fill: #0072AD;
}

.social__link--xing:hover .icon-xing__green {
  fill: #CDD800;
}

.social__link--xing:hover .icon-xing__blue {
  fill: #006465;
}

.social__link--instagram:hover .icon-instagram__a {
  stop-color: #ffb140;
}

.social__link--instagram:hover .icon-instagram__b {
  stop-color: #ff5445;
}

.social__link--instagram:hover .icon-instagram__c {
  stop-color: #fc2b82;
}

.social__link--instagram:hover .icon-instagram__d {
  stop-color: #8e40b7;
}

.menu-horizontal {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-block;
}

@media (min-width: 768px) {
  .menu-horizontal__item {
    display: inline-block;
  }
}

.menu-horizontal__item:last-child .menu-horizontal__separator {
  display: none;
}

.menu-horizontal__separator {
  padding: 0 1rem;
  display: none;
}

@media (min-width: 768px) {
  .menu-horizontal__separator {
    display: block;
  }
}

.menu-horizontal__link {
  color: #ffffff;
  font-size: 1.2rem;
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
  display: block;
  padding: 8px 0;
}

.menu-horizontal__link:last-of-type {
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .menu-horizontal__link {
    padding: 0;
  }
}

.accordion {
  width: 100%;
}

.accordion + .accordion {
  margin-top: -1px;
}

.accordion__title {
  width: 100%;
  cursor: pointer;
  display: block;
  padding: 12px 24px 12px 0;
  border-top: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

@media (min-width: 992px) {
  .accordion__title {
    width: calc((100% - 24px) / 24 * 16);
  }
  .accordion__title.full-width {
    width: 100%;
    display: block;
  }
}

@media print {
  .accordion__title {
    width: calc((100% - 24px) / 24 * 16);
  }
  .accordion__title.full-width {
    width: 100%;
    display: block;
  }
}

.accordion__title:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background: #00519e;
  width: 14px;
  height: 4px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.accordion__title:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background: #00519e;
  width: 4px;
  height: 14px;
  -webkit-transform: translate(-5px, -7px);
          transform: translate(-5px, -7px);
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
}

.accordion__title--accordion-open:after {
  -webkit-transform: rotate(90deg) translate(-7px, 5px);
          transform: rotate(90deg) translate(-7px, 5px);
}

.accordion__content {
  display: none;
  padding: 24px 0;
  width: 100%;
}

.accordion__content .ns-anchor {
  display: none;
}

.accordion__content--download {
  width: 100%;
  padding: 0;
  cursor: inherit;
}

@media (min-width: 992px) {
  .accordion__content--download {
    width: calc((100% - 24px) / 24 * 16);
  }
  .accordion__content--download.full-width {
    width: 100%;
    display: block;
  }
}

@media print {
  .accordion__content--download {
    width: calc((100% - 24px) / 24 * 16);
  }
  .accordion__content--download.full-width {
    width: 100%;
    display: block;
  }
}

.accordion__content--download > div {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.accordion__content .accordion__title > .ns-title-h3 {
  width: 100%;
}

.accordion__content > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.accordion__content .accordion__title:before, .accordion__content .accordion__title:after {
  background: #000000;
}

.accordion--notes .accordion:first-child .accordion__title {
  border-top: 0;
}

.accordion--notes > .accordion__content {
  padding: 0;
}

.accordion--notes > .accordion__content > *:first-child:not(.accordion) {
  margin-top: 24px;
}

.accordion--notes > .accordion__content > *:last-child:not(.accordion) {
  margin-bottom: 24px;
}

.accordion__list {
  padding: 12px 0;
  border-top: 1px solid #cccccc;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.accordion__list:first-child {
  border: none;
}

.accordion__links {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

.accordion__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-left: 1.6rem;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.accordion__link:hover {
  text-decoration: none;
}

.accordion__link:hover .icon-link__st0,
.accordion__link:hover .icon-pdf__st1 {
  fill: #00519e;
}

.accordion__link:hover .icon-pdf__st0 {
  stroke: #00519e;
}

.accordion__link .nhs-icon {
  margin-left: 0.8rem;
}

.accordion__link:first-child {
  margin: 0;
}

.accordion-key--number {
  margin-right: 5px;
}

.accordion__title [class*="ns-title-"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (min-width: 0) {
  .accordion__title {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .accordion__title {
    font-size: 2.6rem;
    line-height: 1.5;
  }
}

.wp-content {
  max-width: 1164px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.wp-content__content {
  max-width: 72rem;
}

.search-list__result {
  margin-bottom: 4.2rem;
}

.search-list__result,
.search-list__no-result {
  margin-top: 3.2rem;
}

.search-list__count {
  font-size: 1.6rem;
  line-height: 1.5;
}

.pagination {
  border-top: 1px solid #cccccc;
  padding-top: 1.9rem;
}

.pagination__actions {
  display: inline-block;
  vertical-align: middle;
  margin-left: 2.1rem;
}

.pagination__button {
  background: #00519e no-repeat center center;
  border-radius: 0.3rem;
  width: 3.5rem;
  height: 3.5rem;
  background-size: 2.7rem;
  display: inline-block;
}

.pagination__button:focus, .pagination__button:hover {
  background-color: #004485;
}

.pagination__button--next {
  background-image: url("../images/arrow-right.svg");
}

.pagination__button--previous {
  background-image: url("../images/arrow-left.svg");
}

ul.page-numbers {
  display: inline-block;
  vertical-align: middle;
  list-style: none;
  padding: 0;
  margin: 0 -0.9rem;
}

ul.page-numbers li {
  display: inline-block;
  vertical-align: middle;
  padding: 0.6rem 0.9rem;
}

span.page-numbers,
a.page-numbers {
  display: block;
}

.current {
  color: #00519e;
  text-decoration: underline;
}

.dots {
  color: #4d4d4d;
}

.excerpt {
  border-top: 1px solid #cccccc;
  padding: 1.8rem 0 0;
  margin-top: 4rem;
}

@media (min-width: 992px) {
  .excerpt {
    padding: 1.8rem 0 1.5rem;
    margin: 0;
  }
}

.excerpt:first-child {
  margin-top: 0;
}

.excerpt__link {
  display: block;
}

.excerpt__link:before, .excerpt__link:after {
  display: table;
  content: '';
  line-height: 0;
}

.excerpt__link:after {
  clear: both;
}

.excerpt__link:focus .excerpt__title, .excerpt__link:hover .excerpt__title {
  text-decoration: underline;
}

.excerpt__icon {
  background: #00519e;
  border-radius: 50%;
  height: 16px;
  width: 16px;
  float: left;
  position: relative;
  margin: 0.2rem 0.8rem 0 0;
}

.excerpt__icon .nhs-icon {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
}

.excerpt__icon .icon {
  display: inline-block;
}

.excerpt__title {
  float: left;
  font-size: 1.4rem;
  line-height: 1.5;
  width: calc(100% - 2.4rem);
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

@media all and (-ms-high-contrast: none) {
  .excerpt__title {
    width: auto;
  }
}

.excerpt__content {
  margin-top: 1rem;
  padding-left: 2.4rem;
  font-size: 1.4rem;
  line-height: 1.5;
}

.note {
  opacity: 0;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
}

.is-ready .note {
  opacity: 1;
}

.note__link {
  display: inline-block;
  margin: 0 0.7rem;
  color: #00519e;
}

.note__link:hover {
  text-decoration: underline;
}

.note__link:last-child {
  margin-right: 0;
}

.nhsnote__title {
  margin-bottom: 12px;
}

.breadcrumbs-wrapper {
  background: #e5e5e5;
  padding: 2.1rem 0;
  display: none;
}

@media (min-width: 992px) {
  .breadcrumbs-wrapper {
    display: block;
  }
}

.breadcrumbs {
  max-width: 1164px;
  position: relative;
  padding-left: 12px;
  padding-right: 12px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.breadcrumbs__spacer {
  margin: 0 1rem;
}

.post-navigation {
  position: relative;
  z-index: 0;
}

@media (min-width: 992px) {
  .post-navigation {
    position: fixed;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.post-navigation__to-top-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-bottom: 1.4rem;
  z-index: 10;
}

@media (min-width: 992px) {
  .post-navigation__to-top-container {
    margin: 0;
  }
}

.post-navigation__to-top {
  padding: 1rem;
  background: #e5e5e5;
  position: relative;
  display: inline-block;
  text-align: center;
  -webkit-transition: opacity 0.4s ease, background 0.4s ease;
  transition: opacity 0.4s ease, background 0.4s ease;
}

@media (min-width: 992px) {
  .post-navigation__to-top {
    width: 100%;
    padding: 2.5rem 2rem;
    opacity: 0;
    background: #00519e;
    display: block;
  }
}

@media (min-width: 992px) {
  .post-navigation__to-top.show {
    opacity: 1;
  }
}

@media (min-width: 992px) {
  .post-navigation__to-top:hover {
    background: #004485;
  }
}

.prevnext {
  background: #e5e5e5;
  -webkit-transition: background 0.4s ease;
  transition: background 0.4s ease;
  position: relative;
  padding: 2.1rem 12px;
  font-size: 1.1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  float: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media (min-width: 992px) {
  .prevnext {
    padding: 0;
    display: block;
    font-size: 1.4rem;
    background: #00519e;
    float: none;
    height: 62px;
  }
}

@media (min-width: 992px) {
  .prevnext:hover {
    background: #004485;
  }
}

@media screen and (min-width: 1020px) {
  .prevnext:hover .prevnext__title {
    background: #004485;
    color: #ffffff;
    right: 6.1rem;
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@media (min-width: 992px) {
  .prevnext:hover .prevnext__arrow {
    background: #004485;
  }
}

@media (min-width: 992px) {
  .prevnext:before {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: #3b6cae;
  }
}

.prevnext--prev {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border-top: 1px solid #cccccc;
}

@media (min-width: 992px) {
  .prevnext--prev {
    border: none;
  }
}

.prevnext--prev .prevnext__title {
  margin-left: 1rem;
}

@media (min-width: 992px) {
  .prevnext--prev .prevnext__title {
    margin-left: 0;
  }
}

.prevnext--prev .prevnext__arrow {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  -webkit-transform: rotate(0) !important;
          transform: rotate(0) !important;
}

.prevnext__title {
  color: #00519e;
  white-space: nowrap;
  display: block;
  -webkit-transition: color 0.4s ease 0.2s, -webkit-transform 0.4s ease;
  transition: color 0.4s ease 0.2s, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, color 0.4s ease 0.2s;
  transition: transform 0.4s ease, color 0.4s ease 0.2s, -webkit-transform 0.4s ease;
  margin-right: 1rem;
}

@media (min-width: 992px) {
  .prevnext__title {
    display: block;
    margin: 0;
    padding: 2.25rem 2.5rem;
    background: #00519e;
    position: absolute;
    right: -100%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    color: rgba(255, 255, 255, 0);
  }
}

@media screen and (min-width: 1020px) and (max-width: 1025px) {
  .prevnext__title {
    display: none;
  }
}

@media (min-width: 992px) {
  .prevnext__title:before {
    content: "";
    display: block;
    height: 1px;
    width: 100%;
    background: #3b6cae;
    position: absolute;
    top: -0.1rem;
    left: 0;
  }
}

.prevnext__arrow {
  display: block;
  position: relative;
  z-index: 10;
}

@media (min-width: 992px) {
  .prevnext__arrow {
    padding: 2.3rem 2.5rem;
    background: #00519e;
    height: 58px;
  }
}

@media (min-width: 992px) {
  .prevnext__arrow:hover {
    background: #004485;
  }
}

.nhsnote-box {
  overflow-y: auto;
}

@media (min-width: 992px) {
  .nhsnote-box {
    height: calc(100vh - 11.5rem);
    top: auto;
    bottom: 0;
  }
}

.nhsnote-box__background {
  background: #f3f3f3;
}

@media (min-width: 992px) {
  .nhsnote-box__background {
    top: auto;
    height: calc(100vh - 11.5rem);
  }
}

.nhsnote-box__inner {
  position: relative;
  -webkit-transform: translate(0);
          transform: translate(0);
  left: 0;
  top: 0;
  background: #f3f3f3;
  padding: 0 12px 0 12px;
  overflow-x: hidden;
}

@media (min-width: 992px) {
  .nhsnote-box__inner {
    max-width: 1164px;
    margin-left: auto;
    margin-right: auto;
  }
}

.nhsnote-box__content {
  max-width: inherit;
  padding: 5.4rem 0;
  max-height: auto !important;
  overflow-y: visible !important;
}

@media (min-width: 1200px) {
  .nhsnote-box__content {
    padding: 12rem 0 12rem;
  }
}

.nhsnote-box__close {
  opacity: 1;
  background: #748dc2;
  padding: 1rem;
  border: none;
  height: auto;
  width: auto;
  top: 12px;
  left: auto;
  right: 12px;
  z-index: 10;
  cursor: pointer;
}

@media (min-width: 1200px) {
  .nhsnote-box__close {
    top: 4.2rem;
  }
}

.nhsnote-box__close:hover {
  background: #00519e;
}

.nhsnote-box__close:before {
  display: none;
}

.nhsnote-box__close:after {
  content: "";
  background: url("../images/close.svg") center center no-repeat;
  background-size: 1rem 1rem;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  -webkit-transform: translate(0);
          transform: translate(0);
  position: static;
}

@media (min-width: 1200px) {
  .nhsnote-box__close:after {
    background-size: 1.5rem 1.5rem;
    width: 1.5rem;
    height: 1.5rem;
  }
}

.nhsnote {
  height: auto;
}

@media (min-width: 1200px) {
  .nhsnote {
    height: calc(100vh - 35.5rem);
  }
}

.nhsnote__content {
  padding-bottom: 50px;
}

@-webkit-keyframes nhsnote-spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes nhsnote-spinner {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.nhsnote-box__background:after {
  content: '';
  display: block;
  width: 40px;
  height: 40px;
  border: 5px solid #00519e;
  border-radius: 50%;
  border-top-color: transparent;
  border-right-color: transparent;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  -webkit-animation: nhsnote-spinner 600ms infinite linear;
          animation: nhsnote-spinner 600ms infinite linear;
}

.nhsnote__content {
  -webkit-overflow-scrolling: touch;
}

.nhsnote-box__content {
  -webkit-overflow-scrolling: touch;
  overflow: auto;
  overflow-x: hidden;
}

.downloadcenter {
  width: 100%;
}

.ns-anchor {
  display: block;
  z-index: -1;
  margin-top: -77px !important;
  padding-top: 77px !important;
}

@media (min-width: 768px) {
  .ns-anchor {
    margin-top: -115px !important;
    padding-top: 115px !important;
  }
}

body.admin-bar {
  margin-top: 32px;
}

body.admin-bar .header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar {
    margin-top: 46px;
  }
  body.admin-bar .header {
    top: 46px;
  }
}

@media screen and (max-width: 600px) {
  #wpadminbar {
    position: fixed;
  }
}

.wp-content .ns-pdf-publication-title,
.wordpress .ns-pdf-publication-title {
  display: none;
}

.wp-content .ns-pdf-chapter-title,
.wordpress .ns-pdf-chapter-title {
  display: none;
}

.wp-content .ns-pdf-footer,
.wordpress .ns-pdf-footer {
  display: none;
}

.cm .cm--bar .cm--bottom {
  border: 1px solid red;
}

@media (max-width: 991.98px) {
  .cm .cm--bar .cm--bottom .cm__btns #cc-main .cm__btn {
    font-size: 10px;
  }
}

.livingdocs {
  max-width: 100%;
}

.content {
  max-width: 1164px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding-left: 12px;
  padding-right: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-top: 156px;
  padding-bottom: 72px;
}

@media (max-width: 991.98px) {
  .content {
    overflow-x: hidden;
  }
}

.home .content {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

@media (min-width: 992px) {
  .content {
    padding-top: 140px;
  }
}

.content > .content {
  width: 100%;
  margin-left: 0;
  margin-right: 0;
  padding-right: 0;
  padding-left: 0;
  padding-top: 0;
  padding-bottom: 50px;
}

.livingdocs > .free-html,
.ns-article > .free-html, .livingdocs >
.ns-paragraph,
.ns-article >
.ns-paragraph, .livingdocs >
.ns-graphic,
.ns-article >
.ns-graphic, .livingdocs >
.ns-video,
.ns-article >
.ns-video, .livingdocs >
.ns-signature,
.ns-article >
.ns-signature, .livingdocs >
.ns-link,
.ns-article >
.ns-link, .livingdocs >
.ns-list-group,
.ns-article >
.ns-list-group, .livingdocs >
.ns-table-wrap,
.ns-article >
.ns-table-wrap, .livingdocs >
.ns-quote,
.ns-article >
.ns-quote, .livingdocs >
.ns-lead,
.ns-article >
.ns-lead, .livingdocs >
.ns-img,
.ns-article >
.ns-img, .livingdocs >
.ns-title-h1,
.ns-article >
.ns-title-h1, .livingdocs >
.ns-title-h2,
.ns-article >
.ns-title-h2, .livingdocs >
.ns-title-h3,
.ns-article >
.ns-title-h3, .livingdocs >
.ns-title-h4,
.ns-article >
.ns-title-h4, .livingdocs >
.ns-title-h5,
.ns-article >
.ns-title-h5, .livingdocs >
.fancynote__title,
.ns-article >
.fancynote__title {
  width: 100%;
}

@media (min-width: 992px) {
  .livingdocs > .free-html,
  .ns-article > .free-html, .livingdocs >
  .ns-paragraph,
  .ns-article >
  .ns-paragraph, .livingdocs >
  .ns-graphic,
  .ns-article >
  .ns-graphic, .livingdocs >
  .ns-video,
  .ns-article >
  .ns-video, .livingdocs >
  .ns-signature,
  .ns-article >
  .ns-signature, .livingdocs >
  .ns-link,
  .ns-article >
  .ns-link, .livingdocs >
  .ns-list-group,
  .ns-article >
  .ns-list-group, .livingdocs >
  .ns-table-wrap,
  .ns-article >
  .ns-table-wrap, .livingdocs >
  .ns-quote,
  .ns-article >
  .ns-quote, .livingdocs >
  .ns-lead,
  .ns-article >
  .ns-lead, .livingdocs >
  .ns-img,
  .ns-article >
  .ns-img, .livingdocs >
  .ns-title-h1,
  .ns-article >
  .ns-title-h1, .livingdocs >
  .ns-title-h2,
  .ns-article >
  .ns-title-h2, .livingdocs >
  .ns-title-h3,
  .ns-article >
  .ns-title-h3, .livingdocs >
  .ns-title-h4,
  .ns-article >
  .ns-title-h4, .livingdocs >
  .ns-title-h5,
  .ns-article >
  .ns-title-h5, .livingdocs >
  .fancynote__title,
  .ns-article >
  .fancynote__title {
    width: calc((100% - 24px) / 24 * 16);
  }
  .livingdocs > .free-html.full-width,
  .ns-article > .free-html.full-width, .livingdocs >
  .ns-paragraph.full-width,
  .ns-article >
  .ns-paragraph.full-width, .livingdocs >
  .ns-graphic.full-width,
  .ns-article >
  .ns-graphic.full-width, .livingdocs >
  .ns-video.full-width,
  .ns-article >
  .ns-video.full-width, .livingdocs >
  .ns-signature.full-width,
  .ns-article >
  .ns-signature.full-width, .livingdocs >
  .ns-link.full-width,
  .ns-article >
  .ns-link.full-width, .livingdocs >
  .ns-list-group.full-width,
  .ns-article >
  .ns-list-group.full-width, .livingdocs >
  .ns-table-wrap.full-width,
  .ns-article >
  .ns-table-wrap.full-width, .livingdocs >
  .ns-quote.full-width,
  .ns-article >
  .ns-quote.full-width, .livingdocs >
  .ns-lead.full-width,
  .ns-article >
  .ns-lead.full-width, .livingdocs >
  .ns-img.full-width,
  .ns-article >
  .ns-img.full-width, .livingdocs >
  .ns-title-h1.full-width,
  .ns-article >
  .ns-title-h1.full-width, .livingdocs >
  .ns-title-h2.full-width,
  .ns-article >
  .ns-title-h2.full-width, .livingdocs >
  .ns-title-h3.full-width,
  .ns-article >
  .ns-title-h3.full-width, .livingdocs >
  .ns-title-h4.full-width,
  .ns-article >
  .ns-title-h4.full-width, .livingdocs >
  .ns-title-h5.full-width,
  .ns-article >
  .ns-title-h5.full-width, .livingdocs >
  .fancynote__title.full-width,
  .ns-article >
  .fancynote__title.full-width {
    width: 100%;
    display: block;
  }
}

@media print {
  .livingdocs > .free-html,
  .ns-article > .free-html, .livingdocs >
  .ns-paragraph,
  .ns-article >
  .ns-paragraph, .livingdocs >
  .ns-graphic,
  .ns-article >
  .ns-graphic, .livingdocs >
  .ns-video,
  .ns-article >
  .ns-video, .livingdocs >
  .ns-signature,
  .ns-article >
  .ns-signature, .livingdocs >
  .ns-link,
  .ns-article >
  .ns-link, .livingdocs >
  .ns-list-group,
  .ns-article >
  .ns-list-group, .livingdocs >
  .ns-table-wrap,
  .ns-article >
  .ns-table-wrap, .livingdocs >
  .ns-quote,
  .ns-article >
  .ns-quote, .livingdocs >
  .ns-lead,
  .ns-article >
  .ns-lead, .livingdocs >
  .ns-img,
  .ns-article >
  .ns-img, .livingdocs >
  .ns-title-h1,
  .ns-article >
  .ns-title-h1, .livingdocs >
  .ns-title-h2,
  .ns-article >
  .ns-title-h2, .livingdocs >
  .ns-title-h3,
  .ns-article >
  .ns-title-h3, .livingdocs >
  .ns-title-h4,
  .ns-article >
  .ns-title-h4, .livingdocs >
  .ns-title-h5,
  .ns-article >
  .ns-title-h5, .livingdocs >
  .fancynote__title,
  .ns-article >
  .fancynote__title {
    width: calc((100% - 24px) / 24 * 16);
  }
  .livingdocs > .free-html.full-width,
  .ns-article > .free-html.full-width, .livingdocs >
  .ns-paragraph.full-width,
  .ns-article >
  .ns-paragraph.full-width, .livingdocs >
  .ns-graphic.full-width,
  .ns-article >
  .ns-graphic.full-width, .livingdocs >
  .ns-video.full-width,
  .ns-article >
  .ns-video.full-width, .livingdocs >
  .ns-signature.full-width,
  .ns-article >
  .ns-signature.full-width, .livingdocs >
  .ns-link.full-width,
  .ns-article >
  .ns-link.full-width, .livingdocs >
  .ns-list-group.full-width,
  .ns-article >
  .ns-list-group.full-width, .livingdocs >
  .ns-table-wrap.full-width,
  .ns-article >
  .ns-table-wrap.full-width, .livingdocs >
  .ns-quote.full-width,
  .ns-article >
  .ns-quote.full-width, .livingdocs >
  .ns-lead.full-width,
  .ns-article >
  .ns-lead.full-width, .livingdocs >
  .ns-img.full-width,
  .ns-article >
  .ns-img.full-width, .livingdocs >
  .ns-title-h1.full-width,
  .ns-article >
  .ns-title-h1.full-width, .livingdocs >
  .ns-title-h2.full-width,
  .ns-article >
  .ns-title-h2.full-width, .livingdocs >
  .ns-title-h3.full-width,
  .ns-article >
  .ns-title-h3.full-width, .livingdocs >
  .ns-title-h4.full-width,
  .ns-article >
  .ns-title-h4.full-width, .livingdocs >
  .ns-title-h5.full-width,
  .ns-article >
  .ns-title-h5.full-width, .livingdocs >
  .fancynote__title.full-width,
  .ns-article >
  .fancynote__title.full-width {
    width: 100%;
    display: block;
  }
}

.category-page > .free-html, .category-page >
.ns-paragraph, .category-page >
.ns-graphic, .category-page >
.ns-video, .category-page >
.ns-signature, .category-page >
.ns-link, .category-page >
.ns-list-group, .category-page >
.ns-table-wrap, .category-page >
.ns-quote, .category-page >
.ns-lead, .category-page >
.ns-img, .category-page >
.ns-title-h1, .category-page >
.ns-title-h2, .category-page >
.ns-title-h3, .category-page >
.ns-title-h4, .category-page >
.ns-title-h5, .category-page >
.fancynote__title {
  width: 100%;
}

@media (min-width: 992px) {
  .category-page > .free-html, .category-page >
  .ns-paragraph, .category-page >
  .ns-graphic, .category-page >
  .ns-video, .category-page >
  .ns-signature, .category-page >
  .ns-link, .category-page >
  .ns-list-group, .category-page >
  .ns-table-wrap, .category-page >
  .ns-quote, .category-page >
  .ns-lead, .category-page >
  .ns-img, .category-page >
  .ns-title-h1, .category-page >
  .ns-title-h2, .category-page >
  .ns-title-h3, .category-page >
  .ns-title-h4, .category-page >
  .ns-title-h5, .category-page >
  .fancynote__title {
    width: calc((100% - 24px) / 24 * 16);
  }
  .category-page > .free-html.full-width, .category-page >
  .ns-paragraph.full-width, .category-page >
  .ns-graphic.full-width, .category-page >
  .ns-video.full-width, .category-page >
  .ns-signature.full-width, .category-page >
  .ns-link.full-width, .category-page >
  .ns-list-group.full-width, .category-page >
  .ns-table-wrap.full-width, .category-page >
  .ns-quote.full-width, .category-page >
  .ns-lead.full-width, .category-page >
  .ns-img.full-width, .category-page >
  .ns-title-h1.full-width, .category-page >
  .ns-title-h2.full-width, .category-page >
  .ns-title-h3.full-width, .category-page >
  .ns-title-h4.full-width, .category-page >
  .ns-title-h5.full-width, .category-page >
  .fancynote__title.full-width {
    width: 100%;
    display: block;
  }
}

@media print {
  .category-page > .free-html, .category-page >
  .ns-paragraph, .category-page >
  .ns-graphic, .category-page >
  .ns-video, .category-page >
  .ns-signature, .category-page >
  .ns-link, .category-page >
  .ns-list-group, .category-page >
  .ns-table-wrap, .category-page >
  .ns-quote, .category-page >
  .ns-lead, .category-page >
  .ns-img, .category-page >
  .ns-title-h1, .category-page >
  .ns-title-h2, .category-page >
  .ns-title-h3, .category-page >
  .ns-title-h4, .category-page >
  .ns-title-h5, .category-page >
  .fancynote__title {
    width: calc((100% - 24px) / 24 * 16);
  }
  .category-page > .free-html.full-width, .category-page >
  .ns-paragraph.full-width, .category-page >
  .ns-graphic.full-width, .category-page >
  .ns-video.full-width, .category-page >
  .ns-signature.full-width, .category-page >
  .ns-link.full-width, .category-page >
  .ns-list-group.full-width, .category-page >
  .ns-table-wrap.full-width, .category-page >
  .ns-quote.full-width, .category-page >
  .ns-lead.full-width, .category-page >
  .ns-img.full-width, .category-page >
  .ns-title-h1.full-width, .category-page >
  .ns-title-h2.full-width, .category-page >
  .ns-title-h3.full-width, .category-page >
  .ns-title-h4.full-width, .category-page >
  .ns-title-h5.full-width, .category-page >
  .fancynote__title.full-width {
    width: 100%;
    display: block;
  }
}

.accordion__content .free-html, .accordion__content
.ns-paragraph, .accordion__content
.ns-graphic, .accordion__content
.ns-video, .accordion__content
.ns-signature, .accordion__content
.ns-link, .accordion__content
.ns-list-group, .accordion__content
.ns-table-wrap, .accordion__content
.ns-quote, .accordion__content
.ns-lead, .accordion__content
.ns-img, .accordion__content
.ns-title-h1, .accordion__content
.ns-title-h2, .accordion__content
.ns-title-h3, .accordion__content
.ns-title-h4, .accordion__content
.ns-title-h5, .accordion__content
.fancynote__title {
  width: 100%;
}

@media (min-width: 992px) {
  .accordion__content .free-html, .accordion__content
  .ns-paragraph, .accordion__content
  .ns-graphic, .accordion__content
  .ns-video, .accordion__content
  .ns-signature, .accordion__content
  .ns-link, .accordion__content
  .ns-list-group, .accordion__content
  .ns-table-wrap, .accordion__content
  .ns-quote, .accordion__content
  .ns-lead, .accordion__content
  .ns-img, .accordion__content
  .ns-title-h1, .accordion__content
  .ns-title-h2, .accordion__content
  .ns-title-h3, .accordion__content
  .ns-title-h4, .accordion__content
  .ns-title-h5, .accordion__content
  .fancynote__title {
    width: calc((100% - 24px) / 24 * 16);
  }
  .accordion__content .free-html.full-width, .accordion__content
  .ns-paragraph.full-width, .accordion__content
  .ns-graphic.full-width, .accordion__content
  .ns-video.full-width, .accordion__content
  .ns-signature.full-width, .accordion__content
  .ns-link.full-width, .accordion__content
  .ns-list-group.full-width, .accordion__content
  .ns-table-wrap.full-width, .accordion__content
  .ns-quote.full-width, .accordion__content
  .ns-lead.full-width, .accordion__content
  .ns-img.full-width, .accordion__content
  .ns-title-h1.full-width, .accordion__content
  .ns-title-h2.full-width, .accordion__content
  .ns-title-h3.full-width, .accordion__content
  .ns-title-h4.full-width, .accordion__content
  .ns-title-h5.full-width, .accordion__content
  .fancynote__title.full-width {
    width: 100%;
    display: block;
  }
}

@media print {
  .accordion__content .free-html, .accordion__content
  .ns-paragraph, .accordion__content
  .ns-graphic, .accordion__content
  .ns-video, .accordion__content
  .ns-signature, .accordion__content
  .ns-link, .accordion__content
  .ns-list-group, .accordion__content
  .ns-table-wrap, .accordion__content
  .ns-quote, .accordion__content
  .ns-lead, .accordion__content
  .ns-img, .accordion__content
  .ns-title-h1, .accordion__content
  .ns-title-h2, .accordion__content
  .ns-title-h3, .accordion__content
  .ns-title-h4, .accordion__content
  .ns-title-h5, .accordion__content
  .fancynote__title {
    width: calc((100% - 24px) / 24 * 16);
  }
  .accordion__content .free-html.full-width, .accordion__content
  .ns-paragraph.full-width, .accordion__content
  .ns-graphic.full-width, .accordion__content
  .ns-video.full-width, .accordion__content
  .ns-signature.full-width, .accordion__content
  .ns-link.full-width, .accordion__content
  .ns-list-group.full-width, .accordion__content
  .ns-table-wrap.full-width, .accordion__content
  .ns-quote.full-width, .accordion__content
  .ns-lead.full-width, .accordion__content
  .ns-img.full-width, .accordion__content
  .ns-title-h1.full-width, .accordion__content
  .ns-title-h2.full-width, .accordion__content
  .ns-title-h3.full-width, .accordion__content
  .ns-title-h4.full-width, .accordion__content
  .ns-title-h5.full-width, .accordion__content
  .fancynote__title.full-width {
    width: 100%;
    display: block;
  }
}

.nhsnote .free-html, .nhsnote
.ns-paragraph, .nhsnote
.ns-graphic, .nhsnote
.ns-video, .nhsnote
.ns-signature, .nhsnote
.ns-link, .nhsnote
.ns-list-group, .nhsnote
.ns-table-wrap, .nhsnote
.ns-quote, .nhsnote
.ns-lead, .nhsnote
.ns-img, .nhsnote
.ns-title-h1, .nhsnote
.ns-title-h2, .nhsnote
.ns-title-h3, .nhsnote
.ns-title-h4, .nhsnote
.ns-title-h5, .nhsnote
.fancynote__title {
  width: 100%;
}

@media (min-width: 992px) {
  .nhsnote .free-html, .nhsnote
  .ns-paragraph, .nhsnote
  .ns-graphic, .nhsnote
  .ns-video, .nhsnote
  .ns-signature, .nhsnote
  .ns-link, .nhsnote
  .ns-list-group, .nhsnote
  .ns-table-wrap, .nhsnote
  .ns-quote, .nhsnote
  .ns-lead, .nhsnote
  .ns-img, .nhsnote
  .ns-title-h1, .nhsnote
  .ns-title-h2, .nhsnote
  .ns-title-h3, .nhsnote
  .ns-title-h4, .nhsnote
  .ns-title-h5, .nhsnote
  .fancynote__title {
    width: calc((100% - 24px) / 24 * 16);
  }
  .nhsnote .free-html.full-width, .nhsnote
  .ns-paragraph.full-width, .nhsnote
  .ns-graphic.full-width, .nhsnote
  .ns-video.full-width, .nhsnote
  .ns-signature.full-width, .nhsnote
  .ns-link.full-width, .nhsnote
  .ns-list-group.full-width, .nhsnote
  .ns-table-wrap.full-width, .nhsnote
  .ns-quote.full-width, .nhsnote
  .ns-lead.full-width, .nhsnote
  .ns-img.full-width, .nhsnote
  .ns-title-h1.full-width, .nhsnote
  .ns-title-h2.full-width, .nhsnote
  .ns-title-h3.full-width, .nhsnote
  .ns-title-h4.full-width, .nhsnote
  .ns-title-h5.full-width, .nhsnote
  .fancynote__title.full-width {
    width: 100%;
    display: block;
  }
}

@media print {
  .nhsnote .free-html, .nhsnote
  .ns-paragraph, .nhsnote
  .ns-graphic, .nhsnote
  .ns-video, .nhsnote
  .ns-signature, .nhsnote
  .ns-link, .nhsnote
  .ns-list-group, .nhsnote
  .ns-table-wrap, .nhsnote
  .ns-quote, .nhsnote
  .ns-lead, .nhsnote
  .ns-img, .nhsnote
  .ns-title-h1, .nhsnote
  .ns-title-h2, .nhsnote
  .ns-title-h3, .nhsnote
  .ns-title-h4, .nhsnote
  .ns-title-h5, .nhsnote
  .fancynote__title {
    width: calc((100% - 24px) / 24 * 16);
  }
  .nhsnote .free-html.full-width, .nhsnote
  .ns-paragraph.full-width, .nhsnote
  .ns-graphic.full-width, .nhsnote
  .ns-video.full-width, .nhsnote
  .ns-signature.full-width, .nhsnote
  .ns-link.full-width, .nhsnote
  .ns-list-group.full-width, .nhsnote
  .ns-table-wrap.full-width, .nhsnote
  .ns-quote.full-width, .nhsnote
  .ns-lead.full-width, .nhsnote
  .ns-img.full-width, .nhsnote
  .ns-title-h1.full-width, .nhsnote
  .ns-title-h2.full-width, .nhsnote
  .ns-title-h3.full-width, .nhsnote
  .ns-title-h4.full-width, .nhsnote
  .ns-title-h5.full-width, .nhsnote
  .fancynote__title.full-width {
    width: 100%;
    display: block;
  }
}

.free-html + *,
.ns-paragraph + *,
.ns-graphic + *,
.ns-video + *,
.ns-signature + *,
.ns-link + *,
.ns-list-group + *,
.ns-table-wrap + *,
.ns-quote + *,
.ns-lead + *,
.ns-img + *,
.ns-title-h1 + *,
.ns-title-h2 + *,
.ns-title-h3 + *,
.ns-title-h4 + *,
.ns-title-h5 + *,
.fancynote__title + * {
  margin-top: 24px;
}

.free-html + .ns-anchor + *,
.ns-paragraph + .ns-anchor + *,
.ns-graphic + .ns-anchor + *,
.ns-video + .ns-anchor + *,
.ns-signature + .ns-anchor + *,
.ns-link + .ns-anchor + *,
.ns-list-group + .ns-anchor + *,
.ns-table-wrap + .ns-anchor + *,
.ns-quote + .ns-anchor + *,
.ns-lead + .ns-anchor + *,
.ns-img + .ns-anchor + *,
.ns-title-h1 + .ns-anchor + *,
.ns-title-h2 + .ns-anchor + *,
.ns-title-h3 + .ns-anchor + *,
.ns-title-h4 + .ns-anchor + *,
.ns-title-h5 + .ns-anchor + *,
.fancynote__title + .ns-anchor + * {
  margin-top: 24px;
}

.free-html + .ns-pdf-header + *,
.ns-paragraph + .ns-pdf-header + *,
.ns-graphic + .ns-pdf-header + *,
.ns-video + .ns-pdf-header + *,
.ns-signature + .ns-pdf-header + *,
.ns-link + .ns-pdf-header + *,
.ns-list-group + .ns-pdf-header + *,
.ns-table-wrap + .ns-pdf-header + *,
.ns-quote + .ns-pdf-header + *,
.ns-lead + .ns-pdf-header + *,
.ns-img + .ns-pdf-header + *,
.ns-title-h1 + .ns-pdf-header + *,
.ns-title-h2 + .ns-pdf-header + *,
.ns-title-h3 + .ns-pdf-header + *,
.ns-title-h4 + .ns-pdf-header + *,
.ns-title-h5 + .ns-pdf-header + *,
.fancynote__title + .ns-pdf-header + * {
  margin-top: 24px;
}

.ns-marginal {
  width: 100%;
}

@media (min-width: 992px) {
  .ns-marginal {
    width: calc((100% - 24px) / 24 * 8);
    margin-left: 24px;
  }
}

@media print {
  .ns-marginal {
    width: calc((100% - 24px) / 24 * 8);
    margin-left: 24px;
  }
}

.ns-marginal + * {
  margin-top: 24px;
}

.ns-marginal + .ns-anchor + * {
  margin-top: 24px;
}

.ns-marginal + .ns-pdf-header + * {
  margin-top: 24px;
}

@media (min-width: 768px) {
  .ns-marginal {
    margin-top: 0;
  }
}

@media (min-width: 992px) {
  .ns-marginal > div {
    position: absolute;
  }
}

@media print and (min-width: 992px) {
  .ns-marginal > div {
    position: relative;
  }
}

.ns-pdf-pagebreak {
  display: none;
}

.ns-img + * {
  margin-top: 24px;
}

.ns-img + .ns-anchor + * {
  margin-top: 24px;
}

.ns-img + .ns-pdf-header + * {
  margin-top: 24px;
}

.ns-img img {
  width: 100%;
}

.ns-img img + * {
  margin-top: 12px;
}

.ns-img img + .ns-anchor + * {
  margin-top: 12px;
}

.ns-img img + .ns-pdf-header + * {
  margin-top: 12px;
}

.ns-img__img--mobile {
  display: none;
}

.ns-img__caption {
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.ns-img__caption + * {
  margin-top: 12px;
}

.ns-img__caption + .ns-anchor + * {
  margin-top: 12px;
}

.ns-img__caption + .ns-pdf-header + * {
  margin-top: 12px;
}

@media screen and (min-width: 0) {
  .ns-img__caption {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .ns-img__caption {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .ns-img__caption {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

@media screen {
  .ns-img.full-width-web {
    width: 100%;
  }
}

@media print {
  .ns-img.full-width-pdf {
    width: 100%;
  }
}

.ns-img--mobile .ns-img__img--desktop {
  display: none;
}

@media (min-width: 992px) {
  .ns-img--mobile .ns-img__img--desktop {
    display: block;
  }
}

@media print {
  .ns-img--mobile .ns-img__img--desktop {
    display: block;
  }
}

.ns-img--mobile .ns-img__img--mobile {
  display: block;
}

@media (min-width: 992px) {
  .ns-img--mobile .ns-img__img--mobile {
    display: none;
  }
}

@media print {
  .ns-img--mobile .ns-img__img--mobile {
    display: none;
  }
}

.ns-tile .ns-img__img--mobile {
  margin-top: 0;
}

.ns-video {
  position: relative;
}

.ns-video:not(.ns-tile__video-container) {
  margin-top: 32px;
}

.ns-video + * {
  margin-top: 24px;
}

.ns-video + .ns-anchor + * {
  margin-top: 24px;
}

.ns-video + .ns-pdf-header + * {
  margin-top: 24px;
}

.ns-video__thumbnail-container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  cursor: pointer;
}

.ns-video__placeholder {
  position: relative;
  width: 100%;
  height: 0;
  padding: 56.25% 0 0 0;
  display: block;
  background: #999999;
}

.ns-video__placeholder code {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.ns-video__placeholder + * {
  margin-top: 12px;
}

.ns-video__placeholder + .ns-anchor + * {
  margin-top: 12px;
}

.ns-video__placeholder + .ns-pdf-header + * {
  margin-top: 12px;
}

.ns-video__placeholder code {
  color: #ffffff;
  padding: 24px;
}

.ns-video__thumbnail {
  position: absolute;
  background-size: cover;
}

.livingdocs .ns-video__thumbnail {
  bottom: 24px;
  right: 24px;
  left: auto;
  top: auto;
  width: 300px;
  height: 169px;
}

.wordpress .livingdocs .ns-video__thumbnail {
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  max-width: 100%;
  position: relative;
  width: 100%;
  height: 0;
  padding: 56.25% 0 0 0;
  display: block;
  height: 100%;
}

.ns-video__legend {
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
  line-height: 1.3;
}

.ns-video__legend + * {
  margin-top: 12px;
}

.ns-video__legend + .ns-anchor + * {
  margin-top: 12px;
}

.ns-video__legend + .ns-pdf-header + * {
  margin-top: 12px;
}

.ns-video .responsive-embed {
  margin-bottom: 10px;
  position: relative;
  width: 100%;
  height: 0;
  padding: 56.25% 0 0 0;
  display: block;
}

.ns-video .responsive-embed video, .ns-video .responsive-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.ns-video.full-width {
  width: 100%;
}

.ns-graphic {
  border-top: 2px solid #cccccc;
  border-bottom: 2px solid #cccccc;
  padding-bottom: 12px;
}

.ns-graphic + * {
  margin-top: 24px;
}

.ns-graphic + .ns-anchor + * {
  margin-top: 24px;
}

.ns-graphic + .ns-pdf-header + * {
  margin-top: 24px;
}

.ns-graphic__title {
  display: block;
  color: #666666;
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
}

.ns-graphic__title + * {
  margin-top: 24px;
}

.ns-graphic__title + .ns-anchor + * {
  margin-top: 24px;
}

.ns-graphic__title + .ns-pdf-header + * {
  margin-top: 24px;
}

@media screen and (min-width: 0) {
  .ns-graphic__title {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .ns-graphic__title {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .ns-graphic__title {
    font-size: 1.4rem;
    line-height: 1.57;
  }
}

@media print {
  .ns-graphic__title {
    color: #333333;
  }
}

.ns-graphic__img {
  width: 100%;
}

.ns-graphic__img + * {
  margin-top: 24px;
}

.ns-graphic__img + .ns-anchor + * {
  margin-top: 24px;
}

.ns-graphic__img + .ns-pdf-header + * {
  margin-top: 24px;
}

.ns-graphic__desc {
  font-size: 1.3rem;
  line-height: 1.4;
  display: block;
}

.ns-graphic__desc + * {
  margin-top: 24px;
}

.ns-graphic__desc + .ns-anchor + * {
  margin-top: 24px;
}

.ns-graphic__desc + .ns-pdf-header + * {
  margin-top: 24px;
}

@media screen {
  .lc-graphic-svg-lottie-container + * {
    margin-top: 29px;
  }
  .lc-graphic-svg-lottie-container + .ns-anchor + * {
    margin-top: 29px;
  }
  .lc-graphic-svg-lottie-container + .ns-pdf-header + * {
    margin-top: 29px;
  }
}

@media screen and (min-width: 768px) {
  .lc-graphic-svg-lottie-container + * {
    margin-top: 250px;
  }
  .lc-graphic-svg-lottie-container + .ns-anchor + * {
    margin-top: 250px;
  }
  .lc-graphic-svg-lottie-container + .ns-pdf-header + * {
    margin-top: 250px;
  }
}

@media print {
  .lc-graphic-svg-lottie-container .ns-two-col-container__text {
    width: 40%;
  }
}

@media print {
  .lc-graphic-svg-lottie-container {
    page-break-inside: avoid;
  }
}

.lc-graphic--svg-lottie .lc-graphic__lottie {
  display: none;
}

.lc-graphic--svg-lottie.lc-option__show-lottie .lc-graphic__lottie {
  display: block;
}

@media print {
  .lc-graphic--svg-lottie.lc-option__show-lottie .lc-graphic__lottie {
    display: none;
  }
}

@media print {
  .lc-graphic {
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid;
    width: 100%;
    max-height: 32mm;
  }
}

@media print {
  .lc-graphic.hide-in-pdf,
  .hide-in-pdf .lc-graphic {
    display: none;
  }
}

@media screen {
  .lc-graphic.hide-in-web,
  .hide-in-web .lc-graphic {
    display: none;
  }
}

@media screen {
  .lc-option__show-lottie .lc-graphic__img {
    display: none;
  }
}

@media print {
  .lc-graphic__img {
    width: auto;
    max-height: 32mm;
    padding-bottom: 2mm;
  }
}

@media print {
  .lc-graphic__svg {
    margin-top: -1.5mm;
  }
}

:not(span).ns-keyfigure {
  border-top: 2px solid #00519e;
  padding-top: 12px;
  width: 100%;
}

:not(span).ns-keyfigure + * {
  margin-top: 24px;
}

:not(span).ns-keyfigure + .ns-anchor + * {
  margin-top: 24px;
}

:not(span).ns-keyfigure + .ns-pdf-header + * {
  margin-top: 24px;
}

@media (min-width: 768px) {
  :not(span).ns-keyfigure + * {
    margin-top: 0px;
  }
  :not(span).ns-keyfigure + .ns-anchor + * {
    margin-top: 0px;
  }
  :not(span).ns-keyfigure + .ns-pdf-header + * {
    margin-top: 0px;
  }
}

:not(span).ns-keyfigure p {
  color: #00519e;
}

:not(span).ns-keyfigure p + * {
  margin-top: 0px;
}

:not(span).ns-keyfigure p + .ns-anchor + * {
  margin-top: 0px;
}

:not(span).ns-keyfigure p + .ns-pdf-header + * {
  margin-top: 0px;
}

:not(span).ns-keyfigure__figure {
  font-size: 8rem;
  line-height: 1;
  padding-top: 12px;
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
}

@media print {
  :not(span).ns-keyfigure__figure {
    padding-top: 0;
  }
}

:not(span).ns-keyfigure__figure + * {
  margin-top: 0px;
}

:not(span).ns-keyfigure__figure + .ns-anchor + * {
  margin-top: 0px;
}

:not(span).ns-keyfigure__figure + .ns-pdf-header + * {
  margin-top: 0px;
}

:not(span).ns-keyfigure__title {
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
}

:not(span).ns-keyfigure__title + * {
  margin-top: 24px;
}

:not(span).ns-keyfigure__title + .ns-anchor + * {
  margin-top: 24px;
}

:not(span).ns-keyfigure__title + .ns-pdf-header + * {
  margin-top: 24px;
}

@media screen and (min-width: 0) {
  :not(span).ns-keyfigure__subtitle {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  :not(span).ns-keyfigure__subtitle {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  :not(span).ns-keyfigure__subtitle {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

[class*="ns-title-"] + * {
  margin-top: 0px;
}

[class*="ns-title-"] + .ns-anchor + * {
  margin-top: 0px;
}

[class*="ns-title-"] + .ns-pdf-header + * {
  margin-top: 0px;
}

.ns-title-h1 + * {
  margin-top: 36px;
}

.ns-title-h1 + .ns-anchor + * {
  margin-top: 36px;
}

.ns-title-h1 + .ns-pdf-header + * {
  margin-top: 36px;
}

@media (min-width: 768px) {
  .ns-title-h1 + .lc-graphic-svg-lottie-container {
    margin-top: 128px;
  }
  .ns-title-h1 + .ns-anchor + .lc-graphic-svg-lottie-container {
    margin-top: 128px;
  }
  .ns-title-h1 + .ns-pdf-header + .lc-graphic-svg-lottie-container {
    margin-top: 128px;
  }
}

@media screen and (min-width: 0) {
  .ns-title-h2 {
    font-size: 2.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .ns-title-h2 {
    font-size: 2.8rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .ns-title-h2 {
    font-size: 3.5rem;
    line-height: 1.272;
  }
}

@media screen and (min-width: 0) {
  .ns-title-h2 {
    font-size: 2.2rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .ns-title-h2 {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .ns-title-h2 {
    font-size: 2.6rem;
    line-height: 1.3;
  }
}

@media screen and (min-width: 0) {
  .accordion__title .ns-title-h3,
  .accordion__content .ns-title-h3 {
    font-size: 2rem;
    line-height: 1.2;
  }
}

@media screen and (min-width: 992px) {
  .accordion__title .ns-title-h3,
  .accordion__content .ns-title-h3 {
    font-size: 2.2rem;
    line-height: 1.5;
  }
}

.ns-title-h2 + *,
.ns-title-h3 + * {
  margin-top: 8px;
}

.ns-title-h2 + .ns-anchor + *,
.ns-title-h3 + .ns-anchor + * {
  margin-top: 8px;
}

.ns-title-h2 + .ns-pdf-header + *,
.ns-title-h3 + .ns-pdf-header + * {
  margin-top: 8px;
}

.downloadcenter .ns-title-h2 + *, .downloadcenter
.ns-title-h3 + * {
  margin: 0.8rem 0 0;
}

@media (min-width: 992px) {
  .downloadcenter .ns-title-h2 + *, .downloadcenter
  .ns-title-h3 + * {
    margin: 0;
  }
}

.ns-title-h4 + * {
  margin-top: 4px;
}

.ns-title-h4 + .ns-anchor + * {
  margin-top: 4px;
}

.ns-title-h4 + .ns-pdf-header + * {
  margin-top: 4px;
}

@media screen and (min-width: 0) {
  .ns-title-h4 {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .ns-title-h4 {
    font-size: 2rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .ns-title-h4 {
    font-size: 2rem;
    line-height: 1.4;
  }
}

.ns-title-h5 + * {
  margin-top: 2px;
}

.ns-title-h5 + .ns-anchor + * {
  margin-top: 2px;
}

.ns-title-h5 + .ns-pdf-header + * {
  margin-top: 2px;
}

@media screen and (min-width: 0) {
  .ns-title-h5 {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .ns-title-h5 {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .ns-title-h5 {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

.lc-graphic-svg-lottie-container [class*="ns-title"] {
  padding: 0;
}

[class*="ns-title"] + .lc-graphic--svg-lottie {
  margin-top: 32px;
}

[class*="ns-title"] + .ns-anchor + .lc-graphic--svg-lottie {
  margin-top: 32px;
}

[class*="ns-title"] + .ns-pdf-header + .lc-graphic--svg-lottie {
  margin-top: 32px;
}

.ns-lead {
  color: #00519e;
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
}

@media screen and (min-width: 0) {
  .ns-lead {
    font-size: 2.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .ns-lead {
    font-size: 2.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .ns-lead {
    font-size: 3rem;
    line-height: 1.33;
  }
}

.ns-lead + * {
  margin-top: 24px;
}

.ns-lead + .ns-anchor + * {
  margin-top: 24px;
}

.ns-lead + .ns-pdf-header + * {
  margin-top: 24px;
}

.ns-list-group {
  list-style-type: none;
}

.ns-list-group + * {
  margin-top: 24px;
}

.ns-list-group + .ns-anchor + * {
  margin-top: 24px;
}

.ns-list-group + .ns-pdf-header + * {
  margin-top: 24px;
}

.ns-list-group--ol {
  counter-reset: ordered-list;
}

.ns-list-group__item {
  font-size: 1.4rem;
  line-height: 1.6;
  padding-left: 30px;
  position: relative;
}

.ns-list-group__item + * {
  margin-top: 24px;
}

.ns-list-group__item + .ns-anchor + * {
  margin-top: 24px;
}

.ns-list-group__item + .ns-pdf-header + * {
  margin-top: 24px;
}

.ns-list-group__item:before {
  position: absolute;
  left: 0;
  top: 0;
}

.ns-list-group--ul .ns-list-group__item:before {
  content: '–';
}

.ns-list-group--ol .ns-list-group__item:before {
  counter-increment: ordered-list;
  content: counter(ordered-list) ")";
}

a {
  color: #00519e;
  cursor: pointer;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.menu a {
  color: #333333;
}

.ns-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 0) {
  .ns-link {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .ns-link {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .ns-link {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

.ns-arrow-icon {
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-color: #00519e;
  background-size: contain;
  background-position: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  margin-right: 12px;
}

.ns-arrow-icon + span {
  max-width: calc(100% - (12px + 1.5rem));
}

.ns-signature {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.ns-signature__item {
  width: calc((100% - (1 - 1) * 24px) / 1 * 1);
}

.ns-signature__item:nth-of-type(n) {
  margin-bottom: 24px;
  margin-right: 24px;
}

.ns-signature__item:last-of-type, .ns-signature__item:nth-of-type(1n) {
  margin-right: 0;
}

@media (min-width: 768px) {
  .ns-signature__item {
    width: calc((100% - (3 - 1) * 24px) / 3 * 1);
  }
  .ns-signature__item:nth-of-type(n) {
    margin-bottom: 0px;
    margin-right: 24px;
  }
  .ns-signature__item:last-of-type, .ns-signature__item:nth-of-type(3n) {
    margin-right: 0;
  }
}

@media print {
  .ns-signature__item {
    width: calc((100% - (3 - 1) * 24px) / 3 * 1);
  }
  .ns-signature__item:nth-of-type(n) {
    margin-bottom: 0px;
    margin-right: 24px;
  }
  .ns-signature__item:last-of-type, .ns-signature__item:nth-of-type(3n) {
    margin-right: 0;
  }
}

.ns-signature__item img {
  max-width: 75%;
  width: 100%;
}

@media print {
  .ns-signature__item img {
    max-width: 300px;
  }
}

@media (min-width: 768px) {
  .ns-signature__item img {
    max-width: 300px;
  }
}

.ns-quote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #00519e;
}

@media (min-width: 768px) {
  .ns-quote__img-wrapper, .ns-quote__quote {
    width: calc((100% - 12px) / 2);
  }
}

@media print {
  .ns-quote__img-wrapper, .ns-quote__quote {
    width: calc((100% - 12px) / 2);
  }
}

.ns-quote__img {
  max-width: 100%;
  height: auto;
  margin-bottom: 12px;
}

@media (min-width: 992px) {
  .ns-quote__img {
    margin-bottom: 0;
  }
}

@media print {
  .ns-quote__img {
    margin-bottom: 0;
  }
}

.ns-quote p {
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
  margin-bottom: 20px;
}

@media screen and (min-width: 0) {
  .ns-quote p {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .ns-quote p {
    font-size: 2.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .ns-quote p {
    font-size: 2.6rem;
    line-height: 1.5;
  }
}

@media (min-width: 992px) {
  .ns-quote p {
    margin-bottom: 0;
  }
}

@media print {
  .ns-quote p {
    margin-bottom: 0;
  }
}

.ns-quote__quote {
  position: relative;
}

.ns-quote__quote + * {
  margin-top: 24px;
}

.ns-quote__quote + .ns-anchor + * {
  margin-top: 24px;
}

.ns-quote__quote + .ns-pdf-header + * {
  margin-top: 24px;
}

@media screen and (min-width: 0) {
  .ns-quote__quote {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .ns-quote__quote {
    font-size: 2.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .ns-quote__quote {
    font-size: 2.6rem;
    line-height: 1.5;
  }
}

@media (min-width: 768px) {
  .ns-quote__quote + * {
    margin-top: 0px;
  }
  .ns-quote__quote + .ns-anchor + * {
    margin-top: 0px;
  }
  .ns-quote__quote + .ns-pdf-header + * {
    margin-top: 0px;
  }
}

@media print {
  .ns-quote__quote {
    height: 100%;
  }
  .ns-quote__quote + * {
    margin-top: 0px;
  }
  .ns-quote__quote + .ns-anchor + * {
    margin-top: 0px;
  }
  .ns-quote__quote + .ns-pdf-header + * {
    margin-top: 0px;
  }
}

.ns-quote__quote cite {
  bottom: 0;
  left: 0;
  font-style: normal !important;
}

@media (min-width: 992px) {
  .ns-quote__quote cite {
    position: absolute;
  }
}

@media print {
  .ns-quote__quote cite {
    position: absolute;
  }
}

.nosplit tr td, .nosplit tr td.fixed,
.nosplit tr th,
.nosplit tr th.fixed {
  width: auto;
  min-width: 80px;
  max-width: 30vw;
}

.nosplit tr td.fixed,
.nosplit tr th.fixed {
  border-right: none !important;
}

.js-please-rotate {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  background: #e5e5e5;
}

.js-please-rotate:before, .js-please-rotate:after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.js-please-rotate:before {
  content: url("../images/rotate_device-icon.svg");
  width: 35%;
}

.js-please-rotate:after {
  content: "Drehen Sie Ihr Gerät";
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
  color: #00519e;
  margin-top: 25%;
  width: 100%;
  text-align: center;
}

@media screen and (min-width: 0) {
  .js-please-rotate:after {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .js-please-rotate:after {
    font-size: 2rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .js-please-rotate:after {
    font-size: 2rem;
    line-height: 1.4;
  }
}

.js-please-rotate > div,
.js-please-rotate > table {
  display: none;
}

.js-responsive-table .clone {
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.js-responsive-table .clone th,
.js-responsive-table .clone td {
  visibility: hidden;
}

.js-responsive-table .clone tbody th {
  visibility: visible;
  background: green;
}

.js-responsive-table .clone tr td.fixed,
.js-responsive-table .clone tr th.fixed {
  visibility: visible;
  background: white;
}

.js-responsive-table .clone thead,
.js-responsive-table .clone tfoot {
  background: transparent;
}

.js-responsive-table > div {
  position: relative;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.js-responsive-table table {
  width: 100%;
  margin: auto;
  border-spacing: 0;
  table-layout: auto;
}

.js-responsive-table tr td,
.js-responsive-table tr th {
  width: 100px;
  min-width: 85px;
}

.js-responsive-table tr td:not(.head) p,
.js-responsive-table tr th:not(.head) p {
  padding-left: 2px;
  padding-right: 2px;
}

.js-responsive-table tr td.fixed,
.js-responsive-table tr th.fixed {
  background: white;
  white-space: normal;
  width: 35%;
  width: 35vw;
  min-width: 35%;
  min-width: 35vw;
  border-right: 1px solid black;
}

.js-responsive-table .ns-table {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
}

.nhsnote-box .js-responsive-table tr td.fixed,
.nhsnote-box .js-responsive-table tr th.fixed {
  visibility: visible;
  background: #f3f3f3;
}

table {
  width: 100%;
}

@media print {
  table {
    table-layout: fixed;
  }
}

table .subscript,
table .superscript,
table .subblue,
table .supblue {
  left: -4px;
  margin-right: -5px;
  line-height: inherit;
}

table .head .superscript,
table .head .supblue {
  left: -1px;
}

@media (min-width: 992px) {
  .ns-row:not(.head_top):not(.title):hover,
  .ns-row:not(.head_top):not(.title):hover .ns-backgroundcolor-zahlenteil_spalten,
  .ns-row:not(.head_top):not(.title):hover .ns-backgroundcolor-grau {
    background: #bcc4e1;
    background-clip: padding-box;
  }
}

@media print {
  .ns-row:not(.head_top):not(.title):hover,
  .ns-row:not(.head_top):not(.title):hover .ns-backgroundcolor-zahlenteil_spalten,
  .ns-row:not(.head_top):not(.title):hover .ns-backgroundcolor-grau {
    background: #bcc4e1;
    background-clip: padding-box;
  }
}

th,
td {
  border-bottom: 1px solid #333333;
}

th:first-child,
td:first-child {
  padding-left: 0;
}

th p,
td p {
  padding: 3px 2px;
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.5;
  left: 5px;
  position: relative;
  width: calc(100% - 10px);
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

div[data-tableid*="Content_Index"] th p, div[data-tableid*="Content_Index"]
td p {
  left: 0;
}

th p span,
td p span {
  white-space: pre-line;
  display: inline;
  -webkit-hyphens: auto;
      -ms-hyphens: auto;
          hyphens: auto;
}

th p span.subblue, th p span.supblue,
td p span.subblue,
td p span.supblue {
  color: #00519e;
}

th p span.subblue + .note, th p span.supblue + .note,
td p span.subblue + .note,
td p span.supblue + .note {
  left: -2px;
}

@media print {
  th p span.subblue + .note, th p span.supblue + .note,
  td p span.subblue + .note,
  td p span.supblue + .note {
    left: unset;
  }
}

th:first-child p,
td:first-child p {
  left: 0;
  width: calc(100% - 5px);
}

th:last-child p,
td:last-child p {
  width: calc(100% - 5px);
}

.line {
  border-bottom: 1px solid #333333;
}

.line_bold {
  border-bottom: 1px solid #333333;
}

.line_bold p {
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.line_ind {
  border-bottom: 1px solid #333333;
}

.line_ind p {
  padding-left: 1.5rem;
}

.bline {
  border-bottom: 2px solid #333333;
}

.bline_bold {
  border-bottom: 2px solid #333333;
}

.bline_bold p {
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

td[class*="blue"],
th[class*="blue"] {
  color: #00519e;
}

td[class*="bold_blue"] p,
th[class*="bold_blue"] p {
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.head {
  border-bottom: 0;
}

.head p {
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.3;
}

.head_top {
  border-bottom: 0;
}

.head_top p {
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  line-height: 1.3;
}

.head p,
.head_blue p {
  border-bottom: 2px solid #333333;
  left: 5px;
  position: relative;
  width: calc(100% - 10px);
}

.head:first-child p,
.head_blue:first-child p {
  left: 0;
  width: calc(100% - 5px);
}

.head:last-child p,
.head_blue:last-child p {
  width: calc(100% - 5px);
}

.head_blue {
  border-bottom: 0;
}

.head_blue p {
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.2;
}

.title {
  border-bottom: 0;
}

.title p {
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 2rem;
  line-height: 1.2;
}

.noline,
.noline_small {
  border-bottom: 0;
}

.noline_bold {
  border-bottom: 0;
}

.noline_bold p {
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

.noline_ind {
  border-bottom: 0;
}

.noline_ind p {
  padding-left: 1.5rem;
}

.footnote {
  border-bottom: 0;
  padding: 20px 5px 0;
}

.blue {
  color: #00519e;
}

.blue p {
  color: #00519e;
}

.italic {
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.italic p {
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 400;
}

.note {
  font-size: 1.2rem;
  line-height: 1.3;
  color: #00519e;
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 700;
  cursor: pointer;
}

.note + .subblue,
.note + .supblue {
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 0;
}

.zahl {
  font-size: 1.4rem;
  line-height: 1.5;
  line-height: 1 !important;
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
}

.head .zahl {
  white-space: normal;
}

.schrift {
  font-size: 1.4rem;
  line-height: 1.5;
  line-height: 1 !important;
  font-family: "TheSerif", "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 600;
}

.ns-backgroundcolor-zahlenteil_spalten {
  background: #e5ebf5;
  background-clip: padding-box;
}

.ns-backgroundcolor-grau {
  background: #e5e5e5;
  background-clip: padding-box;
}

.ns-table table + div {
  margin-top: 24px;
}

.ns-style-footnote_g,
.ns-style-footnote_b,
.ns-style-footnote {
  margin-top: 0;
  font-size: 1.2rem;
  line-height: 1.3;
}

p.ns-style-footnote {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

@media (min-width: 992px) {
  p.ns-style-footnote {
    width: calc((100% - 24px) / 24 * 16);
  }
  p.ns-style-footnote.full-width {
    width: 100%;
    display: block;
  }
}

@media print {
  p.ns-style-footnote {
    width: calc((100% - 24px) / 24 * 16);
  }
  p.ns-style-footnote.full-width {
    width: 100%;
    display: block;
  }
}

p.ns-style-footnote:first-child {
  margin-top: 20px;
}

.full-width p.ns-style-footnote {
  width: 100%;
}

@media (min-width: 992px) {
  .full-width p.ns-style-footnote {
    width: calc((100% - 24px) / 24 * 16);
  }
  .full-width p.ns-style-footnote.full-width {
    width: 100%;
    display: block;
  }
}

@media print {
  .full-width p.ns-style-footnote {
    width: calc((100% - 24px) / 24 * 16);
  }
  .full-width p.ns-style-footnote.full-width {
    width: 100%;
    display: block;
  }
}

p.ns-style-footnote span {
  width: auto;
}

p.ns-style-footnote span:nth-of-type(1) {
  display: inline-block;
}

p.ns-style-footnote span:nth-of-type(2) {
  display: block;
  width: calc(100% - 20px);
}

p.ns-style-footnote_g,
p.ns-style-footnote_b {
  padding-left: 10px;
}

p.ns-style-footnote_g:before,
p.ns-style-footnote_b:before {
  content: "";
  display: inline-block;
  height: 7px;
  width: 7px;
  vertical-align: top;
  top: 0;
  position: absolute;
  left: 0;
}

@media screen {
  p.ns-style-footnote_g:before,
  p.ns-style-footnote_b:before {
    top: 4px;
  }
}

p.ns-style-footnote_g:before {
  background: #e5e5e5;
}

p.ns-style-footnote_b:before {
  background: #e5ebf5;
}

.fn {
  display: block;
  font-size: 1.2rem;
  line-height: 1.3;
}

@media print {
  tr[class*="pagebreak"] {
    -webkit-column-break-after: always;
       -moz-column-break-after: always;
            break-after: always;
  }
}

@media screen {
  th[class*="head_pdf"],
  td[class*="head_pdf"] {
    display: none;
  }
}

[data-tableid="GKB_OR_Index_2023_GER"] p,
[data-tableid="Abkürzungsverzeichnis"] p {
  left: 0;
}

@media (max-width: 991.98px) {
  .ns-table-wrap {
    overflow-x: scroll;
  }
}

@media screen and (min-width: 0) {
  .ns-paragraph {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .ns-paragraph {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .ns-paragraph {
    font-size: 1.4rem;
    line-height: 1.57;
  }
}

.ns-paragraph--small {
  font-size: 1.2rem;
  line-height: 1.3;
}

.ns-tiles-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

.ns-tile-wrapper {
  position: relative;
  width: calc((100% - 0px)/1 * 1);
  display: block;
  margin-right: 0px;
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .ns-tile-wrapper {
    position: relative;
    width: calc((100% - 24px)/3 * 1);
    display: block;
    margin-right: 24px;
    margin-bottom: 24px;
  }
}

@media print {
  .ns-tile-wrapper {
    position: relative;
    width: calc((100% - 24px)/3 * 1);
    display: block;
    margin-right: 24px;
    margin-bottom: 24px;
  }
}

@media print {
  .ns-tile-wrapper {
    position: relative;
    width: calc((100% - 24px)/3 * 1);
    display: block;
    margin-right: 24px;
    margin-bottom: 24px;
  }
}

.ns-tile-wrapper--white-bg .ns-tile__title-wrapper {
  background: rgba(255, 255, 255, 0.8);
}

.ns-tile--large {
  position: relative;
  width: calc((100% - 0px)/1 * 1);
  display: block;
  margin-right: 0px;
  margin-bottom: 24px;
}

@media (min-width: 992px) {
  .ns-tile--large {
    position: relative;
    width: calc((100% - 24px)/3 * 2);
    display: block;
    margin-right: 24px;
    margin-bottom: 24px;
  }
}

@media print {
  .ns-tile--large {
    position: relative;
    width: calc((100% - 24px)/3 * 2);
    display: block;
    margin-right: 24px;
    margin-bottom: 24px;
  }
}

@media print {
  .ns-tile--large {
    position: relative;
    width: calc((100% - 24px)/3 * 2);
    display: block;
    margin-right: 24px;
    margin-bottom: 24px;
  }
}

.ns-tile--large .ns-tile {
  position: relative;
  width: 100%;
  height: 0;
  padding: 112.5% 0 0 0;
  display: block;
}

.ns-tile--large .ns-tile .ns-tile__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 992px) {
  .ns-tile--large .ns-tile {
    position: relative;
    width: 100%;
    height: 0;
    padding: 56.25% 0 0 0;
    display: block;
  }
  .ns-tile--large .ns-tile .ns-tile__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
}

@media print {
  .ns-tile--large .ns-tile {
    position: relative;
    width: 100%;
    height: 0;
    padding: 56.25% 0 0 0;
    display: block;
  }
  .ns-tile--large .ns-tile .ns-tile__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
}

@media print {
  .ns-tile--large .ns-tile {
    position: relative;
    width: 100%;
    height: 0;
    padding: 56.25% 0 0 0;
    display: block;
  }
  .ns-tile--large .ns-tile .ns-tile__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
}

.ns-tile {
  display: block;
  border-top: 2px solid #00519e;
  background-color: #e5e5e5;
  color: #333333;
  position: relative;
  width: 100%;
  height: 0;
  padding: 112.5% 0 0 0;
  display: block;
}

.ns-tile .ns-tile__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.ns-tile__title-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  padding: 15px;
  z-index: 3;
}

.ns-tile__title {
  font-size: 2rem;
  z-index: 3;
}

.ns-tile__subtitle {
  font-size: 1.8rem;
}

.ns-tile:before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: 2;
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
  background-image: radial-gradient(circle at 50% 54%, rgba(255, 255, 255, 0), rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3));
  opacity: 0;
}

.ns-tile:hover:before {
  opacity: 1;
}

.ns-tile .ns-img {
  margin-top: 0;
}

.ns-img--in-tile {
  max-width: 100%;
  min-height: 100%;
  position: relative;
  overflow: hidden;
}

.ns-img--in-tile + * {
  margin-top: 0;
}

.ns-img--in-tile + .ns-anchor + * {
  margin-top: 0;
}

.ns-img--in-tile + .ns-pdf-header + * {
  margin-top: 0;
}

.ns-img--in-tile .ns-img__img {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  height: auto;
}

.ns-tile--video .ns-tile__thumbnail {
  width: 30%;
  max-width: 200px;
  position: absolute;
  bottom: 24px;
  right: 24px;
}

.ns-tile--video .ns-tile__video-container {
  position: relative;
  bottom: 0;
  left: 0;
  z-index: 2;
}

.ns-tile--video .responsive-embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: relative;
  width: 100%;
  height: 0;
  padding: 56.25% 0 0 0;
  display: block;
  z-index: 2;
}

.ns-tile--video .responsive-embed video, .ns-tile--video .responsive-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.ns-tile--video .ns-video__placeholder {
  position: relative;
  width: 100%;
  height: 0;
  padding: 112.5% 0 0 0;
  display: block;
}

.ns-tile--video .ns-video__placeholder iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.ns-tile--video .ns-video__placeholder code {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.ns-tile--large .ns-video__placeholder {
  position: relative;
  width: 100%;
  height: 0;
  padding: 56.25% 0 0 0;
  display: block;
}

.ns-tile--large .ns-video__placeholder iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.ns-tile--video .ns-tile__title,
.ns-tile[href] .ns-tile__title {
  z-index: 3;
}

.ns-tile--video .ns-tile__title a,
.ns-tile[href] .ns-tile__title a {
  position: relative;
  padding-left: 24px;
  color: #333333;
}

.ns-tile--video .ns-tile__title a:before,
.ns-tile[href] .ns-tile__title a:before {
  content: "";
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-color: #333333;
  background-size: contain;
  background-position: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.ns-tile--video .ns-tile__title a:hover,
.ns-tile[href] .ns-tile__title a:hover {
  text-decoration: none;
}

.ns-tile--video .ns-tile__title a:hover,
.ns-tile[href] .ns-tile__title a:hover {
  position: relative;
  padding-left: 24px;
  color: #00519e;
  text-decoration: underline !important;
}

.ns-tile--video .ns-tile__title a:hover:before,
.ns-tile[href] .ns-tile__title a:hover:before {
  content: "";
  background-image: url("../images/arrow-right.svg");
  background-repeat: no-repeat;
  background-color: #00519e;
  background-size: contain;
  background-position: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.ns-tile--large .ns-tile--video {
  position: relative;
  width: 100%;
  height: 0;
  padding: 56.25% 0 0 0;
  display: block;
}

.ns-tile--large .ns-tile--video .ns-tile__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .ns-tile--large .ns-tile--video {
    position: relative;
    width: 100%;
    height: 0;
    padding: 56.25% 0 0 0;
    display: block;
  }
  .ns-tile--large .ns-tile--video .ns-tile__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 992px) {
  .ns-tile--large .ns-tile--video {
    position: relative;
    width: 100%;
    height: 0;
    padding: 56.25% 0 0 0;
    display: block;
  }
  .ns-tile--large .ns-tile--video .ns-tile__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
}

@media print {
  .ns-tile--large .ns-tile--video {
    position: relative;
    width: 100%;
    height: 0;
    padding: 56.25% 0 0 0;
    display: block;
  }
  .ns-tile--large .ns-tile--video .ns-tile__content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
  }
}

.ns-tile--cover .ns-tile__image-container {
  overflow: hidden;
}

.ns-tile--cover .ns-tile__image {
  max-width: none;
  max-height: none;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
}

@media (min-width: 768px) {
  .ns-tile-wrapper:nth-child(3n) {
    margin-right: 0;
  }
}

@media (min-width: 992px) {
  .ns-tile-wrapper:nth-child(even) {
    margin-right: 0;
  }
}

@media print {
  .ns-tile-wrapper:nth-child(even) {
    margin-right: 0;
  }
}

.ns-hero {
  position: relative;
  width: 100%;
  height: 100%;
}

.ns-hero + * {
  margin-top: 128px;
}

.ns-hero + .ns-anchor + * {
  margin-top: 128px;
}

.ns-hero + .ns-pdf-header + * {
  margin-top: 128px;
}

@media (min-width: 1200px) {
  .ns-hero + * {
    margin-top: 160px;
  }
  .ns-hero + .ns-anchor + * {
    margin-top: 160px;
  }
  .ns-hero + .ns-pdf-header + * {
    margin-top: 160px;
  }
}

.ns-hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 7;
  background: rgba(0, 81, 158, 0.6);
}

@media print {
  .ns-hero {
    display: none;
  }
}

.ns-hero__inner {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 7;
}

.ns-hero__image {
  position: relative;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  width: 100%;
  background-image: var(--xlarge-url) !important;
}

.ns-title-hero {
  max-width: 1164px;
  margin: 0 auto;
  color: #ffffff;
  padding: 0 20px;
}

@media screen and (min-width: 0) {
  .ns-title-hero {
    font-size: 3rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .ns-title-hero {
    font-size: 3.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .ns-title-hero {
    font-size: 6rem;
    line-height: 1.25;
  }
}

@media (min-width: 768px) {
  .ns-title-hero {
    padding: 0 12px;
  }
}

@media (min-width: 1200px) {
  .ns-title-hero {
    padding-right: 140px;
  }
}

.ns-teaser {
  width: 100%;
}

.ns-teaser + * {
  margin-top: 128px;
}

.ns-teaser + .ns-anchor + * {
  margin-top: 128px;
}

.ns-teaser + .ns-pdf-header + * {
  margin-top: 128px;
}

@media (min-width: 1200px) {
  .ns-teaser + * {
    margin-top: 160px;
  }
  .ns-teaser + .ns-anchor + * {
    margin-top: 160px;
  }
  .ns-teaser + .ns-pdf-header + * {
    margin-top: 160px;
  }
}

@media print {
  .ns-teaser + * {
    margin-top: 10mm;
  }
  .ns-teaser + .ns-anchor + * {
    margin-top: 10mm;
  }
  .ns-teaser + .ns-pdf-header + * {
    margin-top: 10mm;
  }
}

.ns-teaser__inner {
  max-width: 1164px;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 20px;
}

@media (min-width: 768px) {
  .ns-teaser__inner {
    padding: 0 12px;
  }
}

@media (min-width: 768px) {
  .ns-teaser__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.ns-teaser__container {
  width: 100%;
}

@media (max-width: 767.98px) {
  .ns-teaser__container + * {
    margin-top: 32px;
  }
  .ns-teaser__container + .ns-anchor + * {
    margin-top: 32px;
  }
  .ns-teaser__container + .ns-pdf-header + * {
    margin-top: 32px;
  }
}

@media (min-width: 768px) {
  .ns-teaser__container--image {
    width: 56% !important;
    padding-right: 60px;
  }
}

@media (min-width: 768px) {
  .ns-teaser__container--text {
    width: 44% !important;
  }
}

@media screen and (min-width: 0) {
  .ns-title-h2--teaser {
    font-size: 2.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .ns-title-h2--teaser {
    font-size: 2.8rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .ns-title-h2--teaser {
    font-size: 3.5rem;
    line-height: 1.272;
  }
}

.ns-title-h2--teaser + * {
  margin-top: 9px;
}

.ns-title-h2--teaser + .ns-anchor + * {
  margin-top: 9px;
}

.ns-title-h2--teaser + .ns-pdf-header + * {
  margin-top: 9px;
}

.ns-title-h2--teaser + .ns-teaser__button {
  margin-top: 32px;
}

.ns-title-h2--teaser + .ns-anchor + .ns-teaser__button {
  margin-top: 32px;
}

.ns-title-h2--teaser + .ns-pdf-header + .ns-teaser__button {
  margin-top: 32px;
}

@media (min-width: 768px) {
  .ns-title-h2--teaser + * {
    margin-top: 18px;
  }
  .ns-title-h2--teaser + .ns-anchor + * {
    margin-top: 18px;
  }
  .ns-title-h2--teaser + .ns-pdf-header + * {
    margin-top: 18px;
  }
}

.ns-title-h3--teaser {
  color: #000000;
}

@media screen and (min-width: 0) {
  .ns-title-h3--teaser {
    font-size: 2.2rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .ns-title-h3--teaser {
    font-size: 2.4rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .ns-title-h3--teaser {
    font-size: 2.6rem;
    line-height: 1.3;
  }
}

.ns-title-h3--teaser + * {
  margin-top: 18px;
}

.ns-title-h3--teaser + .ns-anchor + * {
  margin-top: 18px;
}

.ns-title-h3--teaser + .ns-pdf-header + * {
  margin-top: 18px;
}

.ns-title-h3--teaser + .ns-teaser__button {
  margin-top: 16px;
}

.ns-title-h3--teaser + .ns-anchor + .ns-teaser__button {
  margin-top: 16px;
}

.ns-title-h3--teaser + .ns-pdf-header + .ns-teaser__button {
  margin-top: 16px;
}

@media (min-width: 768px) {
  .ns-title-h3--teaser + .ns-teaser__button {
    margin-top: 32px;
  }
  .ns-title-h3--teaser + .ns-anchor + .ns-teaser__button {
    margin-top: 32px;
  }
  .ns-title-h3--teaser + .ns-pdf-header + .ns-teaser__button {
    margin-top: 32px;
  }
}

.ns-paragraph--teaser + .ns-teaser__button {
  margin-top: 32px;
}

.ns-paragraph--teaser + .ns-anchor + .ns-teaser__button {
  margin-top: 32px;
}

.ns-paragraph--teaser + .ns-pdf-header + .ns-teaser__button {
  margin-top: 32px;
}

.ns-teaser__button {
  font-size: 1.6rem;
  line-height: 2.4rem;
  border-radius: 5px;
  padding: 8px 34px;
}

.ns-teaser__button + * {
  margin-top: 32px;
}

.ns-teaser__button + .ns-anchor + * {
  margin-top: 32px;
}

.ns-teaser__button + .ns-pdf-header + * {
  margin-top: 32px;
}

.ns-teaser__button--pdf {
  display: none;
  background: none;
  border: 1px solid #000000;
  color: #000000;
  padding: 8px 60px 8px 16px;
  position: relative;
  text-align: left;
}

@media (min-width: 768px) {
  .ns-teaser__button--pdf + .ns-teaser__button--pdf {
    margin-top: 0;
    margin-bottom: 10px;
  }
}

@media (min-width: 480px) {
  .ns-teaser__button--pdf {
    max-width: 66%;
  }
}

@media (min-width: 768px) {
  .ns-teaser__button--pdf {
    max-width: 66%;
  }
}

.ns-teaser__button--pdf::after {
  background-image: url("../images/download.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  right: 28px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
}

.ns-teaser__button--pdf:hover, .ns-teaser__button--pdf:focus {
  background: none;
  border-color: #004485;
  color: #004485;
}

.ns-teaser__button--pdf-1 {
  display: block;
}

.ns-teaser--pdf-2 .ns-teaser__button--pdf-2 {
  display: block;
}

.ns-teaser--pdf-3 .ns-teaser__button--pdf-2 {
  display: block;
}

.ns-teaser--pdf-3 .ns-teaser__button--pdf-3 {
  display: block;
}

.ns-teaser--pdf-4 .ns-teaser__button--pdf-2 {
  display: block;
}

.ns-teaser--pdf-4 .ns-teaser__button--pdf-3 {
  display: block;
}

.ns-teaser--pdf-4 .ns-teaser__button--pdf-4 {
  display: block;
}

.ns-teaser__button--title,
.ns-teaser__button--size {
  display: block;
}

.ns-teaser__button--size {
  font-size: 1.4rem;
  line-height: 2.2rem;
  font-family: Verdana;
  font-weight: lighter;
}

@media (min-width: 768px) {
  .ns-teaser__download-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

@media (min-width: 768px) {
  [class*="ns-teaser--pdf"] .ns-teaser__button--pdf {
    width: calc((100% - 20px) / 2);
  }
}

.ns-video {
  position: relative;
  width: 100% !important;
  margin: 0 auto;
  height: auto;
}

@media (max-width: 991.98px) {
  .ns-video {
    margin-bottom: 0;
    border-bottom: 2px solid #00284d;
  }
}

@media print {
  .ns-video {
    display: none;
  }
}

.ns-video__thumbnail {
  position: absolute !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  -webkit-transition: opacity .4s ease;
  transition: opacity .4s ease;
  cursor: pointer;
}

.ns-video .ns-video__video {
  position: relative;
  width: 100%;
  height: 0;
  padding: 56.25% 0 0 0;
  display: block;
  height: 100%;
}

.ns-video .ns-video__video iframe, .ns-video .ns-video__video video {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.ns-video__playbutton {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.ns-video__playbutton svg {
  display: block;
  width: 70px;
  height: 70px;
}

@media (max-width: 991.98px) {
  .ns-video__playbutton svg {
    width: 32px;
    height: 32px;
  }
}

.ns-title-h2__home {
  max-width: 1164px;
  width: 100% !important;
  margin-left: auto;
  margin-right: auto;
}

.ns-title-h2__home + * {
  margin-top: 32px;
}

.ns-title-h2__home + .ns-anchor + * {
  margin-top: 32px;
}

.ns-title-h2__home + .ns-pdf-header + * {
  margin-top: 32px;
}

@media (min-width: 1200px) {
  .ns-title-h2__home {
    padding: 0;
  }
  .ns-title-h2__home + * {
    margin-top: 128px;
  }
  .ns-title-h2__home + .ns-anchor + * {
    margin-top: 128px;
  }
  .ns-title-h2__home + .ns-pdf-header + * {
    margin-top: 128px;
  }
}

@media print {
  .ns-title-h2__home {
    padding: 0;
  }
  .lc-graphic-svg-lottie-container .ns-title-h2__home {
    display: block;
  }
}

.ns-title-h2__home--inner {
  display: block;
  max-width: 625px;
  padding: 0 16px;
}

@media screen and (min-width: 0) {
  .ns-title-h2__home--inner {
    font-size: 2.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .ns-title-h2__home--inner {
    font-size: 2.8rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .ns-title-h2__home--inner {
    font-size: 3.5rem;
    line-height: 1.272;
  }
}

@media (min-width: 768px) {
  .ns-title-h2__home--inner {
    padding: 0 12px;
  }
}

@media print {
  .ns-title-h2__home--inner {
    padding: 0;
  }
}

@media screen and (min-width: 0) {
  .home .ns-title-h2__home--inner {
    font-size: 3rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .home .ns-title-h2__home--inner {
    font-size: 3.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .home .ns-title-h2__home--inner {
    font-size: 6rem;
    line-height: 1.25;
  }
}

.ns-council-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

.ns-council {
  width: calc((100% - (1 - 1) * 0px) / 1 * 1);
}

.ns-council:nth-of-type(n) {
  margin-bottom: 24px;
  margin-right: 0px;
}

.ns-council:last-of-type, .ns-council:nth-of-type(1n) {
  margin-right: 0;
}

@media (min-width: 768px) {
  .ns-council {
    width: calc((100% - (2 - 1) * 24px) / 2 * 1);
  }
  .ns-council:nth-of-type(n) {
    margin-bottom: 24px;
    margin-right: 24px;
  }
  .ns-council:last-of-type, .ns-council:nth-of-type(2n) {
    margin-right: 0;
  }
}

@media (min-width: 992px) {
  .ns-council {
    width: calc((100% - (3 - 1) * 24px) / 3 * 1);
  }
  .ns-council:nth-of-type(n) {
    margin-bottom: 24px;
    margin-right: 24px;
  }
  .ns-council:last-of-type, .ns-council:nth-of-type(3n) {
    margin-right: 0;
  }
}

@media print {
  .ns-council {
    width: calc((100% - (3 - 1) * 24px) / 3 * 1);
  }
  .ns-council:nth-of-type(n) {
    margin-bottom: 24px;
    margin-right: 24px;
  }
  .ns-council:last-of-type, .ns-council:nth-of-type(3n) {
    margin-right: 0;
  }
}

.ns-council__image-wrapper + * {
  margin-top: 24px;
}

.ns-council__image-wrapper + .ns-anchor + * {
  margin-top: 24px;
}

.ns-council__image-wrapper + .ns-pdf-header + * {
  margin-top: 24px;
}

.ns-council__image {
  position: relative;
  width: 100%;
  height: 0;
  padding: 66.66667% 0 0 0;
  display: block;
  border-top: 2px solid #00519e;
  background-color: #e5ebf5;
  overflow: hidden;
}

.ns-council__image iframe {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.ns-council__image img {
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: auto;
  height: 100%;
  max-width: none;
}

.ns-council__title,
.ns-council .ns-title-h4 {
  font-family: "Verdana", Arial, Helvetica, sans-serif;
  font-weight: 700;
}

@media screen and (min-width: 0) {
  .ns-council__title,
  .ns-council .ns-title-h4 {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 768px) {
  .ns-council__title,
  .ns-council .ns-title-h4 {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  .ns-council__title,
  .ns-council .ns-title-h4 {
    font-size: 1.4rem;
    line-height: 1.57;
  }
}

.ns-council__content {
  display: none;
}

@media (min-width: 768px) {
  .ns-council__content {
    display: block;
  }
}

@media print {
  .ns-council__content {
    display: block;
  }
}

.ns-council__content .ns-title-h4 + .ns-list-group, .ns-council__content .ns-title-h4 .ns-paragraph {
  margin-top: 4px;
}

.ns-council__content .ns-title-h4 + .ns-anchor + .ns-list-group, .ns-council__content .ns-title-h4 .ns-paragraph {
  margin-top: 4px;
}

.ns-council__content .ns-title-h4 + .ns-pdf-header + .ns-list-group, .ns-council__content .ns-title-h4 .ns-paragraph {
  margin-top: 4px;
}

.ns-council__content .ns-list-group__item + * {
  margin-top: 4px;
}

.ns-council__content .ns-list-group__item + .ns-anchor + * {
  margin-top: 4px;
}

.ns-council__content .ns-list-group__item + .ns-pdf-header + * {
  margin-top: 4px;
}

.ns-council__title {
  position: relative;
  cursor: pointer;
}

.ns-council__title + * {
  margin-top: 24px;
}

.ns-council__title + .ns-anchor + * {
  margin-top: 24px;
}

.ns-council__title + .ns-pdf-header + * {
  margin-top: 24px;
}

.ns-council__title:before {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background: #00519e;
  width: 14px;
  height: 4px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.ns-council__title:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  background: #00519e;
  width: 4px;
  height: 14px;
  -webkit-transform: translate(-5px, -7px);
          transform: translate(-5px, -7px);
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
}

@media (min-width: 768px) {
  .ns-council__title {
    cursor: initial;
  }
  .ns-council__title:before, .ns-council__title:after {
    display: none;
  }
}

@media print {
  .ns-council__title:before, .ns-council__title:after {
    display: none;
  }
}

.ns-council__title--accordeon-open:after {
  -webkit-transform: rotate(90deg) translate(-7px, 5px);
          transform: rotate(90deg) translate(-7px, 5px);
}

.ns-council__image-wrapper {
  width: 100%;
}

.ns-lead + .ns-paragraph {
  margin-top: 24px;
}

.ns-lead + .ns-anchor + .ns-paragraph {
  margin-top: 24px;
}

.ns-lead + .ns-pdf-header + .ns-paragraph {
  margin-top: 24px;
}

.ns-link + .ns-paragraph {
  margin-top: 24px;
}

.ns-link + .ns-anchor + .ns-paragraph {
  margin-top: 24px;
}

.ns-link + .ns-pdf-header + .ns-paragraph {
  margin-top: 24px;
}

.ns-link + .ns-img {
  margin-top: 24px;
}

.ns-link + .ns-anchor + .ns-img {
  margin-top: 24px;
}

.ns-link + .ns-pdf-header + .ns-img {
  margin-top: 24px;
}

.ns-graphic + *,
.ns-img:not(.ns-img--in-tile) + * {
  margin-top: 36px;
}

.ns-graphic + .ns-anchor + *,
.ns-img:not(.ns-img--in-tile) + .ns-anchor + * {
  margin-top: 36px;
}

.ns-graphic + .ns-pdf-header + *,
.ns-img:not(.ns-img--in-tile) + .ns-pdf-header + * {
  margin-top: 36px;
}

.ns-graphic + .ns-title-h1, .ns-graphic .ns-title-h2, .ns-graphic .ns-title-h3,
.ns-img + .ns-title-h1,
.ns-img .ns-title-h2,
.ns-img .ns-title-h3 {
  margin-top: 48px;
}

.ns-graphic + .ns-anchor + .ns-title-h1, .ns-graphic .ns-title-h2, .ns-graphic .ns-title-h3,
.ns-img + .ns-anchor + .ns-title-h1,
.ns-img .ns-title-h2,
.ns-img .ns-title-h3 {
  margin-top: 48px;
}

.ns-graphic + .ns-pdf-header + .ns-title-h1, .ns-graphic .ns-title-h2, .ns-graphic .ns-title-h3,
.ns-img + .ns-pdf-header + .ns-title-h1,
.ns-img .ns-title-h2,
.ns-img .ns-title-h3 {
  margin-top: 48px;
}

* + .ns-graphic, * .ns-img {
  margin-top: 36px;
}

* + .ns-anchor + .ns-graphic, * .ns-img {
  margin-top: 36px;
}

* + .ns-pdf-header + .ns-graphic, * .ns-img {
  margin-top: 36px;
}

.ns-paragraph + .ns-marginal {
  margin-top: 24px;
}

.ns-paragraph + .ns-anchor + .ns-marginal {
  margin-top: 24px;
}

.ns-paragraph + .ns-pdf-header + .ns-marginal {
  margin-top: 24px;
}

.ns-graphic + .ns-marginal,
.ns-img + .ns-marginal {
  margin-top: 36px;
}

.ns-graphic + .ns-anchor + .ns-marginal,
.ns-img + .ns-anchor + .ns-marginal {
  margin-top: 36px;
}

.ns-graphic + .ns-pdf-header + .ns-marginal,
.ns-img + .ns-pdf-header + .ns-marginal {
  margin-top: 36px;
}

.ns-graphic + .ns-tiles-container,
.ns-img + .ns-tiles-container {
  margin-top: 24px;
}

.ns-graphic + .ns-anchor + .ns-tiles-container,
.ns-img + .ns-anchor + .ns-tiles-container {
  margin-top: 24px;
}

.ns-graphic + .ns-pdf-header + .ns-tiles-container,
.ns-img + .ns-pdf-header + .ns-tiles-container {
  margin-top: 24px;
}

.ns-paragraph + .ns-title-h2, .ns-paragraph .ns-lead {
  margin-top: 36px;
}

.ns-paragraph + .ns-anchor + .ns-title-h2, .ns-paragraph .ns-lead {
  margin-top: 36px;
}

.ns-paragraph + .ns-pdf-header + .ns-title-h2, .ns-paragraph .ns-lead {
  margin-top: 36px;
}

.ns-title-h4 + .ns-list-group {
  margin-top: 12px;
}

.ns-title-h4 + .ns-anchor + .ns-list-group {
  margin-top: 12px;
}

.ns-title-h4 + .ns-pdf-header + .ns-list-group {
  margin-top: 12px;
}

.ns-quote + .ns-title-h3 {
  margin-top: 48px;
}

.ns-quote + .ns-anchor + .ns-title-h3 {
  margin-top: 48px;
}

.ns-quote + .ns-pdf-header + .ns-title-h3 {
  margin-top: 48px;
}

.ns-table-wrap + .ns-title-h3 {
  margin-top: 48px;
}

.ns-table-wrap + .ns-anchor + .ns-title-h3 {
  margin-top: 48px;
}

.ns-table-wrap + .ns-pdf-header + .ns-title-h3 {
  margin-top: 48px;
}

@media (min-width: 992px) {
  .ns-graphic + .ns-paragraph + .ns-marginal,
  .ns-img + .ns-paragraph + .ns-marginal {
    margin-top: 36px;
  }
  .ns-title-h1 + .ns-paragraph + .ns-marginal,
  .ns-title-h1 + .ns-graphic + .ns-marginal,
  .ns-title-h1 + .ns-img + .ns-marginal {
    margin-top: 36px;
  }
  .ns-title-h2 + .ns-paragraph + .ns-marginal,
  .ns-title-h3 + .ns-paragraph + .ns-marginal {
    margin-top: 8px;
  }
  .ns-title-h4 + .ns-paragraph + .ns-marginal {
    margin-top: 4px;
  }
  .ns-title-h5 + .ns-paragraph + .ns-marginal {
    margin-top: 2px;
  }
}

@media print {
  .ns-graphic + .ns-paragraph + .ns-marginal,
  .ns-img + .ns-paragraph + .ns-marginal {
    margin-top: 36px;
  }
  .ns-title-h1 + .ns-paragraph + .ns-marginal,
  .ns-title-h1 + .ns-graphic + .ns-marginal,
  .ns-title-h1 + .ns-img + .ns-marginal {
    margin-top: 36px;
  }
  .ns-title-h2 + .ns-paragraph + .ns-marginal,
  .ns-title-h3 + .ns-paragraph + .ns-marginal {
    margin-top: 8px;
  }
  .ns-title-h4 + .ns-paragraph + .ns-marginal {
    margin-top: 4px;
  }
  .ns-title-h5 + .ns-paragraph + .ns-marginal {
    margin-top: 2px;
  }
}

/*for information: THE CUSTOMER WANTED TO SEE WHICH TEXT IS OLD AND WHICH IS NEW (red color - old text, normal color - new ) */
.ns-title-h1:not(.new-text),
.ns-title-h4:not(.new-text),
.ns-title-h5:not(.new-text),
.ns-lead:not(.new-text),
.ns-graphic:not(.new-text),
.ns-list-group__item:not(.new-text) {
  color: red !important;
}

.ns-title-h2:not(.new-text):not(.ns-title-h2--teaser) {
  color: red !important;
}

.ns-title-h3:not(.new-text):not(.ns-title-h3--teaser) {
  color: red !important;
}

.ns-paragraph:not(.new-text):not(.ns-paragraph--teaser) {
  color: red !important;
}

/* Prevent red text */
.downloadcenter .ns-title-h1 {
  color: #00519e !important;
}

.downloadcenter .accordion__content--download .ns-title-h3 {
  color: #333333 !important;
}

.search-list__head .ns-title-h1 {
  color: #00519e !important;
}

.error404 .ns-title-h1,
.error404 .ns-paragraph:not(.new-text):not(.ns-paragraph--teaser) {
  color: #00519e !important;
}

.outside-legend {
  margin-top: 20px;
  margin-bottom: 30px;
}

.series-outside-legend-item {
  cursor: pointer;
  position: relative;
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
  padding-left: 25px;
  line-height: 1.1;
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}

.series-outside-legend-item:before, .series-outside-legend-item:after {
  content: '';
  position: absolute;
  -webkit-transition: .3s all ease;
  transition: .3s all ease;
}

.series-outside-legend-item:before {
  background-color: currentColor;
  width: 15px;
  height: 15px;
  left: 0;
  top: 1px;
  background-color: currentColor;
}

@media (min-width: 992px) {
  .series-outside-legend-item:before {
    top: 4px;
  }
}

.series-outside-legend-item[data-colorIndex="0"]:before, .series-outside-legend-item[data-colorIndex="0"]:after {
  color: #D6E3F2;
}

.series-outside-legend-item[data-colorIndex="1"]:before, .series-outside-legend-item[data-colorIndex="1"]:after {
  color: #00519E;
}

.series-outside-legend-item[data-colorIndex="2"]:before, .series-outside-legend-item[data-colorIndex="2"]:after {
  color: #3374B1;
}

.series-outside-legend-item[data-colorIndex="3"]:before, .series-outside-legend-item[data-colorIndex="3"]:after {
  color: #6697C5;
}

.series-outside-legend-item[data-colorIndex="4"]:before, .series-outside-legend-item[data-colorIndex="4"]:after {
  color: #99B9D8;
}

.series-outside-legend-item[data-colorIndex="5"]:before, .series-outside-legend-item[data-colorIndex="5"]:after {
  color: #CCDCEC;
}

.series-outside-legend-item[data-colorIndex="6"]:before, .series-outside-legend-item[data-colorIndex="6"]:after {
  color: #333333;
}

.series-outside-legend-item[data-colorIndex="7"]:before, .series-outside-legend-item[data-colorIndex="7"]:after {
  color: #5C5C5C;
}

.series-outside-legend-item[data-colorIndex="8"]:before, .series-outside-legend-item[data-colorIndex="8"]:after {
  color: #858585;
}

.series-outside-legend-item[data-colorIndex="9"]:before, .series-outside-legend-item[data-colorIndex="9"]:after {
  color: #ADADAD;
}

.series-outside-legend-item[data-colorIndex="10"]:before, .series-outside-legend-item[data-colorIndex="10"]:after {
  color: #D6D6D6;
}

.series-outside-legend-item[data-colorIndex="11"]:before, .series-outside-legend-item[data-colorIndex="11"]:after {
  color: #e0a715;
}

.series-outside-legend-item[data-colorIndex="12"]:before, .series-outside-legend-item[data-colorIndex="12"]:after {
  color: #e3e3e3;
}

.series-outside-legend-item.inactive {
  opacity: 0.2;
}

.series-outside-legend-item.inactive:hover {
  opacity: 0.6;
}

.series-outside-legend-item[data-charttype='pie']:before {
  border-radius: 50%;
}

.series-outside-legend-item[data-charttype='line'] {
  padding-left: 45px;
}

.series-outside-legend-item[data-charttype='line']:before {
  border-radius: 50%;
  left: 12.5px;
  top: 5.5px;
  width: 10px;
  height: 10px;
}

.series-outside-legend-item[data-charttype='line']:after {
  width: 35px;
  height: 1px;
  background-color: currentColor;
  left: 0;
  top: 11px;
}

.chart-footnotes {
  margin-top: 10px;
}

.chart-footnotes__footnote {
  padding-left: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  line-height: 1.1;
}

.pie-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.pie-container .series-outside-legend-item {
  font-size: 14px;
}

.pie-container .highcharts-data-label text {
  font-size: 10px;
  color: #333333;
  font-family: Verdana;
  font-weight: lighter;
}

.pie-container .series-outside-legend-item:before {
  top: 0;
}

.pie-container .highcharts-data-label-connector {
  display: none;
}

#pie-chart-legend {
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#pie-chart .highcharts-pie-series .highcharts-point {
  stroke-width: 0;
}

#pie-total {
  display: none;
}

.highcharts-pie-series .highcharts-point {
  stroke: white;
  stroke-width: 2px;
}

.pie-wrapper {
  position: relative;
}

.pie-wrapper__total {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 50px;
}

.highcharts-yaxis,
.highcharts-markers,
.highcharts-tracker-line,
.highcharts-line-series,
.highcharts-xaxis-grid,
.outside-legend {
  display: none;
}

/**
 * @license Highcharts
 *
 * (c) 2009-2016 Torstein Honsi
 *
 * License: www.highcharts.com/license
 */
.highcharts-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  text-align: left;
  line-height: normal;
  z-index: 0;
  /* #1072 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: Verdana;
  font-size: 14px;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}

.highcharts-root {
  display: block;
}

.highcharts-root text {
  stroke-width: 0;
  font-size: 10px;
}

.highcharts-strong {
  font-weight: bold;
}

.highcharts-label .highcharts-root text {
  font-size: 8px;
}

.highcharts-emphasized {
  font-style: italic;
}

.highcharts-anchor {
  cursor: pointer;
}

.highcharts-background {
  fill: transparent;
}

.highcharts-plot-border, .highcharts-plot-background {
  fill: none;
}

.highcharts-label-box {
  fill: none;
}

.highcharts-label-box text {
  font-size: 10px;
}

.highcharts-label span {
  top: 8px !important;
  font-size: 10px;
  font-weight: normal !important;
  color: #00519e;
}

.highcharts-label:not(.highcharts-tooltip) text {
  fill: #5FA4CA;
}

.highcharts-button-box {
  fill: inherit;
}

.highcharts-tracker-line {
  stroke-linejoin: round;
  stroke: rgba(192, 192, 192, 0.0001);
  stroke-width: 22;
  fill: none;
}

.highcharts-tracker-area {
  fill: rgba(192, 192, 192, 0.0001);
  stroke-width: 0;
}

/* Titles */
.highcharts-title {
  fill: #333333;
  font-size: 2rem;
}

.highcharts-subtitle {
  fill: #666666;
}

/* Axes */
.highcharts-axis-line {
  fill: none;
  stroke: #ccd6eb;
}

.highcharts-yaxis .highcharts-axis-line {
  stroke-width: 0;
}

.highcharts-axis-title {
  fill: #666666;
}

.highcharts-axis-labels {
  fill: #000000;
  cursor: default;
}

.highcharts-grid-line {
  display: none;
  fill: none;
  stroke: #e6e6e6;
}

.highcharts-xaxis-grid .highcharts-grid-line {
  stroke-width: 1px;
  display: none;
}

.highcharts-tick {
  stroke: #ccd6eb;
}

.highcharts-yaxis .highcharts-tick {
  stroke-width: 0;
}

.highcharts-minor-grid-line {
  stroke: #f2f2f2;
}

.highcharts-crosshair-thin {
  stroke-width: 1px;
  stroke: #cccccc;
}

.highcharts-crosshair-category {
  stroke: #ccd6eb;
  stroke-opacity: 0.25;
}

/* Credits */
.highcharts-credits {
  cursor: pointer;
  fill: #999999;
  font-size: 0.7em;
  -webkit-transition: fill 250ms, font-size 250ms;
  transition: fill 250ms, font-size 250ms;
}

.highcharts-credits:hover {
  fill: black;
  font-size: 1em;
}

/* Tooltip */
.highcharts-tooltip {
  cursor: default;
  pointer-events: none;
  white-space: nowrap;
  -webkit-transition: stroke 150ms;
  transition: stroke 150ms;
}

.highcharts-tooltip text {
  fill: #333333;
}

.highcharts-tooltip .highcharts-header {
  font-size: 0.85em;
}

.highcharts-tooltip-box {
  stroke-width: 0px;
  fill: #f7f7f7;
  fill-opacity: 0.85;
}

.highcharts-tooltip-box .highcharts-label-box {
  fill: #f7f7f7;
  fill-opacity: 0.85;
}

div.highcharts-tooltip {
  -webkit-filter: none;
          filter: none;
}

.highcharts-selection-marker {
  fill: #335cad;
  fill-opacity: 0.25;
}

.highcharts-graph {
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.highcharts-empty-series {
  stroke-width: 1px;
  fill: none;
  stroke: #cccccc;
}

.highcharts-state-hover .highcharts-graph {
  stroke-width: 3;
}

.highcharts-point-inactive {
  opacity: 0.2;
  -webkit-transition: opacity 50ms;
  transition: opacity 50ms;
  /* quick in */
}

.highcharts-series-inactive {
  opacity: 0.2;
  -webkit-transition: opacity 50ms;
  transition: opacity 50ms;
  /* quick in */
}

.highcharts-state-hover path {
  -webkit-transition: stroke-width 50ms;
  transition: stroke-width 50ms;
  /* quick in */
}

.highcharts-state-normal path {
  -webkit-transition: stroke-width 250ms;
  transition: stroke-width 250ms;
  /* slow out */
}

/* Legend hover affects points and series */
g.highcharts-series,
.highcharts-point,
.highcharts-markers,
.highcharts-data-labels {
  -webkit-transition: opacity 250ms;
  transition: opacity 250ms;
}

.highcharts-legend-series-active g.highcharts-series:not(.highcharts-series-hover),
.highcharts-legend-point-active .highcharts-point:not(.highcharts-point-hover),
.highcharts-legend-series-active .highcharts-markers:not(.highcharts-series-hover),
.highcharts-legend-series-active .highcharts-data-labels:not(.highcharts-series-hover) {
  opacity: 0.2;
}

/* Series options */
/* Default colors */
.highcharts-color-0 {
  fill: #D6E3F2;
  stroke: #D6E3F2;
}

.highcharts-color-1 {
  fill: #00519E;
  stroke: #00519E;
}

.highcharts-color-2 {
  fill: #3374B1;
  stroke: #3374B1;
}

.highcharts-color-3 {
  fill: #6697C5;
  stroke: #6697C5;
}

.highcharts-color-4 {
  fill: #99B9D8;
  stroke: #99B9D8;
}

.highcharts-color-5 {
  fill: #CCDCEC;
  stroke: #CCDCEC;
}

.highcharts-color-6 {
  fill: #333333;
  stroke: #333333;
}

.highcharts-color-7 {
  fill: #5C5C5C;
  stroke: #5C5C5C;
}

.highcharts-color-8 {
  fill: #858585;
  stroke: #858585;
}

.highcharts-color-9 {
  fill: #ADADAD;
  stroke: #ADADAD;
}

.highcharts-color-10 {
  fill: #D6D6D6;
  stroke: #D6D6D6;
}

.highcharts-color-11 {
  fill: #e0a715;
  stroke: #e0a715;
}

.highcharts-color-12 {
  fill: #e3e3e3;
  stroke: #e3e3e3;
}

.highcharts-area {
  fill-opacity: 0.75;
  stroke-width: 0;
}

.highcharts-markers {
  stroke-width: 1px;
  stroke: transparent;
}

.highcharts-a11y-markers-hidden .highcharts-point:not(.highcharts-point-hover):not(.highcharts-a11y-marker-visible),
.highcharts-a11y-marker-hidden {
  opacity: 0;
}

.highcharts-point {
  stroke-width: 1px;
}

.highcharts-dense-data .highcharts-point {
  stroke-width: 0;
}

.highcharts-data-label {
  font-size: 14px;
  font-weight: bold;
}

.highcharts-data-label-box {
  fill: none;
  stroke-width: 0;
}

.highcharts-data-label text, text.highcharts-data-label {
  fill: #000000;
  font-weight: lighter;
  font-size: 10px;
}

.highcharts-data-label-connector {
  fill: none;
}

.highcharts-data-label-hidden {
  pointer-events: none;
}

.highcharts-halo {
  fill-opacity: 0.25;
  stroke-width: 0;
}

.highcharts-series:not(.highcharts-pie-series) .highcharts-point-select,
.highcharts-markers .highcharts-point-select {
  fill: #cccccc;
  stroke: #000000;
}

.highcharts-column-series rect.highcharts-point {
  stroke: transparent;
}

.highcharts-column-series .highcharts-point {
  -webkit-transition: fill-opacity 250ms;
  transition: fill-opacity 250ms;
}

.highcharts-column-series .highcharts-point-hover {
  fill-opacity: 0.75;
  -webkit-transition: fill-opacity 50ms;
  transition: fill-opacity 50ms;
}

.highcharts-pie-series .highcharts-point {
  stroke-linejoin: round;
  stroke: transparent;
}

.highcharts-pie-series .highcharts-point-hover {
  fill-opacity: 0.75;
  -webkit-transition: fill-opacity 50ms;
  transition: fill-opacity 50ms;
}

.highcharts-funnel-series .highcharts-point {
  stroke-linejoin: round;
  stroke: transparent;
}

.highcharts-funnel-series .highcharts-point-hover {
  fill-opacity: 0.75;
  -webkit-transition: fill-opacity 50ms;
  transition: fill-opacity 50ms;
}

.highcharts-funnel-series .highcharts-point-select {
  fill: inherit;
  stroke: inherit;
}

.highcharts-pyramid-series .highcharts-point {
  stroke-linejoin: round;
  stroke: transparent;
}

.highcharts-pyramid-series .highcharts-point-hover {
  fill-opacity: 0.75;
  -webkit-transition: fill-opacity 50ms;
  transition: fill-opacity 50ms;
}

.highcharts-pyramid-series .highcharts-point-select {
  fill: inherit;
  stroke: inherit;
}

.highcharts-solidgauge-series .highcharts-point {
  stroke-width: 0;
}

.highcharts-treemap-series .highcharts-point {
  stroke-width: 1px;
  stroke: #e6e6e6;
  -webkit-transition: stroke 250ms, fill 250ms, fill-opacity 250ms;
  transition: stroke 250ms, fill 250ms, fill-opacity 250ms;
}

.highcharts-treemap-series .highcharts-point-hover {
  stroke: #999999;
  -webkit-transition: stroke 25ms, fill 25ms, fill-opacity 25ms;
  transition: stroke 25ms, fill 25ms, fill-opacity 25ms;
}

.highcharts-treemap-series .highcharts-above-level {
  display: none;
}

.highcharts-treemap-series .highcharts-internal-node {
  fill: none;
}

.highcharts-treemap-series .highcharts-internal-node-interactive {
  fill-opacity: 0.15;
  cursor: pointer;
}

.highcharts-treemap-series .highcharts-internal-node-interactive:hover {
  fill-opacity: 0.75;
}

.highcharts-vector-series .highcharts-point {
  fill: none;
  stroke-width: 2px;
}

.highcharts-windbarb-series .highcharts-point {
  fill: none;
  stroke-width: 2px;
}

.highcharts-lollipop-stem {
  stroke: #000000;
}

.highcharts-focus-border {
  fill: none;
  stroke-width: 2px;
}

.highcharts-legend-item-hidden .highcharts-focus-border {
  fill: none !important;
}

/* Legend */
.highcharts-legend-box {
  fill: none;
  stroke-width: 0;
}

.highcharts-legend-item > text {
  fill: #333333;
  font-size: 14px;
  cursor: pointer;
  stroke-width: 0;
}

.highcharts-legend-item:hover text {
  fill: #000000;
}

.highcharts-legend-item {
  display: none;
}

.highcharts-legend-item-hidden * {
  fill: #cccccc !important;
  stroke: #cccccc !important;
  -webkit-transition: fill 250ms;
  transition: fill 250ms;
}

.highcharts-legend-nav-active {
  fill: #003399;
  cursor: pointer;
}

.highcharts-legend-nav-inactive {
  fill: #cccccc;
}

circle.highcharts-legend-nav-active, circle.highcharts-legend-nav-inactive {
  /* tracker */
  fill: rgba(192, 192, 192, 0.0001);
}

.highcharts-legend-title-box {
  fill: none;
  stroke-width: 0;
}

/* Bubble legend */
.highcharts-bubble-legend-symbol {
  stroke-width: 2;
  fill-opacity: 0.5;
}

.highcharts-bubble-legend-connectors {
  stroke-width: 1;
}

.highcharts-bubble-legend-labels {
  fill: #333333;
}

/* Loading */
.highcharts-loading {
  position: absolute;
  background-color: transparent;
  opacity: 0.5;
  text-align: center;
  z-index: 10;
  -webkit-transition: opacity 250ms;
  transition: opacity 250ms;
}

.highcharts-loading-hidden {
  height: 0 !important;
  opacity: 0;
  overflow: hidden;
  -webkit-transition: opacity 250ms, height 250ms step-end;
  transition: opacity 250ms, height 250ms step-end;
}

.highcharts-loading-inner {
  font-weight: bold;
  position: relative;
  top: 45%;
}

/* Plot bands and polar pane backgrounds */
.highcharts-plot-band, .highcharts-pane {
  fill: #000000;
  fill-opacity: 0.05;
}

.highcharts-plot-line {
  fill: none;
  stroke: #999999;
  stroke-width: 1px;
}

/* Highcharts More and modules */
.highcharts-boxplot-box {
  fill: transparent;
}

.highcharts-boxplot-median {
  stroke-width: 2px;
}

.highcharts-bubble-series .highcharts-point {
  fill-opacity: 0.5;
}

.highcharts-errorbar-series .highcharts-point {
  stroke: #000000;
}

.highcharts-gauge-series .highcharts-data-label-box {
  stroke: #cccccc;
  stroke-width: 1px;
}

.highcharts-gauge-series .highcharts-dial {
  fill: #000000;
  stroke-width: 0;
}

.highcharts-polygon-series .highcharts-graph {
  fill: inherit;
  stroke-width: 0;
}

.highcharts-waterfall-series .highcharts-graph {
  stroke: #333333;
  stroke-dasharray: 1, 3;
}

.highcharts-sankey-series .highcharts-point {
  stroke-width: 0;
}

.highcharts-sankey-series .highcharts-link {
  -webkit-transition: fill 250ms, fill-opacity 250ms;
  transition: fill 250ms, fill-opacity 250ms;
  fill-opacity: 0.5;
}

.highcharts-sankey-series .highcharts-point-hover.highcharts-link {
  -webkit-transition: fill 50ms, fill-opacity 50ms;
  transition: fill 50ms, fill-opacity 50ms;
  fill-opacity: 1;
}

.highcharts-venn-series .highcharts-point {
  fill-opacity: 0.75;
  stroke: #cccccc;
  -webkit-transition: stroke 250ms, fill-opacity 250ms;
  transition: stroke 250ms, fill-opacity 250ms;
}

.highcharts-venn-series .highcharts-point-hover {
  fill-opacity: 1;
  stroke: #cccccc;
}

/* Highstock */
.highcharts-navigator-mask-outside {
  fill-opacity: 0;
}

.highcharts-navigator-mask-inside {
  fill: #6685c2;
  /* navigator.maskFill option */
  fill-opacity: 0.25;
  cursor: ew-resize;
}

.highcharts-navigator-outline {
  stroke: #cccccc;
  fill: none;
}

.highcharts-navigator-handle {
  stroke: #cccccc;
  fill: #f2f2f2;
  cursor: ew-resize;
}

.highcharts-navigator-series {
  fill: #335cad;
  stroke: #335cad;
}

.highcharts-navigator-series .highcharts-graph {
  stroke-width: 1px;
}

.highcharts-navigator-series .highcharts-area {
  fill-opacity: 0.05;
}

.highcharts-navigator-xaxis .highcharts-axis-line {
  stroke-width: 0;
}

.highcharts-navigator-xaxis .highcharts-grid-line {
  stroke-width: 1px;
  stroke: #e6e6e6;
}

.highcharts-navigator-xaxis.highcharts-axis-labels {
  fill: #999999;
}

.highcharts-navigator-yaxis .highcharts-grid-line {
  stroke-width: 0;
}

.highcharts-scrollbar-thumb {
  fill: #cccccc;
  stroke: #cccccc;
  stroke-width: 1px;
}

.highcharts-scrollbar-button {
  fill: #e6e6e6;
  stroke: #cccccc;
  stroke-width: 1px;
}

.highcharts-scrollbar-arrow {
  fill: #666666;
}

.highcharts-scrollbar-rifles {
  stroke: #666666;
  stroke-width: 1px;
}

.highcharts-scrollbar-track {
  fill: #f2f2f2;
  stroke: #f2f2f2;
  stroke-width: 1px;
}

.highcharts-button {
  fill: #f7f7f7;
  stroke: #cccccc;
  cursor: default;
  stroke-width: 1px;
  -webkit-transition: fill 250ms;
  transition: fill 250ms;
}

.highcharts-button text {
  fill: #333333;
}

.highcharts-button-hover {
  -webkit-transition: fill 0ms;
  transition: fill 0ms;
  fill: #e6e6e6;
  stroke: #cccccc;
}

.highcharts-button-hover text {
  fill: #333333;
}

.highcharts-button-pressed {
  font-weight: bold;
  fill: #e6ebf5;
  stroke: #cccccc;
}

.highcharts-button-pressed text {
  fill: #333333;
  font-weight: bold;
}

.highcharts-button-disabled text {
  fill: #333333;
}

.highcharts-range-selector-buttons .highcharts-button {
  stroke-width: 0px;
}

.highcharts-range-label rect {
  fill: none;
}

.highcharts-range-label text {
  fill: #666666;
}

.highcharts-range-input rect {
  fill: none;
}

.highcharts-range-input text {
  fill: #333333;
}

.highcharts-range-input {
  stroke-width: 1px;
  stroke: #cccccc;
}

input.highcharts-range-selector {
  position: absolute;
  border: 0;
  width: 1px;
  /* Chrome needs a pixel to see it */
  height: 1px;
  padding: 0;
  text-align: center;
  left: -9em;
  /* #4798 */
}

.highcharts-crosshair-label text {
  fill: transparent;
  font-size: 1.1em;
}

.highcharts-crosshair-label .highcharts-label-box {
  fill: inherit;
}

.highcharts-candlestick-series .highcharts-point {
  stroke: #000000;
  stroke-width: 1px;
}

.highcharts-candlestick-series .highcharts-point-up {
  fill: transparent;
}

.highcharts-ohlc-series .highcharts-point-hover {
  stroke-width: 3px;
}

.highcharts-flags-series .highcharts-point .highcharts-label-box {
  stroke: #999999;
  fill: transparent;
  -webkit-transition: fill 250ms;
  transition: fill 250ms;
}

.highcharts-flags-series .highcharts-point-hover .highcharts-label-box {
  stroke: #000000;
  fill: #ccd6eb;
}

.highcharts-flags-series .highcharts-point text {
  fill: #000000;
  font-size: 0.9em;
  font-weight: bold;
}

/* Highmaps */
.highcharts-map-series .highcharts-point {
  -webkit-transition: fill 500ms, fill-opacity 500ms, stroke-width 250ms;
  transition: fill 500ms, fill-opacity 500ms, stroke-width 250ms;
  stroke: #cccccc;
}

.highcharts-map-series .highcharts-point-hover {
  -webkit-transition: fill 0ms, fill-opacity 0ms;
  transition: fill 0ms, fill-opacity 0ms;
  fill-opacity: 0.5;
  stroke-width: 2px;
}

.highcharts-mapline-series .highcharts-point {
  fill: none;
}

.highcharts-heatmap-series .highcharts-point {
  stroke-width: 0;
}

.highcharts-map-navigation {
  font-size: 1.3em;
  font-weight: bold;
  text-align: center;
}

.highcharts-coloraxis {
  stroke-width: 0;
}

.highcharts-coloraxis-marker {
  fill: #999999;
}

.highcharts-null-point {
  fill: #f7f7f7;
}

/* 3d charts */
.highcharts-3d-frame {
  fill: transparent;
}

/* Exporting module */
.highcharts-contextbutton {
  fill: transparent;
  /* needed to capture hover */
  stroke: none;
  stroke-linecap: round;
}

.highcharts-contextbutton:hover {
  fill: #e6e6e6;
  stroke: #e6e6e6;
}

.highcharts-button-symbol {
  stroke: #666666;
  stroke-width: 3px;
}

.highcharts-menu {
  border: 1px solid #999999;
  background: transparent;
  padding: 5px 0;
  -webkit-box-shadow: 3px 3px 10px #888;
          box-shadow: 3px 3px 10px #888;
}

.highcharts-menu-item {
  padding: 0.5em 1em;
  background: none;
  color: #333333;
  cursor: pointer;
  -webkit-transition: background 250ms, color 250ms;
  transition: background 250ms, color 250ms;
}

.highcharts-menu-item:hover {
  background: #335cad;
  color: transparent;
}

/* Drilldown module */
.highcharts-drilldown-point {
  cursor: pointer;
}

.highcharts-drilldown-data-label text,
text.highcharts-drilldown-data-label,
.highcharts-drilldown-axis-label {
  cursor: pointer;
  fill: #003399;
  font-weight: bold;
  text-decoration: underline;
}

/* No-data module */
.highcharts-no-data text {
  font-weight: bold;
  font-size: 12px;
  fill: #666666;
}

/* Drag-panes module */
.highcharts-axis-resizer {
  cursor: ns-resize;
  stroke: black;
  stroke-width: 2px;
}

/* Bullet type series */
.highcharts-bullet-target {
  stroke-width: 0;
}

/* Lineargauge type series */
.highcharts-lineargauge-target {
  stroke-width: 1px;
  stroke: #333333;
}

.highcharts-lineargauge-target-line {
  stroke-width: 1px;
  stroke: #333333;
}

/* Annotations module */
.highcharts-annotation-label-box {
  stroke-width: 1px;
  stroke: #000000;
  fill: #000000;
  fill-opacity: 0.75;
}

.highcharts-annotation-label text {
  fill: #e6e6e6;
}

/* Gantt */
.highcharts-treegrid-node-collapsed, .highcharts-treegrid-node-expanded {
  cursor: pointer;
}

.highcharts-point-connecting-path {
  fill: none;
}

.highcharts-grid-axis .highcharts-tick {
  stroke-width: 1px;
}

.highcharts-grid-axis .highcharts-axis-line {
  stroke-width: 1px;
}

.highcharts-yaxis-labels {
  display: none;
}

.highcharts-series .highcharts-point:nth-of-type(5) {
  fill: #00519E;
}

.ns-title-chart {
  font-size: 1.6rem;
}

.ns-highchart-graphic__titles {
  min-height: 65px;
}

.ns-subtitle-chart {
  font-family: Verdana;
  font-weight: lighter;
  margin-top: 4px;
  font-size: 1.4rem;
}

.highcharts-label text {
  font-size: 8px;
}

.ns-highchart-graphic {
  width: 100%;
}

.ns-three-col-container {
  width: 100%;
}

@media (max-width: 991.98px) {
  .ns-three-col-container + * {
    margin-top: 20px;
  }
  .ns-three-col-container + .ns-anchor + * {
    margin-top: 20px;
  }
  .ns-three-col-container + .ns-pdf-header + * {
    margin-top: 20px;
  }
  .ns-three-col-container + .ns-teaser {
    margin-top: 127px;
  }
  .ns-three-col-container + .ns-anchor + .ns-teaser {
    margin-top: 127px;
  }
  .ns-three-col-container + .ns-pdf-header + .ns-teaser {
    margin-top: 127px;
  }
}

@media (min-width: 768px) {
  .ns-three-col-container + * {
    margin-top: 60px;
  }
  .ns-three-col-container + .ns-anchor + * {
    margin-top: 60px;
  }
  .ns-three-col-container + .ns-pdf-header + * {
    margin-top: 60px;
  }
}

.ns-three-col-container__inner {
  max-width: 1164px;
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .ns-three-col-container__inner {
    padding: 0 12px;
  }
}

@media (min-width: 768px) {
  .ns-three-col-container__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.ns-three-col-container__column {
  width: 100%;
}

@media (max-width: 767.98px) {
  .ns-three-col-container__column + * {
    margin-top: 20px;
  }
  .ns-three-col-container__column + .ns-anchor + * {
    margin-top: 20px;
  }
  .ns-three-col-container__column + .ns-pdf-header + * {
    margin-top: 20px;
  }
}

@media (min-width: 768px) {
  .ns-three-col-container__column {
    width: 30%;
  }
}

.ns-three-col-container__column svg {
  width: 100%;
}

.ns-two-col-container {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.ns-two-col-container + * {
  margin-top: 80px;
}

.ns-two-col-container + .ns-anchor + * {
  margin-top: 80px;
}

.ns-two-col-container + .ns-pdf-header + * {
  margin-top: 80px;
}

@media print {
  .ns-two-col-container + * {
    margin-top: 3mm;
  }
  .ns-two-col-container + .ns-anchor + * {
    margin-top: 3mm;
  }
  .ns-two-col-container + .ns-pdf-header + * {
    margin-top: 3mm;
  }
}

@media (min-width: 768px) {
  .ns-two-col-container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}

.lc-graphic-svg-lottie-container .ns-two-col-container {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media screen {
  .lc-graphic-svg-lottie-container .ns-two-col-container {
    gap: 29px;
  }
  .lc-graphic-svg-lottie-container .ns-two-col-container + * {
    margin-top: 29px;
  }
  .lc-graphic-svg-lottie-container .ns-two-col-container + .ns-anchor + * {
    margin-top: 29px;
  }
  .lc-graphic-svg-lottie-container .ns-two-col-container + .ns-pdf-header + * {
    margin-top: 29px;
  }
}

@media screen and (min-width: 768px) {
  .lc-graphic-svg-lottie-container .ns-two-col-container + * {
    margin-top: 128px;
  }
  .lc-graphic-svg-lottie-container .ns-two-col-container + .ns-anchor + * {
    margin-top: 128px;
  }
  .lc-graphic-svg-lottie-container .ns-two-col-container + .ns-pdf-header + * {
    margin-top: 128px;
  }
}

@media print {
  .lc-graphic-svg-lottie-container .ns-two-col-container {
    gap: 10mm;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (max-width: 991.98px) {
  .ns-two-col-container__text-left + * {
    margin-top: 10px;
  }
  .ns-two-col-container__text-left + .ns-anchor + * {
    margin-top: 10px;
  }
  .ns-two-col-container__text-left + .ns-pdf-header + * {
    margin-top: 10px;
  }
}

@media (min-width: 768px) {
  .ns-two-col-container__text-left {
    padding-right: 20px;
  }
}

.lc-graphic-svg-lottie-container .ns-two-col-container__text-left {
  padding: 0;
}

.lc-graphic-svg-lottie-container .ns-two-col-container__text-left + * {
  margin-top: 0px;
}

.lc-graphic-svg-lottie-container .ns-two-col-container__text-left + .ns-anchor + * {
  margin-top: 0px;
}

.lc-graphic-svg-lottie-container .ns-two-col-container__text-left + .ns-pdf-header + * {
  margin-top: 0px;
}

@media (min-width: 768px) {
  .ns-two-col-container__text-right {
    padding-left: 20px;
  }
  .lc-graphic-svg-lottie-container .ns-two-col-container__text-right {
    padding: 0;
    margin: 0;
  }
  .lc-graphic-svg-lottie-container .ns-two-col-container__text-right + * {
    margin-top: 0px;
  }
  .lc-graphic-svg-lottie-container .ns-two-col-container__text-right + .ns-anchor + * {
    margin-top: 0px;
  }
  .lc-graphic-svg-lottie-container .ns-two-col-container__text-right + .ns-pdf-header + * {
    margin-top: 0px;
  }
}

.lc-graphic-svg-lottie-container .ns-two-col-container__text {
  border-bottom: 1px solid #00519e;
}

@media print {
  .lc-graphic-svg-lottie-container .ns-two-col-container__text {
    margin-top: 0;
  }
}

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