
a.block-link{display:block;text-decoration:none !important;padding:0;margin:0;color:inherit}a.block-link:link,a.block-link:visited,a.block-link:hover,a.block-link:active{color:inherit}

/*
TopBox is derived from Nivo Lightbox v1.3.1, created by Dev7studios:
http://dev7studios.com/nivo-lightbox

TopBox is updated for jQuery 3 and has additional features / content support.
Maintained by William Woodgate

TopBox homepage:
https://willwoodgate.com/projects/topbox/

Free to use and abuse under the MIT license.
http://www.opensource.org/licenses/mit-license.php
*/
/* Core CSS to make the lightbox work */
.topbox_open .topbox_blur_wrapper {
  filter: blur(1px);
}

.topbox_overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99995;
  width: 100%;
  height: 100%;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

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

.topbox_fill {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.topbox_overlay.topbox_open {
  visibility: visible;
  opacity: 1;
}

.topbox_wrapper {
  position: absolute;
  z-index: 99996;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
}

.topbox_content {
  position: relative;
  z-index: 99998;
  height: 80vh;
  width: 80vw;
  display: flex;
  align-items: center;
  justify-content: center;
}

.topbox_title_wrap {
  position: relative;
  z-index: 99998;
}

.topbox_nav {
  display: none;
}

.topbox_prev,
.topbox_next,
.topbox_close {
  position: absolute;
  z-index: 99999;
  background: none;
  border: none;
  cursor: pointer;
}

.topbox_prev {
  left: 0;
}

.topbox_next {
  right: 0;
}

.topbox_close {
  top: 0;
  right: 0;
}

.topbox_close_layer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99997;
}

.topbox_image {
  display: inline-block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  position: relative;
  margin: auto;
}

.topbox_html5_audio_wrap {
  width: 100%;
}

.topbox_html5audio {
  width: 100%;
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  display: block;
}

/* .topbox_html5_video_wrap {
  width: 100%;
} */

.topbox_html5video {
  margin: auto;
  max-width: 100%;
  height: auto;
}

.topbox_iframe_wrap,
.topbox_iframe,
.topbox_pdf_wrap,
.topbox_pdf {
  width: 100%;
  height: 100%;
  display: block;
}

.topbox_pdf_mobile_message {
  display: inline-block;
  margin: auto;
}

.topbox_embedded_web_video {
  position: relative;
  padding-bottom: 56.25% !important;
  height: 0;
  width: 100%;
  overflow: hidden;
}

.topbox_embedded_web_video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.topbox_video_iframe_wrap {
  position: relative;
  padding-bottom: 56.25% !important;
  height: 0;
  width: 100%;
}

iframe.topbox_video_iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*
Fix for video sizing, if using the Plyr plugin for custom video controls
https://github.com/sampotts/plyr
*/
.topbox_content .plyr {
  min-width: 100%;
}

.plyr__video-wrapper {
  max-height: 80vh;
  max-width: 80vw;
}


.topbox_html5_video_wrap video {
  max-width: 100%; 
  max-height: 100%;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.topbox_inline,
.topbox_ajax {
  max-height: 100%;
  width: 100%;
  overflow: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  /* https://bugzilla.mozilla.org/show_bug.cgi?id=308801 */
}

.topbox_error {
  display: table;
  text-align: center;
  width: 100%;
  height: 100%;
  color: #fff;
}

.topbox_error p {
  display: table-cell;
  vertical-align: middle;
}

.topbox_notouch .topbox_effect_fade,
.topbox_notouch .topbox_effect_slideLeft,
.topbox_notouch .topbox_effect_slideRight,
.topbox_notouch .topbox_effect_slideUp,
.topbox_notouch .topbox_effect_slideDown {
  -webkit-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  transition: all 300ms ease-in-out;
}

/* slideLeft / slideRight / slideUp / slideDown */
.topbox_notouch .topbox_effect_slideLeft .topbox_content,
.topbox_notouch .topbox_effect_slideRight .topbox_content,
.topbox_notouch .topbox_effect_slideUp .topbox_content,
.topbox_notouch .topbox_effect_slideDown .topbox_content {
  -webkit-transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -moz-transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -ms-transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  -o-transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
  transition: all 0.5s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.topbox_notouch .topbox_effect_slideLeft .topbox_content {
  -webkit-transform: translateX(-20%);
  -moz-transform: translateX(-20%);
  -ms-transform: translateX(-20%);
  transform: translateX(-20%);
}

.topbox_notouch .topbox_effect_slideRight .topbox_content {
  -webkit-transform: translateX(20%);
  -moz-transform: translateX(20%);
  -ms-transform: translateX(20%);
  transform: translateX(20%);
}

.topbox_notouch .topbox_effect_slideLeft.topbox_open .topbox_content,
.topbox_notouch .topbox_effect_slideRight.topbox_open .topbox_content {
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.topbox_notouch .topbox_effect_slideDown .topbox_content {
  -webkit-transform: translateY(-20%);
  -moz-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  transform: translateY(-20%);
}

.topbox_notouch .topbox_effect_slideUp .topbox_content {
  -webkit-transform: translateY(20%);
  -moz-transform: translateY(20%);
  -ms-transform: translateY(20%);
  transform: translateY(20%);
}

.topbox_notouch .topbox_effect_slideUp.topbox_open .topbox_content,
.topbox_notouch .topbox_effect_slideDown.topbox_open .topbox_content {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

/* Our default lightbox skin (darkroom) */
.topbox_open .topbox_blur_wrapper {
  filter: blur(1px);
}

.topbox_skin_darkroom .topbox_fill {
  background: rgba(0, 0, 0, 0.8);
}

.topbox_skin_darkroom .topbox_pdf_mobile_message {
  color: #FFFFFF;
  font-size: 18px;
}

.topbox_skin_darkroom .topbox_pdf_mobile_message a,
.topbox_skin_darkroom .topbox_pdf_mobile_message a:visited {
  color: #FFFFFF;
  text-decoration: underline;
}

.topbox_skin_darkroom .topbox_nav {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.topbox_skin_darkroom .topbox_prev,
.topbox_skin_darkroom .topbox_next,
.topbox_skin_darkroom .topbox_close {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 45px;
  opacity: 0.5;
  transition: all 300ms ease-in;
  padding: 2vw;
  line-height: 1;
}

.topbox_skin_darkroom .topbox_close {
  margin-top: -10px;
  font-size: 55px;
}

.topbox_skin_darkroom .topbox_prev:hover,
.topbox_skin_darkroom .topbox_next:hover,
.topbox_skin_darkroom .topbox_close:hover {
  opacity: 1;
}

.topbox_skin_darkroom .topbox_prev:before {
  content: "←"
}

.topbox_skin_darkroom .topbox_next:before {
  content: "→"
}

.topbox_skin_darkroom .topbox_close:before {
  content: "×";
}

.topbox_skin_darkroom .topbox_title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  background: #000;
  color: #fff;
  padding: 7px 15px;
  margin-top: 7px;
  border-radius: 30px;
  text-align: center;
  display: inline-block;
}


/**
 *
 * slippry v1.4.0 - Responsive content slider for jQuery
 * http://slippry.com
 *
 * Authors: Lukas Jakob Hafner - @saftsaak
 *          Thomas Hurd - @SeenNotHurd
 *
 * Copyright 2016, booncon oy - http://booncon.com
 *
 *
 * Released under the MIT license - http://opensource.org/licenses/MIT
 */
/* kenBurns animations, very basic */
@-webkit-keyframes left-right {
  0% {
    -webkit-transform: translateY(-20%) translateX(-10%);
            transform: translateY(-20%) translateX(-10%); }
  100% {
    -webkit-transform: translateY(0%) translateX(10%);
            transform: translateY(0%) translateX(10%); } }
@-o-keyframes left-right {
  0% {
    -o-transform: translateY(-20%) translateX(-10%);
       transform: translateY(-20%) translateX(-10%); }
  100% {
    -o-transform: translateY(0%) translateX(10%);
       transform: translateY(0%) translateX(10%); } }
@keyframes left-right {
  0% {
    -webkit-transform: translateY(-20%) translateX(-10%);
         -o-transform: translateY(-20%) translateX(-10%);
            transform: translateY(-20%) translateX(-10%); }
  100% {
    -webkit-transform: translateY(0%) translateX(10%);
         -o-transform: translateY(0%) translateX(10%);
            transform: translateY(0%) translateX(10%); } }
@-webkit-keyframes right-left {
  0% {
    -webkit-transform: translateY(0%) translateX(10%);
            transform: translateY(0%) translateX(10%); }
  100% {
    -webkit-transform: translateY(-20%) translateX(-10%);
            transform: translateY(-20%) translateX(-10%); } }
@-o-keyframes right-left {
  0% {
    -o-transform: translateY(0%) translateX(10%);
       transform: translateY(0%) translateX(10%); }
  100% {
    -o-transform: translateY(-20%) translateX(-10%);
       transform: translateY(-20%) translateX(-10%); } }
@keyframes right-left {
  0% {
    -webkit-transform: translateY(0%) translateX(10%);
         -o-transform: translateY(0%) translateX(10%);
            transform: translateY(0%) translateX(10%); }
  100% {
    -webkit-transform: translateY(-20%) translateX(-10%);
         -o-transform: translateY(-20%) translateX(-10%);
            transform: translateY(-20%) translateX(-10%); } }
/* added to the original element calling slippry */
.sy-box.sy-loading {
  background: url("/images/sy-loader.gif") 50% 50% no-repeat;
  -webkit-background-size: 32px 32px;
          background-size: 32px;
  min-height: 40px; }
  .sy-box.sy-loading .sy-slides-wrap, .sy-box.sy-loading .sy-pager {
    visibility: hidden; }

/* element that wraps the slides */
.sy-slides-wrap {
  position: relative;
  height: 100%;
  width: 100%; }
  .sy-slides-wrap:hover .sy-controls {
    display: block; }

/* element that crops the visible area to the slides */
.sy-slides-crop {
  height: 100%;
  width: 100%;
  position: absolute;
  overflow: hidden; }

/* list containing the slides */
.sy-list {
  width: 100%;
  height: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute; }
  .sy-list.horizontal {
    -webkit-transition: left ease;
         -o-transition: left ease;
            transition: left ease; }
  .sy-list.vertical {
    -webkit-transition: top ease;
         -o-transition: top ease;
            transition: top ease; }

/* single slide */
.sy-slide {
  position: absolute;
  width: 100%;
  z-index: 2; }
  .sy-slide.kenburns {
    width: 140%;
    left: -20%; }
    .sy-slide.kenburns.useCSS {
      -webkit-transition-property: opacity;
           -o-transition-property: opacity;
              transition-property: opacity; }
      .sy-slide.kenburns.useCSS.sy-ken:nth-child(1n) {
        -webkit-animation-name: left-right;
             -o-animation-name: left-right;
                animation-name: left-right;
        -webkit-animation-fill-mode: forwards;
             -o-animation-fill-mode: forwards;
                animation-fill-mode: forwards; }
      .sy-slide.kenburns.useCSS.sy-ken:nth-child(2n) {
        -webkit-animation-name: right-left;
             -o-animation-name: right-left;
                animation-name: right-left;
        -webkit-animation-fill-mode: forwards;
             -o-animation-fill-mode: forwards;
                animation-fill-mode: forwards; }
  .sy-slide.sy-active {
    z-index: 3; }
  .sy-slide > img {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%;
    border: 0; }
  .sy-slide > a {
    margin: 0;
    padding: 0;
    display: block;
    width: 100%; }
    .sy-slide > a > img {
      margin: 0;
      padding: 0;
      display: block;
      width: 100%;
      border: 0; }

/* next/ prev buttons, with arrows and clickable area a lot larger than the visible buttons */
.sy-controls {
  display: none;
  list-style: none;
  height: 100%;
  width: 100%;
  position: absolute;
  padding: 0;
  margin: 0; }
  .sy-controls li {
    position: absolute;
    width: 10%;
    min-width: 4.2em;
    height: 100%;
    z-index: 33; }
    .sy-controls li.sy-prev {
      left: 0;
      top: 0; }
      .sy-controls li.sy-prev a:after {
        background-position: -5% 0; }
    .sy-controls li.sy-next {
      right: 0;
      top: 0; }
      .sy-controls li.sy-next a:after {
        background-position: 105% 0; }
    .sy-controls li a {
      position: relative;
      width: 100%;
      height: 100%;
      display: block;
      text-indent: -9999px; }
      .sy-controls li a:link, .sy-controls li a:visited {
        opacity: 0.4; }
      .sy-controls li a:hover, .sy-controls li a:focus {
        opacity: 0.8;
        outline: none; }
      .sy-controls li a:after {
        content: "";
        background-image: url("/images/arrows.svg");
        background-repeat: no-repeat;
        -webkit-background-size: cover;
                background-size: cover;
        text-align: center;
        text-indent: 0;
        line-height: 2.8em;
        color: #111;
        font-weight: 800;
        position: absolute;
        background-color: #fff;
        width: 2.8em;
        height: 2.8em;
        left: 50%;
        top: 50%;
        margin-top: -1.4em;
        margin-left: -1.4em;
        border-radius: 50%; }
  @media only screen and (max-device-width: 600px) {
    .sy-controls {
      display: block; }
      .sy-controls li {
        min-width: 2.1em; }
        .sy-controls li a:after {
          width: 1.4em;
          height: 1.4em;
          margin-top: -0.7em;
          margin-left: -0.7em; } }

/* captions, styled fo the overlay variant */
.sy-caption-wrap {
  position: absolute;
  bottom: 2em;
  z-index: 12;
  left: 50%; }
  .sy-caption-wrap .sy-caption {
    position: relative;
    left: -50%;
    background-color: rgba(0, 0, 0, 0.54);
    color: #fff;
    padding: 0.4em 1em;
    border-radius: 1.2em; }
    .sy-caption-wrap .sy-caption a:link, .sy-caption-wrap .sy-caption a:visited {
      color: #e24b70;
      font-weight: 600;
      text-decoration: none; }
    .sy-caption-wrap .sy-caption a:hover, .sy-caption-wrap .sy-caption a:focus {
      text-decoration: underline; }
  @media only screen and (max-device-width: 600px), screen and (max-width: 600px) {
    .sy-caption-wrap {
      left: 0;
      bottom: 0.4em; }
      .sy-caption-wrap .sy-caption {
        left: 0;
        padding: 0.2em 0.4em;
        font-size: 0.92em;
        border-radius: 0; } }

/* pager bubbles */
.sy-pager {
  clear: both;
  display: block;
  width: 100%;
  margin: 1em 0 0;
  padding: 0;
  list-style: none;
  text-align: center; }
  .sy-pager li {
    display: inline-block;
    width: 1.2em;
    height: 1.2em;
    margin: 0 1em 0 0;
    border-radius: 50%; }
    .sy-pager li.sy-active a {
      background-color: #e24b70; }
    .sy-pager li a {
      width: 100%;
      height: 100%;
      display: block;
      background-color: #ccc;
      text-indent: -9999px;
      -webkit-background-size: 2em 2em;
              background-size: 2em;
      border-radius: 50%; }
      .sy-pager li a:link, .sy-pager li a:visited {
        opacity: 1.0; }
      .sy-pager li a:hover, .sy-pager li a:focus {
        opacity: 0.6; }

/* element to "keep/ fill" the space of the content, gets intrinsic height via js */
.sy-filler {
  width: 100%; }
  .sy-filler.ready {
    -webkit-transition: padding 600ms ease;
         -o-transition: padding 600ms ease;
            transition: padding 600ms ease; }



.font-weight-100{font-weight:100}.font-weight-200{font-weight:200}.font-weight-300{font-weight:300}.font-weight-400{font-weight:400}.font-weight-500{font-weight:500}.font-weight-600{font-weight:600}.font-weight-700{font-weight:700}.font-weight-800{font-weight:800}.font-weight-900{font-weight:900}.font-style-normal{font-style:normal}.font-style-italic{font-style:italic}

/* SmoothScroll stack v1.2.0 [each.css] */



/* End of SmoothScroll stack */




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



.simple-modal {
	position: fixed !important;
}

:root{--light-gray:rgba(230, 230, 230, 1.00);--medium-gray:rgba(202, 202, 202, 1.00);--dark-gray:rgba(138, 138, 138, 1.00);--black:rgba(10, 10, 10, 1.00);--black-color:var(--black);--white:rgba(254, 254, 254, 1.00);--white-color:var(--white);--primary:rgba(137, 34, 20, 1.00);--secondary:rgba(68, 95, 37, 1.00);--success:rgba(67, 172, 106, 1.00);--warning:rgba(240, 138, 36, 1.00);--alert:rgba(240, 65, 36, 1.00);--primary-contrast:rgba(255, 255, 255, 1.00);--secondary-contrast:rgba(51, 51, 51, 1.00);--success-contrast:rgba(254, 254, 254, 1.00);--warning-contrast:rgba(254, 254, 254, 1.00);--alert-contrast:rgba(254, 254, 254, 1.00);/* --primary-light:rgba(255, 244, 230, 1.00);--secondary-light:rgba(255, 255, 247, 1.00);--success-light:rgba(255, 255, 255, 1.00);--warning-light:rgba(255, 255, 246, 1.00);--alert-light:rgba(255, 255, 246, 1.00);*/--primary-dark:rgba(107, 4, 0, 1.00);--secondary-dark:rgba(38, 65, 7, 1.00);--success-dark:rgba(37, 142, 76, 1.00);--warning-dark:rgba(210, 108, 6, 1.00);--alert-dark:rgba(210, 35, 6, 1.00);--header-color:rgba(34, 34, 34, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(34, 34, 34, 1.00);--link-color:rgba(137, 34, 20, 1.00);--link-color-hover:rgba(137, 34, 20, 1.00);--selection-background:var(--primary);--selection-text:var(--primary-contrast);--link-decoration:none;--link-decoration-hover:none;--overlay-color:rgba(0, 0, 0, 0.50);--radius:0px}::-moz-selection{background:var(--selection-background);color:var(--selection-text)}::selection{background:var(--selection-background);color:var(--selection-text)}.alt{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(230, 230, 230, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(137, 34, 20, 1.00);--link-color-hover:rgba(137, 34, 20, 1.00);--link-decoration:none;--link-decoration-hover:none}.grid-container{max-width:100%;}.radius{border-radius:var(--radius)}body{font-size:calc(16rem/16)}h1,.h1{font-size:calc(24rem/16)}h2,.h2{font-size:calc(20rem/16)}h3,.h3{font-size:calc(19rem/16)}h4,.h4{font-size:calc(21rem/16)}h5,.h5{font-size:calc(17rem/16)}h6,.h6{font-size:calc(16rem/16)}small{font-size:40%}@media only screen and (min-width:40em){body{font-size:calc(16rem/16)}h1,.h1{font-size:calc(48rem/16)}h2,.h2{font-size:calc(40rem/16)}h3,.h3{font-size:calc(31rem/16)}h4,.h4{font-size:calc(28rem/16)}h5,.h5{font-size:calc(20rem/16)}h6,.h6{font-size:calc(16rem/16)}small{font-size:30%}}@media only screen and (min-width:64em){body{font-size:calc(16rem/16)}h1,.h1{font-size:calc(48rem/16)}h2,.h2{font-size:calc(40rem/16)}h3,.h3{font-size:calc(31rem/16)}h4,.h4{font-size:calc(31rem/16)}h5,.h5{font-size:calc(20rem/16)}h6,.h6{font-size:calc(16rem/16)}small{font-size:30%}}a{color:var(--link-color);-webkit-text-decoration:var(--link-decoration);text-decoration:var(--link-decoration)}a:hover,a:focus{color:var(--link-color-hover);-webkit-text-decoration:var(--link-decoration-hover);text-decoration:var(--link-decoration-hover)}.menu a{color:var(--menu-link-color);background:var(--menu-bg-color)}.menu a:hover{color:var(--menu-link-color-hover)}h1,h2,h3,h4,h5,h6,h1>a,h2>a,h3>a,h4>a,h5>a,h6>a{color:var(--header-color)}small{color:var(--small-color)}.subheader{color:var(--subheader-color)}.text ul,.text ol{list-style-position:inside}.text>ul,.text>ol,.text .mez>div>ul,.text .mez>div>ol{margin-left:1.25rem}.text ul{list-style-type:disc}.text ul ul,.text ol ul{list-style-type:circle}.text ol{list-style-type:decimal}.text ol ol,.text ul ol{list-style-type:lower-alpha}.radius,.radius:before,.radius:after{border-radius:calc(0rem/16)}body{}
/*!* Font Awesome Pro 5.13.0 by @fontawesome - https://fontawesome.com* License - https://fontawesome.com/license (Commercial License)*/@font-face{font-family:'Font Awesome 5 Pro';font-style:normal;font-weight:900;font-display:block;src:url("../../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.eot");src:url("../../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.eot?#iefix") format("embedded-opentype"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.woff2") format("woff2"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.woff") format("woff"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.ttf") format("truetype"),url("../../rw_common/plugins/stacks/fa5-fonts/fa-solid-900.svg#fontawesome") format("svg")}.fa,.fas{font-family:'Font Awesome 5 Pro';font-weight:900}
            .readmore{font-size:calc(18rem/16) ;font-weight:600 ;}@media only screen and (min-width:40em){            .readmore{font-size:calc(20rem/16) }}@media only screen and (min-width:64em){            .readmore{font-size:calc(20rem/16) }}
            .footerbread{font-size:calc(16rem/16) ;}@media only screen and (min-width:40em){            .footerbread{font-size:calc(14rem/16) }}@media only screen and (min-width:64em){            .footerbread{font-size:calc(14rem/16) }}
.bg1{background-color:rgba(204, 204, 204, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg1{background-attachment:scroll!important}}
.bg2{background-color:rgba(137, 34, 20, 0.14) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg2{background-attachment:scroll!important}}
.bg3{background-color:rgba(137, 34, 20, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg3{background-attachment:scroll!important}}
.bg4{background-color:rgba(68, 95, 37, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg4{background-attachment:scroll!important}}
.height1{height:100% !important;min-height:fit-content !important;max-height:fit-content !important;}  
.shadow1{text-shadow:5px 5px 5px rgba(251, 2, 255, 1.00);}
.txtover1{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(255, 255, 255, 1.00);--small-color:rgba(255, 255, 255, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(137, 34, 20, 1.00);--link-color-hover:rgba(137, 34, 20, 1.00);--link-decoration:none;--link-decoration-hover:none}
.schatten1{text-shadow:2px 2px 5px rgba(0, 0, 0, 0.80);}
.schatten2{-webkit-filter:drop-shadow(1px 1px 1px rgba(255, 255, 255, 1.00));filter:drop-shadow(1px 1px 1px rgba(255, 255, 255, 1.00));}
.border1{border-color:rgba(224, 224, 224, 1.00) ;border-width:1px ;border-style:solid ;}
.footer1200 .myclass{width:75% ;}  
.bg6{background-color:rgba(245, 245, 245, 1.00) ;background-position:center center ;background-origin:padding-box ;background-blend-mode:normal ;background-attachment:scroll   ;-webkit-background-clip:border-box ;background-clip:border-box ;}@media (hover:none) and (pointer:coarse){.bg6{background-attachment:scroll!important}}
.paddingbild{padding-top:0.00px ;padding-left:0.00px ;padding-bottom:11.00px ;padding-right:0.00px ;}@media only screen and (min-width:40em){.paddingbild{padding-top:0.00px ;padding-left:0.00px ;padding-bottom:11.00px ;padding-right:0.00px }}@media only screen and (min-width:64em){.paddingbild{padding-top:0.00px ;padding-left:0.00px ;padding-bottom:11.00px ;padding-right:0.00px }}
.borderstart{border-color:rgba(190, 190, 190, 1.00) ;border-width:1px ;}
.txtweiss{--header-color:rgba(255, 255, 255, 1.00);--subheader-color:rgba(255, 255, 255, 1.00);--small-color:rgba(255, 255, 255, 1.00);--text-color:rgba(255, 255, 255, 1.00);--link-color:rgba(255, 255, 255, 1.00);--link-color-hover:rgba(255, 255, 255, 1.00);--link-decoration:none;--link-decoration-hover:none}
.topbox_content {
  width: 100vw;
  height: 100vh;
}

.topbox_notouch .topbox_effect_fade,
.topbox_notouch .topbox_effect_slideLeft,
.topbox_notouch .topbox_effect_slideRight,
.topbox_notouch .topbox_effect_slideUp,
.topbox_notouch .topbox_effect_slideDown {
  -webkit-transition: all 0ms ease-in-out;
  -moz-transition: all 0ms ease-in-out;
  -ms-transition: all 0ms ease-in-out;
  -o-transition: all 0ms ease-in-out;
  transition: all 0ms ease-in-out;
}



#topbox_trigger_region_stacks_in_620_32 {
  position: relative;
}

#topbox_trigger_stacks_in_620_32 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}






























/* Our lightbox skin named 'half_way' */
@media screen and (min-width: 768px) {
  .topbox_overlay.topbox_skin_half_way,
  .topbox_skin_half_way .topbox_fill {
    width: 50%;
    left: auto;
    right: 0;
  }

  .topbox_overlay.topbox_skin_half_way {
    box-shadow: 0px 0px 30px 20px rgba(0, 0, 0, 0.6);
  }

  .topbox_skin_half_way .topbox_content {
    width: 50vw !important;
  }
}

.topbox_skin_half_way .topbox_fill {
  background-color: #292929;
}

.topbox_skin_half_way .topbox_error,
.topbox_skin_half_way .topbox_pdf_mobile_message {
  color: #ffffff;
  font-size: 18px;
}

.topbox_skin_half_way .topbox_pdf_mobile_message a,
.topbox_skin_half_way .topbox_pdf_mobile_message a:visited {
  color: #FFFFFF;
  text-decoration: underline;
}

.topbox_skin_half_way .topbox_nav {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.topbox_skin_half_way .topbox_prev,
.topbox_skin_half_way .topbox_next,
.topbox_skin_half_way .topbox_close {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  text-decoration: none;
  font-size: 35px;
  color: #ffffff;
  background: #000000;
  transition: all 300ms ease-in;
  width: 45px;
  line-height: 45px;
  text-align: center;
  opacity: 1;
}

@media screen and (min-width: 768px) {

  .topbox_skin_half_way .topbox_prev,
  .topbox_skin_half_way .topbox_next {
    top: auto;
    bottom: 0;
    right: 0;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  .topbox_skin_half_way .topbox_prev {
    right: 55px;
    left: auto;
  }
}

.topbox_skin_half_way .topbox_close {
  line-height: 55px;
  margin-top: -8px;
  opacity: 1;
}

.topbox_skin_half_way .topbox_prev:hover,
.topbox_skin_half_way .topbox_next:hover,
.topbox_skin_half_way .topbox_close:hover {
  color: #cdcdcd;
  opacity: 1;
}

.topbox_skin_half_way .topbox_prev:before {
  content: "←"
}

.topbox_skin_half_way .topbox_next:before {
  content: "→"
}

.topbox_skin_half_way .topbox_close:before {
  content: "×";
}

@media screen and (min-width: 768px) {
  .topbox_skin_half_way .topbox_title_wrap {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 100%;
    background: #000000;
    min-height: 45px;
    text-align: left;
  }
}

.topbox_skin_half_way .topbox_title {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  line-height: 1.5;
  font-size: 16px;
  font-style: normal;
  font-weight: normal;
  background: none;
  color: #ffffff;
  background: #000000;
  padding: 10px 20px;
  width: calc(100% - 100px);
  /* Create space for the next / prev buttons */
  display: block;
}















































@font-face{font-family:FrizQuadrataPro-Regular;font-style:normal;font-weight:normal;src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.eot");src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.eot?#iefix") format("embedded-opentype");src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.otf") format("opentype");src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.ttf") format("truetype");src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.woff2") format("woff2");src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.woff") format("woff");}@font-face{font-family:FrizQuadrataPro-Regular;font-style:normal;font-weight:bold;src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.eot");src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.eot?#iefix") format("embedded-opentype");src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.otf") format("opentype");src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.ttf") format("truetype");src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.woff2") format("woff2");src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.woff") format("woff");}@font-face{font-family:FrizQuadrataPro-Regular;font-style:italic;font-weight:normal;src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.eot");src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.eot?#iefix") format("embedded-opentype");src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.otf") format("opentype");src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.ttf") format("truetype");src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.woff2") format("woff2");src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.woff") format("woff");}@font-face{font-family:FrizQuadrataPro-Regular;font-style:italic;font-weight:bold;src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.eot");src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.eot?#iefix") format("embedded-opentype");src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.otf") format("opentype");src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.ttf") format("truetype");src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.woff2") format("woff2");src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.woff") format("woff");}
 h1,.font-family-h1,h1 a,.font-family-h1 a, h2,.font-family-h2,h2 a,.font-family-h2 a, h3,.font-family-h3,h3 a,.font-family-h3 a, h4,.font-family-h4,h4 a,.font-family-h4 a, h5,.font-family-h5,h5 a,.font-family-h5 a, h6,.font-family-h6,h6 a,.font-family-h6 a, blockquote, a, ul,ul li,ol,ol li,dl,dl dd, fieldset,input,textarea,form label,input + label,fieldset label,input + datalist,legend, button,.button,.btn, .friz, .fontpro-stacks_in_621_7{font-family:"FrizQuadrataPro-Regular","Arial", Arial, Open Sans, "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana !important}

@font-face{font-family:FrizQuadrataPro-Regular;font-style:normal;font-weight:normal;src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.woff") format("woff")}@font-face{font-family:FrizQuadrataPro-Regular;font-style:normal;font-weight:bold;src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.woff") format("woff")}@font-face{font-family:FrizQuadrataPro-Regular;font-style:italic;font-weight:normal;src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.woff") format("woff")}@font-face{font-family:FrizQuadrataPro-Regular;font-style:italic;font-weight:bold;src:url("https://www.kolhoff-la.de/MyFontsWebfontsKit/webFonts/FrizQuadrataPro-Regular/font.woff") format("woff")}
 h1,.font-family-h1,h1 a,.font-family-h1 a, h2,.font-family-h2,h2 a,.font-family-h2 a, h3,.font-family-h3,h3 a,.font-family-h3 a, h4,.font-family-h4,h4 a,.font-family-h4 a, h5,.font-family-h5,h5 a,.font-family-h5 a, h6,.font-family-h6,h6 a,.font-family-h6 a, blockquote, a, ul,ul li,ol,ol li,dl,dl dd, fieldset,input,textarea,form label,input + label,fieldset label,input + datalist,legend, button,.button,.btn, .friz, .fontpro-stacks_in_621_5{font-family:"FrizQuadrataPro-Regular","Arial", Arial, Open Sans, "Open Sans", "Helvetica Neue", Helvetica, Arial, Verdana !important}
/*Start CSSLayerStack*/

 

#stacks_in_1227_6 .layer_containera /*container & bg img*/
{
margin-left: auto; margin-right:auto;

	 
	background: url() 1 repeat 
	 

	
	 

	 
	center
	 

	 

	 
	center;
	 

 

 

}









#stacks_in_1227_6 .layer_containera
{
 
	height: px;
 

/*cursor:pointer;*/

display:block;

z-index: 9000;
/*Custom CSS;*/

  
 

}

#stacks_in_1227_6 .layer_a /*backgroundlayer*/
{
margin-left: auto;
margin-right: auto;
display: block;
position: relative;
z-index: 999;
float: none;

padding-top: 0px;



   
width: 100%;








   
height: auto;
overflow: hidden;




















/*Custom CSS;*/

   



}






#stacks_in_1227_6 .layer_fronta /*frontlayer*/
{
margin-left: auto;
margin-right: auto;
position: absolute;
z-index: 9200 !important;



   
width: 100%;






   
height: auto;
overflow: hidden;











top: 20px;





   
left: 0; right: 0;




  

/*Custom CSS;*/

   



}

#stacks_in_1227_6 .layernote 
{
 display: none !important; 

	text-indent: 5px;
	background-color: #FCF8DC;
}
#stacks_in_1227_6 .edithelper 
{

color:white !important;
background:black !important;
padding:5px !important;
display: block !important;
text-align: center;

}

@media handheld, only screen and (max-width: 780px) {
 }


@media handheld, only screen and (max-width: 480px) {
 
}





.fadeInWrapperstacks_in_1227_2 {
  display: none;
}

.freeStyleWrapperstacks_in_1227_2 {
  position: relative;
}

.sy-pager {
  padding: 1em 0;
  margin: 0;
  line-height: 1;
  display: none;
  list-style: none;
  background: rgba(224, 224, 224, 0.50);
  
  text-align: center;
  
}

@media screen and (min-width: 996px) {
  .sy-pager {
    display: block;
  }
}

.sy-pager li {
  margin: 0 0.5em;
}



.sy-pager li a {
  color: rgba(0,0,0,0);
  background-color: rgba(224, 224, 224, 0.50);
}

.sy-pager li.sy-active a {
  background-color: rgba(224, 224, 224, 0.25);
}

.freeStyleCaptionsContainer {
  
  
  text-align: right;
  
  background: rgba(25, 25, 25, 0.00);
  color: rgba(119, 26, 43, 1.00);
  padding: 0.50rem 0.50rem;
  
	
	
}

.upperCaptionsContainer,
.lowerCaptionsContainer {
  display: none;
}


.upperCaptionsContainer,
.lowerCaptionsContainer {
  display: none !important;
}





.lowerCaptionsContainer {
  display: block;
}






.sy-controls {
  display: none;
}

.sy-controls li.sy-prev a:after,
.sy-controls li.sy-next a:after {
  color: rgba(224, 224, 224, 0.50);
  background: none;
  font-size: 45px;
  font-family: FontAwesome;
}


.sy-controls li.sy-prev a:after {
  content: '\f104';
}

.sy-controls li.sy-next a:after {
  content: '\f105';
}




















.freeStyleOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.freeStyleOverlayTableWrapper {
  height: 100%;
  width: calc(100% - 20%);
  display: table;
  margin-left: 10%;
  margin-right: 10%;
}

.freeStyleOverlayInner {
  display: table-cell;
  vertical-align: middle;
}






/* -- Start Svg Each css Template -- */


#stacks_in_1227_24 img {
	position: relative;
	max-width: 100%;
	height: auto;
}

.stacks_in_1227_24svgwrapper{
	position: relative;
}



#stacks_in_1227_24 {
	text-align: center !important;
}





	@media (max-width: 61.9em) {
		#stacks_in_1227_24 {
			text-align: center !important;
		}
	}
	
	@media (max-width: 47.9em) {
		#stacks_in_1227_24 {
			text-align: center !important;
		}
	}






/* -- End Svg Each css Template -- */
#stacks_in_1227_24 {
	margin: -16px 20px 12px 0px;
}

#stacks_out_1227_24 {
	width: 49%;
	margin-right:0;
}
/* -- Start Svg Each css Template -- */


#stacks_in_1227_23 img {
	position: relative;
	max-width: 100%;
	height: auto;
}

.stacks_in_1227_23svgwrapper{
	position: relative;
}



#stacks_in_1227_23 {
	text-align: center !important;
}





	@media (max-width: 61.9em) {
		#stacks_in_1227_23 {
			text-align: center !important;
		}
	}
	
	@media (max-width: 47.9em) {
		#stacks_in_1227_23 {
			text-align: center !important;
		}
	}






/* -- End Svg Each css Template -- */
#stacks_in_1227_23 {
	margin: 1px 10px 10px 10px;
}

#stacks_out_1227_23 {
	width: 39%;
}
/* -- Start Svg Each css Template -- */


#stacks_in_1227_21 img {
	position: relative;
	max-width: 100%;
	height: auto;
}

.stacks_in_1227_21svgwrapper{
	position: relative;
}



#stacks_in_1227_21 {
	text-align: right !important;
}





	@media (max-width: 61.9em) {
		#stacks_in_1227_21 {
			text-align: right !important;
		}
	}
	
	@media (max-width: 47.9em) {
		#stacks_in_1227_21 {
			text-align: right !important;
		}
	}






/* -- End Svg Each css Template -- */
#stacks_in_1227_21 {
	margin: 10px 50px 10px 10px;
}

#stacks_out_1227_21 {
	width: 35%;
	margin-right:0;
}
/* SmoothScroll stack v1.2.0 [each.css] */



/* End of SmoothScroll stack */


#stacks_in_635_19 {
	border: solid rgba(251, 2, 128, 1.00);
	border-width:  1px;
}

#stacks_out_635_19 {
	width: 96%;
}
.stacks_in_1195 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}
.grid-x > .cell.stacks_in_1197{width:100%;min-width:0px;max-width:1600px}@media only screen and (min-width:40em){.grid-x > .cell.stacks_in_1197{width:100%}}@media only screen and (min-width:64em){.grid-x > .cell.stacks_in_1197{width:30%}}


#webYepImagestacks_in_1199,
#webYepImagestacks_in_1199 .centered_image {
  text-align: center !important;
}

#webYepImagestacks_in_1199 img {
  display: inline-block !important;
  
  
  
  
  
  
  
  
  
  
  
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: 0em solid rgba(0, 0, 0, 1.00);
}


#stacks_in_1220 {
	margin: 0px 0px 10px 0px;
}
.grid-x > .cell.stacks_in_1201{width:100%;min-width:0px;max-width:1600px}@media only screen and (min-width:40em){.grid-x > .cell.stacks_in_1201{width:100%}}@media only screen and (min-width:64em){.grid-x > .cell.stacks_in_1201{width:70%}}

#stacks_in_1211 {
	margin: 0px 0px 20px 0px;
}
/* SmoothScroll stack v1.2.0 [each.css] */



/* End of SmoothScroll stack */


.spacerStack {
	height: 16.00px;
}

#spacerStackstacks_in_1233 {
	height: 16.00px;
}




























@media print {
	#spacerStackstacks_in_1233 {
		display: none !important;
	}
}

/* LinkPlus stack v1.1.4 */#stacks_in_1236 a:link {		font-style: italic !important;	color: #CCCCCC !important;		}#stacks_in_1236 a:visited {	color: #CCCCCC !important;	}#stacks_in_1236 a:hover,#stacks_in_1236 a:focus  {	color: #CCCCCC !important;	}#stacks_in_1236 a:active  {	color: #CCCCCC !important;		}#stacks_in_1236 a:link span,#stacks_in_1236 .com_marathia_stacks_downloadlinkicon_stack a:link:before, /* for DLI */#stacks_in_1236 .com_marathia_stacks_downloadlinkicon_stack a:link:after /* for DLI */ {	color: #CCCCCC !important;	text-decoration: none !important;	cursor: pointer;}#stacks_in_1236 a:visited span,#stacks_in_1236 .com_marathia_stacks_downloadlinkicon_stack a:visited:before, /* for DLI */#stacks_in_1236 .com_marathia_stacks_downloadlinkicon_stack a:visited:after /* for DLI */ {	color: #CCCCCC !important;}#stacks_in_1236 a:hover span,#stacks_in_1236 a:focus span,#stacks_in_1236 .com_marathia_stacks_downloadlinkicon_stack a:hover:before, /* for DLI */#stacks_in_1236 .com_marathia_stacks_downloadlinkicon_stack a:focus:before, /* for DLI */#stacks_in_1236 .com_marathia_stacks_downloadlinkicon_stack a:hover:after, /* for DLI */#stacks_in_1236 .com_marathia_stacks_downloadlinkicon_stack a:focus:after /* for DLI */ {	color: #CCCCCC !important;}#stacks_in_1236 a:active span,#stacks_in_1236 .com_marathia_stacks_downloadlinkicon_stack a:active:before, /* for DLI */#stacks_in_1236 .com_marathia_stacks_downloadlinkicon_stack a:active:after /* for DLI */ {	color: #CCCCCC !important;}/* @group internal link icon *//* @end *//* @group external link icon *//* @end *//* @group email link icon */#stacks_in_1236 a[href^="mailto"] span:after {								content: "";}/* @end *//* End of LinkPlus stack */
#stacks_in_1239 {
	font-size: 50%;
}
#mc_stack_stacks_in_1242 *,
#mc_stack_stacks_in_1242 *::before,
#mc_stack_stacks_in_1242 *::after {
	box-sizing: border-box;
}







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_1242,
#mc_button_accept_all_stacks_in_1242,
#mc_button_disallow_all_stacks_in_1242,
.mc_button_stacks_in_1242 {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: rgba(124, 30, 25, 1.00);
	border: 1px hidden rgba(124, 30, 25, 1.00);
	border-radius: 0.00rem;
	color: rgba(255, 255, 255, 1.00);
	cursor: pointer;
	margin-left: 1rem;
	display: inline-block;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	padding: 8px 8px;
	text-align: center;
	transition: all 100ms ease-in-out;
	white-space: nowrap;
	font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  
  
  
  
	margin-bottom: 5px;
	
	
}

#mc_button_stacks_in_1242:hover,
.mc_button_stacks_in_1242:hover,
#mc_button_accept_all_stacks_in_1242:hover,
#mc_button_disallow_all_stacks_in_1242:hover {
	color: rgba(255, 255, 255, 1.00);
	background-color: rgba(124, 30, 25, 1.00);
	border: 1px hidden rgba(124, 30, 25, 1.00);
}


#mc_button_stacks_in_1242:active,
.mc_button_stacks_in_1242:active,
#mc_button_accept_all_stacks_in_1242:active,
#mc_button_disallow_all_stacks_in_1242:active {
	color: rgba(255, 255, 255, 1.00);
	background-color: rgba(124, 30, 25, 1.00);
	border: 1px hidden rgba(124, 30, 25, 1.00);
	opacity: 0.50;
}

#mc_button_stacks_in_1242:focus,
#mc_button_accept_all_stacks_in_1242:focus,
#mc_button_disallow_all_stacks_in_1242:focus,
.mc_button_stacks_in_1242:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}



#mc_table_wrapper_stacks_in_1242 {
	margin-bottom: 10px;
}

#mc_refresh_button_stacks_in_1242,
#mc_purge_button_stacks_in_1242,
#mc_table_wrapper_stacks_in_1242 .mc_table_delete_button {
	margin-left: 0;
}

#mc_table_wrapper_stacks_in_1242 .cookie-table-row {
  display: flex;
  flex-direction: row;
  flex-wrap: no-wrap;
}

#mc_table_wrapper_stacks_in_1242 .mc_table_wrapper {
  display: flex;
  flex-direction: row;
  flex-grow: 0;
}

#mc_table_wrapper_stacks_in_1242 .cookie_name_cell {
	flex-grow: 0;
	width: 250px;
	word-break: break-word;
	padding: 15px;
}

#mc_table_wrapper_stacks_in_1242 .cookie_value_cell {
	flex-grow: 0;
	width: calc(100% - 250px);
	word-break: break-word;
	padding: 15px;
}

#mc_table_wrapper_stacks_in_1242 .delete_button_cell {
	padding: 15px;
}

#mc_table_wrapper_stacks_in_1242 .row-inner,
#mc_table_wrapper_stacks_in_1242 .cookie-details {
  flex-grow: 2;
}

/*
 * Media queries: optimize for different screen widths.
 */
@media all and (max-width: 1100px) {
	#mc_table_wrapper_stacks_in_1242 .cookie_name_cell,
	#mc_table_wrapper_stacks_in_1242 .cookie_value_cell,
	#mc_table_wrapper_stacks_in_1242 .delete_button_cell {
		padding: 5px 15px;
	}

  #mc_table_wrapper_stacks_in_1242 .cookie-details {
    flex-direction: column;
  }

  #mc_table_wrapper_stacks_in_1242 .cookie-details div {
    flex-grow: 0;
    width: 100%;
  }

  #mc_table_wrapper_stacks_in_1242 .cookie-details {
    width: 180px;
  }
}

@media all and (max-width: 580px) {
  #mc_table_wrapper_stacks_in_1242 .row-inner {
    flex-direction: column;
  }

  #mc_table_wrapper_stacks_in_1242 .row-inner div {
    flex-grow: 0;
    width: 100%;
  }

  #mc_table_wrapper_stacks_in_1242 .row-inner {
    width: 180px;
  }
}

@media all and (max-width: 320px) {
  #mc_table_wrapper_stacks_in_1242 .cookie-table-row {
    flex-direction: column;
  }

  #mc_table_wrapper_stacks_in_1242 .cookie-table-row div {
    flex-grow: 0;
    width: 100%;
  }
}

#mc_table_wrapper_stacks_in_1242 .cookie-table-row {
  border-bottom: 1px solid rgba(222, 226, 230, 1.00);
	background-color: rgba(255, 255, 255, 0.00);
	color: rgba(51, 51, 51, 1.00);
  border-collapse: collapse;
  padding-top: 5px;
}

#mc_table_wrapper_stacks_in_1242 .cookie-table-row.header {
  background-color: rgba(0, 0, 0, 0.05);
	color: rgba(51, 51, 51, 1.00);
  font-weight: bold;
}

#cookie_table_buttons_wrapper_stacks_in_1242 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#mc_refresh_button_stacks_in_1242,
#mc_purge_button_stacks_in_1242 {
	margin: 5px 15px;
}

#mc_refresh_button_stacks_in_1242 {
	display: inline-block;
}

#mc_purge_button_stacks_in_1242 {
	display: none;
}







#dialog_title_stacks_in_1242,
#dialog_desc_stacks_in_1242 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_1242,
	#mc_window_shade_stacks_in_1242,
	#mc_wrapper_stacks_in_1242 {
		display: none;
	}
}




.spacerStack {
	height: 24.00px;
}

#spacerStackstacks_in_1245 {
	height: 24.00px;
}




























@media print {
	#spacerStackstacks_in_1245 {
		display: none !important;
	}
}
#mc_stack_stacks_in_1248 *,
#mc_stack_stacks_in_1248 *::before,
#mc_stack_stacks_in_1248 *::after {
	box-sizing: border-box;
}







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_1248,
#mc_button_accept_all_stacks_in_1248,
#mc_button_disallow_all_stacks_in_1248,
.mc_button_stacks_in_1248 {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: rgba(113, 32, 30, 1.00);
	border: 1px hidden rgba(41, 145, 204, 0.20);
	border-radius: 0.00rem;
	color: rgba(255, 255, 255, 1.00);
	cursor: pointer;
	margin-left: 1rem;
	display: inline-block;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	padding: 8px 8px;
	text-align: center;
	transition: all 100ms ease-in-out;
	white-space: nowrap;
	font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  
  
  
  
	margin-bottom: 5px;
	
	
}

#mc_button_stacks_in_1248:hover,
.mc_button_stacks_in_1248:hover,
#mc_button_accept_all_stacks_in_1248:hover,
#mc_button_disallow_all_stacks_in_1248:hover {
	color: rgba(255, 255, 255, 1.00);
	background-color: rgba(113, 32, 30, 1.00);
	border: 1px hidden rgba(94, 110, 138, 0.00);
}


#mc_button_stacks_in_1248:active,
.mc_button_stacks_in_1248:active,
#mc_button_accept_all_stacks_in_1248:active,
#mc_button_disallow_all_stacks_in_1248:active {
	color: rgba(255, 255, 255, 1.00);
	background-color: rgba(113, 32, 30, 1.00);
	border: 1px hidden rgba(94, 110, 138, 0.00);
	opacity: 0.50;
}

#mc_button_stacks_in_1248:focus,
#mc_button_accept_all_stacks_in_1248:focus,
#mc_button_disallow_all_stacks_in_1248:focus,
.mc_button_stacks_in_1248:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}







#dialog_title_stacks_in_1248,
#dialog_desc_stacks_in_1248 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_1248,
	#mc_window_shade_stacks_in_1248,
	#mc_wrapper_stacks_in_1248 {
		display: none;
	}
}




.spacerStack {
	height: 24.00px;
}

#spacerStackstacks_in_1251 {
	height: 24.00px;
}




























@media print {
	#spacerStackstacks_in_1251 {
		display: none !important;
	}
}
#mc_stack_stacks_in_1254 *,
#mc_stack_stacks_in_1254 *::before,
#mc_stack_stacks_in_1254 *::after {
	box-sizing: border-box;
}







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_1254,
#mc_button_accept_all_stacks_in_1254,
#mc_button_disallow_all_stacks_in_1254,
.mc_button_stacks_in_1254 {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: rgba(113, 32, 30, 1.00);
	border: 1px hidden rgba(41, 145, 204, 0.20);
	border-radius: 0.00rem;
	color: rgba(255, 255, 255, 1.00);
	cursor: pointer;
	margin-left: 1rem;
	display: inline-block;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	padding: 8px 8px;
	text-align: center;
	transition: all 100ms ease-in-out;
	white-space: nowrap;
	font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  
  
  
  
	margin-bottom: 5px;
	
	
}

#mc_button_stacks_in_1254:hover,
.mc_button_stacks_in_1254:hover,
#mc_button_accept_all_stacks_in_1254:hover,
#mc_button_disallow_all_stacks_in_1254:hover {
	color: rgba(255, 255, 255, 1.00);
	background-color: rgba(113, 32, 30, 1.00);
	border: 1px hidden rgba(94, 110, 138, 0.00);
}


#mc_button_stacks_in_1254:active,
.mc_button_stacks_in_1254:active,
#mc_button_accept_all_stacks_in_1254:active,
#mc_button_disallow_all_stacks_in_1254:active {
	color: rgba(255, 255, 255, 1.00);
	background-color: rgba(113, 32, 30, 1.00);
	border: 1px hidden rgba(94, 110, 138, 0.00);
	opacity: 0.50;
}

#mc_button_stacks_in_1254:focus,
#mc_button_accept_all_stacks_in_1254:focus,
#mc_button_disallow_all_stacks_in_1254:focus,
.mc_button_stacks_in_1254:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}







#dialog_title_stacks_in_1254,
#dialog_desc_stacks_in_1254 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_1254,
	#mc_window_shade_stacks_in_1254,
	#mc_wrapper_stacks_in_1254 {
		display: none;
	}
}




.spacerStack {
	height: 24.00px;
}

#spacerStackstacks_in_1257 {
	height: 24.00px;
}




























@media print {
	#spacerStackstacks_in_1257 {
		display: none !important;
	}
}
#mc_stack_stacks_in_1260 *,
#mc_stack_stacks_in_1260 *::before,
#mc_stack_stacks_in_1260 *::after {
	box-sizing: border-box;
}







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_1260,
#mc_button_accept_all_stacks_in_1260,
#mc_button_disallow_all_stacks_in_1260,
.mc_button_stacks_in_1260 {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: rgba(113, 32, 30, 1.00);
	border: 1px hidden rgba(41, 145, 204, 0.20);
	border-radius: 0.00rem;
	color: rgba(255, 255, 255, 1.00);
	cursor: pointer;
	margin-left: 1rem;
	display: inline-block;
	font-family: inherit;
	font-size: 1rem;
	font-weight: 600;
	padding: 8px 8px;
	text-align: center;
	transition: all 100ms ease-in-out;
	white-space: nowrap;
	font-weight: normal;
  font-style: normal;
  text-transform: none;
  text-decoration: none;
  
  
  
  
	margin-bottom: 5px;
	
	
}

#mc_button_stacks_in_1260:hover,
.mc_button_stacks_in_1260:hover,
#mc_button_accept_all_stacks_in_1260:hover,
#mc_button_disallow_all_stacks_in_1260:hover {
	color: rgba(255, 255, 255, 1.00);
	background-color: rgba(113, 32, 30, 1.00);
	border: 1px hidden rgba(94, 110, 138, 0.00);
}


#mc_button_stacks_in_1260:active,
.mc_button_stacks_in_1260:active,
#mc_button_accept_all_stacks_in_1260:active,
#mc_button_disallow_all_stacks_in_1260:active {
	color: rgba(255, 255, 255, 1.00);
	background-color: rgba(113, 32, 30, 1.00);
	border: 1px hidden rgba(94, 110, 138, 0.00);
	opacity: 0.50;
}

#mc_button_stacks_in_1260:focus,
#mc_button_accept_all_stacks_in_1260:focus,
#mc_button_disallow_all_stacks_in_1260:focus,
.mc_button_stacks_in_1260:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}







#dialog_title_stacks_in_1260,
#dialog_desc_stacks_in_1260 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_1260,
	#mc_window_shade_stacks_in_1260,
	#mc_wrapper_stacks_in_1260 {
		display: none;
	}
}



#stacks_in_1262{text-align:justify}

#stacks_in_1262 {
	margin: 12px 0px 16px 0px;
}


.fadeInWrapperstacks_in_1228_2 {
  display: none;
}

.freeStyleWrapperstacks_in_1228_2 {
  position: relative;
}

.sy-pager {
  padding: 1em 0;
  margin: 0;
  line-height: 1;
  display: none;
  list-style: none;
  background: rgba(255, 255, 255, 0.00);
  
  text-align: center;
  
}

@media screen and (min-width: 996px) {
  .sy-pager {
    display: block;
  }
}

.sy-pager li {
  margin: 0 0.5em;
}



.sy-pager li a {
  color: rgba(0,0,0,0);
  background-color: rgba(255, 255, 255, 0.33);
}

.sy-pager li.sy-active a {
  background-color: rgba(25, 25, 25, 1.00);
}

.freeStyleCaptionsContainer {
  
  
  text-align: right;
  
  background: rgba(25, 25, 25, 0.00);
  color: rgba(119, 26, 43, 1.00);
  padding: 0.50rem 0.50rem;
  
	
	
}

.upperCaptionsContainer,
.lowerCaptionsContainer {
  display: none;
}


.upperCaptionsContainer,
.lowerCaptionsContainer {
  display: none !important;
}





.lowerCaptionsContainer {
  display: block;
}






.sy-controls {
  display: none;
}

.sy-controls li.sy-prev a:after,
.sy-controls li.sy-next a:after {
  color: rgba(255, 255, 255, 1.00);
  background: none;
  font-size: 45px;
  font-family: FontAwesome;
}


.sy-controls li.sy-prev a:after {
  content: '\f104';
}

.sy-controls li.sy-next a:after {
  content: '\f105';
}




















.freeStyleOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

.freeStyleOverlayTableWrapper {
  height: 100%;
  width: calc(100% - 20%);
  display: table;
  margin-left: 10%;
  margin-right: 10%;
}

.freeStyleOverlayInner {
  display: table-cell;
  vertical-align: middle;
}






/* SmoothScroll stack v1.2.0 [each.css] */



/* End of SmoothScroll stack */

 #stacks_in_1213 hr{border:0;height:0;width:100%;margin:0;padding:0}#stacks_in_1213 hr.gradient{height:1px;background:#333;background-image:-webkit-linear-gradient(left,#CCCCCC,#333333,#CCCCCC);background-image:-moz-linear-gradient(left,#CCCCCC,#333333,#CCCCCC);background-image:-ms-linear-gradient(left,#CCCCCC,#333333,#CCCCCC);background-image:-o-linear-gradient(left,#CCCCCC,#333333,#CCCCCC);background-image:linear-gradient(left,#CCCCCC,#333333,#CCCCCC)}#stacks_in_1213 hr.faded{height:1px;background-image:-webkit-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-moz-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-ms-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0));background-image:-o-linear-gradient(left,rgba(0,0,0,0),rgba(0,0,0,0.75),rgba(0,0,0,0))}#stacks_in_1213 hr.dashed_fade{border-bottom:1px dashed #7E7E7E;background:#333333}#stacks_in_1213 hr.dotted_fade{border-bottom:1px dotted #7E7E7E;background:#333333}#stacks_in_1213 hr.dashed{border-bottom:1px dashed #333333}#stacks_in_1213 hr.dotted{border-bottom:1px dotted #7E7E7E}#stacks_in_1213 hr.shadow{height:1px;box-shadow:inset 0 1px 1px -1px rgba(0,0,0,0.5)}#stacks_in_1213 hr.cloudy{margin:1px 0;box-shadow:0 0 1px 1px #333333}#stacks_in_1213 hr.cloudy:after{content:"\00a0"}#stacks_in_1213 hr.inset{border-top:1px solid rgba(0,0,0,0.1);border-bottom:1px solid rgba(255,255,255,0.3)}#stacks_in_1213 hr.inset_two{border-top:1px solid #CCCCCC;border-bottom:1px solid #333333}#stacks_in_1213 hr.inset_three{border-top:1px solid #333333;border-bottom:1px solid #CCCCCC}#stacks_in_1213 hr.inset_four{border-top:1px solid #333333;border-bottom:1px solid #CCCCCC}#stacks_in_1213 hr.flared{height:30px;border-style:solid;border-color:#333333;border-width:1px 0 0 0;border-radius:20px;margin-top:12px}#stacks_in_1213 hr.flared:before{display:block;content:"";height:30px;margin-top:-31px;border-style:solid;border-color:#333333;border-width:0 0 1px 0;border-radius:20px}#stacks_in_1213 hr.glyph{padding:0;border:0;border-top:1px double #333333;color:#333333;text-align:center;margin:1em 0}#stacks_in_1213 hr.glyph:after{content:"§";display:inline-block;position:relative;top:-0.00em;font-size:1.5em;padding:0 .25em;background:#FFFFFF} 

#stacks_in_1213 {
	margin: 0px 0px 10px 0px;
}

#stacks_in_1187 {
	margin: 20px 0px 0px 0px;
}
#usefulStackWrapperstacks_in_642_4 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_642_4 {
	padding-bottom: 0%;
	padding-top: 0%;
	padding-left: 0%;
	padding-right: 0%;
	
	margin-bottom: 0%;
	margin-top: 0%;
	margin-left: 0%;
	margin-right: 0%;
	
	display: block;
}








@media screen and (max-width: 100px) {
	#usefulStackstacks_in_642_4 {
		display: none;
	}
}









@media print {
	#usefulStackWrapperstacks_in_642_4 {
		display: none;
	}
}





#stacks_in_642_4 {
	margin: 0px 0px 30px 0px;
	padding: 0px 0px 24px 0px;
}
.webYepLoginStackstacks_in_642_2 {
	
	text-align: center;
	
	
}

@media print {
	.webYepLoginStackstacks_in_642_2 {
		display: none !important;
	}
}
