@charset "UTF-8";
@keyframes shine {
  0% {
    transform: translateX(100%) rotate(var(--shine-deg));
  }
  100% {
    transform: translateX(-100%) rotate(var(--shine-deg));
  }
}
:root {
  --cui-bubbles-width: 300px;
  --cui-bubbles-border-width: 3px;
  --cui-bubbles-color-bg: #000;
  --cui-bubbles-color-text: #fff;
  --cui-bubbles-color-border: var(--cui-bubbles-color-text);
  --cui-bubbles-z-index: 100;
  --cui-bubbles-radius: 1rem;
  --cui-bubbles-padding-v: 1rem;
  --cui-bubbles-source-size: 1rem;
  --cui-bubbles-source-zoom-magic: 1.5;
  --cui-bubbles-source-zoom-magic-inverse: calc(-1 / var(--cui-bubbles-source-zoom-magic));
  --cui-bubbles-padding-h: 2rem;
  --cui-bubbles-padding-right: var(--cui-bubbles-padding-h);
  --cui-bubbles-close-size: 2rem;
  --cui-bubbles-animation-speed: 0.5s;
}

.bs {
  --cui-bubbles-color-border: #b50000;
  --cui-bubbles-padding-right: 0;
}

.cui-bubbles {
  background-color: var(--cui-bubbles-color-bg);
  border: solid var(--cui-bubbles-border-width) var(--cui-bubbles-color-border);
  border-radius: var(--cui-bubbles-radius);
  padding: var(--cui-bubbles-padding-v) var(--cui-bubbles-padding-h);
}

.cui-bubbles h4,
.cui-bubbles p,
.cui-bubbles a {
  color: var(--cui-bubbles-color-text) !important;
}

main .cui-bubbles h4 {
  padding: 0;
}

a.cui-bubbles-close {
  text-indent: -1000px;
  border-top-right-radius: var(--cui-bubbles-radius);
  border-bottom-left-radius: calc(0.5 * var(--cui-bubbles-radius));
  display: block;
  width: var(--cui-bubbles-close-size);
  height: var(--cui-bubbles-close-size);
  float: right;
  margin-top: calc(-1 * var(--cui-bubbles-padding-v));
  margin-right: calc(-1 * var(--cui-bubbles-padding-h));
  overflow: hidden;
  position: relative;
}

a.cui-bubbles-close:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

a.cui-bubbles-close:after {
  display: block;
  content: "x";
  position: absolute;
  width: 100%;
  top: 0;
  text-indent: 0;
  height: 100%;
  text-align: center;
  line-height: calc(var(--cui-bubbles-close-size) - 2px);
}

.cui-bubbless.bs-dynamic-content {
  overflow: visible;
}

@media screen and (min-width: 640px) {
  .cui-bubbless {
    position: fixed;
    right: var(--cui-bubbles-padding-right);
    z-index: var(--cui-bubbles-z-index);
    max-width: var(--cui-bubbles-width);
    bottom: 10vh;
  }
  .cui-bubbles {
    margin-top: var(--cui-bubbles-source-size);
    border-bottom-right-radius: 0;
    opacity: 0;
    transition-property: all;
    transition-duration: var(--cui-bubbles-animation-speed);
    transition-timing-function: ease-in;
    transform: scale(0.01);
    transform-origin: 100% 100%;
    position: relative;
  }
  .cui-bubbles:before,
  .cui-bubbles:after {
    display: block;
    content: "";
    border-bottom: 0 solid transparent;
    border-right: 0 solid var(--cui-bubbles-color-bg);
    position: absolute;
    bottom: calc(-1 * var(--cui-bubbles-source-size));
    right: 0;
    transition-property: border-width;
    transition-duration: var(--cui-bubbles-animation-speed);
    transition-timing-function: ease-in;
  }
  .cui-bubbles:before {
    border-right-color: var(--cui-bubbles-color-border);
    zoom: var(--cui-bubbles-source-zoom-magic);
    right: calc(var(--cui-bubbles-source-zoom-magic-inverse) * var(--cui-bubbles-border-width));
    z-index: -1;
  }
  .cui-bubbles.active {
    opacity: 1;
    transform: scale(1);
  }
  .cui-bubbles.closed {
    height: 0;
    margin-top: 0;
  }
  .cui-bubbles.active:before,
  .cui-bubbles.active:after {
    border-bottom-width: var(--cui-bubbles-source-size);
    border-right-width: var(--cui-bubbles-source-size);
  }
}
:root {
  --icfl-share-border-margin: 1px;
  --icfl-color-accent-one: black;
  --icfl-color-accent-two: silver;
  --icfl-color-accent-two-active: gray;
}

.icfl-filters {
  border: solid 1px var(--icfl-color-accent-one);
  overflow: visible;
  margin: 0 -6px;
  position: relative;
  width: calc(100% + 12px);
  z-index: 1;
}
.icfl-filters .icfl-filter {
  position: absolute;
}
.icfl-filters input[type=text] {
  outline-color: var(--icfl-color-accent-two);
  border: solid 1px var(--icfl-color-accent-two);
}

.icfl-filter-choice {
  position: relative;
}
.icfl-filter-choice ul {
  display: none;
  position: absolute;
  padding: 0;
  margin-top: calc(-6px + var(--icfl-share-border-margin));
  z-index: 1;
}
.icfl-filter-choice.open ul {
  display: block;
}
.icfl-filter-choice li {
  cursor: pointer;
  background-color: #fff;
  list-style: none;
  border: solid var(--icfl-share-border-margin) #b4b2b7;
  padding: 6px;
  margin: -var(--icfl-share-border-margin) 0 0 0;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.icfl-filter-choice li:hover, .icfl-filter-choice li:active, .icfl-filter-choice li:focus {
  background-color: var(--icfl-color-accent-two);
  color: #fff;
}
.icfl-filter-choice li.active {
  background-color: var(--icfl-color-accent-two-active);
  color: #fff;
}
.icfl-filter-choice li.active:hover, .icfl-filter-choice li.active:active {
  background-color: #cc334a;
}
.icfl-filter-choice li:first-of-type {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.icfl-filter-choice li:last-of-type {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.icfl-filter-choice span {
  outline-color: var(--icfl-color-accent-two);
  background-color: #fff;
  padding: 6px;
  margin: 6px;
  display: block;
  border: solid 1px var(--icfl-color-accent-two);
  cursor: pointer;
  z-index: 0;
  height: 38px;
  overflow: hidden;
}
.icfl-filter-choice span:before {
  display: block;
  content: " ";
  width: 36px;
  height: 36px;
  position: absolute;
  background-color: var(--icfl-color-accent-two);
  top: 7px;
  right: 7px;
  z-index: 1;
}
.icfl-filter-choice span:after {
  z-index: 1;
  display: block;
  content: " ";
  width: 0;
  height: 0;
  position: absolute;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 12px solid #fff;
  bottom: 18px;
  right: 18px;
  transition: all 0.25s ease-in-out;
}
.icfl-filter-choice.open span:after {
  transform: rotateZ(180deg);
  bottom: 20px;
}

.icfl-items .icfl-item-container:not(.active) {
  display: none;
}

div.icfl-items {
  position: relative;
  overflow: hidden;
}
div.icfl-items .icfl-item-container {
  transform: translate(-100%);
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  position: absolute;
  border: solid 1px transparent;
  width: 100%;
}
div.icfl-items .icfl-item-container.active {
  opacity: 1;
  transform: translate(0);
}
@media screen and (max-width: 640px) {
  div.icfl-items .icfl-item-container {
    border-top-color: var(--icfl-color-accent-two);
  }
}
div.icfl-items .icfl-item-container:hover {
  border-color: var(--icfl-color-accent-two);
}

.icfl-filter-search input {
  width: calc(100% - 12px);
  margin: 6px;
  padding: 6px;
  line-height: 24px;
  border: solid 1px #6a6670;
}

.icfl-counter {
  line-height: 2.5rem;
}

table.icfl-content {
  width: 100%;
}

.ncui-cover-video-container {
  position: absolute;
  width: 100%;
  overflow: hidden;
}

.ncui-ribbon {
  position: relative;
}

.display-mode .ncui-ribbon {
  visibility: hidden;
}

.ncui-ribbon,
.ncui-ribbon .ncui-ribbon-canvas:before {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.ncui-ribbon-canvas:before {
  opacity: 0.7;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  content: " ";
}

@media screen and (min-width: 640px) {
  .col-xs-1.col-md-5ths,
  .col-xs-2.col-md-5ths,
  .col-xs-3.col-md-5ths,
  .col-xs-4.col-md-5ths,
  .col-xs-5.col-md-5ths,
  .col-xs-6.col-md-5ths,
  .col-xs-7.col-md-5ths,
  .col-xs-8.col-md-5ths,
  .col-xs-9.col-md-5ths,
  .col-xs-10.col-md-5ths,
  .col-xs-11.col-md-5ths,
  .col-xs-12.col-md-5ths,
  .col-sm-1.col-md-5ths,
  .col-sm-2.col-md-5ths,
  .col-sm-3.col-md-5ths,
  .col-sm-4.col-md-5ths,
  .col-sm-5.col-md-5ths,
  .col-sm-6.col-md-5ths,
  .col-sm-7.col-md-5ths,
  .col-sm-8.col-md-5ths,
  .col-sm-9.col-md-5ths,
  .col-sm-10.col-md-5ths,
  .col-sm-11.col-md-5ths,
  .col-sm-12.col-md-5ths {
    width: 20%;
  }
}
:root {
  --main-menu-height: 150px;
}

div[id],
a[id] {
  scroll-margin-top: var(--main-menu-height);
}

main .no-link-undeline-at-all a, main .no-link-undeline-at-all a:link, main .no-link-undeline-at-all a:visited, main .no-link-undeline-at-all a:hover, main .no-link-undeline-at-all a:active, main .no-link-undeline-at-all a:focus,
main .nrc-brightness-light .no-link-undeline-at-all a,
main .nrc-brightness-light .no-link-undeline-at-all a:link,
main .nrc-brightness-light .no-link-undeline-at-all a:visited,
main .nrc-brightness-light .no-link-undeline-at-all a:hover,
main .nrc-brightness-light .no-link-undeline-at-all a:active,
main .nrc-brightness-light .no-link-undeline-at-all a:focus,
main .nrc-brightness-dark .nrc-brightness-light .no-link-undeline-at-all a,
main .nrc-brightness-dark .nrc-brightness-light .no-link-undeline-at-all a:link,
main .nrc-brightness-dark .nrc-brightness-light .no-link-undeline-at-all a:visited,
main .nrc-brightness-dark .nrc-brightness-light .no-link-undeline-at-all a:hover,
main .nrc-brightness-dark .nrc-brightness-light .no-link-undeline-at-all a:active,
main .nrc-brightness-dark .nrc-brightness-light .no-link-undeline-at-all a:focus {
  text-decoration: none;
}

.align-to-bottom {
  display: table-cell;
  vertical-align: bottom;
}

.ncui-carouselette-wrapper {
  position: relative;
}

.ncui-carouselette-arrow {
  border: solid #ed8b00;
  border-width: 0 6px 6px 0;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  transition: all 0.5s ease;
}
.ncui-carouselette-arrow:hover {
  border-color: #005776;
}
.ncui-carouselette-arrow.ncui-next {
  right: -12px;
  transform: translate(100%, -50%) rotate(-45deg);
}
.ncui-carouselette-arrow.ncui-previous {
  left: -12px;
  transform: translate(-100%, -50%) rotate(135deg);
  z-index: 1;
}
@media only screen and (max-width: 1350px) {
  .ncui-carouselette-arrow {
    width: 40px;
    height: 40px;
  }
  .ncui-carouselette-arrow.ncui-next {
    right: -24px;
    transform: translate(0) rotate(-45deg);
  }
  .ncui-carouselette-arrow.ncui-previous {
    left: -24px;
    transform: translate(0) rotate(135deg);
  }
}
@media only screen and (max-width: 1275px) {
  .ncui-carouselette-arrow {
    width: 34px;
    height: 34px;
    top: -12px;
  }
  .ncui-carouselette-arrow.ncui-next {
    right: 24px;
    transform: translate(0, -100%) rotate(-45deg);
  }
  .ncui-carouselette-arrow.ncui-previous {
    left: 24px;
    transform: translate(0, -100%) rotate(135deg);
  }
}
@media only screen and (max-width: 640px) {
  .ncui-carouselette-arrow.ncui-next {
    transform: translate(0, 100%) rotate(-45deg);
  }
  .ncui-carouselette-arrow.ncui-previous {
    transform: translate(0, 100%) rotate(135deg);
  }
}

.ncui-carouselette {
  opacity: 1;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  position: relative;
}
.ncui-carouselette.ncui-carouselette-initializing {
  opacity: 0;
}

.ncui-carouselette-item {
  padding: 0 6px;
  position: absolute;
  width: 33.33333%;
  left: 101%;
  transition: all 0.5s ease;
}
.ncui-carouselette-item:nth-child(1) {
  left: -33.33333%;
}
.ncui-carouselette-item:nth-child(2) {
  width: 66.66666%;
  left: 0;
}
.ncui-carouselette-item:nth-child(3) {
  left: 66.66666%;
}

.cui-wp-ms-carouselette-full .ncui-carouselette-item {
  width: 100%;
}
.cui-wp-ms-carouselette-full .ncui-carouselette-item:nth-child(1) {
  left: -101%;
}
.cui-wp-ms-carouselette-full .ncui-carouselette-item:nth-child(2) {
  width: 100%;
  left: 0;
}
.cui-wp-ms-carouselette-full .ncui-carouselette-item:nth-child(3) {
  width: 100%;
  left: 101%;
}

@media only screen and (max-width: 992px) {
  .ncui-carouselette-item {
    width: 50%;
  }
  .ncui-carouselette-item:nth-child(1) {
    left: -51%;
  }
  .ncui-carouselette-item:nth-child(2) {
    width: 50%;
    left: 0;
  }
  .ncui-carouselette-item:nth-child(3) {
    width: 50%;
    left: 50%;
  }
}
@media only screen and (max-width: 640px) {
  .ncui-carouselette-item {
    width: 100%;
  }
  .ncui-carouselette-item:nth-child(1) {
    left: -101%;
  }
  .ncui-carouselette-item:nth-child(2) {
    width: 100%;
    left: 0;
  }
  .ncui-carouselette-item:nth-child(3) {
    width: 100%;
    left: 101%;
  }
}
body {
  position: relative;
}
body.lightbox-overlayed #LightBoxOverLay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.5s;
  background-color: var(--color-lightbox-background-inactive);
  z-index: 10;
}
body.lightbox-overlayed.fade-in #LightBoxOverLay {
  background-color: var(--color-lightbox-background-active);
}
body.lightbox-overlayed.fade-in #LightBoxContainer {
  opacity: 1;
}
body.lightbox-overlayed .lightbox-content {
  width: 95vw;
  min-width: 80%;
  max-width: 95vw;
  background-color: var(--color-message-error-background);
  border: solid 1px var(--color-message-error-border);
  margin: 12px auto;
  padding: 12px;
  transition: all 0.5s;
  opacity: 0;
  transform: scaleY(0.75);
}
body.lightbox-overlayed .lightbox-content:focus {
  outline: none;
}
@media (min-width: 768px) {
  body.lightbox-overlayed .lightbox-content {
    min-width: 756px;
    max-width: 900px;
    padding: 36px;
  }
}
@media (min-width: 992px) {
  body.lightbox-overlayed .lightbox-content {
    padding: 48px;
  }
}
body.lightbox-overlayed .lightbox-content.fade-in {
  opacity: 1;
  transform: scaleY(1);
}
body.lightbox-overlayed .lightbox-content.fade-out {
  opacity: 0;
  transform: scaleY(0.5);
}
body.lightbox-overlayed .lightbox-error {
  border-color: var(--color-message-error-border);
  border-width: 2px;
}
body.lightbox-overlayed .lightbox-error h3.mpa-wp-subheader {
  color: var(--color-message-error-text);
}
body.lightbox-overlayed .lightbox-warning {
  border-color: var(--color-message-error-border);
}

#LightBoxContainer.wrapper {
  position: fixed;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: all 0.5s;
  opacity: 0;
  background: transparent;
  max-height: 100vh;
  width: 100%;
  overflow-y: auto;
}
#LightBoxContainer.wrapper .mpa-wp-controls {
  position: absolute;
  top: 12px;
  right: 12px;
  border: none;
}
#LightBoxContainer.wrapper .mpa-wp-subheader {
  text-transform: none;
  font-size: 3rem;
}
#LightBoxContainer.wrapper a, #LightBoxContainer.wrapper a:link, #LightBoxContainer.wrapper a:visited, #LightBoxContainer.wrapper a:hover, #LightBoxContainer.wrapper a:active, #LightBoxContainer.wrapper a:focus {
  color: var(--color-message-error-border);
  font-weight: bold;
}
#LightBoxContainer.wrapper H1.netsprefix-Element-H1FPAlt {
  color: var(--color-message-error-text);
  font-size: 2.8rem !important;
}
#LightBoxContainer.wrapper input[type=button].mpa-button {
  border: none;
  max-width: 24px;
  width: 24px;
  min-width: 24px;
}

.newsticker-container {
  border: solid 2px red;
}

.newsticker-link {
  border: solid 2px blue;
}

.newsticker-header {
  border: solid 2px orange;
}

.newsticker-body {
  border: solid 2px purple;
}

.newsticker-ribbon {
  border: solid 2px black;
}

.wrapper .cui-wp-effects-reveal {
  transition: transform 150ms ease;
  overflow: hidden;
}
.wrapper .cui-wp-effects-reveal .cui-wp-effects-reveal-content {
  background-color: rgba(0, 0, 0, 0.5);
}
.wrapper .cui-wp-effects-reveal .cui-wp-effects-reveal-movable {
  transform: translateY(100%);
  transition: transform 500ms ease;
}
.wrapper .cui-wp-effects-reveal .cui-wp-effects-reveal-content {
  padding-bottom: 12px;
}
.wrapper .cui-wp-effects-reveal .cui-wp-ms-link-rich .cui-wp-effects-reveal-content {
  padding-bottom: 0;
}
.wrapper .cui-wp-effects-reveal .cui-wp-effects-reveal-content > * {
  padding: 12px;
  padding-top: 0;
}
.wrapper .cui-wp-effects-reveal .cui-wp-effects-reveal-content > .cui-wp-effects-reveal-title {
  padding-top: 12px;
}
.wrapper .cui-wp-effects-reveal:hover .cui-wp-effects-reveal-movable {
  transform: translateY(0);
}

body.display-mode.ncui-scroll-activation .ribbon.inline,
body.display-mode.ncui-scroll-activation .ribbon.inline .ms-WPBody,
body.display-mode .ncui-scroll-activated {
  transition: all 0.5s ease-in-out;
  transform: translateY(50px);
  opacity: 0.1;
}
body.display-mode.ncui-scroll-activation .ribbon.inline.ncui-activated,
body.display-mode.ncui-scroll-activation .ribbon.inline .ms-WPBody.ncui-activated,
body.display-mode .ncui-scroll-activated.ncui-activated {
  transform: translateY(0);
  opacity: 1;
}

body.display-mode.ncui-scroll-activation .ribbon.inline .ms-WPBody,
body.display-mode.ncui-scroll-activation .ms-WPBody img,
body.display-mode img.ncui-scroll-activated {
  transform: scale(0.8);
  opacity: 0.75;
  transition: all 0.5s ease-in-out;
}
body.display-mode.ncui-scroll-activation .ribbon.inline .ms-WPBody.ncui-activated,
body.display-mode.ncui-scroll-activation .ms-WPBody img.ncui-activated,
body.display-mode img.ncui-scroll-activated.ncui-activated {
  transform: scale(1);
  opacity: 1;
}

.ms-rtestate-field > table {
  display: block;
  max-width: 100%;
  overflow-x: auto;
}

[cellspacing].ncui-scroll-activated-horizontal-jiggle tbody {
  display: block;
  position: relative;
}
[cellspacing].ncui-scroll-activated-horizontal-jiggle tbody:after {
  width: 100%;
  height: 100%;
  background-color: transparent;
  background-position: right 50vw top 1vw;
  background-size: 120px;
  background-repeat: no-repeat;
  background-image: url("/SiteCollectionImages/Icons/mc_icon_Hand-Touch_table.png");
  position: absolute;
  display: block;
  content: "";
  top: 0;
  left: 0;
  transition: all 0.5s ease;
}
[cellspacing].ncui-scroll-activated-horizontal-jiggle.ncui-scroll-activated-horizontal-jiggle-active tbody:after {
  background-position: left 50vw top 1vw;
}

.ncui-input-autocomplete-items {
  position: absolute;
  border: none;
  z-index: 99;
  top: 100%;
  margin: 0 10px;
  left: 0;
  right: 0;
  overflow-y: auto;
}
.ncui-input-autocomplete-items div {
  padding: 10px;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #6e9fbc;
  border-top: none;
}
.ncui-input-autocomplete-items div:hover {
  background-color: #03a7d9;
}

.ncui-input-autocomplete-active {
  background-color: #0280a7 !important;
  color: #fff;
}

.ncui-accordion {
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  margin-bottom: 18px;
}

.ncui-accordion-item {
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}

.ncui-accordion-open {
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}
.ncui-accordion-open .ncui-accordion-title a:after {
  content: "\21d1";
}

.ncui-accordion-title {
  border-top: 2px solid rgba(0, 0, 0, 0.2);
  margin-top: -2px;
}
.ncui-accordion-title a {
  text-decoration: none;
  display: block;
  padding: 4px 36px 4px 4px;
  word-wrap: break-word;
  position: relative;
}
.ncui-accordion-title a:after {
  content: "\21d3";
  transform: scale(1.5);
  display: block;
  position: absolute;
  text-align: right;
  right: 4px;
  bottom: 4px;
}
.ncui-accordion-title a:hover, .ncui-accordion-title a:active {
  background-color: rgba(0, 0, 0, 0.1);
}

.ncui-accordion-content {
  padding: 4px 8px 12px 4px;
}

.ncui-carousel-prepended section {
  display: none;
}

.ncui-carousel {
  opacity: 1;
  overflow: hidden;
  transition: opacity 0.5s ease-in-out;
  position: relative;
}
.ncui-carousel.ncui-carousel-initializing {
  opacity: 0;
}

.ncui-carousel-item {
  background-position: center center;
  background-size: cover;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 100%;
}

.ncui-carousel-transition-slide_from_right .ncui-carousel-item {
  transform: translateX(100%);
}
.ncui-carousel-transition-slide_from_right .ncui-carousel-item:nth-child(1) {
  transform: translateX(-100%);
}

.ncui-carousel-transition-slide_from_left .ncui-carousel-item {
  transform: translateX(-100%);
}
.ncui-carousel-transition-slide_from_left .ncui-carousel-item:nth-child(1) {
  transform: translateX(100%);
}

.ncui-carousel-transition-slide_from_right .ncui-carousel-item,
.ncui-carousel-transition-slide_from_left .ncui-carousel-item {
  transition: transform 0.5s ease;
}
.ncui-carousel-transition-slide_from_right .ncui-carousel-item:nth-child(2),
.ncui-carousel-transition-slide_from_left .ncui-carousel-item:nth-child(2) {
  transform: translateX(0);
}

.ncui-carousel-transition-fade_between .ncui-carousel-item {
  transition: opacity 0.5s ease;
  transform: translateX(-101%);
  opacity: 0.3;
}
.ncui-carousel-transition-fade_between .ncui-carousel-item:nth-child(2) {
  opacity: 1;
  transform: translateX(0);
}
.ncui-carousel-transition-fade_between .ncui-carousel-item:nth-child(1) {
  transform: translateX(0);
}

.ncui-carousel-controls-wrapper {
  text-align: center;
}

.ncui-carousel-controls,
.ncui-carousel-dots {
  display: inline-block;
}

.ncui-carousel-left,
.ncui-carousel-right {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin: 0 6px;
}

.ncui-carousel-dot {
  transition: border 0.25s ease, background-color 0.25s ease;
  width: 14px;
  height: 14px;
  display: inline-block;
  margin: 6px 6px 0 6px;
  border: solid 0.5px #a0a0a0;
  border-radius: 14px;
  background-color: #c0c0c0;
  background-image: linear-gradient(140deg, #f0f0f0, #c0c0c0, #a0a0a0);
}
.ncui-carousel-dot.ncui-active {
  background-color: #0094ff;
  border-color: #7fc9ff;
  background-image: linear-gradient(140deg, #e0f2ff, #7fc9ff, #0094ff);
  cursor: default;
}

.ncui-carousel-left,
.ncui-carousel-right {
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.ncui-carousel-left {
  border-right: 10px solid #574fff;
}

.ncui-carousel-right {
  border-left: 10px solid #574fff;
}

@media only screen and (max-width: 992px) {
  .ncui-carousel-dot {
    width: 32px;
    height: 32px;
    border-radius: 32px;
  }
  .ncui-carousel-left,
  .ncui-carousel-right {
    border-top-width: 16px;
    border-bottom-width: 16px;
  }
  .ncui-carousel-left {
    border-right-width: 16px;
  }
  .ncui-carousel-right {
    border-left-width: 16px;
  }
}
@media only screen and (max-width: 640px) {
  .ncui-carousel-dot {
    width: 40px;
    height: 40px;
    border-radius: 40px;
  }
  .ncui-carousel-left,
  .ncui-carousel-right {
    border-top-width: 20px;
    border-bottom-width: 20px;
  }
  .ncui-carousel-left {
    border-right-width: 20px;
  }
  .ncui-carousel-right {
    border-left-width: 20px;
  }
}
.nsd-list-presentation-link {
  fill: none;
  position: relative;
  float: right;
  transform: translate(12px, -12px);
  border: 1px solid maroon;
  padding: 8px 12px;
  border-radius: 9px;
  opacity: 0.2;
  transition: opacity 250ms ease-in-out;
  overflow: hidden;
}
.nsd-list-presentation-link::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
  z-index: -1;
  background-color: rgba(163, 0, 0, 0.25);
  background-image: url('data:image/svg+xml,<svg height="30" width="50" xmlns="http://www.w3.org/2000/svg"><text x="12" y="20" fill="%23A30000">adm</text></svg>');
  background-position: center center;
  transform: rotate(-45deg);
  top: -400%;
  left: -100%;
  right: -100%;
  bottom: -400%;
}
.nsd-list-presentation-link:hover, .nsd-list-presentation-link:active, .nsd-list-presentation-link:focus, .nsd-list-presentation-link:focus-visible {
  opacity: 1;
}
.nsd-list-presentation-link a + a {
  margin-left: 4px;
}

.nsd-webpart .nsd-list-presentation-link {
  opacity: 0;
}
.nsd-webpart:hover .nsd-list-presentation-link {
  opacity: 0.2;
}

.nsd-list-presentation-link:hover, .nsd-list-presentation-link:active, .nsd-list-presentation-link:focus, .nsd-list-presentation-link:focus-visible,
.nsd-webpart .nsd-list-presentation-link:hover,
.nsd-webpart .nsd-list-presentation-link:active,
.nsd-webpart .nsd-list-presentation-link:focus,
.nsd-webpart .nsd-list-presentation-link:focus-visible,
.nsd-webpart:hover .nsd-list-presentation-link:hover,
.nsd-webpart:hover .nsd-list-presentation-link:active,
.nsd-webpart:hover .nsd-list-presentation-link:focus,
.nsd-webpart:hover .nsd-list-presentation-link:focus-visible {
  opacity: 1;
}

.nsd-icon-gear,
.nsd-icon-list {
  border-radius: 32px;
  width: 32px;
  height: 32px;
  display: inline-block;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.nsd-icon-list {
  background-image: url("/_layouts/15/Images/GENERIC.GIF");
}

.nsd-icon-gear {
  background-image: url("/_layouts/15/Images/SETTINGS.GIF");
}

.nsd-webforms-control-auth-button,
.nsd-webforms-controls button.nsd-webforms-control-auth-button,
.nsd-webforms-notify-auth-form {
  background-image: url("/style library/nets/common.ui/images/icon-link-auth.svg");
  background-repeat: no-repeat;
  background-size: auto 24px;
  min-height: 18px;
  padding-right: 48px;
}
.nsd-webforms-control-auth-button.light,
.nsd-webforms-controls button.nsd-webforms-control-auth-button.light,
.nsd-webforms-notify-auth-form.light {
  background-image: url("/style library/nets/common.ui/images/icon-link-auth-light.svg");
}
.nsd-webforms-control-auth-button.dark,
.nsd-webforms-controls button.nsd-webforms-control-auth-button.dark,
.nsd-webforms-notify-auth-form.dark {
  background-image: url("/style library/nets/common.ui/images/icon-link-auth-dark.svg");
}

.nsd-webforms-control-auth-button:disabled,
a.nsd-webforms-notify-auth-form:disabled {
  background-image: url("/style library/nets/common.ui/images/icon-link-auth-disabled.svg");
}
.nsd-webforms-control-auth-button:hover,
a.nsd-webforms-notify-auth-form:hover {
  background-image: url("/style library/nets/common.ui/images/icon-link-auth-hover.svg");
}
.nsd-webforms-control-auth-button.light:disabled,
a.nsd-webforms-notify-auth-form.light:disabled {
  background-image: url("/style library/nets/common.ui/images/icon-link-auth-light-disabled.svg");
}
.nsd-webforms-control-auth-button.light:hover,
a.nsd-webforms-notify-auth-form.light:hover {
  background-image: url("/style library/nets/common.ui/images/icon-link-auth-light-hover.svg");
}
.nsd-webforms-control-auth-button.dark:disabled,
a.nsd-webforms-notify-auth-form.dark:disabled {
  background-image: url("/style library/nets/common.ui/images/icon-link-auth-dark-disabled.svg");
}
.nsd-webforms-control-auth-button.dark:hover,
a.nsd-webforms-notify-auth-form.dark:hover {
  background-image: url("/style library/nets/common.ui/images/icon-link-auth-dark-hover.svg");
}

.nsd-webforms-control-auth-button {
  background-position: center right 18px;
}

.nsd-webforms-notify-auth-form {
  background-position: center right;
}

.nsd-webforms .form-title {
  font-size: 36px;
  font-weight: 500;
  line-height: 36px;
  margin-bottom: 12px;
}
.nsd-webforms .nsd-webforms-label {
  font-size: 24px;
  font-weight: 500;
  line-height: 24px;
  margin-bottom: 12px;
}

.nsd-webforms-field {
  margin: 9px 0;
}
.nsd-webforms-field label {
  font-weight: normal;
  word-break: break-word;
}
.nsd-webforms-field > label {
  display: block;
  padding: 0;
  margin-top: 9px;
  font-weight: bold;
}
.nsd-webforms-field .single-required label {
  font-weight: bold;
}
.nsd-webforms-field.required > label:after {
  color: #ed8b00;
  content: "*";
  display: inline-block;
  margin-left: 4.0008px;
}

.single-required > label:after {
  color: #ed8b00;
  content: "*";
  display: inline-block;
  margin-left: 4.0008px;
}

.nsd-webforms-field-multichoice input[type=checkbox],
.nsd-webforms-field-choice input[type=radio] {
  margin-top: -6px;
  margin-right: 6px;
}

.nsd-webforms-preview {
  opacity: 0.5;
}

.nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=text], .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=date], .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=datetime], .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=datetime-local], .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=number], .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=tel], .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=email], .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=password] {
  margin: 0;
  padding: 9px;
  border: solid 1px silver;
}
.nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input::placeholder, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input:-ms-input-placeholder, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input::-ms-input-placeholder {
  color: red;
}
.nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field select,
.nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field textarea {
  margin: 0;
  padding: 9px;
  border: solid 1px silver;
}
.nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field select {
  padding: 8px;
}
.nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=text], .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=number], .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=date], .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=datetime], .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=datetime-local], .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=tel], .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=email], .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=password] {
  width: 100%;
}
.nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field select,
.nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field textarea {
  width: 100%;
}
.nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=text].validation-failure, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=date].validation-failure, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=datetime].validation-failure, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=datetime-local].validation-failure, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=number].validation-failure, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=tel].validation-failure, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=email].validation-failure, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=password].validation-failure {
  border-color: #b62200;
  color: #b62200;
}
.nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field select.validation-failure,
.nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field textarea.validation-failure {
  border-color: #b62200;
  color: #b62200;
}
.nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=text]:disabled, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=date]:disabled, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=datetime]:disabled, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=datetime-local]:disabled, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=number]:disabled, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=tel]:disabled, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=email]:disabled, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=password]:disabled {
  background-color: #d8d8d8;
  opacity: 0.5;
}
.nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field select:disabled {
  background-color: #d8d8d8;
  opacity: 0.5;
}
.nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field textarea {
  resize: none;
}
.nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field textarea:disabled {
  background-color: #d8d8d8;
  opacity: 0.5;
}
.nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=number] {
  -moz-appearance: textfield;
}
.nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=number]::-webkit-inner-spin-button, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.nsd-webforms-field-choice-radiobuttons > label {
  display: block;
}

.nsd-webforms-group label {
  display: none;
}

.nsd-webforms-filetable {
  display: table;
  width: 100%;
  table-layout: fixed;
}
.nsd-webforms-filetable .nsd-webforms-removablefile,
.nsd-webforms-filetable .nsd-webforms-singlefile {
  display: table-row;
}
.nsd-webforms-filetable .invalid-message {
  display: block;
  margin-bottom: 12px;
}
.nsd-webforms-filetable .nsd-webforms-filetable-button {
  display: table-cell;
  width: 96px;
  padding: 0;
}
.nsd-webforms-filetable button {
  width: 100%;
  height: 100%;
  margin-top: -4.0008px;
  line-height: 28px;
  padding: 0;
  vertical-align: top;
}
.nsd-webforms-filetable span {
  display: table-cell;
  width: 100%;
}
.nsd-webforms-filetable input {
  width: 100%;
}
.nsd-webforms-filetable input[type=file] {
  width: 100%;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nsd-webforms-filetable button {
    margin-top: -13px;
  }
}
.nsd-webforms-field-choice-radiobuttons > label {
  display: block;
}
.nsd-webforms-field-choice-radiobuttons > div {
  float: left;
  margin-right: 24px;
  margin-bottom: 24px;
}

.nsd-webforms-field {
  position: relative;
}
.nsd-webforms-field input {
  padding-top: 2px;
  margin-top: 0;
}
.nsd-webforms-field input[type=text], .nsd-webforms-field input[type=date], .nsd-webforms-field input[type=datetime], .nsd-webforms-field input[type=datetime-local], .nsd-webforms-field input[type=number], .nsd-webforms-field input[type=tel], .nsd-webforms-field input[type=email], .nsd-webforms-field input[type=password] {
  outline: 0;
  color: black;
  border-color: silver;
}
.nsd-webforms-field select,
.nsd-webforms-field textarea {
  outline: 0;
  color: black;
  border-color: silver;
}
.nsd-webforms-field input[type=text]:focus, .nsd-webforms-field input[type=date]:focus, .nsd-webforms-field input[type=datetime]:focus, .nsd-webforms-field input[type=datetime-local]:focus, .nsd-webforms-field input[type=password]:focus, .nsd-webforms-field input[type=number]:focus, .nsd-webforms-field input[type=tel]:focus, .nsd-webforms-field input[type=email]:focus {
  outline: 0;
  color: black;
  border-color: silver;
}
.nsd-webforms-field select:focus,
.nsd-webforms-field textarea:focus {
  outline: 0;
  color: black;
  border-color: silver;
}
.nsd-webforms-field input[type=text].validation-failure, .nsd-webforms-field input[type=date].validation-failure, .nsd-webforms-field input[type=datetime].validation-failure, .nsd-webforms-field input[type=datetime-local].validation-failure, .nsd-webforms-field input[type=number].validation-failure, .nsd-webforms-field input[type=tel].validation-failure, .nsd-webforms-field input[type=email].validation-failure, .nsd-webforms-field input[type=password].validation-failure {
  border-bottom-color: #b62200;
  color: #b62200;
}
.nsd-webforms-field select.validation-failure,
.nsd-webforms-field textarea.validation-failure {
  border-bottom-color: #b62200;
  color: #b62200;
}
.nsd-webforms-field input[type=text]:focus.validation-failure, .nsd-webforms-field input[type=date]:focus.validation-failure, .nsd-webforms-field input[type=datetime]:focus.validation-failure, .nsd-webforms-field input[type=datetime-local]:focus.validation-failure, .nsd-webforms-field input[type=password]:focus.validation-failure, .nsd-webforms-field input[type=number]:focus.validation-failure, .nsd-webforms-field input[type=tel]:focus.validation-failure, .nsd-webforms-field input[type=email]:focus.validation-failure {
  border-bottom-color: #b62200;
  color: #b62200;
}
.nsd-webforms-field select:focus.validation-failure,
.nsd-webforms-field textarea:focus.validation-failure {
  border-bottom-color: #b62200;
  color: #b62200;
}
.nsd-webforms-field input[type=text]:disabled, .nsd-webforms-field input[type=date]:disabled, .nsd-webforms-field input[type=datetime]:disabled, .nsd-webforms-field input[type=datetime-local]:disabled, .nsd-webforms-field input[type=number]:disabled, .nsd-webforms-field input[type=tel]:disabled, .nsd-webforms-field input[type=email]:disabled, .nsd-webforms-field input[type=password]:disabled {
  background-color: #d8d8d8;
  opacity: 0.5;
}
.nsd-webforms-field select:disabled,
.nsd-webforms-field textarea:disabled {
  background-color: #d8d8d8;
  opacity: 0.5;
}
.nsd-webforms-field input[type=text]:focus:disabled, .nsd-webforms-field input[type=date]:focus:disabled, .nsd-webforms-field input[type=datetime]:focus:disabled, .nsd-webforms-field input[type=datetime-local]:focus:disabled, .nsd-webforms-field input[type=password]:focus:disabled, .nsd-webforms-field input[type=number]:focus:disabled, .nsd-webforms-field input[type=tel]:focus:disabled, .nsd-webforms-field input[type=email]:focus:disabled {
  background-color: #d8d8d8;
  opacity: 0.5;
}
.nsd-webforms-field select:focus:disabled {
  background-color: #d8d8d8;
  opacity: 0.5;
}
.nsd-webforms-field textarea {
  height: 144px;
  resize: none;
}
.nsd-webforms-field textarea:focus:disabled {
  background-color: #d8d8d8;
  opacity: 0.5;
}
.nsd-webforms-field input[type=number] {
  -moz-appearance: textfield;
}
.nsd-webforms-field input[type=number]::-webkit-inner-spin-button, .nsd-webforms-field input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field select {
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none;
  background-image: url(../Images/ArrowDown_black_48.png);
  background-position: center right;
  background-repeat: no-repeat;
  outline: none;
  padding-right: 40px;
}

.nsd-webforms-field select::-ms-expand {
  display: none;
}
.nsd-webforms-field .invalid-message {
  min-width: fit-content;
  border: solid 1px #b62200;
  color: #b62200;
  background-color: rgba(221, 34, 0, 0.1);
  padding: 12px;
}

.nsd-webform-error-message {
  border: solid 1px #b70600;
  color: #b70600;
  background-color: rgba(221, 34, 0, 0.1);
  padding: 12px;
}

.nsd-webform-warning-message {
  border: solid 1px #ffd149;
  color: #a07a10;
  background-color: #f2e7b8;
  padding: 12px;
}

.nsd-webform-notification-message,
.nsd-webform-notification-static-message {
  border: solid 1px #ffd149;
  color: #a07a10;
  background-color: #f2e7b8;
  padding: 12px;
  background-position: center right 12px;
}

.nsd-webforms-field.nsd-webforms-field-choice-radiobuttons > div > label {
  font-weight: normal;
}

.nsd-webforms-controls {
  margin-top: 16px;
}

.wrapper .nsd-webforms .nsd-webforms-field input.placeholder,
.wrapper .nsd-webforms .nsd-webforms-field textarea.placeholder,
.wrapper .nsd-webforms .nsd-webforms-field select.placeholder,
.wrapper .nsd-webforms .nsd-webforms-field input::-webkit-input-placeholder,
.wrapper .nsd-webforms .nsd-webforms-field textarea::-webkit-input-placeholder,
.wrapper .nsd-webforms .nsd-webforms-field select::-webkit-input-placeholder,
.wrapper .nsd-webforms .nsd-webforms-field input:-moz-placeholder,
.wrapper .nsd-webforms .nsd-webforms-field textarea:-moz-placeholder,
.wrapper .nsd-webforms .nsd-webforms-field select:-moz-placeholder,
.wrapper .nsd-webforms .nsd-webforms-field input:-ms-input-placeholder,
.wrapper .nsd-webforms .nsd-webforms-field textarea:-ms-input-placeholder,
.wrapper .nsd-webforms .nsd-webforms-field select:-ms-input-placeholder,
.wrapper .nsd-webforms .nsd-webforms-field input::-ms-input-placeholder,
.wrapper .nsd-webforms .nsd-webforms-field textarea::-ms-input-placeholder,
.wrapper .nsd-webforms .nsd-webforms-field select::-ms-input-placeholder,
.wrapper .nsd-webforms .nsd-webforms-field input::placeholder,
.wrapper .nsd-webforms .nsd-webforms-field textarea::placeholder,
.wrapper .nsd-webforms .nsd-webforms-field select::placeholder {
  color: silver;
}

.nsd-webforms-message {
  display: none;
  margin-top: 24px;
}

.nsd-webforms-warning {
  border: solid 1px #b62200;
  color: #b62200;
  background-color: rgba(221, 34, 0, 0.1);
  padding: 12px;
  margin: 24px 0;
}

.nsd-webforms-error {
  border: solid 1px #b70600;
  color: #b70600;
  background-color: rgba(221, 34, 0, 0.1);
  padding: 12px;
  margin: 24px 0;
}

.nsd-webforms-notice {
  border: solid 1px #ffd149;
  color: #b62200;
  background-color: #f2e7b8;
  padding: 12px;
  margin: 24px 0;
}

.nsd-webforms-error {
  border: solid 1px #b62200;
  color: #b62200;
  background-color: rgba(221, 34, 0, 0.1);
  padding: 12px;
  margin: 24px 0;
}

.nsd-brightness-light .form-title,
.nsd-brightness-light .form-description,
.nsd-brightness-light .nsd-webforms-field > label,
.nsd-brightness-light .nsd-webforms-message {
  color: #fff;
}

.nsd-webforms-field-description {
  margin-bottom: 12px;
}

.nsd-webforms-field-select-horizontal {
  display: flex;
  flex-wrap: wrap;
}
.nsd-webforms-field-select-horizontal .nsd-webforms-field-select-option {
  margin: 0 36px 12px 0;
}

.nsd-webforms-field-select-option {
  margin: 2px 0;
}
.nsd-webforms-field-select-option > label {
  display: block;
  padding-left: 24px;
}
.nsd-webforms-field-select-option > label > input {
  margin-left: -24px;
}

@media only screen and (max-width: 640px) {
  .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input.nsd-webforms-field-date {
    border-radius: 4px;
  }
  .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input.nsd-webforms-field-date.validation-failure {
    border-bottom-left-radius: 0;
  }
  .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=email], .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=number], .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=password], .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=tel], .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=file], .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=text], .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field inputselect, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field inputtextarea {
    border-radius: 4px;
  }
  .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=email].validation-failure, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=number].validation-failure, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=password].validation-failure, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=tel].validation-failure, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=file].validation-failure, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field input[type=text].validation-failure, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field inputselect.validation-failure, .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field inputtextarea.validation-failure {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }
  .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field .invalid-message {
    border-radius: 4px;
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
  }
  .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field.nsd-webforms-field-datetime .invalid-message {
    border-radius: 4px;
    border-top-left-radius: 0;
  }
  .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field.nsd-webforms-field-choice .invalid-message {
    margin-top: 4px;
    border-radius: 4px;
  }
}
.nsd-webforms-wrapper .nsd-webforms-field-datetime .input-group-addon {
  padding: 4.0008px 0 0 9px;
  line-height: 1;
  text-align: center;
  background-color: transparent;
  border: none;
  border-radius: 0;
}
.nsd-webforms-wrapper .nsd-webforms-field-datetime .input-group-addon svg {
  zoom: 2;
}
.nsd-webforms-wrapper .nsd-webforms-field-datetime .glyphicon:before {
  text-decoration: none;
}
.nsd-webforms-wrapper .nsd-webforms-field-datetime .glyphicon-minus:before {
  content: "\2212";
}
.nsd-webforms-wrapper .nsd-webforms-field-datetime .glyphicon-plus:before {
  content: "+";
}
.nsd-webforms-wrapper .nsd-webforms-field-datetime .ui-datebox-container > span {
  background-color: #fff;
  display: block;
  padding: 4.0008px;
  border-radius: 6px;
  border: solid 1px silver;
}
.nsd-webforms-wrapper .nsd-webforms-field-datetime .dbEvent {
  padding: 4px;
  display: block;
  text-align: center;
  border: solid 1px transparent;
}
.nsd-webforms-wrapper .nsd-webforms-field-datetime .dbEvent.btn-success {
  border-color: silver;
  background-color: aliceblue;
}
.nsd-webforms-wrapper .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field .nsd-webforms-field-subdivided input,
.nsd-webforms-wrapper .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field .nsd-webforms-field-subdivided select {
  float: left;
}
.nsd-webforms-wrapper .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field .nsd-webforms-field-subdivided input {
  width: 90%;
  margin-left: -1px;
  margin-right: -1px;
}
.nsd-webforms-wrapper .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field .nsd-webforms-field-subdivided select {
  width: 20%;
}
.nsd-webforms-wrapper .nsd-webforms-wrapper .nsd-webforms .nsd-webforms-field .nsd-webforms-field-subdivided:after {
  display: block;
  content: " ";
  clear: both;
}
.nsd-webforms-wrapper .glyphicon.glyphicon-calendar {
  background-image: url(../Images/calendar-icon.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  width: 29px;
  height: 29px;
}
.nsd-webforms-wrapper .jtsage-datebox-backdrop-div {
  opacity: 0.8;
}

body .jtsage-panel.panel.panel-default {
  border: solid 1px #444;
  background-color: #fff;
  padding: 0 1rem 1rem 1rem;
}
body .jtsage-panel.panel.panel-default * {
  color: #444;
}
body .jtsage-panel.panel.panel-default td {
  color: silver;
  text-align: center;
}
body .jtsage-panel.panel.panel-default a,
body .jtsage-panel.panel.panel-default a:link,
body .jtsage-panel.panel.panel-default a:visited,
body .jtsage-panel.panel.panel-default a:hover,
body .jtsage-panel.panel.panel-default a:active,
body .jtsage-panel.panel.panel-default a:focus {
  color: black;
}
body .jtsage-panel.panel.panel-default a.disabled, body .jtsage-panel.panel.panel-default a.disabled:link, body .jtsage-panel.panel.panel-default a.disabled:visited, body .jtsage-panel.panel.panel-default a.disabled:hover, body .jtsage-panel.panel.panel-default a.disabled:active, body .jtsage-panel.panel.panel-default a.disabled:focus {
  color: silver;
  text-decoration: none;
  cursor: unset;
}
body .jtsage-panel.panel.panel-default .dbCloser {
  float: right;
}
body .jtsage-panel.panel.panel-default ul {
  padding: 0;
}
body .jtsage-panel.panel.panel-default li {
  list-style: none;
}
body .jtsage-panel.panel.panel-default > span > div:first-of-type,
body .jtsage-panel.panel.panel-default > span > div:last-of-type {
  text-align: center;
}
body .jtsage-panel.panel.panel-default.jtsage-mode-calbox > span > div:first-of-type {
  max-width: 80%;
}
body .jtsage-panel.panel.panel-default.jtsage-mode-calbox > span > div:first-of-type a:first-of-type {
  float: left;
}
body .jtsage-panel.panel.panel-default.jtsage-mode-calbox > span > div:first-of-type a:last-of-type {
  float: right;
}
body .jtsage-panel.panel.panel-default.jtsage-mode-calbox > span > div:first-of-type h4 {
  display: inline-block;
  vertical-align: middle;
}
body .jtsage-panel.panel.panel-default .btn {
  padding: 3px 12px;
}
body .jtsage-panel.panel.panel-default .btn.w-100 {
  padding: 0;
}
body .jtsage-panel.panel.panel-default .dbEvent {
  padding: 4px;
  display: block;
  text-align: center;
  border: solid 1px transparent;
}
body .jtsage-panel.panel.panel-default .btn-success {
  border-color: silver;
  background-color: aliceblue;
}

.jstage-input-y {
  text-align: center;
  width: 54px;
}

.jstage-input-m,
.jstage-input-d,
.jstage-input-h,
.jstage-input-i {
  text-align: center;
  width: 33px;
}

.dbBoxs {
  display: none;
}

.dbBoxd {
  margin-right: 12px;
}

.dbBoxh {
  position: relative;
}
.dbBoxh:after {
  display: block;
  position: absolute;
  top: 24px;
  left: 39px;
  content: ":";
}
.dbBoxh .btn {
  padding: 3px 12px;
}
.dbBoxh .btn.w-100 {
  padding: 0;
}
.dbBoxh .dbEvent {
  padding: 4px;
  display: block;
  text-align: center;
  border: solid 1px transparent;
}
.dbBoxh .btn-success {
  border-color: silver;
  background-color: aliceblue;
}

.jstage-input-y {
  text-align: center;
  width: 54px;
}

.jstage-input-m,
.jstage-input-d,
.jstage-input-h,
.jstage-input-i {
  text-align: center;
  width: 33px;
}

.dbBoxs {
  display: none;
}

.dbBoxd {
  margin-right: 12px;
}

.dbBoxh {
  position: relative;
}
.dbBoxh:after {
  display: block;
  position: absolute;
  top: 24px;
  left: 39px;
  content: ":";
}

.row-md {
  clear: none;
}
@media only screen and (max-width: 992px) {
  .row-md {
    clear: both;
  }
}
@media only screen and (max-width: 640px) {
  .row-md {
    clear: none;
  }
}

.row-lg {
  clear: both;
}
@media only screen and (max-width: 992px) {
  .row-lg {
    clear: none;
  }
}

#nucaptcha-player {
  padding-bottom: 12px;
}
#nucaptcha-player input.nucaptcha-answer[type=text] {
  width: 100%;
  margin: 0;
  padding: 9px;
  border: solid 1px silver;
}
#nucaptcha-player input.nucaptcha-answer[type=text].validation-failure {
  border-color: #b62200;
  color: #b62200;
}
#nucaptcha-player input.nucaptcha-answer[type=text]:disabled {
  background-color: #d8d8d8;
  opacity: 0.5;
}
#nucaptcha-player input.nucaptcha-answer::placeholder, #nucaptcha-player input.nucaptcha-answer:-ms-input-placeholder, #nucaptcha-player input.nucaptcha-answer::-ms-input-placeholder {
  color: red;
}
#nucaptcha-player label.directions-verbose-label {
  display: block;
  padding: 0;
  margin-top: 9px;
  text-align: left;
  font-weight: 700;
}
#nucaptcha-player img.nucaptcha-media {
  border: solid 1px silver;
  border-radius: 3px;
  margin: 12px;
}

.nsd-webforms-field-signature-canvas {
  border: solid 1px gray;
}

.nsd-webforms-field-signature-controls {
  margin-top: -1px;
}

.nsd-webforms-field-signature-clear {
  width: 100%;
}

.nscui-debugging .nsd-webforms-field-ncfgrouping,
.nscui-debugging .nsd-webforms-field-ncflookupgrouping {
  border: solid 1px #bfbfbf;
  transition: border 0.25s ease;
}
.nscui-debugging .nsd-webforms-field-ncfgrouping:hover,
.nscui-debugging .nsd-webforms-field-ncflookupgrouping:hover {
  border-color: #d8d8d8;
}
.nscui-debugging .nsd-webforms-field-ncfgrouping .nsd-webforms-field-ncfgrouping,
.nscui-debugging .nsd-webforms-field-ncflookupgrouping .nsd-webforms-field-ncfgrouping {
  border-color: transparent;
}
.nscui-debugging .nsd-webforms-field-ncfgrouping .nsd-webforms-field-ncfgrouping:hover,
.nscui-debugging .nsd-webforms-field-ncflookupgrouping .nsd-webforms-field-ncfgrouping:hover {
  border-color: #d8d8d8;
}

.nsd-webforms-subform-adder-template {
  display: none;
}

.nsd-webforms-subform-heading {
  font-weight: bold;
}

.nsd-webforms-field.nsd-webforms-field-ncfgrouping > label {
  font-size: 1.5rem;
  font-weight: normal;
}
.nsd-webforms-field .nsd-webforms-field-ncfgrouping > label {
  font-size: 15.1px;
  font-weight: bold;
}

.nsd-webforms-subform-heading {
  font-size: 1.25rem;
}

.cui-wp-ms-template,
.cui-wp-ms-templates {
  display: none;
}

.cui-wp-ms-bgimage {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.cui-wp-ms-badge .nrc-brightness-light {
  background-color: #fff;
}

main .no-link-undeline-at-all a {
  text-decoration: none;
}

.cui-wp-ms-badge-image {
  text-align: center;
}
.cui-wp-ms-badge-image img {
  max-width: 100%;
}

.cui-wp-ms-canvas {
  border: dashed 1px #6a6670;
  margin: 12px -1px 0 -1px;
}

.cui-wp-ms-editor {
  display: none;
  border: solid 1px #6a6670;
  background-color: #e6e5e7;
  padding: 12px;
}
.cui-wp-ms-editor label {
  display: block;
  margin-bottom: 12px;
}
.cui-wp-ms-editor label select {
  display: block;
}
.cui-wp-ms-editor input {
  width: 100%;
}
.cui-wp-ms-editor input[type=checkbox] {
  width: auto;
}
.cui-wp-ms-editor input.cui-wp-ms-controls-button {
  max-width: 120px;
}
.cui-wp-ms-editor input.cui-wp-ms-input-url-picker-button {
  width: 25px;
  min-width: 12px;
  padding: 0 6px;
  height: 25px;
  margin-left: -1px;
}
.cui-wp-ms-editor input.cui-wp-ms-input-url-picker-input {
  width: calc(100% - 38px);
}
.cui-wp-ms-editor input.cui-wp-ms-input-js-trigger {
  margin: 12px 0;
}
.cui-wp-ms-editor input[id$=_txtFileUrls],
.cui-wp-ms-editor input[id$=_chkExpose],
.cui-wp-ms-editor input[id$=_txtJson] {
  display: none;
}
.cui-wp-ms-editor input[type=password].cui-wp-ms-is-changed,
.cui-wp-ms-editor input[type=text].cui-wp-ms-is-changed,
.cui-wp-ms-editor input[type=file].cui-wp-ms-is-changed,
.cui-wp-ms-editor select.cui-wp-ms-is-changed,
.cui-wp-ms-editor textarea.cui-wp-ms-is-changed,
.cui-wp-ms-editor .sp-peoplepicker-topLevel.cui-wp-ms-is-changed,
.cui-wp-ms-editor .sp-peoplepicker-topLevelDisabled.cui-wp-ms-is-changed,
.cui-wp-ms-editor .sp-peoplepicker-autoFillContainer.cui-wp-ms-is-changed,
.cui-wp-ms-editor .ms-inputBox.cui-wp-ms-is-changed {
  background-color: khaki;
}
.cui-wp-ms-editor .cui-wp-ms-list-data-picker {
  margin-top: -12px;
  margin-bottom: 12px;
}
.cui-wp-ms-editor .cui-wp-ms-sortable {
  margin: 0;
  padding: 0;
}
.cui-wp-ms-editor .cui-wp-ms-sortable li {
  list-style: none;
  margin: 6px 0;
  padding: 0;
}
.cui-wp-ms-editor label,
.cui-wp-ms-editor select,
.cui-wp-ms-editor input,
.cui-wp-ms-editor button {
  color: black;
}

.cui-wp-ms-row {
  padding-bottom: 36px;
}
.cui-wp-ms-row .cui-wp-ms-webpart-wrapper {
  margin-bottom: 36px;
}

.s4-wpActive .cui-wp-ms-editor input {
  width: 100%;
}
.s4-wpActive .cui-wp-ms-editor input[type=checkbox] {
  width: auto;
  display: inline-block;
}
.s4-wpActive .cui-wp-ms-editor input.cui-wp-ms-controls-button {
  max-width: 142px;
}
.s4-wpActive .cui-wp-ms-editor input.cui-wp-ms-input-url-picker-button {
  width: 26.4px;
  height: 27px;
}
.s4-wpActive .cui-wp-ms-editor input.cui-wp-ms-input-url-picker-input {
  width: calc(100% - 26px);
}

.cui-wp-ms-canvas-wrapper > span {
  display: none;
}

.cui-wp-ms-editor-activator {
  position: relative;
  z-index: 10;
}

.cui-wp-ms-editor-active .cui-wp-ms-canvas-wrapper > span {
  display: inline-block;
}
.cui-wp-ms-editor-active .cui-wp-ms-editor {
  display: block;
}
.cui-wp-ms-editor-active .cui-wp-ms-editor-activator {
  display: none;
}

.cui-wp-ms-visible-false {
  display: none;
}

.cui-wp-ms-controls-button + .cui-wp-ms-controls-button {
  margin-left: 12px;
}

.cui-wp-ms-webpart-wrapper .nrc-brightness-light {
  background-color: var(--color-bg-light);
}
.cui-wp-ms-webpart-wrapper .hero-row,
.cui-wp-ms-webpart-wrapper .hero-row .center-block {
  min-height: 50vh;
}
.cui-wp-ms-webpart-wrapper .center-block {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cui-wp-ms-webpart-wrapper .center-block.align-floor {
  align-items: flex-end;
}

.nscui-debugging-ms2 .cui-wp-ms-webpart-wrapper {
  border: solid 3px red;
}
.nscui-debugging-ms2 .webpart-zone-container-medium .cui-wp-ms-webpart-wrapper {
  border-color: purple;
}
.nscui-debugging-ms2 .webpart-zone-container-large .cui-wp-ms-webpart-wrapper {
  border-color: orange;
}

.wrapper a.cui-wp-ms-link-rich {
  font-family: "Mark For MC Narrow - Regular";
  --shine-deg: 45deg;
  position: relative;
  display: block;
  overflow: hidden;
}
.wrapper a.cui-wp-ms-link-rich:before {
  content: "";
  top: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background: linear-gradient(to bottom, #dbdbdb, #f9f9f9, #dbdbdb);
  opacity: 0;
  transition: opacity 0.25s ease-in;
}
.wrapper a.cui-wp-ms-link-rich:hover, .wrapper a.cui-wp-ms-link-rich:active, .wrapper a.cui-wp-ms-link-rich:focus {
  text-decoration: none;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}
.wrapper a.cui-wp-ms-link-rich:hover:before, .wrapper a.cui-wp-ms-link-rich:active:before, .wrapper a.cui-wp-ms-link-rich:focus:before {
  z-index: 1;
  opacity: 0.25;
}
.wrapper a.cui-wp-ms-link-rich:hover:after, .wrapper a.cui-wp-ms-link-rich:active:after, .wrapper a.cui-wp-ms-link-rich:focus:after {
  content: "";
  top: 0;
  transform: translateX(100%) rotate(var(--shine-deg));
  width: 300%;
  height: 300%;
  position: absolute;
  z-index: 1;
  background: linear-gradient(30deg, transparent 20%, transparent 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.4) 55%, transparent 70%, transparent 100%);
  transition: transform 2s ease-in;
  transform: translateX(100%) rotate(var(--shine-deg));
  animation: shine 1s infinite ease-in-out;
}

/*
// Use these to target smaller Web Part Zones(!), rather than browser viewports
.webpart-zone-container-medium {
    .cui-wp-ms-webpart-wrapper {
    }
}

.webpart-zone-container-large {
    .cui-wp-ms-webpart-wrapper {
    }
}
*/
.wrapper .cui-wp-ms-badge.cui-wp-ms-classic {
  display: block;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-classic.icon img {
  margin: 1rem 1rem 0 1rem;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-classic a.cui-wp-ms-link-button {
  margin-top: 24px;
  display: block;
  height: 100%;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-classic a.cui-wp-ms-link-button, .wrapper .cui-wp-ms-badge.cui-wp-ms-classic a.cui-wp-ms-link-button:link, .wrapper .cui-wp-ms-badge.cui-wp-ms-classic a.cui-wp-ms-link-button:visited {
  text-decoration: none;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-classic a.cui-wp-ms-link-button:hover, .wrapper .cui-wp-ms-badge.cui-wp-ms-classic a.cui-wp-ms-link-button:active, .wrapper .cui-wp-ms-badge.cui-wp-ms-classic a.cui-wp-ms-link-button:focus, .wrapper .cui-wp-ms-badge.cui-wp-ms-classic a.cui-wp-ms-link-button.focus {
  text-decoration: underline;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-classic .cui-wp-ms-heading {
  padding-bottom: 12px;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-classic .cui-wp-ms-content {
  padding: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-classic .cui-wp-ms-badge-image {
  display: block;
  margin-bottom: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-classic h4 {
  margin-bottom: 12px;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-classic .cui-wp-ms-content {
  padding: 24px;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-classic .cui-wp-ms-content:after {
  display: block;
  content: " ";
  clear: both;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-classic .cui-wp-ms-body {
  display: block;
  margin: 6px 0;
  font-size: 85%;
  line-height: 150%;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-classic .cui-wp-ms-body p:first-of-type {
  margin-block-start: 0;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-classic .cui-wp-ms-body p:last-of-type {
  margin-block-end: 0;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-classic a.cui-wp-ms-link-rich, .wrapper .cui-wp-ms-badge.cui-wp-ms-classic a.cui-wp-ms-link-rich:link, .wrapper .cui-wp-ms-badge.cui-wp-ms-classic a.cui-wp-ms-link-rich:visited,
.wrapper .cui-bg-lightest .cui-wp-ms-badge.cui-wp-ms-classic a.cui-wp-ms-link-rich,
.wrapper .cui-bg-lightest .cui-wp-ms-badge.cui-wp-ms-classic a.cui-wp-ms-link-rich:link,
.wrapper .cui-bg-lightest .cui-wp-ms-badge.cui-wp-ms-classic a.cui-wp-ms-link-rich:visited,
.wrapper .cui-bg-darkest .cui-bg-lightest .cui-wp-ms-badge.cui-wp-ms-classic a.cui-wp-ms-link-rich,
.wrapper .cui-bg-darkest .cui-bg-lightest .cui-wp-ms-badge.cui-wp-ms-classic a.cui-wp-ms-link-rich:link,
.wrapper .cui-bg-darkest .cui-bg-lightest .cui-wp-ms-badge.cui-wp-ms-classic a.cui-wp-ms-link-rich:visited {
  background-color: var(--color-bg-light);
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-classic .cui-wp-ms-badge-image,
.wrapper .cui-bg-lightest .cui-wp-ms-badge.cui-wp-ms-classic .cui-wp-ms-badge-image,
.wrapper .cui-bg-darkest .cui-bg-lightest .cui-wp-ms-badge.cui-wp-ms-classic .cui-wp-ms-badge-image {
  border-bottom: silver;
}

.wrapper .cui-wp-ms-badge-content .cui-wp-ms-badge-link {
  margin-top: 12px;
}

.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image {
  position: relative;
  display: block;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image img {
  min-width: 50%;
  margin: 0 36px;
  max-width: calc(100% - 72px);
}
@media screen and (min-width: 992px) {
  .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.image_on_right img, .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.image_on_left img {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
  }
  .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.image_on_right img {
    right: 0;
  }
  .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.image_on_left img {
    left: 0;
  }
  .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.image_inline_no_margins img {
    margin: 0;
    max-width: 100%;
  }
  .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.max_70 img {
    max-width: calc(70% - 72px);
  }
  .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.max_50 img {
    max-width: calc(50% - 72px);
  }
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image .cui-wp-ms-badge-content {
  border-bottom: silver;
  padding: 21px 24px;
  position: absolute;
  max-width: 50%;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.no-image .cui-wp-ms-badge-image-inline {
  display: none;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.no-body h4.cui-wp-ms-heading {
  margin-bottom: 0;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.no-body .cui-wp-ms-body {
  display: none;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.no-heading .cui-wp-ms-heading {
  display: none;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.no-heading .cui-wp-ms-heading + .cui-wp-ms-body {
  margin-top: 0;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image h4.cui-wp-ms-heading {
  margin-bottom: 12px;
  line-height: 125%;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image div.cui-wp-ms-body {
  font-size: 85%;
  line-height: 150%;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image .cui-wp-ms-heading + .cui-wp-ms-body {
  margin-top: 12px;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image .cui-wp-ms-badge-link {
  display: inline-block;
  margin-top: 24px;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.image_on_right:not(.image_inline_forced) .cui-wp-ms-badge-image-inline {
  text-align: right;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.image_on_right:not(.image_inline_forced) .cui-wp-ms-badge-content {
  right: auto;
  left: 0;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.image_inline .cui-wp-ms-badge-content, .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.image_inline_no_margins .cui-wp-ms-badge-content, .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.image_inline_forced .cui-wp-ms-badge-content {
  position: relative;
  right: auto;
  top: auto;
  transform: none;
  max-width: 100%;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.image_inline .cui-wp-ms-badge-content, .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.image_inline_forced .cui-wp-ms-badge-content {
  margin: 0 36px;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.image_on_top:not(.image_inline_forced) .cui-wp-ms-badge-image-inline {
  margin-bottom: 72px;
}
@media screen and (min-width: 992px) {
  .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.image_on_top:not(.image_inline_forced) .cui-wp-ms-badge-content {
    margin-top: 72px;
    position: absolute;
    right: 50%;
    top: auto;
    bottom: 0;
    transform: translateX(50%);
  }
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.max_70.image_inline img, .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.max_70.image_inline_no_margins img, .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.max_70.image_inline_forced img, .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.max_70.image_on_top img, .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.max_50.image_inline img, .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.max_50.image_inline_no_margins img, .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.max_50.image_inline_forced img, .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image.max_50.image_on_top img {
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image a:link, .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image a:visited, .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image a:hover, .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image a:active, .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image a:focus {
  text-decoration: none;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image a:link .cui-wp-ms-body, .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image a:visited .cui-wp-ms-body {
  text-decoration: none;
  color: #070010;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image a:hover .cui-wp-ms-badge-content, .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image a:active .cui-wp-ms-badge-content, .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image a:focus .cui-wp-ms-badge-content {
  background-color: #00bef0;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image a:hover h4,
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image a:hover .cui-wp-ms-body, .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image a:active h4,
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image a:active .cui-wp-ms-body, .wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image a:focus h4,
.wrapper .cui-wp-ms-badge.cui-wp-ms-content-with-image a:focus .cui-wp-ms-body {
  color: #fff;
}

.wrapper .ncui-step-item .cui-wp-ms-content-with-image .cui-wp-ms-badge-content,
.wrapper .ncui-carouselette-item .cui-wp-ms-content-with-image .cui-wp-ms-badge-content {
  position: relative;
  max-width: 100%;
  transform: none;
}

.wrapper .webpart-zone-container-medium .cui-wp-ms-badge.cui-wp-ms-content-with-image img {
  margin: 0;
  max-width: 100%;
}
.wrapper .webpart-zone-container-medium .cui-wp-ms-badge.cui-wp-ms-content-with-image .image_on_left img,
.wrapper .webpart-zone-container-medium .cui-wp-ms-badge.cui-wp-ms-content-with-image .image_on_right img,
.wrapper .webpart-zone-container-medium .cui-wp-ms-badge.cui-wp-ms-content-with-image .cui-wp-ms-badge-content {
  position: unset;
  max-width: unset;
  right: unset;
  top: unset;
  transform: unset;
}

.wrapper .cui-wp-ms-badge.cui-wp-ms-discover-more * {
  color: #fff;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-discover-more .cui-wp-ms-container {
  position: relative;
  height: 100%;
  background-position: center;
  background-size: cover;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-discover-more .cui-wp-ms-container .cui-wp-ms-overlay {
  background-color: rgba(0, 0, 0, 0.4);
  min-height: 10vh;
  padding: 12px;
  padding-bottom: 48px;
  height: 100%;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-discover-more .cui-wp-ms-read-more-link {
  position: absolute;
  bottom: 12px;
  left: 12px;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-discover-more h4.cui-wp-ms-heading {
  padding-top: 0;
  font-weight: 800;
}
.wrapper .cui-wp-ms-badge.cui-wp-ms-discover-more .cui-wp-ms-body {
  min-height: 11vh;
}

.cui-wp-ms-badge.cui-wp-ms-factbox {
  margin: 24px 30px;
  border-bottom: silver;
  padding: 0;
}
.cui-wp-ms-badge.cui-wp-ms-factbox .cui-wp-ms-body {
  background-color: #c9e9fb;
  padding: 12px;
}
.cui-wp-ms-badge.cui-wp-ms-factbox.border_on_left {
  border-bottom: none;
  border-left: silver;
}

.wrapper .cui-wp-ms-generic {
  margin-bottom: 24px;
}
.wrapper .cui-wp-ms-generic .cui-wp-ms-body,
.wrapper .cui-wp-ms-generic .cui-wp-ms-badge-image,
.wrapper .cui-wp-ms-generic .cui-wp-ms-datestamp-container {
  display: none;
}
.wrapper .cui-wp-ms-generic a:link, .wrapper .cui-wp-ms-generic a:visited, .wrapper .cui-wp-ms-generic a:hover, .wrapper .cui-wp-ms-generic a:active, .wrapper .cui-wp-ms-generic a:focus {
  text-decoration: none;
}
.wrapper .cui-wp-ms-generic a:link .cui-wp-ms-content,
.wrapper .cui-wp-ms-generic a:link .cui-wp-ms-date, .wrapper .cui-wp-ms-generic a:visited .cui-wp-ms-content,
.wrapper .cui-wp-ms-generic a:visited .cui-wp-ms-date {
  text-decoration: none;
  color: #070010;
}
.wrapper .cui-wp-ms-generic a:hover h4,
.wrapper .cui-wp-ms-generic a:hover .cui-wp-ms-content,
.wrapper .cui-wp-ms-generic a:hover .cui-wp-ms-date,
.wrapper .cui-wp-ms-generic a:hover .cui-wp-ms-date-month,
.wrapper .cui-wp-ms-generic a:hover .cui-wp-ms-date-day,
.wrapper .cui-wp-ms-generic a:hover .cui-wp-ms-date-year, .wrapper .cui-wp-ms-generic a:active h4,
.wrapper .cui-wp-ms-generic a:active .cui-wp-ms-content,
.wrapper .cui-wp-ms-generic a:active .cui-wp-ms-date,
.wrapper .cui-wp-ms-generic a:active .cui-wp-ms-date-month,
.wrapper .cui-wp-ms-generic a:active .cui-wp-ms-date-day,
.wrapper .cui-wp-ms-generic a:active .cui-wp-ms-date-year, .wrapper .cui-wp-ms-generic a:focus h4,
.wrapper .cui-wp-ms-generic a:focus .cui-wp-ms-content,
.wrapper .cui-wp-ms-generic a:focus .cui-wp-ms-date,
.wrapper .cui-wp-ms-generic a:focus .cui-wp-ms-date-month,
.wrapper .cui-wp-ms-generic a:focus .cui-wp-ms-date-day,
.wrapper .cui-wp-ms-generic a:focus .cui-wp-ms-date-year {
  background-color: #00bef0;
  color: #fff;
}
.wrapper .cui-wp-ms-generic.has-image .cui-wp-ms-badge-image {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 56.25%;
  margin-bottom: 0;
  border-bottom: silver;
}
.wrapper .cui-wp-ms-generic.has-image.content-float-true .cui-wp-ms-badge-image {
  border-bottom: none;
}
.wrapper .cui-wp-ms-generic h4 {
  color: #005776;
  font-size: 2rem;
  line-height: 2.5rem;
  margin-bottom: 12px;
}
.wrapper .cui-wp-ms-generic .cui-wp-ms-content {
  padding: 24px;
}
.wrapper .cui-wp-ms-generic .cui-wp-ms-content:after {
  display: block;
  content: " ";
  clear: both;
}
.wrapper .cui-wp-ms-generic.has-body .cui-wp-ms-body {
  display: block;
  margin: 6px 0;
}
.wrapper .cui-wp-ms-generic .cui-wp-ms-date {
  margin-top: 9px;
  float: left;
  text-align: center;
}
.wrapper .cui-wp-ms-generic div.cui-wp-ms-date-month {
  font-size: 75%;
}
.wrapper .cui-wp-ms-generic.has-datestamp .cui-wp-ms-datestamp-container {
  display: inline;
  float: left;
  width: 4rem;
}
.wrapper .cui-wp-ms-generic.has-datestamp .cui-wp-ms-datestamp-offsetby {
  float: left;
  width: calc(100% - 4rem);
}
.wrapper .cui-wp-ms-generic.content-float-true .cui-wp-ms-date-day {
  color: #00bef0;
}
.wrapper .cui-wp-ms-generic.content-float-true h4 {
  font-size: 1.5rem;
  line-height: 1.75rem;
}
.wrapper .cui-wp-ms-generic.content-float-true .cui-wp-ms-content {
  border: solid 0.5px #00bef0;
  margin: -48px 36px 36px 36px;
  padding: 30px 36px 36px 36px;
}
.wrapper .cui-wp-ms-generic.content-float-true.has-image {
  margin-bottom: 36px;
}
.wrapper .cui-wp-ms-generic.content-float-true.has-image .cui-wp-ms-content {
  position: relative;
  border: none;
  margin-right: 48px;
  margin-left: 48px;
  margin-bottom: 48px;
  margin-top: -48px;
  padding: 24px;
  border-top: solid 4px gray;
  z-index: 2;
}
@media screen and (min-width: 992px) {
  .wrapper .cui-wp-ms-generic.content-float-true.has-image.image_on_left, .wrapper .cui-wp-ms-generic.content-float-true.has-image.image_on_right {
    position: relative;
    padding-top: 60px;
    padding-bottom: 60px;
    overflow: hidden;
  }
  .wrapper .cui-wp-ms-generic.content-float-true.has-image.image_on_left .cui-wp-ms-content, .wrapper .cui-wp-ms-generic.content-float-true.has-image.image_on_right .cui-wp-ms-content {
    margin-top: 48px;
  }
  .wrapper .cui-wp-ms-generic.content-float-true.has-image.image_on_left .cui-wp-ms-badge-image, .wrapper .cui-wp-ms-generic.content-float-true.has-image.image_on_right .cui-wp-ms-badge-image {
    position: absolute;
    padding-top: 50%;
    height: calc(100% + 96px);
    top: 0;
    width: 75%;
    z-index: 1;
  }
  .wrapper .cui-wp-ms-generic.content-float-true.has-image.image_on_left .cui-wp-ms-content {
    margin-left: 33%;
    margin-right: 0;
  }
  .wrapper .cui-wp-ms-generic.content-float-true.has-image.image_on_left .cui-wp-ms-badge-image {
    left: 0;
  }
  .wrapper .cui-wp-ms-generic.content-float-true.has-image.image_on_right .cui-wp-ms-content {
    margin-left: 0;
    margin-right: 33%;
  }
  .wrapper .cui-wp-ms-generic.content-float-true.has-image.image_on_right .cui-wp-ms-badge-image {
    right: 0;
  }
}
.wrapper .cui-wp-ms-generic.variant-default-dark a:link .cui-wp-ms-content, .wrapper .cui-wp-ms-generic.variant-default-dark a:visited .cui-wp-ms-content {
  color: #fff;
}
.wrapper .cui-wp-ms-generic.variant-default-dark a:link .cui-wp-ms-date, .wrapper .cui-wp-ms-generic.variant-default-dark a:visited .cui-wp-ms-date {
  color: #00bef0;
}
.wrapper .cui-wp-ms-generic.variant-default-dark a:hover h4,
.wrapper .cui-wp-ms-generic.variant-default-dark a:hover .cui-wp-ms-content,
.wrapper .cui-wp-ms-generic.variant-default-dark a:hover .cui-wp-ms-date,
.wrapper .cui-wp-ms-generic.variant-default-dark a:hover .cui-wp-ms-date-month,
.wrapper .cui-wp-ms-generic.variant-default-dark a:hover div.cui-wp-ms-date-day,
.wrapper .cui-wp-ms-generic.variant-default-dark a:hover .cui-wp-ms-date-year, .wrapper .cui-wp-ms-generic.variant-default-dark a:active h4,
.wrapper .cui-wp-ms-generic.variant-default-dark a:active .cui-wp-ms-content,
.wrapper .cui-wp-ms-generic.variant-default-dark a:active .cui-wp-ms-date,
.wrapper .cui-wp-ms-generic.variant-default-dark a:active .cui-wp-ms-date-month,
.wrapper .cui-wp-ms-generic.variant-default-dark a:active div.cui-wp-ms-date-day,
.wrapper .cui-wp-ms-generic.variant-default-dark a:active .cui-wp-ms-date-year, .wrapper .cui-wp-ms-generic.variant-default-dark a:focus h4,
.wrapper .cui-wp-ms-generic.variant-default-dark a:focus .cui-wp-ms-content,
.wrapper .cui-wp-ms-generic.variant-default-dark a:focus .cui-wp-ms-date,
.wrapper .cui-wp-ms-generic.variant-default-dark a:focus .cui-wp-ms-date-month,
.wrapper .cui-wp-ms-generic.variant-default-dark a:focus div.cui-wp-ms-date-day,
.wrapper .cui-wp-ms-generic.variant-default-dark a:focus .cui-wp-ms-date-year {
  color: #fff;
}
.wrapper .cui-wp-ms-generic.variant-default-dark h4 {
  color: #fff;
}
.wrapper .cui-wp-ms-generic.variant-default-dark .cui-wp-ms-content {
  border: none;
  padding: 30px 36px 36px 36px;
}
.wrapper .cui-wp-ms-generic.variant-default-dark .cui-wp-ms-date,
.wrapper .cui-wp-ms-generic.variant-default-dark div.cui-wp-ms-date-dayttr {
  color: #00bef0;
}
.wrapper .cui-wp-ms-generic.variant-default-dark.has-image .cui-wp-ms-badge-image {
  border-bottom: solid 4px gray;
  margin-bottom: 0;
}
.wrapper .col-sm-11 .cui-wp-ms-generic.content-float-true.has-image.image_on_left, .wrapper .col-sm-11 .cui-wp-ms-generic.content-float-true.has-image.image_on_right {
  padding-right: 36px;
  padding-left: 36px;
}
.wrapper .col-sm-11 .cui-wp-ms-generic.content-float-true.has-image.image_on_left .cui-wp-ms-badge-image {
  left: 36px;
}
.wrapper .col-sm-11 .cui-wp-ms-generic.content-float-true.has-image.image_on_right .cui-wp-ms-badge-image {
  right: 36px;
}

.wrapper .cui-wp-ms-grouping .cui-wp-ms-content-with-image .cui-wp-ms-badge-content {
  background-color: inherit;
  border-bottom: none;
  position: relative;
  max-width: 100%;
  transform: none;
}
.wrapper .cui-wp-ms-grouping .cui-wp-ms-content-with-image a:link .cui-wp-ms-body, .wrapper .cui-wp-ms-grouping .cui-wp-ms-content-with-image a:visited .cui-wp-ms-body {
  text-decoration: none;
  color: inherit;
}
.wrapper .cui-wp-ms-grouping .cui-wp-ms-content-with-image a:hover .cui-wp-ms-badge-content, .wrapper .cui-wp-ms-grouping .cui-wp-ms-content-with-image a:active .cui-wp-ms-badge-content, .wrapper .cui-wp-ms-grouping .cui-wp-ms-content-with-image a:focus .cui-wp-ms-badge-content {
  background-color: red;
}
.wrapper .cui-wp-ms-grouping .cui-wp-ms-content-with-image a:hover h4,
.wrapper .cui-wp-ms-grouping .cui-wp-ms-content-with-image a:hover .cui-wp-ms-body, .wrapper .cui-wp-ms-grouping .cui-wp-ms-content-with-image a:active h4,
.wrapper .cui-wp-ms-grouping .cui-wp-ms-content-with-image a:active .cui-wp-ms-body, .wrapper .cui-wp-ms-grouping .cui-wp-ms-content-with-image a:focus h4,
.wrapper .cui-wp-ms-grouping .cui-wp-ms-content-with-image a:focus .cui-wp-ms-body {
  color: purple;
}

.wrapper .ncui-steps-wrapper .cui-wp-ms-heading {
  display: none;
}

.wrapper .cui-wp-ms-image-with-3-links {
  margin-bottom: 24px;
}
.wrapper .cui-wp-ms-image-with-3-links .cui-wp-ms-image {
  text-align: center;
  border: solid 1px rgb(255, 255, 255);
  background: var(--color-bg-light);
  background: linear-gradient(0deg, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 10%, rgba(255, 255, 255, 0.1) 50%, rgba(255, 255, 255, 0.1) 100%);
}
.wrapper .cui-wp-ms-image-with-3-links .cui-wp-ms-image.cui-wp-ms-heiqualize-1 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.wrapper .cui-wp-ms-image-with-3-links .cui-wp-ms-image img {
  margin: 1rem;
  width: calc(100% - 2rem);
}
.wrapper .cui-wp-ms-image-with-3-links .cui-wp-ms-links {
  padding: 0.1px 12px;
  margin: 0;
}
.wrapper .cui-wp-ms-image-with-3-links .cui-wp-ms-link {
  list-style: none;
  margin: 12px 0;
}
.wrapper .cui-wp-ms-passepartout-image .cui-wp-ms-image img {
  margin: 1rem;
}

.cui-wp-ms-image-with-attribution {
  text-align: center;
}
.cui-wp-ms-image-with-attribution .cui-wp-ms-badge-image-inline {
  display: inline-block;
  max-width: 100%;
}
.cui-wp-ms-image-with-attribution .cui-wp-ms-badge-image-inline img {
  display: block;
  max-width: 100%;
}
.cui-wp-ms-image-with-attribution .cui-wp-ms-attribution {
  font-size: 85%;
  padding: 12px;
  background-color: #fff;
  float: inline-end;
  transform: translateY(-100%);
}
.cui-wp-ms-image-with-attribution .cui-wp-ms-attribution-value {
  color: #005776;
}
.cui-wp-ms-image-with-attribution.no-attribution {
  border-bottom: silver;
}
.cui-wp-ms-image-with-attribution.no-attribution .cui-wp-ms-attribution {
  display: none;
}

.wrapper .cui-wp-ms-link-badge {
  padding-bottom: 12px;
}
.wrapper .cui-wp-ms-link-badge .cui-wp-ms-badge-link {
  display: block;
  background-color: #fff;
  padding: 12px;
  border: solid 1px #ed8b00;
}

.MediaSpotsFromFiles .cui-wp-ms-row {
  margin-left: -15px;
  margin-right: -15px;
}
.MediaSpotsFromFiles .cui-wp-ms-group-heading {
  margin-bottom: 24px;
}

.wrapper .cui-wp-ms-page-header {
  margin: 84px 0;
}
.wrapper .cui-wp-ms-page-header .cui-wp-ms-perspectives-logo-wrapper {
  margin: 0 0 12px 0;
  padding-top: 0;
  font-weight: 600;
  text-align: left;
}
.wrapper .cui-wp-ms-page-header .cui-wp-ms-perspectives-logo-wrapper span {
  float: left;
  margin-right: 12px;
}
.wrapper .cui-wp-ms-page-header .cui-wp-ms-perspectives-logo-wrapper img {
  margin-top: -6px;
  height: 48px;
  width: 144px;
  display: inline;
  border-bottom: none;
}
@media only screen and (max-width: 640px) {
  .wrapper .cui-wp-ms-page-header .cui-wp-ms-perspectives-logo-wrapper img {
    margin-top: 0;
    height: 72px;
    width: 108px;
  }
}
.wrapper .cui-wp-ms-page-header .cui-wp-ms-perspectives-logo-wrapper:after {
  display: block;
  content: " ";
  clear: both;
}
.wrapper .cui-wp-ms-page-header .cui-wp-ms-perspectives-logo-wrapper3 img {
  max-height: 37px;
  max-width: 120px;
  margin-top: 0;
}
.wrapper .cui-wp-ms-page-header .col-sm-6 img {
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: 100%;
}
.wrapper .cui-wp-ms-page-header .cui-wp-ms-page-group {
  font-weight: bolder;
  text-transform: uppercase;
}
.wrapper .cui-wp-ms-page-header h2.cui-wp-ms-page-heading {
  margin: 12px 0;
  font-weight: bold;
}
@media only screen and (max-width: 640px) {
  .wrapper .cui-wp-ms-page-header .cui-wp-ms-page-body {
    margin-bottom: 12px;
  }
}

.page-setting-hero-min-height20vh .wrapper .nets-digitisation.row {
  min-height: 20vh;
}
.page-setting-hero-min-height20vh .hero-ribbon .container {
  min-height: 20vh;
  display: flex;
  place-items: center;
}

.page-setting-hero-min-height40vh .wrapper .nets-digitisation.row {
  min-height: 40vh;
}
.page-setting-hero-min-height40vh .hero-ribbon .container {
  min-height: 40vh;
  display: flex;
  place-items: center;
}

.page-setting-hero-min-height50vh .wrapper .nets-digitisation.row {
  min-height: 50vh;
}
.page-setting-hero-min-height50vh .hero-ribbon .container {
  min-height: 50vh;
  display: flex;
  place-items: center;
}

.page-setting-hero-min-height60vh .wrapper .nets-digitisation.row {
  min-height: 60vh;
}
.page-setting-hero-min-height60vh .hero-ribbon .container {
  min-height: 60vh;
  display: flex;
  place-items: center;
}

.page-setting-hero-min-height80vh .wrapper .nets-digitisation.row {
  min-height: 80vh;
}
.page-setting-hero-min-height80vh .hero-ribbon .container {
  min-height: 80vh;
  display: flex;
  place-items: center;
}

.page-setting-hero-min-none .wrapper .nets-digitisation.row {
  min-height: auto;
}

.ribbon-setting-spot-image-scaling50_right .cui-wp-ms-badge.image_inline_no_margins img,
.ribbon-setting-spot-image-scaling50_right .cui-wp-ms-badge-image img,
.ribbon-setting-spot-image-scaling50_left .cui-wp-ms-badge.image_inline_no_margins img,
.ribbon-setting-spot-image-scaling50_left .cui-wp-ms-badge-image img,
.ribbon-setting-spot-image-scaling50_centered .cui-wp-ms-badge.image_inline_no_margins img,
.ribbon-setting-spot-image-scaling50_centered .cui-wp-ms-badge-image img {
  padding: 12px;
  width: 100%;
}
@media (min-width: 640px) {
  .ribbon-setting-spot-image-scaling50_right .cui-wp-ms-badge.image_inline_no_margins img,
  .ribbon-setting-spot-image-scaling50_right .cui-wp-ms-badge-image img,
  .ribbon-setting-spot-image-scaling50_left .cui-wp-ms-badge.image_inline_no_margins img,
  .ribbon-setting-spot-image-scaling50_left .cui-wp-ms-badge-image img,
  .ribbon-setting-spot-image-scaling50_centered .cui-wp-ms-badge.image_inline_no_margins img,
  .ribbon-setting-spot-image-scaling50_centered .cui-wp-ms-badge-image img {
    width: 50%;
  }
}
.ribbon-setting-spot-image-scaling50_right .cui-wp-ms-badge.image_inline_no_margins img,
.ribbon-setting-spot-image-scaling50_left .cui-wp-ms-badge.image_inline_no_margins img,
.ribbon-setting-spot-image-scaling50_centered .cui-wp-ms-badge.image_inline_no_margins img {
  border-radius: 0;
  box-shadow: none;
}
.ribbon-setting-spot-image-scaling50_right .cui-wp-ms-badge.image_inline_no_margins .cui-wp-ms-badge-image-inline,
.ribbon-setting-spot-image-scaling50_left .cui-wp-ms-badge.image_inline_no_margins .cui-wp-ms-badge-image-inline,
.ribbon-setting-spot-image-scaling50_centered .cui-wp-ms-badge.image_inline_no_margins .cui-wp-ms-badge-image-inline {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}

.ribbon-setting-spot-image-scaling50_right .cui-wp-ms-badge-image {
  text-align: right;
}

.ribbon-setting-spot-image-scaling50_left .cui-wp-ms-badge-image {
  text-align: left;
}

.display-mode .ms-webpartzone-cell + .ms-webpartzone-cell {
  margin-top: 12px;
}

.wrapper .cui-wp-ms-primary .has-image.cui-wp-ms-badge-image {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 56.25%;
  margin-bottom: 12px;
  border-bottom: silver;
}
.wrapper .cui-wp-ms-primary a h4.cui-wp-ms-heading,
.wrapper .cui-wp-ms-primary a:link h4.cui-wp-ms-heading,
.wrapper .cui-wp-ms-primary a:visited h4.cui-wp-ms-heading,
.wrapper .cui-wp-ms-primary a:hover h4.cui-wp-ms-heading,
.wrapper .cui-wp-ms-primary a:active h4.cui-wp-ms-heading,
.wrapper .cui-wp-ms-primary a:focus h4.cui-wp-ms-heading {
  text-decoration: none;
  border-bottom: none;
}

.cui-wp-ms-quote {
  margin: 24px 30px;
  border-bottom: silver;
  padding: 0 0 12px 0;
}
.cui-wp-ms-quote .cui-wp-ms-body {
  color: #005776;
  font-style: italic;
  line-height: 160%;
  font-size: 140%;
  font-weight: 600;
  margin-bottom: 12px;
}
.cui-wp-ms-quote blockquote {
  margin-block-end: 0;
  margin-block-start: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
}
.cui-wp-ms-quote blockquote:before {
  content: open-quote;
}
.cui-wp-ms-quote blockquote:after {
  content: close-quote;
}
.cui-wp-ms-quote blockquote:before, .cui-wp-ms-quote blockquote:after {
  display: inline-block;
  vertical-align: bottom;
  font-size: 1.5;
  position: relative;
}
.cui-wp-ms-quote .cui-wp-ms-author {
  line-height: 120%;
  font-size: 85%;
}
.cui-wp-ms-quote.border_on_left {
  border-bottom: none;
  padding: 0 0 12px 12px;
  border-left: silver;
}
.cui-wp-ms-quote.no-author .cui-wp-ms-body {
  margin-bottom: 0;
}
.cui-wp-ms-quote.no-author .cui-wp-ms-author {
  display: none;
}
.cui-wp-ms-quote.no-author.border_on_left {
  padding: 0 0 6px 12px;
}

.col-sm-3 .cui-wp-ms-quote .cui-wp-ms-body {
  line-height: 120%;
  font-size: 106%;
  font-weight: 400;
}
.col-sm-3 .cui-wp-ms-quote .cui-wp-ms-author {
  line-height: 120%;
  font-size: 85%;
}

main blockquote {
  width: auto;
}

:root {
  --ribbon-like-color-bg: transparent;
}

.ribbon-with-ribbonlikes {
  overflow-x: hidden;
}

.ribbon-like {
  padding-top: 40px;
  padding-bottom: 40px;
  position: relative;
  z-index: 1;
}
.ribbon-like::before {
  z-index: -1;
  position: absolute;
  content: "";
  display: block;
  top: 0;
  bottom: 0;
  left: -110vw;
  right: -110vw;
  background-color: var(--ribbon-like-color-bg);
}

.editable .ribbon-like::before {
  left: -8px;
  right: -8px;
  border-left: dashed 2px red;
  border-right: dashed 2px red;
}

.wrapper .cui-wp-ms-ribbon-header h2 {
  margin-bottom: 24px;
  float: left;
}
.wrapper .cui-wp-ms-ribbon-header .cui-wp-ms-without-link {
  display: none;
}
.wrapper .cui-wp-ms-ribbon-header a {
  float: right;
  padding-right: 18px;
  position: relative;
}
@media only screen and (max-width: 640px) {
  .wrapper .cui-wp-ms-ribbon-header a {
    margin-bottom: 24px;
  }
}
.wrapper .cui-wp-ms-ribbon-header a:after {
  display: block;
  content: "";
  position: absolute;
  top: 6px;
  right: 3px;
  width: 9px;
  height: 9px;
  transform: rotateZ(45deg);
  border-right: solid 2px #005776;
  border-top: solid 2px #005776;
}
.wrapper .cui-wp-ms-ribbon-header.light h2 {
  color: #fff;
}
.wrapper .cui-wp-ms-ribbon-header.light a:after {
  border-right-color: #fff;
  border-top-color: #fff;
}
.wrapper .cui-wp-ms-ribbon-header.light a:link, .wrapper .cui-wp-ms-ribbon-header.light a:visited {
  color: #fff;
}
.wrapper .cui-wp-ms-ribbon-header.light a:hover, .wrapper .cui-wp-ms-ribbon-header.light a:active, .wrapper .cui-wp-ms-ribbon-header.light a:focus {
  color: #c9e9fb;
}
.wrapper .cui-wp-ms-ribbon-header.light a:hover:after, .wrapper .cui-wp-ms-ribbon-header.light a:active:after, .wrapper .cui-wp-ms-ribbon-header.light a:focus:after {
  border-right-color: #c9e9fb;
  border-top-color: #c9e9fb;
}
.wrapper .cui-wp-ms-ribbon-header:after {
  display: block;
  content: "";
  clear: both;
}

.ncui-step-item {
  display: none;
}
.ncui-step-item.active {
  display: block;
}

.cui-wp-ms-steps-selectors {
  padding: 0;
  display: flex;
  width: 100%;
  border-bottom: solid 2px;
  margin-bottom: 24px;
}
.cui-wp-ms-steps-selectors li {
  flex: 1;
  text-align: center;
  list-style: none;
  position: relative;
  line-height: 3;
  margin-bottom: 12px;
}
.cui-wp-ms-steps-selectors li.active::after {
  content: "";
  height: 0px;
  width: 0px;
  border-width: 24px 24px 0 24px;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-right-color: transparent;
  border-style: solid;
  position: absolute;
  bottom: -36px;
  left: 50%;
  transform: translateX(-50%);
}
.cui-wp-ms-steps-selectors li + li {
  border-left: solid 1px;
}
.cui-wp-ms-steps-selectors.cui-wp-ms-steps-numbered {
  border-bottom: none;
}
.cui-wp-ms-steps-selectors.cui-wp-ms-steps-numbered li.active::after {
  transform: translateX(-50%) rotate(180deg);
  bottom: -48px;
}
.cui-wp-ms-steps-selectors.cui-wp-ms-steps-numbered li::before {
  content: "";
  height: 0px;
  width: 100%;
  border-bottom: solid 1px;
  position: absolute;
  transform: translateX(36px);
  top: 36px;
}
.cui-wp-ms-steps-selectors.cui-wp-ms-steps-numbered li:last-child::before {
  display: none;
}
.cui-wp-ms-steps-selectors.cui-wp-ms-steps-numbered li + li {
  border-left: none;
}
.cui-wp-ms-steps-selectors.cui-wp-ms-steps-numbered .cui-wp-ms-step-select-link {
  flex: auto;
  border: solid 1px;
  display: block;
  margin: auto;
  line-height: 66px;
  font-size: 2rem;
  width: 72px;
  height: 72px;
}
.cui-wp-ms-steps-selectors.cui-wp-ms-steps-numbered .cui-wp-ms-step-select-link,
.cui-wp-ms-steps-selectors.cui-wp-ms-steps-numbered .cui-wp-ms-step-select-link .cui-wp-ms-step-number {
  border-radius: 100px;
  border-width: 2px;
}
.cui-wp-ms-steps-selectors.cui-wp-ms-steps-numbered .cui-wp-ms-step-select-link .cui-wp-ms-step-number {
  width: 70px;
  height: 70px;
  margin-left: -1px;
  margin-top: -1px;
  background: white;
  color: black;
  transition: background-color 0.25s ease;
}
.cui-wp-ms-steps-selectors.cui-wp-ms-steps-numbered .cui-wp-ms-step-select-link a:hover, .cui-wp-ms-steps-selectors.cui-wp-ms-steps-numbered .cui-wp-ms-step-select-link a:active, .cui-wp-ms-steps-selectors.cui-wp-ms-steps-numbered .cui-wp-ms-step-select-link a:focus {
  text-decoration: none;
}
.cui-wp-ms-steps-selectors.cui-wp-ms-steps-numbered .cui-wp-ms-step-select-link a:hover .cui-wp-ms-step-number, .cui-wp-ms-steps-selectors.cui-wp-ms-steps-numbered .cui-wp-ms-step-select-link a:active .cui-wp-ms-step-number, .cui-wp-ms-steps-selectors.cui-wp-ms-steps-numbered .cui-wp-ms-step-select-link a:focus .cui-wp-ms-step-number {
  background: black;
  color: white;
}

.cui-wp-ms-video {
  text-align: center;
  width: 100%;
  height: 0;
  position: relative;
  padding-bottom: 56.25%;
}
.cui-wp-ms-video .embedContent__alternative {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  content: " ";
  background-color: rgba(7, 0, 16, 0.3);
  border: solid 1px #cc334a;
}
.cui-wp-ms-video .embedContent__alternative > p {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.cui-wp-ms-video .js-video-trigger div {
  display: inline-block;
  position: relative;
}
.cui-wp-ms-video .js-video-trigger div:after {
  display: block;
  content: " ";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("/style%20library/countrysites/images/ico-mediaspots-player.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 120px;
}
.cui-wp-ms-video .js-video-trigger:hover div:after {
  background-image: url("/style%20library/countrysites/images/ico-mediaspots-player-hover.svg");
  background-size: 144px;
}
.cui-wp-ms-video img {
  max-width: 100%;
}

.ncui-term-link.external {
  padding-right: 14px;
  background-image: url("../images/icon-link-external.svg");
  background-repeat: no-repeat;
  background-position: right top 8.5px;
  background-size: 10px;
}

.ncui-depth-0 {
  font-weight: 600;
  font-size: 1.1rem;
}
.ncui-depth-0.external {
  background-size: 1.1rem;
}