
/* 
WHW edits
- Remove retina @media block at the bottom
- Remove '.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading { background: url(icons/loading.gif) no-repeat 50% 50%; }'
- Remove 'background-image: url(icons/next.png);'
- Remove 'background-image: url(icons/prev.png);'
- Remove 'background: url(icons/close.png) no-repeat 5px 5px;'
- Remove default theme
*/


/*
 * Nivo Lightbox v1.2.0
 * http://dev7studios.com/nivo-lightbox
 *
 * Copyright 2013, Dev7studios
 * Free to use and abuse under the MIT license.
 * http://www.opensource.org/licenses/mit-license.php
 */

.nivo-lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99998;
	width: 100%;
	height: 100%;
	overflow: hidden;
	visibility: hidden;
	opacity: 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.nivo-lightbox-overlay.nivo-lightbox-open {
	visibility: visible;
	opacity: 1;
}
.nivo-lightbox-wrap  {
	position: absolute;
	top: 10%;
	bottom: 10%;
	left: 10%;
	right: 10%;
}
.nivo-lightbox-content {
	width: 100%;
	height: 100%;
}
.nivo-lightbox-title-wrap {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 99999;
	text-align: center;
}
.nivo-lightbox-nav { display: none; }
.nivo-lightbox-prev {
	position: absolute;
	top: 50%;
	left: 0;
}
.nivo-lightbox-next {
	position: absolute;
	top: 50%;
	right: 0;
}
.nivo-lightbox-close {
	position: absolute;
	top: 2%;
	right: 2%;
}

.nivo-lightbox-image { text-align: center; }
.nivo-lightbox-image img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	vertical-align: middle;
}

.nivo-lightbox-html5audio {
	width: 100%;
}

.nivo-lightbox-html5video {
	background: #000;
}

.nivo-lightbox-html5audio,
.nivo-lightbox-html5video {
	position: absolute;
	z-index: 99999;
	max-width: 100%;
	max-height: 100%;
	display: inline-block;
	top: 50%;
	left: 50%;
	-webkit-transform: translateY(-50%) translateX(-50%);
	-ms-transform: translateY(-50%) translateX(-50%);
	transform: translateY(-50%) translateX(-50%);
	vertical-align: middle;
}

.nivo-lightbox-content iframe {
	width: 100%;
	height: 100%;
}
.nivo-lightbox-inline,
.nivo-lightbox-ajax {
	max-height: 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 */
}
.nivo-lightbox-error {
	display: table;
	text-align: center;
	width: 100%;
	height: 100%;
	color: #fff;
	text-shadow: 0 1px 1px #000;
}
.nivo-lightbox-error p {
	display: table-cell;
	vertical-align: middle;
}

/* Effects
 **********************************************/
.nivo-lightbox-notouch .nivo-lightbox-effect-fade,
.nivo-lightbox-notouch .nivo-lightbox-effect-fadeScale,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideLeft,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideRight,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideUp,
.nivo-lightbox-notouch .nivo-lightbox-effect-slideDown,
.nivo-lightbox-notouch .nivo-lightbox-effect-fall {
	-webkit-transition: all 0.2s ease-in-out;
	   -moz-transition: all 0.2s ease-in-out;
	    -ms-transition: all 0.2s ease-in-out;
	     -o-transition: all 0.2s ease-in-out;
	        transition: all 0.2s ease-in-out;
}

/* fadeScale */
.nivo-lightbox-effect-fadeScale .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s;
	   -moz-transition: all 0.3s;
	    -ms-transition: all 0.3s;
	     -o-transition: all 0.3s;
	        transition: all 0.3s;
	-webkit-transform: scale(0.7);
	   -moz-transform: scale(0.7);
	    -ms-transform: scale(0.7);
	        transform: scale(0.7);
}
.nivo-lightbox-effect-fadeScale.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: scale(1);
	   -moz-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
}

/* slideLeft / slideRight / slideUp / slideDown */
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	   -moz-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	    -ms-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	     -o-transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
	        transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}
.nivo-lightbox-effect-slideLeft .nivo-lightbox-wrap {
	-webkit-transform: translateX(-10%);
	   -moz-transform: translateX(-10%);
	    -ms-transform: translateX(-10%);
	        transform: translateX(-10%);
}
.nivo-lightbox-effect-slideRight .nivo-lightbox-wrap {
	-webkit-transform: translateX(10%);
	   -moz-transform: translateX(10%);
	    -ms-transform: translateX(10%);
	        transform: translateX(10%);
}
.nivo-lightbox-effect-slideLeft.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideRight.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateX(0);
	   -moz-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
}
.nivo-lightbox-effect-slideDown .nivo-lightbox-wrap {
	-webkit-transform: translateY(-10%);
	   -moz-transform: translateY(-10%);
	    -ms-transform: translateY(-10%);
	        transform: translateY(-10%);
}
.nivo-lightbox-effect-slideUp .nivo-lightbox-wrap {
	-webkit-transform: translateY(10%);
	   -moz-transform: translateY(10%);
	    -ms-transform: translateY(10%);
	        transform: translateY(10%);
}
.nivo-lightbox-effect-slideUp.nivo-lightbox-open .nivo-lightbox-wrap,
.nivo-lightbox-effect-slideDown.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateY(0);
	   -moz-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}

/* fall */
.nivo-lightbox-body-effect-fall .nivo-lightbox-effect-fall {
	-webkit-perspective: 1000px;
	   -moz-perspective: 1000px;
	        perspective: 1000px;
}
.nivo-lightbox-effect-fall .nivo-lightbox-wrap {
	-webkit-transition: all 0.3s ease-out;
	   -moz-transition: all 0.3s ease-out;
	    -ms-transition: all 0.3s ease-out;
	     -o-transition: all 0.3s ease-out;
	        transition: all 0.3s ease-out;
	-webkit-transform: translateZ(300px);
	   -moz-transform: translateZ(300px);
	    -ms-transform: translateZ(300px);
	        transform: translateZ(300px);
}
.nivo-lightbox-effect-fall.nivo-lightbox-open .nivo-lightbox-wrap {
	-webkit-transform: translateZ(0);
	   -moz-transform: translateZ(0);
	    -ms-transform: translateZ(0);
	        transform: translateZ(0);
}/*
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;
}
.rwmenu{list-style:none}.rwmenu.dropdown,.rwmenu.drilldown,.rwmenu.accordion-menu{display:none}.rwmenu-wrapper>.rwmenu{display:-webkit-box;display:-ms-flexbox;display:flex}


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


/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

.animated {
/*   animation-duration: 1s; */
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

/* 
.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}
 */

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    transform: translate3d(0,-4px,0);
  }
}

.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

  25%, 75% {
    opacity: 0;
  }
}

.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

  30% {
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    transform: scale3d(1.05, .95, 1);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

.swing {
  transform-origin: top center;
  animation-name: swing;
}

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
  from {
    transform: none;
  }

  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  to {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }

  75% {
    transform: translate3d(0, -10px, 0);
  }

  90% {
    transform: translate3d(0, 5px, 0);
  }

  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }

  75% {
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    transform: translate3d(5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    transform: translate3d(10px, 0, 0);
  }

  90% {
    transform: translate3d(-5px, 0, 0);
  }

  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  75% {
    transform: translate3d(0, 10px, 0);
  }

  90% {
    transform: translate3d(0, -5px, 0);
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  animation-name: bounceInUp;
}

@keyframes bounceOut {
  20% {
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  animation-name: bounceOut;
}

@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  animation-name: bounceOutDown;
}

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }

  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }

  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }

  80% {
    transform: perspective(400px) scale3d(.95, .95, .95);
    animation-timing-function: ease-in;
  }

  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}

.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }

  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  to {
    transform: perspective(400px);
  }
}

.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

  60% {
    transform: skewX(20deg);
    opacity: 1;
  }

  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }

  to {
    transform: none;
    opacity: 1;
  }
}

.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}

.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}

.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }

  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  animation-name: hinge;
}

@keyframes hingeIn {
  0% {
  transform: translate3d(0, 700px, 0);
    opacity: 0;
  }

  20%, 60% {
  transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 0.50;
  }

  40%, 80% {
  transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  to {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
}

.hingeIn {
  animation-name: hingeIn;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

  50% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

  to {
    opacity: 0;
    transform: scale(.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}

.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  to {
    opacity: 0;
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}
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}
.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;
}













































@import url(http://fonts.googleapis.com/css?family=Raleway:400,200);
body.sideMenuOpen {
  overflow: hidden !important; }
#sideMenuToggleContainer_stacks_in_1787_658 {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  pointer-events: none;
  box-sizing: border-box;
  /*  */
  /*  */
  text-align: left;
  /*  */ }

#sideMenuToggle_stacks_in_1787_658 {
  text-align: center;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  display: inline-block;
  z-index: 9999;
  box-sizing: border-box;
  pointer-events: all;
  color: #FFFFFF;
  padding: 6px 10px 6px 10px;
  border-radius: 0px;
  /*  */
  /*  */
  /*  */
  /*  */
  width: auto;
  /*  */
  /*  */
  background: rgba(116, 22, 16, 1.00);
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  font-family: inherit;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */ }
  #sideMenuToggle_stacks_in_1787_658 span, #sideMenuToggle_stacks_in_1787_658 i {
    vertical-align: middle; }
  #sideMenuToggle_stacks_in_1787_658 span {
    font-size: 16px; }
  #sideMenuToggle_stacks_in_1787_658 i {
    font-size: 14px; }
    #sideMenuToggle_stacks_in_1787_658 * {
      text-align: center;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
            }
#sideMenuContainer_stacks_in_1787_658:before, #sideMenuContainer_stacks_in_1787_658:after {
  content: '';
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0;
  opacity: 1;
  display: block;
  position: absolute; }

#sideMenuContainer_stacks_in_1787_658:before {
  /*  */
  background: #741610;
  /*  */
  /*  */
  /*  */ }

#sideMenuContainer_stacks_in_1787_658:after {
  /*  */ }

#sideMenu_stacks_in_1787_658 {
  opacity: 1;
  padding: 0px 15px 0px 15px;
  /*  */
  text-align: left;
  /*  */
  /*  */
  /*  */
  /*  */
  font-family: inherit;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */ }

#sideMenu_stacks_in_1787_658 .close-icon {
  opacity: 0;
  height: auto;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: relative;
  margin-bottom: 2px;
  box-sizing: border-box;
  z-index: 9999;
  /*  */
  text-align: right;
  /*  */ }
  #sideMenu_stacks_in_1787_658 .close-icon i {
    display: inline-block;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    text-align: center;
    box-sizing: content-box;
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    /*  */
    color: #FFFFFF;
    margin: 6px 0px 6px 0px;
    padding: 5px 5px 5px 5px;
    width: 32px;
    height: 32px;
    font-size: 32px;
    border-radius: 4px;
    line-height: 32px;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */ }

#sideMenu_stacks_in_1787_658 #cssmenu,
#sideMenu_stacks_in_1787_658 #cssmenu ul,
#sideMenu_stacks_in_1787_658 #cssmenu ul li,
#sideMenu_stacks_in_1787_658 #cssmenu ul li a {
  margin: 0;
  bottom: 0;
  padding: 0;
  display: block;
  line-height: 1;
  list-style: none;
  position: relative;
  box-sizing: border-box; }

#sideMenu_stacks_in_1787_658 #cssmenu {
  width: 100%;
  font-family: inherit; }

#sideMenu_stacks_in_1787_658 #cssmenu ul > li a small {
  display: block;
  margin-top: 7px;
  font-size: 14px;
  color: rgba(255, 255, 255, 1.00); }

#sideMenu_stacks_in_1787_658 #cssmenu ul ul li a small {
  display: block;
  margin-top: 7px;
  font-size: 15px;
  /*  */
  color: rgba(255, 255, 255, 1.00);
  /*  */ }

#sideMenu_stacks_in_1787_658 #cssmenu ul > li a i:first-of-type {
  color: inherit;
  vertical-align: top;
  font-size: 20px; }

#sideMenu_stacks_in_1787_658 #cssmenu ul ul li a i:first-of-type {
  color: inherit;
  vertical-align: top;
  font-size: 18px; }

#sideMenuContainer_stacks_in_1787_658 #cssmenu ul > li.has-sub > a span.sideMenu_dropdown_icons {
  top: 0;
  z-index: 5;
  height: 100%;
  display: block;
  color: inherit;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  position: absolute;
  /*  */
  right: 0;
  width: 46px;
  /*  */ }
  #sideMenuContainer_stacks_in_1787_658 #cssmenu ul > li.has-sub > a span.sideMenu_dropdown_icons i.dropdown-open-icon, #sideMenuContainer_stacks_in_1787_658 #cssmenu ul > li.has-sub > a span.sideMenu_dropdown_icons i.dropdown-close-icon {
    top: 50%;
    left: 50%;
    display: block;
    color: inherit;
    position: absolute;
    font-size: 24px;
    transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg); }
  #sideMenuContainer_stacks_in_1787_658 #cssmenu ul > li.has-sub > a span.sideMenu_dropdown_icons i.dropdown-open-icon {
    opacity: 1;
    visibility: visible; }
  #sideMenuContainer_stacks_in_1787_658 #cssmenu ul > li.has-sub > a span.sideMenu_dropdown_icons i.dropdown-close-icon {
    opacity: 0;
    visibility: hidden; }

#sideMenuContainer_stacks_in_1787_658.open #cssmenu ul > li.has-sub.open > a i.dropdown-open-icon, #sideMenuContainer_stacks_in_1787_658.open #cssmenu ul > li.has-sub.open > a i.dropdown-close-icon {
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  /*  */
  -webkit-transform: translate(-50%, -50%) rotate(360deg);
          transform: translate(-50%, -50%) rotate(360deg);
  /*  */ }

#sideMenuContainer_stacks_in_1787_658.open #cssmenu ul > li.has-sub.open > a i.dropdown-open-icon {
  opacity: 0;
  visibility: hidden; }

#sideMenuContainer_stacks_in_1787_658.open #cssmenu ul > li.has-sub.open > a i.dropdown-close-icon {
  opacity: 1;
  visibility: visible; }

#sideMenuContainer_stacks_in_1787_658.open #cssmenu ul > li.has-sub > a i.dropdown-open-icon {
  opacity: 1;
  visibility: visible; }

#sideMenuContainer_stacks_in_1787_658.open #cssmenu ul > li.has-sub > a i.dropdown-close-icon {
  opacity: 0;
  visibility: hidden; }

/*  */
#sideMenuContainer_stacks_in_1787_658 #cssmenu ul > li.has-sub > a:hover > .clickable_dropdown {
  color: #FFFFFF;
  /*  */
  border-left: 1px dotted;
  /*  */ }

/*  */
#sideMenu_stacks_in_1787_658 #cssmenu ul > li.has-sub > a {
  /*  */
  padding: 16px 48px 16px 22px;
  /*  */
  /*  */
  /*  */ }

#sideMenu_stacks_in_1787_658 #cssmenu > ul > li > a {
  z-index: 2;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  color: #FFFFFF;
  padding: 16px 22px 16px 22px;
  font-size: 20px;
  border-radius: 0px;
  margin-bottom: 2px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */ }
  #sideMenu_stacks_in_1787_658 #cssmenu > ul > li > a:first-child {
    margin-top: 0; }

#sideMenu_stacks_in_1787_658 #cssmenu ul ul li a {
  z-index: 2;
  cursor: pointer;
  text-decoration: none;
  font-size: 18px;
  border-radius: 0px;
  margin-bottom: 2px;
  /*  */
  color: #FFFFFF;
  padding: 16px 22px 16px 22px;
  /*  */
  background: none;
  /*  */
  /*  */
  /*  */
  /*  */ }

/*  */
#sideMenu_stacks_in_1787_658 #cssmenu ul ul li a {
  /*  */
  margin-left: 15px;
  /*  */
  /*  */
  /*  */ }

#sideMenu_stacks_in_1787_658 #cssmenu ul ul ul li a {
  /*  */
  margin-left: 30px;
  /*  */
  /*  */
  /*  */ }

#sideMenu_stacks_in_1787_658 #cssmenu ul ul ul ul li a {
  /*  */
  margin-left: 45px;
  /*  */
  /*  */
  /*  */ }

#sideMenu_stacks_in_1787_658 #cssmenu ul ul ul ul ul li a {
  /*  */
  margin-left: 60px;
  /*  */
  /*  */
  /*  */ }

#sideMenu_stacks_in_1787_658 #cssmenu ul ul ul ul ul li a {
  /*  */
  margin-left: 75px;
  /*  */
  /*  */
  /*  */ }

/*  */
@-webkit-keyframes elegantOpen {
  0% {
    margin-left: -500px; }
  100% {
    margin-left: 0px; } }
@keyframes elegantOpen {
  0% {
    margin-left: -500px; }
  100% {
    margin-left: 0px; } }

@-webkit-keyframes elegantClose {
  0% {
    margin-left: 0px; }
  100% {
    margin-left: -500px; } }

@keyframes elegantClose {
  0% {
    margin-left: 0px; }
  100% {
    margin-left: -500px; } }

/*  */
#sideMenuToggleContainer_stacks_in_1787_658 {
  /*  */
  /*  */
  left: 0;
  right: 0;
  width: 100%;
  position: fixed;
  z-index: 9999;
  /*  */
  /*  */
  /*  */
  text-align: left;
  /*  */
  /*  */
  top: 0;
  /*  */
  padding: 30px 0px 0px 0px; }

#sideMenuToggle_stacks_in_1787_658:hover {
  cursor: pointer;
  color: #FFFFFF;
  /*  */
  background: #741610;
  /*  */
  /*  */
  /*  */ }

#sideMenu_stacks_in_1787_658 .close-icon i:hover {
  /*  */
  /*  */
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  /*  */
  /*  */ }

#sideMenuContainer_stacks_in_1787_658 {
  top: 0;
  bottom: 0;
  opacity: 0;
  width: 100%;
  position: fixed;
  visibility: hidden;
  z-index: 10000;
  left: -100%;
  transition: all 0.2s ease-in; }

/*  */
@media only screen and (max-width: 440px) {
  #sideMenuContainer_stacks_in_1787_658 {
    max-width: 400px; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #sideMenuContainer_stacks_in_1787_658 {
    max-width: 420px; } }

@media only screen and (min-width: 771px) {
  #sideMenuContainer_stacks_in_1787_658 {
    max-width: 460px; } }

/*  */
/*  */
#sideMenuContainer_stacks_in_1787_658:before, #sideMenuContainer_stacks_in_1787_658:after {
  content: '';
  z-index: -1;
  width: 100%;
  height: 120%;
  transition: opacity 0.1s ease-in; }

#sideMenuContainer_stacks_in_1787_658.open {
  left: 0;
  opacity: 1;
  visibility: visible;
  transition: 0.2s ease-out; }
  #sideMenuContainer_stacks_in_1787_658.open:before {
    visibility: visible;
    opacity: 1.00;
    transition: opacity 0.1s ease; }
  #sideMenuContainer_stacks_in_1787_658.open .close-icon {
    opacity: 1;
    transition-delay: 0.4s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.4s;
    transition: all 0.3s ease; }

#sideMenu_stacks_in_1787_658 {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 1;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  visibility: visible;
  box-sizing: border-box; }

#sideMenu_stacks_in_1787_658 #cssmenu ul ul {
  display: none; }

#sideMenu_stacks_in_1787_658 #cssmenu > ul > li.active > ul {
  display: block; }

#sideMenuContainer_stacks_in_1787_658 #cssmenu > ul > li {
  left: -100%;
  opacity: 0;
  transition: left 0.3s ease; }

#sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li {
  left: 0%;
  opacity: 1;
  transition: all 0.3s ease; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(1) {
    transition-delay: 0.2s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(2) {
    transition-delay: 0.3s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(3) {
    transition-delay: 0.4s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(4) {
    transition-delay: 0.5s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(5) {
    transition-delay: 0.6s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(6) {
    transition-delay: 0.7s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(7) {
    transition-delay: 0.8s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(8) {
    transition-delay: 0.9s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(9) {
    transition-delay: 1s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(10) {
    transition-delay: 1.1s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(11) {
    transition-delay: 1.2s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(12) {
    transition-delay: 1.3s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(13) {
    transition-delay: 1.4s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(14) {
    transition-delay: 1.5s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(15) {
    transition-delay: 1.6s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(16) {
    transition-delay: 1.7s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(17) {
    transition-delay: 1.8s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(18) {
    transition-delay: 1.9s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(19) {
    transition-delay: 2s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(20) {
    transition-delay: 2.1s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(21) {
    transition-delay: 2.2s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(22) {
    transition-delay: 2.3s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(23) {
    transition-delay: 2.4s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(24) {
    transition-delay: 2.5s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(25) {
    transition-delay: 2.6s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(26) {
    transition-delay: 2.7s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(27) {
    transition-delay: 2.8s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(28) {
    transition-delay: 2.9s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(29) {
    transition-delay: 3s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(30) {
    transition-delay: 3.1s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(31) {
    transition-delay: 3.2s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(32) {
    transition-delay: 3.3s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(33) {
    transition-delay: 3.4s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(34) {
    transition-delay: 3.5s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(35) {
    transition-delay: 3.6s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(36) {
    transition-delay: 3.7s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(37) {
    transition-delay: 3.8s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(38) {
    transition-delay: 3.9s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(39) {
    transition-delay: 4s; }
  #sideMenuContainer_stacks_in_1787_658.open #cssmenu > ul > li:nth-child(40) {
    transition-delay: 4.1s; }

#sideMenu_stacks_in_1787_658 #cssmenu ul > li a:hover small {
  font-size: 14px;
  color: rgba(255, 255, 255, 1.00); }

#sideMenu_stacks_in_1787_658 #cssmenu ul ul li a:hover small {
  font-size: 15px;
  /*  */
  color: rgba(255, 255, 255, 1.00);
  /*  */ }

#sideMenu_stacks_in_1787_658 #cssmenu > ul > li > a:hover {
  color: #FFFFFF;
  /*  */
  /*  */
  background: rgba(255, 255, 255, 0.30);
  /*  */
  /*  */ }

#sideMenu_stacks_in_1787_658 #cssmenu ul ul li a:hover {
  /*  */
  color: #FFFFFF;
  /*  */
  /*  */
  background: rgba(255, 255, 255, 0.30);
  /*  */
  /*  */
  /*  */ }

@media only screen and (max-width: 440px) {
  #sideMenuContainer_stacks_in_1787_658.hide-m, #sideMenuToggleContainer_stacks_in_1787_658.hide-m {
    display: none; } }

@media only screen and (max-width: 770px) and (min-width: 441px) {
  #sideMenuContainer_stacks_in_1787_658.hide-t, #sideMenuToggleContainer_stacks_in_1787_658.hide-t {
    display: none; } }

@media only screen and (min-width: 771px) {
  #sideMenuContainer_stacks_in_1787_658.hide-d, #sideMenuToggleContainer_stacks_in_1787_658.hide-d {
    display: none; } }

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


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

.stacks_in_1787_659svgwrapper{
	position: relative;
}



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





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






/* -- End Svg Each css Template -- */
#stacks_in_1787_659 {
	margin: 0px 0px 36px 20px;
}

#stacks_out_1787_659 {
	width: 60%;
}
/* -- Start Svg Each css Template -- */


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

.stacks_in_1787_634svgwrapper{
	position: relative;
}


		#stacks_in_1787_634 img  {
			max-width: 30px;
		}
	
		@media (max-width: 61.9em) {
			#stacks_in_1787_634 img {
				max-width: 24px;
			}
		}
		
		@media (max-width: 47.9em) {
			#stacks_in_1787_634 img {
				max-width: 24px;
			}
		}
	


#stacks_in_1787_634 {
	text-align: left !important;
}





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






/* -- End Svg Each css Template -- */
#stacks_in_1787_634 {
	margin: 0px 8px 0px 0px;
}

#stacks_in_1787_635 {
	padding: 0px 0px 0px 8px;
}

#stacks_in_1787_668 {
	font-size: 90%;
}

.spacerStack {
	height: 12.00px;
}

#spacerStackstacks_in_1787_670 {
	height: 12.00px;
}




























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

/* Preview and publish styling */


#animateItWrapperstacks_in_1787_672.animated {
	animation-duration: 1000ms;
	animation-delay: 0ms;
}





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


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

.stacks_in_1787_636svgwrapper{
	position: relative;
}


		#stacks_in_1787_636 img  {
			max-width: 30px;
		}
	
		@media (max-width: 61.9em) {
			#stacks_in_1787_636 img {
				max-width: 24px;
			}
		}
		
		@media (max-width: 47.9em) {
			#stacks_in_1787_636 img {
				max-width: 24px;
			}
		}
	


#stacks_in_1787_636 {
	text-align: left !important;
}





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






/* -- End Svg Each css Template -- */
#stacks_in_1787_636 {
	margin: 0px 8px 0px 0px;
}

#stacks_in_1787_637 {
	padding: 0px 0px 0px 8px;
}

#stacks_in_1787_678 {
	font-size: 80%;
}

.spacerStack {
	height: 12.00px;
}

#spacerStackstacks_in_1787_681 {
	height: 12.00px;
}




























@media print {
	#spacerStackstacks_in_1787_681 {
		display: none !important;
	}
}
/* -- Start Svg Each css Template -- */


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

.stacks_in_1787_638svgwrapper{
	position: relative;
}


		#stacks_in_1787_638 img  {
			max-width: 30px;
		}
	
		@media (max-width: 61.9em) {
			#stacks_in_1787_638 img {
				max-width: 24px;
			}
		}
		
		@media (max-width: 47.9em) {
			#stacks_in_1787_638 img {
				max-width: 24px;
			}
		}
	


#stacks_in_1787_638 {
	text-align: left !important;
}





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






/* -- End Svg Each css Template -- */
#stacks_in_1787_638 {
	margin: 0px 8px 0px 0px;
}

#stacks_in_1787_639 {
	padding: 0px 0px 0px 8px;
}

#stacks_in_1787_688 {
	font-size: 80%;
}

.spacerStack {
	height: 12.00px;
}

#spacerStackstacks_in_1787_690 {
	height: 12.00px;
}




























@media print {
	#spacerStackstacks_in_1787_690 {
		display: none !important;
	}
}
/* -- Start Svg Each css Template -- */


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

.stacks_in_1787_640svgwrapper{
	position: relative;
}


		#stacks_in_1787_640 img  {
			max-width: 30px;
		}
	
		@media (max-width: 61.9em) {
			#stacks_in_1787_640 img {
				max-width: 24px;
			}
		}
		
		@media (max-width: 47.9em) {
			#stacks_in_1787_640 img {
				max-width: 24px;
			}
		}
	


#stacks_in_1787_640 {
	text-align: left !important;
}





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






/* -- End Svg Each css Template -- */
#stacks_in_1787_640 {
	margin: 0px 8px 0px 0px;
}

#stacks_in_1787_641 {
	padding: 0px 0px 0px 8px;
}

#stacks_in_1787_697 {
	font-size: 80%;
}

.spacerStack {
	height: 12.00px;
}

#spacerStackstacks_in_1787_699 {
	height: 12.00px;
}




























@media print {
	#spacerStackstacks_in_1787_699 {
		display: none !important;
	}
}
/* -- Start Svg Each css Template -- */


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

.stacks_in_1787_642svgwrapper{
	position: relative;
}


		#stacks_in_1787_642 img  {
			max-width: 30px;
		}
	
		@media (max-width: 61.9em) {
			#stacks_in_1787_642 img {
				max-width: 24px;
			}
		}
		
		@media (max-width: 47.9em) {
			#stacks_in_1787_642 img {
				max-width: 24px;
			}
		}
	


#stacks_in_1787_642 {
	text-align: left !important;
}





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






/* -- End Svg Each css Template -- */
#stacks_in_1787_642 {
	margin: 0px 8px 0px 0px;
}

#stacks_in_1787_643 {
	padding: 0px 0px 0px 8px;
}

#stacks_in_1787_706 {
	font-size: 80%;
}

.spacerStack {
	height: 12.00px;
}

#spacerStackstacks_in_1787_708 {
	height: 12.00px;
}




























@media print {
	#spacerStackstacks_in_1787_708 {
		display: none !important;
	}
}
/* -- Start Svg Each css Template -- */


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

.stacks_in_1787_644svgwrapper{
	position: relative;
}


		#stacks_in_1787_644 img  {
			max-width: 30px;
		}
	
		@media (max-width: 61.9em) {
			#stacks_in_1787_644 img {
				max-width: 24px;
			}
		}
		
		@media (max-width: 47.9em) {
			#stacks_in_1787_644 img {
				max-width: 24px;
			}
		}
	


#stacks_in_1787_644 {
	text-align: left !important;
}





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






/* -- End Svg Each css Template -- */
#stacks_in_1787_644 {
	margin: 0px 8px 0px 0px;
}

#stacks_in_1787_645 {
	padding: 0px 0px 0px 8px;
}

#stacks_in_1787_715 {
	font-size: 80%;
}

.spacerStack {
	height: 12.00px;
}

#spacerStackstacks_in_1787_717 {
	height: 12.00px;
}




























@media print {
	#spacerStackstacks_in_1787_717 {
		display: none !important;
	}
}
/* -- Start Svg Each css Template -- */


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

.stacks_in_1787_646svgwrapper{
	position: relative;
}


		#stacks_in_1787_646 img  {
			max-width: 30px;
		}
	
		@media (max-width: 61.9em) {
			#stacks_in_1787_646 img {
				max-width: 24px;
			}
		}
		
		@media (max-width: 47.9em) {
			#stacks_in_1787_646 img {
				max-width: 24px;
			}
		}
	


#stacks_in_1787_646 {
	text-align: left !important;
}





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






/* -- End Svg Each css Template -- */
#stacks_in_1787_646 {
	margin: 0px 8px 0px 0px;
}

#stacks_in_1787_647 {
	padding: 0px 0px 0px 8px;
}

#stacks_in_1787_724 {
	font-size: 80%;
}

.spacerStack {
	height: 12.00px;
}

#spacerStackstacks_in_1787_726 {
	height: 12.00px;
}




























@media print {
	#spacerStackstacks_in_1787_726 {
		display: none !important;
	}
}
/* -- Start Svg Each css Template -- */


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

.stacks_in_1787_648svgwrapper{
	position: relative;
}


		#stacks_in_1787_648 img  {
			max-width: 30px;
		}
	
		@media (max-width: 61.9em) {
			#stacks_in_1787_648 img {
				max-width: 24px;
			}
		}
		
		@media (max-width: 47.9em) {
			#stacks_in_1787_648 img {
				max-width: 24px;
			}
		}
	


#stacks_in_1787_648 {
	text-align: left !important;
}





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






/* -- End Svg Each css Template -- */
#stacks_in_1787_648 {
	margin: 0px 8px 0px 0px;
}

#stacks_in_1787_649 {
	padding: 0px 0px 0px 8px;
}

#stacks_in_1787_733 {
	font-size: 80%;
}

.spacerStack {
	height: 12.00px;
}

#spacerStackstacks_in_1787_735 {
	height: 12.00px;
}




























@media print {
	#spacerStackstacks_in_1787_735 {
		display: none !important;
	}
}
/* -- Start Svg Each css Template -- */


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

.stacks_in_1787_650svgwrapper{
	position: relative;
}


		#stacks_in_1787_650 img  {
			max-width: 30px;
		}
	
		@media (max-width: 61.9em) {
			#stacks_in_1787_650 img {
				max-width: 24px;
			}
		}
		
		@media (max-width: 47.9em) {
			#stacks_in_1787_650 img {
				max-width: 24px;
			}
		}
	


#stacks_in_1787_650 {
	text-align: left !important;
}





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






/* -- End Svg Each css Template -- */
#stacks_in_1787_650 {
	margin: 0px 8px 0px 0px;
}

#stacks_in_1787_651 {
	padding: 0px 0px 0px 8px;
}

#stacks_in_1787_742 {
	font-size: 80%;
}

.spacerStack {
	height: 12.00px;
}

#spacerStackstacks_in_1787_744 {
	height: 12.00px;
}




























@media print {
	#spacerStackstacks_in_1787_744 {
		display: none !important;
	}
}
/* -- Start Svg Each css Template -- */


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

.stacks_in_1787_652svgwrapper{
	position: relative;
}


		#stacks_in_1787_652 img  {
			max-width: 30px;
		}
	
		@media (max-width: 61.9em) {
			#stacks_in_1787_652 img {
				max-width: 24px;
			}
		}
		
		@media (max-width: 47.9em) {
			#stacks_in_1787_652 img {
				max-width: 24px;
			}
		}
	


#stacks_in_1787_652 {
	text-align: left !important;
}





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






/* -- End Svg Each css Template -- */
#stacks_in_1787_652 {
	margin: 0px 8px 0px 0px;
}

#stacks_in_1787_653 {
	padding: 0px 0px 0px 8px;
}

#stacks_in_1787_751 {
	font-size: 90%;
	font-weight: bold;
}

.spacerStack {
	height: 12.00px;
}

#spacerStackstacks_in_1787_753 {
	height: 12.00px;
}




























@media print {
	#spacerStackstacks_in_1787_753 {
		display: none !important;
	}
}
/* -- Start Svg Each css Template -- */


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

.stacks_in_1787_654svgwrapper{
	position: relative;
}


		#stacks_in_1787_654 img  {
			max-width: 30px;
		}
	
		@media (max-width: 61.9em) {
			#stacks_in_1787_654 img {
				max-width: 24px;
			}
		}
		
		@media (max-width: 47.9em) {
			#stacks_in_1787_654 img {
				max-width: 24px;
			}
		}
	


#stacks_in_1787_654 {
	text-align: left !important;
}





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






/* -- End Svg Each css Template -- */
#stacks_in_1787_654 {
	margin: 0px 8px 0px 0px;
}

#stacks_in_1787_655 {
	padding: 0px 0px 0px 8px;
}

#stacks_in_1787_760 {
	font-size: 80%;
}

.spacerStack {
	height: 12.00px;
}

#spacerStackstacks_in_1787_762 {
	height: 12.00px;
}




























@media print {
	#spacerStackstacks_in_1787_762 {
		display: none !important;
	}
}
/* LinkPlus stack v1.1.4 */#stacks_in_1787_764 a:link {			color: #FFFFFF !important;		}#stacks_in_1787_764 a:visited {	color: #FFFFFF !important;	}#stacks_in_1787_764 a:hover,#stacks_in_1787_764 a:focus  {	color: #FFFFFF !important;	}#stacks_in_1787_764 a:active  {	color: #FFFFFF !important;		}#stacks_in_1787_764 a:link span,#stacks_in_1787_764 .com_marathia_stacks_downloadlinkicon_stack a:link:before, /* for DLI */#stacks_in_1787_764 .com_marathia_stacks_downloadlinkicon_stack a:link:after /* for DLI */ {	color: #FFFFFF !important;	text-decoration: none !important;	cursor: pointer;}#stacks_in_1787_764 a:visited span,#stacks_in_1787_764 .com_marathia_stacks_downloadlinkicon_stack a:visited:before, /* for DLI */#stacks_in_1787_764 .com_marathia_stacks_downloadlinkicon_stack a:visited:after /* for DLI */ {	color: #FFFFFF !important;}#stacks_in_1787_764 a:hover span,#stacks_in_1787_764 a:focus span,#stacks_in_1787_764 .com_marathia_stacks_downloadlinkicon_stack a:hover:before, /* for DLI */#stacks_in_1787_764 .com_marathia_stacks_downloadlinkicon_stack a:focus:before, /* for DLI */#stacks_in_1787_764 .com_marathia_stacks_downloadlinkicon_stack a:hover:after, /* for DLI */#stacks_in_1787_764 .com_marathia_stacks_downloadlinkicon_stack a:focus:after /* for DLI */ {	color: #FFFFFF !important;}#stacks_in_1787_764 a:active span,#stacks_in_1787_764 .com_marathia_stacks_downloadlinkicon_stack a:active:before, /* for DLI */#stacks_in_1787_764 .com_marathia_stacks_downloadlinkicon_stack a:active:after /* for DLI */ {	color: #FFFFFF !important;}/* @group internal link icon *//* @end *//* @group external link icon *//* @end *//* @group email link icon */#stacks_in_1787_764 a[href^="mailto"] span:after {								content: "";}/* @end *//* End of LinkPlus stack */
#stacks_in_1787_764 {
	margin: 48px 0px 0px 0px;
}

#stacks_in_1787_767 {
	word-spacing: -1px;
}

#stacks_in_1787_657 {
	margin: 10px 0px 20px 0px;
}

#stacks_in_1787_768 {
	word-spacing: -1px;
}

#stacks_in_1787_769 {
	margin: 40px 0px 32px 20px;
}


@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_623_6 .layer_containera /*container & bg img*/
{
margin-left: auto; margin-right:auto;

	 
	background: url() 1 repeat 
	 

	
	 

	 
	center
	 

	 

	 
	center;
	 

 

 

}









#stacks_in_623_6 .layer_containera
{
 
	height: px;
 

/*cursor:pointer;*/

display:block;

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

  
 

}

#stacks_in_623_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_623_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_623_6 .layernote 
{
 display: none !important; 

	text-indent: 5px;
	background-color: #FCF8DC;
}
#stacks_in_623_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_623_2 {
  display: none;
}

.freeStyleWrapperstacks_in_623_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_623_24 img {
	position: relative;
	max-width: 100%;
	height: auto;
}

.stacks_in_623_24svgwrapper{
	position: relative;
}



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





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






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

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


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

.stacks_in_623_23svgwrapper{
	position: relative;
}



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





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






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

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


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

.stacks_in_623_21svgwrapper{
	position: relative;
}



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





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






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

#stacks_out_623_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%;
}
.webYepGallerystacks_in_2428,
.webYepGallerystacks_in_2428 *,
.webYepGallerystacks_in_2428 *:before,
.webYepGallerystacks_in_2428 *:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.webYepGallerystacks_in_2428 {
  margin-left: -10px;
  margin-right: -10px;
}

.webYepGallerystacks_in_2428 .WebYepGalleryRow {
  
  
  
  align-self: flex-end !important;
  
}

.webYepGallerystacks_in_2428 .WebYepGalleryCell {
  
  
  width: 33.333% !important;
  
  
  
  padding: 10px;
}

@media screen and (max-width: 568px) {
  .webYepGallerystacks_in_2428 .WebYepGalleryCell {
    width: 100% !important;
  }
}


.webYepGallerystacks_in_2428 .WebYepGalleryImage {
  background: rgba(255, 255, 255, 0.00);
  border: 1px solid rgba(234, 234, 234, 1.00);
  border-radius: 0px;
}

.webYepGallerystacks_in_2428 .WebYepGalleryImage img {
  border-radius: 0px;
}

.webYepGallerystacks_in_2428 .WebYepGalleryText {
  color: rgba(51, 51, 51, 1.00);
  
	
  
  
  text-align: center;
  
  
  padding: 5px;
  font-size: 15px;
}

.webYepGallerystacks_in_2428 .WebYepGalleryImage a {
  position: relative;
  outline: none;
  border: none;
}

.webYepGallerystacks_in_2428 .WebYepGalleryImage a:before {
  content: '\f00e';
  font-family: 'FontAwesome';
  font-size: 36px;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
  display: block;
  text-align: center;
  color: rgba(204, 204, 204, 0.00);
  transition: all 300ms ease-in-out;
}

.webYepGallerystacks_in_2428 .WebYepGalleryImage:hover a:before {
  color: rgba(255, 255, 255, 0.00);
}



#stacks_in_2428 {
	background-color: rgba(204, 204, 204, 1.00);
}

#stacks_in_1405 {
	margin: 0px 0px 20px 0px;
}

#stacks_in_1408 {
	margin: 0px 0px 40px 0px;
}

#stacks_in_1796 {
	background-color: rgba(251, 2, 128, 1.00);
}
.stacks_in_1411 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}
.grid-x > .cell.stacks_in_1413{width:100%;min-width:0px;max-width:1600px}@media only screen and (min-width:40em){.grid-x > .cell.stacks_in_1413{width:100%}}@media only screen and (min-width:64em){.grid-x > .cell.stacks_in_1413{width:50%}}
/*Start CSSLayerStack*/

 

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

	 
	background: url() 1 repeat 
	 

	
	 

	 
	center
	 

	 

	 
	center;
	 

 

 

}









#stacks_in_1415 .layer_containera
{
 
	height: px;
 

/*cursor:pointer;*/

display:block;

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

  
 

}

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

padding-top: 0px;



   
width: 100%;








   
height: auto;
overflow: hidden;




















/*Custom CSS;*/

   



}






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



   
width: 100%;






   
height: auto;
overflow: hidden;











top: 30%;





   
left: 0; right: 0;




  

/*Custom CSS;*/

   



}

#stacks_in_1415 .layernote 
{
 display: none !important; 

	text-indent: 5px;
	background-color: #FCF8DC;
}
#stacks_in_1415 .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) {
 
}





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

#webYepImagestacks_in_1418 img {
  display: inline-block !important;
  
  
  
  
  
  
  
  
  
  
  
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: 1px solid rgba(234, 234, 234, 1.00);
}

.grid-x > .cell.stacks_in_1430{width:100%;min-width:0px;max-width:1600px}@media only screen and (min-width:40em){.grid-x > .cell.stacks_in_1430{width:100%}}@media only screen and (min-width:64em){.grid-x > .cell.stacks_in_1430{width:50%}}


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


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

#stacks_in_1441 {
	margin: 0px 0px 20px 0px;
}
.webYepAttachmentWrapstacks_in_1445 {
  text-align: left;
  
  
  display: block;
}


  
  .webYepAttachmentWrapstacks_in_1445 a {
    padding-left: calc(30px + 5px);
    height: 30px;
    display: inline-block;
    position: relative;
    line-height: 30px;
  }

  .webYepAttachmentWrapstacks_in_1445 img {
    position: absolute;
    top: 0;
    left: 0px;
    max-height: 30px;
    max-width: 30px;
    width: auto;
  }
  

  


#stacks_in_1445 {
	margin: 0px 0px 20px 0px;
}
%[if 0 ]%
#content-stacks_in_1450 {
  color: ;
	font-size: ;
  line-height: ;
	%[if ]%text-align: left;%[endif]%
	%[if ]%text-align: center;%[endif]%
	%[if ]%text-align: right;%[endif]%
	%[if ]%text-align: justify;%[endif]%
	font-weight: normal;
	%[if  ]%font-weight: bold;%[endif]%
	%[if  ]%font-style: italic;%[endif]%
	%[if  ]%text-transform: uppercase;%[endif]%
	%[if  ]%text-decoration: underline;%[endif]%
}
%[endif]%
.webYepGallerystacks_in_1453,
.webYepGallerystacks_in_1453 *,
.webYepGallerystacks_in_1453 *:before,
.webYepGallerystacks_in_1453 *:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.webYepGallerystacks_in_1453 {
  margin-left: -10px;
  margin-right: -10px;
}

.webYepGallerystacks_in_1453 .WebYepGalleryRow {
  
  
  
  align-self: flex-end !important;
  
}

.webYepGallerystacks_in_1453 .WebYepGalleryCell {
  
  
  width: 33.333% !important;
  
  
  
  padding: 10px;
}

@media screen and (max-width: 568px) {
  .webYepGallerystacks_in_1453 .WebYepGalleryCell {
    width: 100% !important;
  }
}


.webYepGallerystacks_in_1453 .WebYepGalleryImage {
  background: rgba(255, 255, 255, 0.00);
  border: 1px solid rgba(234, 234, 234, 1.00);
  border-radius: 0px;
}

.webYepGallerystacks_in_1453 .WebYepGalleryImage img {
  border-radius: 0px;
}

.webYepGallerystacks_in_1453 .WebYepGalleryText {
  color: rgba(51, 51, 51, 1.00);
  
	
  
  
  text-align: center;
  
  
  padding: 5px;
  font-size: 15px;
}

.webYepGallerystacks_in_1453 .WebYepGalleryImage a {
  position: relative;
  outline: none;
  border: none;
}

.webYepGallerystacks_in_1453 .WebYepGalleryImage a:before {
  content: '\f00e';
  font-family: 'FontAwesome';
  font-size: 36px;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
  display: block;
  text-align: center;
  color: rgba(204, 204, 204, 0.00);
  transition: all 300ms ease-in-out;
}

.webYepGallerystacks_in_1453 .WebYepGalleryImage:hover a:before {
  color: rgba(255, 255, 255, 0.00);
}



#stacks_in_1453 {
	background-color: rgba(204, 204, 204, 1.00);
}
.stacks_in_1457 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}
.grid-x > .cell.stacks_in_1459{width:100%;min-width:0px;max-width:1600px}@media only screen and (min-width:40em){.grid-x > .cell.stacks_in_1459{width:100%}}@media only screen and (min-width:64em){.grid-x > .cell.stacks_in_1459{width:50%}}


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


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

#stacks_in_1471 {
	margin: 0px 0px 20px 0px;
}
.webYepAttachmentWrapstacks_in_1475 {
  text-align: left;
  
  
  display: block;
}


  
  .webYepAttachmentWrapstacks_in_1475 a {
    padding-left: calc(30px + 5px);
    height: 30px;
    display: inline-block;
    position: relative;
    line-height: 30px;
  }

  .webYepAttachmentWrapstacks_in_1475 img {
    position: absolute;
    top: 0;
    left: 0px;
    max-height: 30px;
    max-width: 30px;
    width: auto;
  }
  

  


#stacks_in_1475 {
	margin: 0px 0px 20px 0px;
}
%[if 0 ]%
#content-stacks_in_1480 {
  color: ;
	font-size: ;
  line-height: ;
	%[if ]%text-align: left;%[endif]%
	%[if ]%text-align: center;%[endif]%
	%[if ]%text-align: right;%[endif]%
	%[if ]%text-align: justify;%[endif]%
	font-weight: normal;
	%[if  ]%font-weight: bold;%[endif]%
	%[if  ]%font-style: italic;%[endif]%
	%[if  ]%text-transform: uppercase;%[endif]%
	%[if  ]%text-decoration: underline;%[endif]%
}
%[endif]%
.webYepGallerystacks_in_1483,
.webYepGallerystacks_in_1483 *,
.webYepGallerystacks_in_1483 *:before,
.webYepGallerystacks_in_1483 *:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

.webYepGallerystacks_in_1483 {
  margin-left: -10px;
  margin-right: -10px;
}

.webYepGallerystacks_in_1483 .WebYepGalleryRow {
  
  
  
  align-self: flex-end !important;
  
}

.webYepGallerystacks_in_1483 .WebYepGalleryCell {
  
  
  width: 33.333% !important;
  
  
  
  padding: 10px;
}

@media screen and (max-width: 568px) {
  .webYepGallerystacks_in_1483 .WebYepGalleryCell {
    width: 100% !important;
  }
}


.webYepGallerystacks_in_1483 .WebYepGalleryImage {
  background: rgba(255, 255, 255, 0.00);
  border: 1px solid rgba(234, 234, 234, 1.00);
  border-radius: 0px;
}

.webYepGallerystacks_in_1483 .WebYepGalleryImage img {
  border-radius: 0px;
}

.webYepGallerystacks_in_1483 .WebYepGalleryText {
  color: rgba(51, 51, 51, 1.00);
  
	
  
  
  text-align: center;
  
  
  padding: 5px;
  font-size: 15px;
}

.webYepGallerystacks_in_1483 .WebYepGalleryImage a {
  position: relative;
  outline: none;
  border: none;
}

.webYepGallerystacks_in_1483 .WebYepGalleryImage a:before {
  content: '\f00e';
  font-family: 'FontAwesome';
  font-size: 36px;
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
  display: block;
  text-align: center;
  color: rgba(204, 204, 204, 0.00);
  transition: all 300ms ease-in-out;
}

.webYepGallerystacks_in_1483 .WebYepGalleryImage:hover a:before {
  color: rgba(255, 255, 255, 0.00);
}



#stacks_in_1483 {
	background-color: rgba(204, 204, 204, 1.00);
}
.grid-x > .cell.stacks_in_1485{width:100%;min-width:0px;max-width:1600px}@media only screen and (min-width:40em){.grid-x > .cell.stacks_in_1485{width:100%}}@media only screen and (min-width:64em){.grid-x > .cell.stacks_in_1485{width:50%}}
/*Start CSSLayerStack*/

 

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

	 
	background: url() 1 repeat 
	 

	
	 

	 
	center
	 

	 

	 
	center;
	 

 

 

}









#stacks_in_1488 .layer_containera
{
 
	height: px;
 

/*cursor:pointer;*/

display:block;

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

  
 

}

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

padding-top: 0px;



   
width: 100%;








   
height: auto;
overflow: hidden;




















/*Custom CSS;*/

   



}






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



   
width: 100%;






   
height: auto;
overflow: hidden;











top: 30%;





   
left: 0; right: 0;




  

/*Custom CSS;*/

   



}

#stacks_in_1488 .layernote 
{
 display: none !important; 

	text-indent: 5px;
	background-color: #FCF8DC;
}
#stacks_in_1488 .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) {
 
}





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

#webYepImagestacks_in_1489 img {
  display: inline-block !important;
  
  
  
  
  
  
  
  
  
  
  
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: 1px solid rgba(234, 234, 234, 1.00);
}

/* @group Generic Styles */

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

#ruleStackstacks_in_2310 {
	position: relative;
	overflow: hidden;
	margin: 1.00% 0;
	width: %;
}

/*  */
#ruleStackstacks_in_2310 {
	width: 100%;
}
/*  */

/*  */

/*  */

#ruleStackstacks_in_2310 [class^="fa fa-"] {
	position: relative;
	width: 160px;
	height: 160px;
	line-height: 160px;
	font-size: 10px;
	text-align: center;
	color: rgba(204, 204, 204, 1.00);
	background: rgba(0, 0, 0, 0.00);
	border-radius: 50%;
	border: 0px solid rgba(204, 204, 204, 1.00);
	display: inline-block;
}

#ruleStackstacks_in_2310 a {
	position: absolute;
	top: 0px;
	display: block;
	width: 160px;
	height: 160px;
	border: none;
	background: transparent;
	outline: none;
}

/* @end */

/* @end */

/*  */

/*  */
#ruleStackstacks_in_2310 {
	text-align: center;
}

#ruleStackstacks_in_2310:before,
#ruleStackstacks_in_2310:after {
	content: '';
	position: absolute;
	width: 100%;
	top: 49%;
	right: 160px;
	height: 0px;
	border-top: 3px solid rgba(251, 2, 128, 1.00);
}

#ruleStackstacks_in_2310:before {
	left: -50%;
	margin-left: -80px;
}

#ruleStackstacks_in_2310:after {
	left: 50%;
	margin-left: 80px;
}

#ruleStackstacks_in_2310 a {
	left: 50%;
	margin-left: -80px;
}
/*  */

/*  */

/*  */
/*  *//* -- Start Header Pro Each css Template  770 & 440-- */

#stacks_in_2417 {
	text-align: left !important;
}

.stacks_in_2417_inner_sanctum{
	font-size: 100% !important;
}

@media only screen and (max-width: 770px) {
	#stacks_in_2417 {
		text-align: left !important;
	}
	.stacks_in_2417_inner_sanctum{
		font-size: 100% !important;
	}
}

@media only screen and (max-width: 400px) {
  #stacks_in_2417 {
	  text-align: left !important;
  }
  .stacks_in_2417_inner_sanctum{
	  font-size: 100% !important;
  }
}

.stacks_in_2417_pro_text{
	display: inline-block !important;
	position:relative;
	box-sizing: border-box;
}







/* -- End Header Pro Each css Template -- */

.webYepGridstacks_in_1291 * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.webYepGridstacks_in_1291 {
  display: block;
  column-count: 1;
  column-gap: 20px;
  margin-top: -20px;
}

.webYepGridstacks_in_1291 .webYepGridCell {
  position: relative;
  break-inside: avoid;
  padding-top: 20px;
}

/* Small devices (landscape phones, 544px and up) */
@media (min-width: 544px) {
  .webYepGridstacks_in_1291 {
    column-count: 1;
  }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {
  .webYepGridstacks_in_1291 {
    column-count: 2;
  }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
  .webYepGridstacks_in_1291 {
    column-count: 3;
  }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
  .webYepGridstacks_in_1291 {
    column-count: 4;
  }
}




.webYepGridstacks_in_1291 .gridCellOuter {
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(245, 245, 245, 1.00);
  border: 1px solid rgba(234, 234, 234, 1.00);
  padding: 10px;
  border-radius: 0px;
}

.webYepGridstacks_in_1291 .gridCellInner {
  display: block;
  
	text-align: center;
	
	
}



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

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


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


.fadeInWrapperstacks_in_640_2 {
  display: none;
}

.freeStyleWrapperstacks_in_640_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 */

#usefulStackWrapperstacks_in_1018_38 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 1200px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_1018_38 {
	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_1018_38 {
		display: none;
	}
}












/* Start Print This 2 stack CSS code */.stacks_in_1018_9PrintThisOuter{	 	background-color: transparent;		padding: 16px;	border: 0px solid #CCCCCC;	-moz-border-radius: 0px;	-webkit-border-radius: 0px;	border-radius: 0px;}.stacks_in_1018_9PrintThis2{	position: relative;}@font-face {  font-family: "doo_fontsregular";  src: url('../index_files/printthis2Assets/font/doo_print-webfont.eot');  src: url('../index_files/printthis2Assets/font/doo_print-webfont.eot?#iefix') format('eot'), url('../index_files/printthis2Assets/font/doo_print-webfont.woff') format('woff'), url('../index_files/printthis2Assets/font/doo_print-webfont.ttf') format('truetype'), url('../index_files/printthis2Assets/font/doo_print-webfont.svg#doo_fontsregular') format('svg');  font-weight: normal;  font-style: normal;}.stacks_in_1018_9PrintThisButton{  float: right;  font-family: "doo_fontsregular";  font-size: 18px;  line-height: 18px;  font-weight: normal;  font-style: normal;  display: inline-block;  text-decoration: inherit;  color: #892214;  cursor:pointer;}.stacks_in_1018_9PrintThisButton:hover{  color: #C55E50;}.stacks_in_1018_9clearer{	clear: both;	height: 1px;	padding: 0;	margin: 0;}/* End Print This 2 stack CSS code *//* -- Start Svg Each css Template -- */


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

.stacks_in_1018_35svgwrapper{
	position: relative;
}



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





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






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

#stacks_out_1018_35 {
	width: 50%;
}

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

#stacks_in_1018_2 {
	word-spacing: -1px;
}

#stacks_in_1018_13 {
	margin: 10px 0px 20px 0px;
}

#stacks_in_1018_12 {
	word-spacing: -1px;
}

#stacks_out_1018_16 {
	margin-right:0;
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	
	background: rgba(240, 240, 239, 1.00);
	
	
}

.nivo-lightbox-theme-default .nivo-lightbox-wrap {
	left: 4%;
	right: 4%;
	top: 4%;
	bottom: 4%;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay a,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:visited,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:active,
.nivo-lightbox-theme-default.nivo-lightbox-overlay a:focus {
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-ajax,
.nivo-lightbox-theme-default .nivo-lightbox-inline {
	padding: 0px;
	border-radius: 0px;
}

.nivo-lightbox-theme-default .nivo-lightbox-html5audio,
.nivo-lightbox-theme-default .nivo-lightbox-html5video,
.nivo-lightbox-theme-default .nivo-lightbox-image img {
	border-radius: 0px;
}




/* No background */
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-ajax,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-inline {
	background: none;
}


















.nivo-lightbox-theme-default .nivo-lightbox-title-wrap { 
	bottom: -4%; 
}

.nivo-lightbox-theme-default .nivo-lightbox-title {
	font: 13px/1.80 'Helvetica Neue', Helvetica, Arial, sans-serif;
	font-style: normal;
	font-weight: normal;
	background: #000;
	color: #fff;
	padding: 7px 15px;
	border-radius: 30px;
}

.nivo-lightbox-theme-default .nivo-lightbox-title-wrap .nivo-lightbox-title {
	
	
	color: rgba(137, 34, 20, 1.00);
	background: rgba(0, 0, 0, 0.00);
	padding: 8px 16px;
	border-radius: 0px;
}

/* .nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-title {
	background: none;
	padding: 0;
	border-radius: none;
} */

.nivo-lightbox-theme-default .nivo-lightbox-nav {
	top: 10%;
	width: 8%;
	height: 80%;
	text-indent: -9999px;
	background-repeat: no-repeat;
	background-position: 50% 50%;
	opacity: 0.5;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	background: none;
	text-indent: 0;
	font-size: 24px;
	opacity: 0.35;
	transition: all 300ms ease-in-out;
	z-index: 99999999999;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-prev [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	left: 50%;
	text-align: left;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-next [class^="fa fa-"] {
	position: absolute;
	top: 50%;
	right: 50%;
	text-align: right;
	margin-top: -25px;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close {
	width: 24px;
	height: 24px;
	
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close:hover,
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav:hover {
	background: none;
	opacity: 0.99;
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-nav [class^="fa fa-"],
.nivo-lightbox-theme-default.nivo-lightbox-overlay .nivo-lightbox-close [class^="fa fa-"] {
	color: rgba(0, 0, 0, 1.00);
	text-decoration: none;
	outline: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading {
	background: none;
}

.nivo-lightbox-theme-default .nivo-lightbox-content.nivo-lightbox-loading:before {
	color: rgba(51, 51, 51, 1.00);
	text-indent: 0px;
	content: 'Objekte werden geladen ... einen Moment bitte.';
	position: absolute;
	top: 48%;
	left: 0;
	display: block;
	width: 100%;
	text-align: center;
	z-index: 99999;
	font-size: 18px;
}

.nivo-lightbox-theme-default .nivo-lightbox-content .nivo-lightbox-error {
	color: rgba(51, 51, 51, 1.00);
	font-size: 18px;
}

#topBoxTriggerRegionstacks_in_1018_23 {
	position: relative;
	display: block;
	height: auto;
	overflow: auto;
}






/* Only stretch the trigger link over the trigger region, if the TopBox trigger is not a button */
#topBoxTriggerRegionstacks_in_1018_23 #topBoxTriggerstacks_in_1018_23 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_1018_23 #topBoxTriggerContentstacks_in_1018_23 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_1018_23 #topBoxTriggerContentstacks_in_1018_23 img {
	display: block;
	margin: 0 auto;
}

#topBoxContentWrapperstacks_in_1018_23 {
	color: rgba(66, 66, 66, 1.00);
}

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

#topBoxContentWrapperstacks_in_1018_23 h1,
#topBoxContentWrapperstacks_in_1018_23 h2,
#topBoxContentWrapperstacks_in_1018_23 h3,
#topBoxContentWrapperstacks_in_1018_23 h4,
#topBoxContentWrapperstacks_in_1018_23 h5,
#topBoxContentWrapperstacks_in_1018_23 h6 {
	color: rgba(0, 0, 0, 1.00);
	padding: 0;
	margin: 0;
}

#topBoxContentWrapperstacks_in_1018_23 a {
	color: rgba(137, 34, 20, 1.00);
	transition: all 300ms ease-in-out;
}

#topBoxContentWrapperstacks_in_1018_23 a:visited {
	color: rgba(137, 34, 20, 1.00);
}

#topBoxContentWrapperstacks_in_1018_23 a:hover,
#topBoxContentWrapperstacks_in_1018_23 a:focus,
#topBoxContentWrapperstacks_in_1018_23 a:active {
	color: rgba(255, 0, 0, 1.00);
}

#topBoxContentWrapperstacks_in_1018_23 .topBoxAudio,
#topBoxContentWrapperstacks_in_1018_23 .topBoxVideo {
	width: 100%;
	display: block;
}

/* Fixes for Firefox video positioning, April 2018 */
#topBoxContentWrapperstacks_in_1018_23.topBoxVideo {
	position: relative;
	padding-bottom: %;
	height: 0;
	overflow: hidden;
}

#topBoxContentWrapperstacks_in_1018_23 video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}



#topBoxContentWrapperstacks_in_1018_23 .trackName,
#topBoxContentWrapperstacks_in_1018_23 .trackDescription {
	text-align: center;
	display: block;
}


#topBoxContentWrapperstacks_in_1018_23 {
	display: none;
}








#stacks_out_1018_21 {
	width: 50%;
	margin-right:0;
}

#stacks_in_1018_11 {
	background-color: rgba(249, 249, 249, 1.00);
}
#mc_stack_stacks_in_1067_5 *,
#mc_stack_stacks_in_1067_5 *::before,
#mc_stack_stacks_in_1067_5 *::after {
	box-sizing: border-box;
}







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

#mc_button_stacks_in_1067_5:hover,
.mc_button_stacks_in_1067_5:hover,
#mc_button_accept_all_stacks_in_1067_5:hover,
#mc_button_disallow_all_stacks_in_1067_5:hover {
	color: rgba(14, 36, 125, 1.00);
	background-color: rgba(41, 145, 204, 0.40);
	border: 1px hidden rgba(41, 145, 204, 0.40);
}


#mc_button_stacks_in_1067_5:active,
.mc_button_stacks_in_1067_5:active,
#mc_button_accept_all_stacks_in_1067_5:active,
#mc_button_disallow_all_stacks_in_1067_5:active {
	color: rgba(14, 36, 125, 1.00);
	background-color: rgba(41, 145, 204, 0.40);
	border: 1px hidden rgba(41, 145, 204, 0.40);
	opacity: 0.50;
}

#mc_button_stacks_in_1067_5:focus,
#mc_button_accept_all_stacks_in_1067_5:focus,
#mc_button_disallow_all_stacks_in_1067_5:focus,
.mc_button_stacks_in_1067_5:focus {
	outline: 2px dotted rgba(14, 36, 125, 1.00);
}







#dialog_title_stacks_in_1067_5,
#dialog_desc_stacks_in_1067_5 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_1067_5,
	#mc_window_shade_stacks_in_1067_5,
	#mc_wrapper_stacks_in_1067_5 {
		display: none;
	}
}



/* LinkPlus stack v1.1.4 */#stacks_in_1067_4 a:link {			color: #892214 !important;		}#stacks_in_1067_4 a:visited {	color: #892214 !important;	}#stacks_in_1067_4 a:hover,#stacks_in_1067_4 a:focus  {	color: #771A2B !important;	}#stacks_in_1067_4 a:active  {	color: #892214 !important;		}#stacks_in_1067_4 a:link span,#stacks_in_1067_4 .com_marathia_stacks_downloadlinkicon_stack a:link:before, /* for DLI */#stacks_in_1067_4 .com_marathia_stacks_downloadlinkicon_stack a:link:after /* for DLI */ {	color: #892214 !important;	text-decoration: none !important;	cursor: pointer;}#stacks_in_1067_4 a:visited span,#stacks_in_1067_4 .com_marathia_stacks_downloadlinkicon_stack a:visited:before, /* for DLI */#stacks_in_1067_4 .com_marathia_stacks_downloadlinkicon_stack a:visited:after /* for DLI */ {	color: #892214 !important;}#stacks_in_1067_4 a:hover span,#stacks_in_1067_4 a:focus span,#stacks_in_1067_4 .com_marathia_stacks_downloadlinkicon_stack a:hover:before, /* for DLI */#stacks_in_1067_4 .com_marathia_stacks_downloadlinkicon_stack a:focus:before, /* for DLI */#stacks_in_1067_4 .com_marathia_stacks_downloadlinkicon_stack a:hover:after, /* for DLI */#stacks_in_1067_4 .com_marathia_stacks_downloadlinkicon_stack a:focus:after /* for DLI */ {	color: #892214 !important;}#stacks_in_1067_4 a:active span,#stacks_in_1067_4 .com_marathia_stacks_downloadlinkicon_stack a:active:before, /* for DLI */#stacks_in_1067_4 .com_marathia_stacks_downloadlinkicon_stack a:active:after /* for DLI */ {	color: #892214 !important;}/* @group internal link icon *//* @end *//* @group external link icon *//* @end *//* @group email link icon */#stacks_in_1067_4 a[href^="mailto"] span:after {								content: "";}/* @end *//* End of LinkPlus stack */

#stacks_in_1067_2 {
	width: 100%;
	max-width: 100%;
}

@media (max-width: 768px) {
	#stacks_in_1067_2 {
		height: 480px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#stacks_in_1067_2 {
		height: 360px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#stacks_in_1067_2 {
		height: 400px;
	}
}
@media (min-width: 1200px) {
	#stacks_in_1067_2 {
		height: 500px;
	}
}

.de_futural_osmstack_stack {
    overflow: hidden !important;
}#mc_stack_stacks_in_1067_26 *,
#mc_stack_stacks_in_1067_26 *::before,
#mc_stack_stacks_in_1067_26 *::after {
	box-sizing: border-box;
}







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_1067_26,
#mc_button_accept_all_stacks_in_1067_26,
#mc_button_disallow_all_stacks_in_1067_26,
.mc_button_stacks_in_1067_26 {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: rgba(130, 1, 8, 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_1067_26:hover,
.mc_button_stacks_in_1067_26:hover,
#mc_button_accept_all_stacks_in_1067_26:hover,
#mc_button_disallow_all_stacks_in_1067_26:hover {
	color: rgba(255, 255, 255, 1.00);
	background-color: rgba(130, 1, 8, 1.00);
	border: 1px hidden rgba(94, 110, 138, 0.80);
}


#mc_button_stacks_in_1067_26:active,
.mc_button_stacks_in_1067_26:active,
#mc_button_accept_all_stacks_in_1067_26:active,
#mc_button_disallow_all_stacks_in_1067_26:active {
	color: rgba(255, 255, 255, 1.00);
	background-color: rgba(130, 1, 8, 1.00);
	border: 1px hidden rgba(94, 110, 138, 0.80);
	opacity: 0.50;
}

#mc_button_stacks_in_1067_26:focus,
#mc_button_accept_all_stacks_in_1067_26:focus,
#mc_button_disallow_all_stacks_in_1067_26:focus,
.mc_button_stacks_in_1067_26:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}







#dialog_title_stacks_in_1067_26,
#dialog_desc_stacks_in_1067_26 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_1067_26,
	#mc_window_shade_stacks_in_1067_26,
	#mc_wrapper_stacks_in_1067_26 {
		display: none;
	}
}



#usefulStackWrapperstacks_in_1062_15 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 1200px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_1062_15 {
	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_1062_15 {
		display: none;
	}
}












 #stacks_in_1062_10 hr{border:0;height:0;width:100%;margin:0;padding:0}#stacks_in_1062_10 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_1062_10 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_1062_10 hr.dashed_fade{border-bottom:1px dashed #7E7E7E;background:#333333}#stacks_in_1062_10 hr.dotted_fade{border-bottom:1px dotted #7E7E7E;background:#333333}#stacks_in_1062_10 hr.dashed{border-bottom:1px dashed #333333}#stacks_in_1062_10 hr.dotted{border-bottom:1px dotted #7E7E7E}#stacks_in_1062_10 hr.shadow{height:1px;box-shadow:inset 0 1px 1px -1px rgba(0,0,0,0.5)}#stacks_in_1062_10 hr.cloudy{margin:1px 0;box-shadow:0 0 1px 1px #333333}#stacks_in_1062_10 hr.cloudy:after{content:"\00a0"}#stacks_in_1062_10 hr.inset{border-top:1px solid rgba(0,0,0,0.1);border-bottom:1px solid rgba(255,255,255,0.3)}#stacks_in_1062_10 hr.inset_two{border-top:1px solid #CCCCCC;border-bottom:1px solid #333333}#stacks_in_1062_10 hr.inset_three{border-top:1px solid #333333;border-bottom:1px solid #CCCCCC}#stacks_in_1062_10 hr.inset_four{border-top:1px solid #333333;border-bottom:1px solid #CCCCCC}#stacks_in_1062_10 hr.flared{height:30px;border-style:solid;border-color:#333333;border-width:1px 0 0 0;border-radius:20px;margin-top:12px}#stacks_in_1062_10 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_1062_10 hr.glyph{padding:0;border:0;border-top:1px double #333333;color:#333333;text-align:center;margin:1em 0}#stacks_in_1062_10 hr.glyph:after{content:"§";display:inline-block;position:relative;top:-0.00em;font-size:1.5em;padding:0 .25em;background:#FFFFFF} 

#stacks_in_1062_10 {
	margin: 0px 0px 10px 0px;
}
 #stacks_in_1062_12 hr{border:0;height:0;width:100%;margin:0;padding:0}#stacks_in_1062_12 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_1062_12 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_1062_12 hr.dashed_fade{border-bottom:1px dashed #7E7E7E;background:#333333}#stacks_in_1062_12 hr.dotted_fade{border-bottom:1px dotted #7E7E7E;background:#333333}#stacks_in_1062_12 hr.dashed{border-bottom:1px dashed #333333}#stacks_in_1062_12 hr.dotted{border-bottom:1px dotted #7E7E7E}#stacks_in_1062_12 hr.shadow{height:1px;box-shadow:inset 0 1px 1px -1px rgba(0,0,0,0.5)}#stacks_in_1062_12 hr.cloudy{margin:1px 0;box-shadow:0 0 1px 1px #333333}#stacks_in_1062_12 hr.cloudy:after{content:"\00a0"}#stacks_in_1062_12 hr.inset{border-top:1px solid rgba(0,0,0,0.1);border-bottom:1px solid rgba(255,255,255,0.3)}#stacks_in_1062_12 hr.inset_two{border-top:1px solid #CCCCCC;border-bottom:1px solid #333333}#stacks_in_1062_12 hr.inset_three{border-top:1px solid #333333;border-bottom:1px solid #CCCCCC}#stacks_in_1062_12 hr.inset_four{border-top:1px solid #333333;border-bottom:1px solid #CCCCCC}#stacks_in_1062_12 hr.flared{height:30px;border-style:solid;border-color:#333333;border-width:1px 0 0 0;border-radius:20px;margin-top:12px}#stacks_in_1062_12 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_1062_12 hr.glyph{padding:0;border:0;border-top:1px double #333333;color:#333333;text-align:center;margin:1em 0}#stacks_in_1062_12 hr.glyph:after{content:"§";display:inline-block;position:relative;top:-0.00em;font-size:1.5em;padding:0 .25em;background:#FFFFFF} 

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

#stacks_in_1062_14 {
	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;
	}
}
#mc_stack_stacks_in_2303_185 *,
#mc_stack_stacks_in_2303_185 *::before,
#mc_stack_stacks_in_2303_185 *::after {
	box-sizing: border-box;
}


/* CSS code for getting consent for cookies, custom popup message box */
#mc_wrapper_stacks_in_2303_185 {
	display: inline-block;
	background: rgba(245, 245, 245, 1.00);
	border-radius: 0.0rem;
	box-shadow: 0 0 10px 3px rgba(0, 0, 0, 0.20);
	margin: 1rem;
	padding: 1rem;
	max-height: 100vh;
	max-width: 64rem;
	overflow: auto;
	
	
	
	
	
	
	position: fixed;
	bottom: 0;
	left: 0;
	margin-left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	
	
	
	
	
	
	
	
	
	font-weight: normal;
	font-style: normal;
	text-transform: none;
	text-decoration: none;
	
	
	
	
	z-index: 9999;
}



/* Consent popup animations */
#mc_wrapper_stacks_in_2303_185 {
	opacity: 0;
	-webkit-animation-delay: 100ms;
	animation-delay: 100ms;
	-webkit-animation-name: miniCookieIn;
	animation-name: miniCookieIn;
	-webkit-animation-iteration-count: once;
	animation-iteration-count: once;
	-webkit-animation-timing-function: ease-out;
	animation-timing-function: ease-out;
	-webkit-animation-duration: 800ms;
	animation-duration: 800ms;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}







@-webkit-keyframes miniCookieIn {
	0% {
		opacity: 0;
		margin-bottom: -100vh;
	}
	100% {
		opacity: 1;
		margin-bottom: 1rem;
	}
}

@keyframes miniCookieIn {
	0% {
		opacity: 0;
		margin-bottom: -100vh;
	}
	100% {
		opacity: 1;
		margin-bottom: 1rem;
	}
}






#mc_window_shade_stacks_in_2303_185 {
	position: fixed;
	left: 0;
	top: 0;
	width: 100vw;
	height: 100vh;
	background-color: rgba(0, 0, 0, 0.50);
	content: '';
	overflow: hidden;
	z-index: 9999;
}



#mc_window_shade_stacks_in_2303_185.dismissed {
	display: none;
}



#mc_wrapper_stacks_in_2303_185.dismissed {
	display: none;
}

#mc_stacks_in_2303_185 {
	display: flex;
	align-items: center;
	
	
}

#mc_content_stacks_in_2303_185,
#mc_button_stacks_in_2303_185 {
	font-size: 1rem;
	line-height: 1em;
	letter-spacing: 0px;
	margin: 0;
}

#mc_content_stacks_in_2303_185 {
	flex: 1;
	color: rgba(66, 66, 66, 1.00);
}

@media screen and (max-width: 568px) {
	/* Mobile styling */
	#mc_stacks_in_2303_185 {
		flex-direction: column;
	}

	#mc_wrapper_stacks_in_2303_185 {
		width: 100vw;
		margin: 0;
		border-radius: 0;
		margin-left: 0;
		-webkit-transform: translateX(0);
		-ms-transform: translateX(0);
		transform: translateX(0);
	}

	#mc_content_stacks_in_2303_185 {
		text-align: center;
		margin-bottom: 1rem;
	}

	#mc_button_stacks_in_2303_185 {
		margin-left: 0 !important;
	}
}

#mc_supplementary_link_stacks_in_2303_185 a,
#mc_supplementary_link_stacks_in_2303_185 a:visited,
#mc_content_stacks_in_2303_185 a,
#mc_content_stacks_in_2303_185 a:visited {
	font-weight: 600;
	color: rgba(116, 22, 16, 1.00);
	background: none;
	border: none;
	transition: all 100ms ease-in-out;
	font-weight: normal;
	font-style: normal;
	text-transform: none;
	text-decoration: none;
	font-weight: bold;
	
	
	
}

#mc_supplementary_link_stacks_in_2303_185 a:hover,
#mc_content_stacks_in_2303_185 a:hover {
	color: rgba(116, 22, 16, 1.00);
	text-decoration: none;
	background: none;
	border: none;
}

#mc_supplementary_link_stacks_in_2303_185 a:active,
#mc_content_stacks_in_2303_185 a:active {
	color: rgba(116, 22, 16, 1.00);
	text-decoration: none;
	background: none;
	border: none;
	opacity: 0.50;
}

#mc_supplementary_link_stacks_in_2303_185 a:focus,
#mc_content_stacks_in_2303_185 a:focus {
	outline: 1px dotted rgba(116, 22, 16, 1.00);
}

#mc_supplementary_link_stacks_in_2303_185 a {
	display: inline-block;
	padding: 8px 8px;
	font-size: 1.000rem;
}








#mc_consent_button_wrapper_stacks_in_2303_185 {
	display: flex;
	flex-direction: row;
	margin-left: 1rem;
	text-align: center;
}

#mc_consent_button_wrapper_stacks_in_2303_185 #mc_button_stacks_in_2303_185 {
	order: 1;
	margin-left: 0;
}

#mc_consent_button_wrapper_stacks_in_2303_185 #mc_supplementary_link_stacks_in_2303_185 {
	order: 2;
	margin-left: 0;
	padding-right: 0;
}







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_2303_185,
#mc_button_accept_all_stacks_in_2303_185,
#mc_button_disallow_all_stacks_in_2303_185,
.mc_button_stacks_in_2303_185 {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: rgba(116, 21, 17, 1.00);
	border: 1px hidden rgba(116, 22, 16, 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: 1.000rem;
	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_2303_185:hover,
.mc_button_stacks_in_2303_185:hover,
#mc_button_accept_all_stacks_in_2303_185:hover,
#mc_button_disallow_all_stacks_in_2303_185:hover {
	color: rgba(255, 255, 255, 1.00);
	background-color: rgba(116, 22, 16, 1.00);
	border: 1px hidden rgba(116, 22, 16, 1.00);
}


#mc_button_stacks_in_2303_185:active,
.mc_button_stacks_in_2303_185:active,
#mc_button_accept_all_stacks_in_2303_185:active,
#mc_button_disallow_all_stacks_in_2303_185:active {
	color: rgba(255, 255, 255, 1.00);
	background-color: rgba(116, 22, 16, 1.00);
	border: 1px hidden rgba(116, 22, 16, 1.00);
	opacity: 0.50;
}

#mc_button_stacks_in_2303_185:focus,
#mc_button_accept_all_stacks_in_2303_185:focus,
#mc_button_disallow_all_stacks_in_2303_185:focus,
.mc_button_stacks_in_2303_185:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}







#dialog_title_stacks_in_2303_185,
#dialog_desc_stacks_in_2303_185 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_2303_185,
	#mc_window_shade_stacks_in_2303_185,
	#mc_wrapper_stacks_in_2303_185 {
		display: none;
	}
}




#stacks_in_2303_470 {
	margin: 0px 0px 20px 0px;
}

#stacks_in_2303_471 {
	font-size: 90%;
}
.mauscloud *{cursor:default !important}

/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_2303_476 {
  position: relative;
}

#topbox_trigger_stacks_in_2303_476 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






#stacks_in_2303_484 {
	font-size: 160%;
}
.topbox_inline_content .topbox_inline {background:none !important; box-shadow:none !important; border:none !important;}

.topbox_inline_content .topbox_close {display: none !important;}
.topbox_inline_content .topbox_wrapper {pointer-events: none;}
.topbox_inline_content .topbox_inline {pointer-events: auto;}

.topbox_inline_content .topbox_next {display: none !important;}
.topbox_inline_content .topbox_prev {display: none !important;}
.topbox_inline_content .topbox_title_wrap {display: none !important;}

#topbox_dialog_stacks_in_2303_574 {
	max-width: 600px;
  max-height: none;
	border-radius: 0.3rem;
	margin: auto;
	
	box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.50) inset;
  
	overflow: visible;
	position: relative;
	z-index: 1;
}

#topbox_dialog_content_stacks_in_2303_574 {
	border-radius: 0.3rem;
	background-color: rgba(255, 255, 255, 1.00);
	
	position: relative;
	z-index: 2;
}



#topbox_dialog_header_stacks_in_2303_574 {
  background-color: rgba(255, 255, 255, 0.00)
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 1rem;
	border-bottom: 1px solid rgba(233, 236, 239, 1.00);
}

#topbox_dialog_header_stacks_in_2303_574 > #topbox_dialog_title_stacks_in_2303_574 {
	font-size: 1.25rem;
	line-height: 1.5;
  text-align: left;
  
  
  font-weight: bold;
  
  
  
	color: rgba(25, 25, 25, 1.00);
}

#topbox_dialog_header_stacks_in_2303_574 > #topbox_dismiss_stacks_in_2303_574 {
	padding: 1rem;
	margin: -1.5rem -1rem -1.5rem auto;
	text-decoration: none;
	font-size: 1.75rem;
	font-weight: bold;
	color: rgba(126, 126, 126, 1.00);
	transition: color 100ms ease-in-out;
}

#topbox_dialog_header_stacks_in_2303_574 > #topbox_dismiss_stacks_in_2303_574:hover {
	color: rgba(25, 25, 25, 1.00);
	text-decoration: none;
}

#topbox_dialog_body_stacks_in_2303_574 {
	background-color: ;
	text-align: left;
  
  
  
  
  
  
	color: ;
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1rem;
}

#topbox_dialog_scroll_stacks_in_2303_574 {
	max-height: none;
	overflow: auto;
}

#topbox_dialog_footer_stacks_in_2303_574 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid rgba(233, 236, 239, 1.00);
    background-color: rgba(255, 255, 255, 0.00);
		overflow: hidden;
}

#topbox_dialog_footer_cancel_stacks_in_2303_574,
#topbox_dialog_footer_continue_stacks_in_2303_574 {
	transition: background-color 100ms ease-in-out;
	text-decoration: none;
	border-radius: 0.3rem;
	
  
  
  
}

#topbox_dialog_footer_cancel_stacks_in_2303_574:hover,
#topbox_dialog_footer_continue_stacks_in_2303_574:hover {
	text-decoration: none;
}

#topbox_dialog_footer_cancel_stacks_in_2303_574 {
  border: 1px solid rgba(220, 53, 69, 1.00);
  background-color: rgba(220, 53, 69, 1.00);
  color: rgba(255, 255, 255, 0.85);
}

#topbox_dialog_footer_cancel_stacks_in_2303_574:hover {
  background-color: rgba(200, 35, 51, 1.00);
}

#topbox_dialog_footer_continue_stacks_in_2303_574 {
  border: 1px solid rgba(40, 167, 69, 1.00);
  background-color: rgba(40, 167, 69, 1.00);
  color: rgba(255, 255, 255, 0.85);
}

#topbox_dialog_footer_continue_stacks_in_2303_574:hover {
  background-color: rgba(33, 136, 56, 1.00);
}




#topbox_dialog_footer_cancel_stacks_in_2303_574,
#topbox_dialog_footer_continue_stacks_in_2303_574 {
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.3rem;
  display: inline-block;
}












#topbox_dialog_footer_stacks_in_2303_574 {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

#topbox_dialog_footer_continue_stacks_in_2303_574 {
		margin-left: 1rem;
}











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


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

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


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

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



/* End of SmoothScroll stack */


.spacerStack {
	height: 16.00px;
}

#spacerStackstacks_in_2303_602 {
	height: 16.00px;
}




























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

/* LinkPlus stack v1.1.4 */#stacks_in_2303_605 a:link {		font-style: italic !important;	color: #CCCCCC !important;		}#stacks_in_2303_605 a:visited {	color: #CCCCCC !important;	}#stacks_in_2303_605 a:hover,#stacks_in_2303_605 a:focus  {	color: #CCCCCC !important;	}#stacks_in_2303_605 a:active  {	color: #CCCCCC !important;		}#stacks_in_2303_605 a:link span,#stacks_in_2303_605 .com_marathia_stacks_downloadlinkicon_stack a:link:before, /* for DLI */#stacks_in_2303_605 .com_marathia_stacks_downloadlinkicon_stack a:link:after /* for DLI */ {	color: #CCCCCC !important;	text-decoration: none !important;	cursor: pointer;}#stacks_in_2303_605 a:visited span,#stacks_in_2303_605 .com_marathia_stacks_downloadlinkicon_stack a:visited:before, /* for DLI */#stacks_in_2303_605 .com_marathia_stacks_downloadlinkicon_stack a:visited:after /* for DLI */ {	color: #CCCCCC !important;}#stacks_in_2303_605 a:hover span,#stacks_in_2303_605 a:focus span,#stacks_in_2303_605 .com_marathia_stacks_downloadlinkicon_stack a:hover:before, /* for DLI */#stacks_in_2303_605 .com_marathia_stacks_downloadlinkicon_stack a:focus:before, /* for DLI */#stacks_in_2303_605 .com_marathia_stacks_downloadlinkicon_stack a:hover:after, /* for DLI */#stacks_in_2303_605 .com_marathia_stacks_downloadlinkicon_stack a:focus:after /* for DLI */ {	color: #CCCCCC !important;}#stacks_in_2303_605 a:active span,#stacks_in_2303_605 .com_marathia_stacks_downloadlinkicon_stack a:active:before, /* for DLI */#stacks_in_2303_605 .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_2303_605 a[href^="mailto"] span:after {								content: "";}/* @end *//* End of LinkPlus stack */
#stacks_in_2303_608 {
	font-size: 50%;
}
#mc_stack_stacks_in_2303_612 *,
#mc_stack_stacks_in_2303_612 *::before,
#mc_stack_stacks_in_2303_612 *::after {
	box-sizing: border-box;
}







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_2303_612,
#mc_button_accept_all_stacks_in_2303_612,
#mc_button_disallow_all_stacks_in_2303_612,
.mc_button_stacks_in_2303_612 {
	-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_2303_612:hover,
.mc_button_stacks_in_2303_612:hover,
#mc_button_accept_all_stacks_in_2303_612:hover,
#mc_button_disallow_all_stacks_in_2303_612: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_2303_612:active,
.mc_button_stacks_in_2303_612:active,
#mc_button_accept_all_stacks_in_2303_612:active,
#mc_button_disallow_all_stacks_in_2303_612: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_2303_612:focus,
#mc_button_accept_all_stacks_in_2303_612:focus,
#mc_button_disallow_all_stacks_in_2303_612:focus,
.mc_button_stacks_in_2303_612:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}



#mc_table_wrapper_stacks_in_2303_612 {
	margin-bottom: 10px;
}

#mc_refresh_button_stacks_in_2303_612,
#mc_purge_button_stacks_in_2303_612,
#mc_table_wrapper_stacks_in_2303_612 .mc_table_delete_button {
	margin-left: 0;
}

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

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

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

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

#mc_table_wrapper_stacks_in_2303_612 .delete_button_cell {
	padding: 15px;
}

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

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

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

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

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

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

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

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

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

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

#mc_table_wrapper_stacks_in_2303_612 .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_2303_612 .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_2303_612 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#mc_refresh_button_stacks_in_2303_612,
#mc_purge_button_stacks_in_2303_612 {
	margin: 5px 15px;
}

#mc_refresh_button_stacks_in_2303_612 {
	display: inline-block;
}

#mc_purge_button_stacks_in_2303_612 {
	display: none;
}







#dialog_title_stacks_in_2303_612,
#dialog_desc_stacks_in_2303_612 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_2303_612,
	#mc_window_shade_stacks_in_2303_612,
	#mc_wrapper_stacks_in_2303_612 {
		display: none;
	}
}




.spacerStack {
	height: 24.00px;
}

#spacerStackstacks_in_2303_620 {
	height: 24.00px;
}




























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







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_2303_623,
#mc_button_accept_all_stacks_in_2303_623,
#mc_button_disallow_all_stacks_in_2303_623,
.mc_button_stacks_in_2303_623 {
	-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_2303_623:hover,
.mc_button_stacks_in_2303_623:hover,
#mc_button_accept_all_stacks_in_2303_623:hover,
#mc_button_disallow_all_stacks_in_2303_623: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_2303_623:active,
.mc_button_stacks_in_2303_623:active,
#mc_button_accept_all_stacks_in_2303_623:active,
#mc_button_disallow_all_stacks_in_2303_623: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_2303_623:focus,
#mc_button_accept_all_stacks_in_2303_623:focus,
#mc_button_disallow_all_stacks_in_2303_623:focus,
.mc_button_stacks_in_2303_623:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}







#dialog_title_stacks_in_2303_623,
#dialog_desc_stacks_in_2303_623 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_2303_623,
	#mc_window_shade_stacks_in_2303_623,
	#mc_wrapper_stacks_in_2303_623 {
		display: none;
	}
}




.spacerStack {
	height: 24.00px;
}

#spacerStackstacks_in_2303_631 {
	height: 24.00px;
}




























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







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_2303_634,
#mc_button_accept_all_stacks_in_2303_634,
#mc_button_disallow_all_stacks_in_2303_634,
.mc_button_stacks_in_2303_634 {
	-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_2303_634:hover,
.mc_button_stacks_in_2303_634:hover,
#mc_button_accept_all_stacks_in_2303_634:hover,
#mc_button_disallow_all_stacks_in_2303_634: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_2303_634:active,
.mc_button_stacks_in_2303_634:active,
#mc_button_accept_all_stacks_in_2303_634:active,
#mc_button_disallow_all_stacks_in_2303_634: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_2303_634:focus,
#mc_button_accept_all_stacks_in_2303_634:focus,
#mc_button_disallow_all_stacks_in_2303_634:focus,
.mc_button_stacks_in_2303_634:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}







#dialog_title_stacks_in_2303_634,
#dialog_desc_stacks_in_2303_634 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_2303_634,
	#mc_window_shade_stacks_in_2303_634,
	#mc_wrapper_stacks_in_2303_634 {
		display: none;
	}
}




.spacerStack {
	height: 24.00px;
}

#spacerStackstacks_in_2303_642 {
	height: 24.00px;
}




























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







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_2303_645,
#mc_button_accept_all_stacks_in_2303_645,
#mc_button_disallow_all_stacks_in_2303_645,
.mc_button_stacks_in_2303_645 {
	-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_2303_645:hover,
.mc_button_stacks_in_2303_645:hover,
#mc_button_accept_all_stacks_in_2303_645:hover,
#mc_button_disallow_all_stacks_in_2303_645: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_2303_645:active,
.mc_button_stacks_in_2303_645:active,
#mc_button_accept_all_stacks_in_2303_645:active,
#mc_button_disallow_all_stacks_in_2303_645: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_2303_645:focus,
#mc_button_accept_all_stacks_in_2303_645:focus,
#mc_button_disallow_all_stacks_in_2303_645:focus,
.mc_button_stacks_in_2303_645:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}







#dialog_title_stacks_in_2303_645,
#dialog_desc_stacks_in_2303_645 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_2303_645,
	#mc_window_shade_stacks_in_2303_645,
	#mc_wrapper_stacks_in_2303_645 {
		display: none;
	}
}



#stacks_in_2303_651{text-align:justify}

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

/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_2303_487 {
  position: relative;
}

#topbox_trigger_stacks_in_2303_487 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






#stacks_in_2303_489 {
	font-size: 84%;
}

#stacks_in_2303_490 {
	font-size: 74%;
}
.topbox_inline_content .topbox_inline {background:none !important; box-shadow:none !important; border:none !important;}

.topbox_inline_content .topbox_close {display: none !important;}
.topbox_inline_content .topbox_wrapper {pointer-events: none;}
.topbox_inline_content .topbox_inline {pointer-events: auto;}

.topbox_inline_content .topbox_next {display: none !important;}
.topbox_inline_content .topbox_prev {display: none !important;}
.topbox_inline_content .topbox_title_wrap {display: none !important;}

#topbox_dialog_stacks_in_2303_493 {
	max-width: 600px;
  max-height: none;
	border-radius: 0.3rem;
	margin: auto;
	
	box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.50) inset;
  
	overflow: visible;
	position: relative;
	z-index: 1;
}

#topbox_dialog_content_stacks_in_2303_493 {
	border-radius: 0.3rem;
	background-color: rgba(255, 255, 255, 1.00);
	
	position: relative;
	z-index: 2;
}



#topbox_dialog_header_stacks_in_2303_493 {
  background-color: rgba(255, 255, 255, 0.00)
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 1rem;
	border-bottom: 1px solid rgba(233, 236, 239, 1.00);
}

#topbox_dialog_header_stacks_in_2303_493 > #topbox_dialog_title_stacks_in_2303_493 {
	font-size: 1.25rem;
	line-height: 1.5;
  text-align: left;
  
  
  font-weight: bold;
  
  
  
	color: rgba(25, 25, 25, 1.00);
}

#topbox_dialog_header_stacks_in_2303_493 > #topbox_dismiss_stacks_in_2303_493 {
	padding: 1rem;
	margin: -1.5rem -1rem -1.5rem auto;
	text-decoration: none;
	font-size: 1.75rem;
	font-weight: bold;
	color: rgba(126, 126, 126, 1.00);
	transition: color 100ms ease-in-out;
}

#topbox_dialog_header_stacks_in_2303_493 > #topbox_dismiss_stacks_in_2303_493:hover {
	color: rgba(25, 25, 25, 1.00);
	text-decoration: none;
}

#topbox_dialog_body_stacks_in_2303_493 {
	background-color: ;
	text-align: left;
  
  
  
  
  
  
	color: ;
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1rem;
}

#topbox_dialog_scroll_stacks_in_2303_493 {
	max-height: none;
	overflow: auto;
}

#topbox_dialog_footer_stacks_in_2303_493 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid rgba(233, 236, 239, 1.00);
    background-color: rgba(255, 255, 255, 0.00);
		overflow: hidden;
}

#topbox_dialog_footer_cancel_stacks_in_2303_493,
#topbox_dialog_footer_continue_stacks_in_2303_493 {
	transition: background-color 100ms ease-in-out;
	text-decoration: none;
	border-radius: 0.3rem;
	
  
  
  
}

#topbox_dialog_footer_cancel_stacks_in_2303_493:hover,
#topbox_dialog_footer_continue_stacks_in_2303_493:hover {
	text-decoration: none;
}

#topbox_dialog_footer_cancel_stacks_in_2303_493 {
  border: 1px solid rgba(220, 53, 69, 1.00);
  background-color: rgba(220, 53, 69, 1.00);
  color: rgba(255, 255, 255, 0.85);
}

#topbox_dialog_footer_cancel_stacks_in_2303_493:hover {
  background-color: rgba(200, 35, 51, 1.00);
}

#topbox_dialog_footer_continue_stacks_in_2303_493 {
  border: 1px solid rgba(40, 167, 69, 1.00);
  background-color: rgba(40, 167, 69, 1.00);
  color: rgba(255, 255, 255, 0.85);
}

#topbox_dialog_footer_continue_stacks_in_2303_493:hover {
  background-color: rgba(33, 136, 56, 1.00);
}




#topbox_dialog_footer_cancel_stacks_in_2303_493,
#topbox_dialog_footer_continue_stacks_in_2303_493 {
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.3rem;
  display: inline-block;
}












#topbox_dialog_footer_stacks_in_2303_493 {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

#topbox_dialog_footer_continue_stacks_in_2303_493 {
		margin-left: 1rem;
}











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


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

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


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

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



/* End of SmoothScroll stack */


.spacerStack {
	height: 16.00px;
}

#spacerStackstacks_in_2303_521 {
	height: 16.00px;
}




























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

/* LinkPlus stack v1.1.4 */#stacks_in_2303_524 a:link {		font-style: italic !important;	color: #CCCCCC !important;		}#stacks_in_2303_524 a:visited {	color: #CCCCCC !important;	}#stacks_in_2303_524 a:hover,#stacks_in_2303_524 a:focus  {	color: #CCCCCC !important;	}#stacks_in_2303_524 a:active  {	color: #CCCCCC !important;		}#stacks_in_2303_524 a:link span,#stacks_in_2303_524 .com_marathia_stacks_downloadlinkicon_stack a:link:before, /* for DLI */#stacks_in_2303_524 .com_marathia_stacks_downloadlinkicon_stack a:link:after /* for DLI */ {	color: #CCCCCC !important;	text-decoration: none !important;	cursor: pointer;}#stacks_in_2303_524 a:visited span,#stacks_in_2303_524 .com_marathia_stacks_downloadlinkicon_stack a:visited:before, /* for DLI */#stacks_in_2303_524 .com_marathia_stacks_downloadlinkicon_stack a:visited:after /* for DLI */ {	color: #CCCCCC !important;}#stacks_in_2303_524 a:hover span,#stacks_in_2303_524 a:focus span,#stacks_in_2303_524 .com_marathia_stacks_downloadlinkicon_stack a:hover:before, /* for DLI */#stacks_in_2303_524 .com_marathia_stacks_downloadlinkicon_stack a:focus:before, /* for DLI */#stacks_in_2303_524 .com_marathia_stacks_downloadlinkicon_stack a:hover:after, /* for DLI */#stacks_in_2303_524 .com_marathia_stacks_downloadlinkicon_stack a:focus:after /* for DLI */ {	color: #CCCCCC !important;}#stacks_in_2303_524 a:active span,#stacks_in_2303_524 .com_marathia_stacks_downloadlinkicon_stack a:active:before, /* for DLI */#stacks_in_2303_524 .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_2303_524 a[href^="mailto"] span:after {								content: "";}/* @end *//* End of LinkPlus stack */
#stacks_in_2303_527 {
	font-size: 50%;
}
#mc_stack_stacks_in_2303_531 *,
#mc_stack_stacks_in_2303_531 *::before,
#mc_stack_stacks_in_2303_531 *::after {
	box-sizing: border-box;
}







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_2303_531,
#mc_button_accept_all_stacks_in_2303_531,
#mc_button_disallow_all_stacks_in_2303_531,
.mc_button_stacks_in_2303_531 {
	-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_2303_531:hover,
.mc_button_stacks_in_2303_531:hover,
#mc_button_accept_all_stacks_in_2303_531:hover,
#mc_button_disallow_all_stacks_in_2303_531: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_2303_531:active,
.mc_button_stacks_in_2303_531:active,
#mc_button_accept_all_stacks_in_2303_531:active,
#mc_button_disallow_all_stacks_in_2303_531: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_2303_531:focus,
#mc_button_accept_all_stacks_in_2303_531:focus,
#mc_button_disallow_all_stacks_in_2303_531:focus,
.mc_button_stacks_in_2303_531:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}



#mc_table_wrapper_stacks_in_2303_531 {
	margin-bottom: 10px;
}

#mc_refresh_button_stacks_in_2303_531,
#mc_purge_button_stacks_in_2303_531,
#mc_table_wrapper_stacks_in_2303_531 .mc_table_delete_button {
	margin-left: 0;
}

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

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

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

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

#mc_table_wrapper_stacks_in_2303_531 .delete_button_cell {
	padding: 15px;
}

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

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

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

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

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

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

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

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

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

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

#mc_table_wrapper_stacks_in_2303_531 .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_2303_531 .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_2303_531 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#mc_refresh_button_stacks_in_2303_531,
#mc_purge_button_stacks_in_2303_531 {
	margin: 5px 15px;
}

#mc_refresh_button_stacks_in_2303_531 {
	display: inline-block;
}

#mc_purge_button_stacks_in_2303_531 {
	display: none;
}







#dialog_title_stacks_in_2303_531,
#dialog_desc_stacks_in_2303_531 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_2303_531,
	#mc_window_shade_stacks_in_2303_531,
	#mc_wrapper_stacks_in_2303_531 {
		display: none;
	}
}




.spacerStack {
	height: 24.00px;
}

#spacerStackstacks_in_2303_539 {
	height: 24.00px;
}




























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







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_2303_542,
#mc_button_accept_all_stacks_in_2303_542,
#mc_button_disallow_all_stacks_in_2303_542,
.mc_button_stacks_in_2303_542 {
	-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_2303_542:hover,
.mc_button_stacks_in_2303_542:hover,
#mc_button_accept_all_stacks_in_2303_542:hover,
#mc_button_disallow_all_stacks_in_2303_542: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_2303_542:active,
.mc_button_stacks_in_2303_542:active,
#mc_button_accept_all_stacks_in_2303_542:active,
#mc_button_disallow_all_stacks_in_2303_542: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_2303_542:focus,
#mc_button_accept_all_stacks_in_2303_542:focus,
#mc_button_disallow_all_stacks_in_2303_542:focus,
.mc_button_stacks_in_2303_542:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}







#dialog_title_stacks_in_2303_542,
#dialog_desc_stacks_in_2303_542 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_2303_542,
	#mc_window_shade_stacks_in_2303_542,
	#mc_wrapper_stacks_in_2303_542 {
		display: none;
	}
}




.spacerStack {
	height: 24.00px;
}

#spacerStackstacks_in_2303_550 {
	height: 24.00px;
}




























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







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_2303_553,
#mc_button_accept_all_stacks_in_2303_553,
#mc_button_disallow_all_stacks_in_2303_553,
.mc_button_stacks_in_2303_553 {
	-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_2303_553:hover,
.mc_button_stacks_in_2303_553:hover,
#mc_button_accept_all_stacks_in_2303_553:hover,
#mc_button_disallow_all_stacks_in_2303_553: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_2303_553:active,
.mc_button_stacks_in_2303_553:active,
#mc_button_accept_all_stacks_in_2303_553:active,
#mc_button_disallow_all_stacks_in_2303_553: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_2303_553:focus,
#mc_button_accept_all_stacks_in_2303_553:focus,
#mc_button_disallow_all_stacks_in_2303_553:focus,
.mc_button_stacks_in_2303_553:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}







#dialog_title_stacks_in_2303_553,
#dialog_desc_stacks_in_2303_553 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_2303_553,
	#mc_window_shade_stacks_in_2303_553,
	#mc_wrapper_stacks_in_2303_553 {
		display: none;
	}
}




.spacerStack {
	height: 24.00px;
}

#spacerStackstacks_in_2303_561 {
	height: 24.00px;
}




























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







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_2303_564,
#mc_button_accept_all_stacks_in_2303_564,
#mc_button_disallow_all_stacks_in_2303_564,
.mc_button_stacks_in_2303_564 {
	-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_2303_564:hover,
.mc_button_stacks_in_2303_564:hover,
#mc_button_accept_all_stacks_in_2303_564:hover,
#mc_button_disallow_all_stacks_in_2303_564: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_2303_564:active,
.mc_button_stacks_in_2303_564:active,
#mc_button_accept_all_stacks_in_2303_564:active,
#mc_button_disallow_all_stacks_in_2303_564: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_2303_564:focus,
#mc_button_accept_all_stacks_in_2303_564:focus,
#mc_button_disallow_all_stacks_in_2303_564:focus,
.mc_button_stacks_in_2303_564:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}







#dialog_title_stacks_in_2303_564,
#dialog_desc_stacks_in_2303_564 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_2303_564,
	#mc_window_shade_stacks_in_2303_564,
	#mc_wrapper_stacks_in_2303_564 {
		display: none;
	}
}



#stacks_in_2303_570{text-align:justify}

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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_2303_654 {
	height: 40.00px;
}




























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

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_2303_658 {
	height: 20.00px;
}




























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

#stacks_in_2303_195 {
	font-size: 90%;
}
.mauscloud *{cursor:default !important}

/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_2303_206 {
  position: relative;
}

#topbox_trigger_stacks_in_2303_206 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






#stacks_in_2303_208 {
	font-size: 90%;
}

#stacks_in_2303_209 {
	font-size: 80%;
}
.topbox_inline_content .topbox_inline {background:none !important; box-shadow:none !important; border:none !important;}

.topbox_inline_content .topbox_close {display: none !important;}
.topbox_inline_content .topbox_wrapper {pointer-events: none;}
.topbox_inline_content .topbox_inline {pointer-events: auto;}

.topbox_inline_content .topbox_next {display: none !important;}
.topbox_inline_content .topbox_prev {display: none !important;}
.topbox_inline_content .topbox_title_wrap {display: none !important;}

#topbox_dialog_stacks_in_2303_309 {
	max-width: 600px;
  max-height: none;
	border-radius: 0.3rem;
	margin: auto;
	
	box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.50) inset;
  
	overflow: visible;
	position: relative;
	z-index: 1;
}

#topbox_dialog_content_stacks_in_2303_309 {
	border-radius: 0.3rem;
	background-color: rgba(255, 255, 255, 1.00);
	
	position: relative;
	z-index: 2;
}



#topbox_dialog_header_stacks_in_2303_309 {
  background-color: rgba(255, 255, 255, 0.00)
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 1rem;
	border-bottom: 1px solid rgba(233, 236, 239, 1.00);
}

#topbox_dialog_header_stacks_in_2303_309 > #topbox_dialog_title_stacks_in_2303_309 {
	font-size: 1.25rem;
	line-height: 1.5;
  text-align: left;
  
  
  font-weight: bold;
  
  
  
	color: rgba(25, 25, 25, 1.00);
}

#topbox_dialog_header_stacks_in_2303_309 > #topbox_dismiss_stacks_in_2303_309 {
	padding: 1rem;
	margin: -1.5rem -1rem -1.5rem auto;
	text-decoration: none;
	font-size: 1.75rem;
	font-weight: bold;
	color: rgba(126, 126, 126, 1.00);
	transition: color 100ms ease-in-out;
}

#topbox_dialog_header_stacks_in_2303_309 > #topbox_dismiss_stacks_in_2303_309:hover {
	color: rgba(25, 25, 25, 1.00);
	text-decoration: none;
}

#topbox_dialog_body_stacks_in_2303_309 {
	background-color: ;
	text-align: left;
  
  
  
  
  
  
	color: ;
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1rem;
}

#topbox_dialog_scroll_stacks_in_2303_309 {
	max-height: none;
	overflow: auto;
}

#topbox_dialog_footer_stacks_in_2303_309 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid rgba(233, 236, 239, 1.00);
    background-color: rgba(255, 255, 255, 0.00);
		overflow: hidden;
}

#topbox_dialog_footer_cancel_stacks_in_2303_309,
#topbox_dialog_footer_continue_stacks_in_2303_309 {
	transition: background-color 100ms ease-in-out;
	text-decoration: none;
	border-radius: 0.3rem;
	
  
  
  
}

#topbox_dialog_footer_cancel_stacks_in_2303_309:hover,
#topbox_dialog_footer_continue_stacks_in_2303_309:hover {
	text-decoration: none;
}

#topbox_dialog_footer_cancel_stacks_in_2303_309 {
  border: 1px solid rgba(220, 53, 69, 1.00);
  background-color: rgba(220, 53, 69, 1.00);
  color: rgba(255, 255, 255, 0.85);
}

#topbox_dialog_footer_cancel_stacks_in_2303_309:hover {
  background-color: rgba(200, 35, 51, 1.00);
}

#topbox_dialog_footer_continue_stacks_in_2303_309 {
  border: 1px solid rgba(40, 167, 69, 1.00);
  background-color: rgba(40, 167, 69, 1.00);
  color: rgba(255, 255, 255, 0.85);
}

#topbox_dialog_footer_continue_stacks_in_2303_309:hover {
  background-color: rgba(33, 136, 56, 1.00);
}




#topbox_dialog_footer_cancel_stacks_in_2303_309,
#topbox_dialog_footer_continue_stacks_in_2303_309 {
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.3rem;
  display: inline-block;
}












#topbox_dialog_footer_stacks_in_2303_309 {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

#topbox_dialog_footer_continue_stacks_in_2303_309 {
		margin-left: 1rem;
}











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


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

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


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

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



/* End of SmoothScroll stack */


.spacerStack {
	height: 16.00px;
}

#spacerStackstacks_in_2303_337 {
	height: 16.00px;
}




























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

/* LinkPlus stack v1.1.4 */#stacks_in_2303_340 a:link {		font-style: italic !important;	color: #CCCCCC !important;		}#stacks_in_2303_340 a:visited {	color: #CCCCCC !important;	}#stacks_in_2303_340 a:hover,#stacks_in_2303_340 a:focus  {	color: #CCCCCC !important;	}#stacks_in_2303_340 a:active  {	color: #CCCCCC !important;		}#stacks_in_2303_340 a:link span,#stacks_in_2303_340 .com_marathia_stacks_downloadlinkicon_stack a:link:before, /* for DLI */#stacks_in_2303_340 .com_marathia_stacks_downloadlinkicon_stack a:link:after /* for DLI */ {	color: #CCCCCC !important;	text-decoration: none !important;	cursor: pointer;}#stacks_in_2303_340 a:visited span,#stacks_in_2303_340 .com_marathia_stacks_downloadlinkicon_stack a:visited:before, /* for DLI */#stacks_in_2303_340 .com_marathia_stacks_downloadlinkicon_stack a:visited:after /* for DLI */ {	color: #CCCCCC !important;}#stacks_in_2303_340 a:hover span,#stacks_in_2303_340 a:focus span,#stacks_in_2303_340 .com_marathia_stacks_downloadlinkicon_stack a:hover:before, /* for DLI */#stacks_in_2303_340 .com_marathia_stacks_downloadlinkicon_stack a:focus:before, /* for DLI */#stacks_in_2303_340 .com_marathia_stacks_downloadlinkicon_stack a:hover:after, /* for DLI */#stacks_in_2303_340 .com_marathia_stacks_downloadlinkicon_stack a:focus:after /* for DLI */ {	color: #CCCCCC !important;}#stacks_in_2303_340 a:active span,#stacks_in_2303_340 .com_marathia_stacks_downloadlinkicon_stack a:active:before, /* for DLI */#stacks_in_2303_340 .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_2303_340 a[href^="mailto"] span:after {								content: "";}/* @end *//* End of LinkPlus stack */
#stacks_in_2303_343 {
	font-size: 50%;
}
#mc_stack_stacks_in_2303_347 *,
#mc_stack_stacks_in_2303_347 *::before,
#mc_stack_stacks_in_2303_347 *::after {
	box-sizing: border-box;
}







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_2303_347,
#mc_button_accept_all_stacks_in_2303_347,
#mc_button_disallow_all_stacks_in_2303_347,
.mc_button_stacks_in_2303_347 {
	-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_2303_347:hover,
.mc_button_stacks_in_2303_347:hover,
#mc_button_accept_all_stacks_in_2303_347:hover,
#mc_button_disallow_all_stacks_in_2303_347: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_2303_347:active,
.mc_button_stacks_in_2303_347:active,
#mc_button_accept_all_stacks_in_2303_347:active,
#mc_button_disallow_all_stacks_in_2303_347: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_2303_347:focus,
#mc_button_accept_all_stacks_in_2303_347:focus,
#mc_button_disallow_all_stacks_in_2303_347:focus,
.mc_button_stacks_in_2303_347:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}



#mc_table_wrapper_stacks_in_2303_347 {
	margin-bottom: 10px;
}

#mc_refresh_button_stacks_in_2303_347,
#mc_purge_button_stacks_in_2303_347,
#mc_table_wrapper_stacks_in_2303_347 .mc_table_delete_button {
	margin-left: 0;
}

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

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

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

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

#mc_table_wrapper_stacks_in_2303_347 .delete_button_cell {
	padding: 15px;
}

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

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

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

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

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

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

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

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

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

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

#mc_table_wrapper_stacks_in_2303_347 .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_2303_347 .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_2303_347 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#mc_refresh_button_stacks_in_2303_347,
#mc_purge_button_stacks_in_2303_347 {
	margin: 5px 15px;
}

#mc_refresh_button_stacks_in_2303_347 {
	display: inline-block;
}

#mc_purge_button_stacks_in_2303_347 {
	display: none;
}







#dialog_title_stacks_in_2303_347,
#dialog_desc_stacks_in_2303_347 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_2303_347,
	#mc_window_shade_stacks_in_2303_347,
	#mc_wrapper_stacks_in_2303_347 {
		display: none;
	}
}




.spacerStack {
	height: 24.00px;
}

#spacerStackstacks_in_2303_355 {
	height: 24.00px;
}




























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







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_2303_358,
#mc_button_accept_all_stacks_in_2303_358,
#mc_button_disallow_all_stacks_in_2303_358,
.mc_button_stacks_in_2303_358 {
	-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_2303_358:hover,
.mc_button_stacks_in_2303_358:hover,
#mc_button_accept_all_stacks_in_2303_358:hover,
#mc_button_disallow_all_stacks_in_2303_358: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_2303_358:active,
.mc_button_stacks_in_2303_358:active,
#mc_button_accept_all_stacks_in_2303_358:active,
#mc_button_disallow_all_stacks_in_2303_358: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_2303_358:focus,
#mc_button_accept_all_stacks_in_2303_358:focus,
#mc_button_disallow_all_stacks_in_2303_358:focus,
.mc_button_stacks_in_2303_358:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}







#dialog_title_stacks_in_2303_358,
#dialog_desc_stacks_in_2303_358 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_2303_358,
	#mc_window_shade_stacks_in_2303_358,
	#mc_wrapper_stacks_in_2303_358 {
		display: none;
	}
}




.spacerStack {
	height: 24.00px;
}

#spacerStackstacks_in_2303_366 {
	height: 24.00px;
}




























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







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_2303_369,
#mc_button_accept_all_stacks_in_2303_369,
#mc_button_disallow_all_stacks_in_2303_369,
.mc_button_stacks_in_2303_369 {
	-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_2303_369:hover,
.mc_button_stacks_in_2303_369:hover,
#mc_button_accept_all_stacks_in_2303_369:hover,
#mc_button_disallow_all_stacks_in_2303_369: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_2303_369:active,
.mc_button_stacks_in_2303_369:active,
#mc_button_accept_all_stacks_in_2303_369:active,
#mc_button_disallow_all_stacks_in_2303_369: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_2303_369:focus,
#mc_button_accept_all_stacks_in_2303_369:focus,
#mc_button_disallow_all_stacks_in_2303_369:focus,
.mc_button_stacks_in_2303_369:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}







#dialog_title_stacks_in_2303_369,
#dialog_desc_stacks_in_2303_369 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_2303_369,
	#mc_window_shade_stacks_in_2303_369,
	#mc_wrapper_stacks_in_2303_369 {
		display: none;
	}
}




.spacerStack {
	height: 24.00px;
}

#spacerStackstacks_in_2303_377 {
	height: 24.00px;
}




























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







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_2303_380,
#mc_button_accept_all_stacks_in_2303_380,
#mc_button_disallow_all_stacks_in_2303_380,
.mc_button_stacks_in_2303_380 {
	-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_2303_380:hover,
.mc_button_stacks_in_2303_380:hover,
#mc_button_accept_all_stacks_in_2303_380:hover,
#mc_button_disallow_all_stacks_in_2303_380: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_2303_380:active,
.mc_button_stacks_in_2303_380:active,
#mc_button_accept_all_stacks_in_2303_380:active,
#mc_button_disallow_all_stacks_in_2303_380: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_2303_380:focus,
#mc_button_accept_all_stacks_in_2303_380:focus,
#mc_button_disallow_all_stacks_in_2303_380:focus,
.mc_button_stacks_in_2303_380:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}







#dialog_title_stacks_in_2303_380,
#dialog_desc_stacks_in_2303_380 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_2303_380,
	#mc_window_shade_stacks_in_2303_380,
	#mc_wrapper_stacks_in_2303_380 {
		display: none;
	}
}



#stacks_in_2303_386{text-align:justify}

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

/* Hide these TopBox content types with CSS, so they are only displayed when the lightbox opens */





#topbox_trigger_region_stacks_in_2303_200 {
  position: relative;
}

#topbox_trigger_stacks_in_2303_200 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}






#stacks_in_2303_203 {
	font-size: 160%;
}
.topbox_inline_content .topbox_inline {background:none !important; box-shadow:none !important; border:none !important;}

.topbox_inline_content .topbox_close {display: none !important;}
.topbox_inline_content .topbox_wrapper {pointer-events: none;}
.topbox_inline_content .topbox_inline {pointer-events: auto;}

.topbox_inline_content .topbox_next {display: none !important;}
.topbox_inline_content .topbox_prev {display: none !important;}
.topbox_inline_content .topbox_title_wrap {display: none !important;}

#topbox_dialog_stacks_in_2303_390 {
	max-width: 600px;
  max-height: none;
	border-radius: 0.3rem;
	margin: auto;
	
	box-shadow: 0px 0px 10px 4px rgba(0, 0, 0, 0.50) inset;
  
	overflow: visible;
	position: relative;
	z-index: 1;
}

#topbox_dialog_content_stacks_in_2303_390 {
	border-radius: 0.3rem;
	background-color: rgba(255, 255, 255, 1.00);
	
	position: relative;
	z-index: 2;
}



#topbox_dialog_header_stacks_in_2303_390 {
  background-color: rgba(255, 255, 255, 0.00)
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: start;
	-ms-flex-align: start;
	align-items: flex-start;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	padding: 1rem;
	border-bottom: 1px solid rgba(233, 236, 239, 1.00);
}

#topbox_dialog_header_stacks_in_2303_390 > #topbox_dialog_title_stacks_in_2303_390 {
	font-size: 1.25rem;
	line-height: 1.5;
  text-align: left;
  
  
  font-weight: bold;
  
  
  
	color: rgba(25, 25, 25, 1.00);
}

#topbox_dialog_header_stacks_in_2303_390 > #topbox_dismiss_stacks_in_2303_390 {
	padding: 1rem;
	margin: -1.5rem -1rem -1.5rem auto;
	text-decoration: none;
	font-size: 1.75rem;
	font-weight: bold;
	color: rgba(126, 126, 126, 1.00);
	transition: color 100ms ease-in-out;
}

#topbox_dialog_header_stacks_in_2303_390 > #topbox_dismiss_stacks_in_2303_390:hover {
	color: rgba(25, 25, 25, 1.00);
	text-decoration: none;
}

#topbox_dialog_body_stacks_in_2303_390 {
	background-color: ;
	text-align: left;
  
  
  
  
  
  
	color: ;
	position: relative;
	-webkit-box-flex: 1;
	-ms-flex: 1 1 auto;
	flex: 1 1 auto;
	padding: 1rem;
}

#topbox_dialog_scroll_stacks_in_2303_390 {
	max-height: none;
	overflow: auto;
}

#topbox_dialog_footer_stacks_in_2303_390 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 1rem;
    border-top: 1px solid rgba(233, 236, 239, 1.00);
    background-color: rgba(255, 255, 255, 0.00);
		overflow: hidden;
}

#topbox_dialog_footer_cancel_stacks_in_2303_390,
#topbox_dialog_footer_continue_stacks_in_2303_390 {
	transition: background-color 100ms ease-in-out;
	text-decoration: none;
	border-radius: 0.3rem;
	
  
  
  
}

#topbox_dialog_footer_cancel_stacks_in_2303_390:hover,
#topbox_dialog_footer_continue_stacks_in_2303_390:hover {
	text-decoration: none;
}

#topbox_dialog_footer_cancel_stacks_in_2303_390 {
  border: 1px solid rgba(220, 53, 69, 1.00);
  background-color: rgba(220, 53, 69, 1.00);
  color: rgba(255, 255, 255, 0.85);
}

#topbox_dialog_footer_cancel_stacks_in_2303_390:hover {
  background-color: rgba(200, 35, 51, 1.00);
}

#topbox_dialog_footer_continue_stacks_in_2303_390 {
  border: 1px solid rgba(40, 167, 69, 1.00);
  background-color: rgba(40, 167, 69, 1.00);
  color: rgba(255, 255, 255, 0.85);
}

#topbox_dialog_footer_continue_stacks_in_2303_390:hover {
  background-color: rgba(33, 136, 56, 1.00);
}




#topbox_dialog_footer_cancel_stacks_in_2303_390,
#topbox_dialog_footer_continue_stacks_in_2303_390 {
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  border-radius: 0.3rem;
  display: inline-block;
}












#topbox_dialog_footer_stacks_in_2303_390 {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

#topbox_dialog_footer_continue_stacks_in_2303_390 {
		margin-left: 1rem;
}











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


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

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


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

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



/* End of SmoothScroll stack */


.spacerStack {
	height: 16.00px;
}

#spacerStackstacks_in_2303_418 {
	height: 16.00px;
}




























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

/* LinkPlus stack v1.1.4 */#stacks_in_2303_421 a:link {		font-style: italic !important;	color: #CCCCCC !important;		}#stacks_in_2303_421 a:visited {	color: #CCCCCC !important;	}#stacks_in_2303_421 a:hover,#stacks_in_2303_421 a:focus  {	color: #CCCCCC !important;	}#stacks_in_2303_421 a:active  {	color: #CCCCCC !important;		}#stacks_in_2303_421 a:link span,#stacks_in_2303_421 .com_marathia_stacks_downloadlinkicon_stack a:link:before, /* for DLI */#stacks_in_2303_421 .com_marathia_stacks_downloadlinkicon_stack a:link:after /* for DLI */ {	color: #CCCCCC !important;	text-decoration: none !important;	cursor: pointer;}#stacks_in_2303_421 a:visited span,#stacks_in_2303_421 .com_marathia_stacks_downloadlinkicon_stack a:visited:before, /* for DLI */#stacks_in_2303_421 .com_marathia_stacks_downloadlinkicon_stack a:visited:after /* for DLI */ {	color: #CCCCCC !important;}#stacks_in_2303_421 a:hover span,#stacks_in_2303_421 a:focus span,#stacks_in_2303_421 .com_marathia_stacks_downloadlinkicon_stack a:hover:before, /* for DLI */#stacks_in_2303_421 .com_marathia_stacks_downloadlinkicon_stack a:focus:before, /* for DLI */#stacks_in_2303_421 .com_marathia_stacks_downloadlinkicon_stack a:hover:after, /* for DLI */#stacks_in_2303_421 .com_marathia_stacks_downloadlinkicon_stack a:focus:after /* for DLI */ {	color: #CCCCCC !important;}#stacks_in_2303_421 a:active span,#stacks_in_2303_421 .com_marathia_stacks_downloadlinkicon_stack a:active:before, /* for DLI */#stacks_in_2303_421 .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_2303_421 a[href^="mailto"] span:after {								content: "";}/* @end *//* End of LinkPlus stack */
#stacks_in_2303_424 {
	font-size: 50%;
}
#mc_stack_stacks_in_2303_428 *,
#mc_stack_stacks_in_2303_428 *::before,
#mc_stack_stacks_in_2303_428 *::after {
	box-sizing: border-box;
}







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_2303_428,
#mc_button_accept_all_stacks_in_2303_428,
#mc_button_disallow_all_stacks_in_2303_428,
.mc_button_stacks_in_2303_428 {
	-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_2303_428:hover,
.mc_button_stacks_in_2303_428:hover,
#mc_button_accept_all_stacks_in_2303_428:hover,
#mc_button_disallow_all_stacks_in_2303_428: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_2303_428:active,
.mc_button_stacks_in_2303_428:active,
#mc_button_accept_all_stacks_in_2303_428:active,
#mc_button_disallow_all_stacks_in_2303_428: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_2303_428:focus,
#mc_button_accept_all_stacks_in_2303_428:focus,
#mc_button_disallow_all_stacks_in_2303_428:focus,
.mc_button_stacks_in_2303_428:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}



#mc_table_wrapper_stacks_in_2303_428 {
	margin-bottom: 10px;
}

#mc_refresh_button_stacks_in_2303_428,
#mc_purge_button_stacks_in_2303_428,
#mc_table_wrapper_stacks_in_2303_428 .mc_table_delete_button {
	margin-left: 0;
}

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

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

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

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

#mc_table_wrapper_stacks_in_2303_428 .delete_button_cell {
	padding: 15px;
}

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

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

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

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

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

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

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

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

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

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

#mc_table_wrapper_stacks_in_2303_428 .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_2303_428 .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_2303_428 {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

#mc_refresh_button_stacks_in_2303_428,
#mc_purge_button_stacks_in_2303_428 {
	margin: 5px 15px;
}

#mc_refresh_button_stacks_in_2303_428 {
	display: inline-block;
}

#mc_purge_button_stacks_in_2303_428 {
	display: none;
}







#dialog_title_stacks_in_2303_428,
#dialog_desc_stacks_in_2303_428 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_2303_428,
	#mc_window_shade_stacks_in_2303_428,
	#mc_wrapper_stacks_in_2303_428 {
		display: none;
	}
}




.spacerStack {
	height: 24.00px;
}

#spacerStackstacks_in_2303_436 {
	height: 24.00px;
}




























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







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_2303_439,
#mc_button_accept_all_stacks_in_2303_439,
#mc_button_disallow_all_stacks_in_2303_439,
.mc_button_stacks_in_2303_439 {
	-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_2303_439:hover,
.mc_button_stacks_in_2303_439:hover,
#mc_button_accept_all_stacks_in_2303_439:hover,
#mc_button_disallow_all_stacks_in_2303_439: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_2303_439:active,
.mc_button_stacks_in_2303_439:active,
#mc_button_accept_all_stacks_in_2303_439:active,
#mc_button_disallow_all_stacks_in_2303_439: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_2303_439:focus,
#mc_button_accept_all_stacks_in_2303_439:focus,
#mc_button_disallow_all_stacks_in_2303_439:focus,
.mc_button_stacks_in_2303_439:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}







#dialog_title_stacks_in_2303_439,
#dialog_desc_stacks_in_2303_439 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_2303_439,
	#mc_window_shade_stacks_in_2303_439,
	#mc_wrapper_stacks_in_2303_439 {
		display: none;
	}
}




.spacerStack {
	height: 24.00px;
}

#spacerStackstacks_in_2303_447 {
	height: 24.00px;
}




























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







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_2303_450,
#mc_button_accept_all_stacks_in_2303_450,
#mc_button_disallow_all_stacks_in_2303_450,
.mc_button_stacks_in_2303_450 {
	-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_2303_450:hover,
.mc_button_stacks_in_2303_450:hover,
#mc_button_accept_all_stacks_in_2303_450:hover,
#mc_button_disallow_all_stacks_in_2303_450: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_2303_450:active,
.mc_button_stacks_in_2303_450:active,
#mc_button_accept_all_stacks_in_2303_450:active,
#mc_button_disallow_all_stacks_in_2303_450: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_2303_450:focus,
#mc_button_accept_all_stacks_in_2303_450:focus,
#mc_button_disallow_all_stacks_in_2303_450:focus,
.mc_button_stacks_in_2303_450:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}







#dialog_title_stacks_in_2303_450,
#dialog_desc_stacks_in_2303_450 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_2303_450,
	#mc_window_shade_stacks_in_2303_450,
	#mc_wrapper_stacks_in_2303_450 {
		display: none;
	}
}




.spacerStack {
	height: 24.00px;
}

#spacerStackstacks_in_2303_458 {
	height: 24.00px;
}




























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







/* MiniCookie create, edit, delete buttons, and buttons for our own popup message */
#mc_button_stacks_in_2303_461,
#mc_button_accept_all_stacks_in_2303_461,
#mc_button_disallow_all_stacks_in_2303_461,
.mc_button_stacks_in_2303_461 {
	-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_2303_461:hover,
.mc_button_stacks_in_2303_461:hover,
#mc_button_accept_all_stacks_in_2303_461:hover,
#mc_button_disallow_all_stacks_in_2303_461: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_2303_461:active,
.mc_button_stacks_in_2303_461:active,
#mc_button_accept_all_stacks_in_2303_461:active,
#mc_button_disallow_all_stacks_in_2303_461: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_2303_461:focus,
#mc_button_accept_all_stacks_in_2303_461:focus,
#mc_button_disallow_all_stacks_in_2303_461:focus,
.mc_button_stacks_in_2303_461:focus {
	outline: 2px dotted rgba(255, 255, 255, 1.00);
}







#dialog_title_stacks_in_2303_461,
#dialog_desc_stacks_in_2303_461 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_2303_461,
	#mc_window_shade_stacks_in_2303_461,
	#mc_wrapper_stacks_in_2303_461 {
		display: none;
	}
}



#stacks_in_2303_467{text-align:justify}

#stacks_in_2303_467 {
	margin: 12px 0px 16px 0px;
}
#mc_stack_stacks_in_2303_49 *,
#mc_stack_stacks_in_2303_49 *::before,
#mc_stack_stacks_in_2303_49 *::after {
	box-sizing: border-box;
}







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

#mc_button_stacks_in_2303_49:hover,
.mc_button_stacks_in_2303_49:hover,
#mc_button_accept_all_stacks_in_2303_49:hover,
#mc_button_disallow_all_stacks_in_2303_49:hover {
	color: rgba(14, 36, 125, 1.00);
	background-color: rgba(41, 145, 204, 0.40);
	border: 1px hidden rgba(41, 145, 204, 0.40);
}


#mc_button_stacks_in_2303_49:active,
.mc_button_stacks_in_2303_49:active,
#mc_button_accept_all_stacks_in_2303_49:active,
#mc_button_disallow_all_stacks_in_2303_49:active {
	color: rgba(14, 36, 125, 1.00);
	background-color: rgba(41, 145, 204, 0.40);
	border: 1px hidden rgba(41, 145, 204, 0.40);
	opacity: 0.50;
}

#mc_button_stacks_in_2303_49:focus,
#mc_button_accept_all_stacks_in_2303_49:focus,
#mc_button_disallow_all_stacks_in_2303_49:focus,
.mc_button_stacks_in_2303_49:focus {
	outline: 2px dotted rgba(14, 36, 125, 1.00);
}







#dialog_title_stacks_in_2303_49,
#dialog_desc_stacks_in_2303_49 {
	display: none;
}


@media print {
	#mc_stack_stacks_in_2303_49,
	#mc_window_shade_stacks_in_2303_49,
	#mc_wrapper_stacks_in_2303_49 {
		display: none;
	}
}



/* @group Page */

/* Stop the background page scrolling when the modal is open */
body.sociableOpen {
	overflow: hidden !important;
}

/* @end */

/* @group Share Button */

#socialPopupTriggerButtonstacks_in_2303_16 *,
#socialPopupTriggerButtonstacks_in_2303_16 *::after,
#socialPopupTriggerButtonstacks_in_2303_16 *::before {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}


#socialPopupTriggerButtonstacks_in_2303_16 {
	position: fixed;
	top: 0.00%;
	right: 0.00%;
	cursor: pointer;
	z-index: 1000000000;
}





#socialPopupTriggerButtonstacks_in_2303_16 {
	display: none;
}


#socialPopupTriggerButtonstacks_in_2303_16 a {
	background: none;
	border: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	outline: none;
}

#socialPopupTriggerButtonstacks_in_2303_16 a:focus {
	outline: none;
	border: none;
}

#socialPopupTriggerButtonstacks_in_2303_16 #socialPopupTriggerButtonBorderstacks_in_2303_16 {
	border: 0px solid #CDCDCD;
	background: #892214;
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	height: 40px;
	overflow: hidden;
	z-index: 5;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

#socialPopupTriggerButtonstacks_in_2303_16:hover #socialPopupTriggerButtonBorderstacks_in_2303_16 {
	border: 0px solid #999999;
	background: #892214;
}


#socialPopupTriggerButtonstacks_in_2303_16:hover #socialPopupTriggerButtonBorderstacks_in_2303_16 {
	padding-right: 15px;
}




#socialPopupTriggerButtonstacks_in_2303_16 #socialPopupTriggerButtonIconstacks_in_2303_16 [class^="fa fa-"] {
	color: #FFFFFF;
	font-size: 16px;
	line-height: 40px;
	width: 40px;
	text-align: center;
	display: block;
	float: left;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}

#socialPopupTriggerButtonstacks_in_2303_16:hover #socialPopupTriggerButtonBorderstacks_in_2303_16 [class^="fa fa-"] {
	color: #FFFFFF;
}

#socialPopupTriggerButtonstacks_in_2303_16 #socialPopupTriggerButtonTextstacks_in_2303_16 {
	color: #FFFFFF;
	font: 16px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	float: right;
	max-width: 0px;
	overflow: hidden;
	line-height: 40px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}




#socialPopupTriggerButtonstacks_in_2303_16:hover #socialPopupTriggerButtonTextstacks_in_2303_16 {
	max-width: 300px;
	color: #FFFFFF;
}


/* @end */

/* @group Content Block (top of modal) */

#sociableContentBlock {
	max-width: 1200px;
	margin: 0 auto;
	text-align: center;
}

#adBlockMessage {
	display: none;
}

#adBlockMessage.adBlockTrue {
	display: block;
	color: #ffffff;
	text-align: center;
	font-size: 16px;
}

/* @end */

/* @group Modal Window */

/* General styles for the modal */

/* 
Styles for the html/body for special modal where we want 3d effects
Note that we need a container wrapping all content on the page for the 
perspective effects (not including the modals and the overlay).
*/

.socialPopupModalPerspective,
.socialPopupModalPerspective body {
	height: 100%;
	overflow: hidden;
}

.socialPopupModalPerspective body  {
	background: #222;
	-webkit-perspective: 600px;
	-moz-perspective: 600px;
	perspective: 600px;
}

.socialPopupModal-1 {
	position: fixed;
	top: 0%;
	left: 0%;
	width: 100%;
	overflow: auto;
	height: 100%;
	z-index: 10000000001;
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

.socialPopupModalShow {
	visibility: visible;
}

.socialPopupModalOverlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 1000000000;
	opacity: 0;
	background: #333333;
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
}

.socialPopupModalShow ~ .socialPopupModalOverlay {
	opacity: 0.90;
	visibility: visible;
}

/* Content styles */
#socialPopupModalContentstacks_in_2303_16 {
	position: relative;
	border-radius: 3px;
	margin: 0 auto;
}

/* Individual modal styles with animations/transitions */

/*  */

/* @group Effect 1 */

/* Effect 1: Fade in and scale up */
.socialPopupModalEffect-1 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	opacity: 0;
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
}

.socialPopupModalShow.socialPopupModalEffect-1 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* @end */

/* @group Effect 2 */

/* Effect 2: Slide from the right */
.socialPopupModalEffect-2 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform: translateX(20%);
	-moz-transform: translateX(20%);
	-ms-transform: translateX(20%);
	transform: translateX(20%);
	opacity: 0;
	-webkit-transition: all 1000ms cubic-bezier(0.25, 0.5, 0.5, 0.9);
	-moz-transition: all 1000ms cubic-bezier(0.25, 0.5, 0.5, 0.9);
	transition: all 1000ms cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.socialPopupModalShow.socialPopupModalEffect-2 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
}

/* @end */

/* @group Effect 3 */

/* Effect 3: Slide from the bottom */
.socialPopupModalEffect-3 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform: translateY(20%);
	-moz-transform: translateY(20%);
	-ms-transform: translateY(20%);
	transform: translateY(20%);
	opacity: 0;
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
}

.socialPopupModalShow.socialPopupModalEffect-3 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

/* @end */

/* @group Effect 4 */

/* Effect 4: Newspaper */
.socialPopupModalEffect-4 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform: scale(0) rotate(720deg);
	-moz-transform: scale(0) rotate(720deg);
	-ms-transform: scale(0) rotate(720deg);
	transform: scale(0) rotate(720deg);
	opacity: 0;
}

.socialPopupModalShow.socialPopupModalEffect-4 ~ .socialPopupModalOverlay,
.socialPopupModalEffect-4 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
}

.socialPopupModalShow.socialPopupModalEffect-4 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform: scale(1) rotate(0deg);
	-moz-transform: scale(1) rotate(0deg);
	-ms-transform: scale(1) rotate(0deg);
	transform: scale(1) rotate(0deg);
	opacity: 1;
}

/* @end */

/* @group Effect 5 */

/* Effect 5: fall */
.socialPopupModalEffect-5.socialPopupModal-1{
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.socialPopupModalEffect-5 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(600px) rotateX(20deg); 
	-moz-transform: translateZ(600px) rotateX(20deg); 
	-ms-transform: translateZ(600px) rotateX(20deg); 
	transform: translateZ(600px) rotateX(20deg); 
	opacity: 0;
}

.socialPopupModalShow.socialPopupModalEffect-5 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transition: all 1000ms ease-in;
	-moz-transition: all 1000ms ease-in;
	transition: all 1000ms ease-in;
	-webkit-transform: translateZ(0px) rotateX(0deg);
	-moz-transform: translateZ(0px) rotateX(0deg);
	-ms-transform: translateZ(0px) rotateX(0deg);
	transform: translateZ(0px) rotateX(0deg); 
	opacity: 1;
}

/* @end */

/* @group Effect 6 */

/* Effect 6: side fall */
.socialPopupModalEffect-6.socialPopupModal-1{
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.socialPopupModalEffect-6 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translate(30%) translateZ(600px) rotate(10deg); 
	-moz-transform: translate(30%) translateZ(600px) rotate(10deg);
	-ms-transform: translate(30%) translateZ(600px) rotate(10deg);
	transform: translate(30%) translateZ(600px) rotate(10deg); 
	opacity: 0;
}

.socialPopupModalShow.socialPopupModalEffect-6 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transition: all 1000ms ease-in;
	-moz-transition: all 1000ms ease-in;
	transition: all 1000ms ease-in;
	-webkit-transform: translate(0%) translateZ(0) rotate(0deg);
	-moz-transform: translate(0%) translateZ(0) rotate(0deg);
	-ms-transform: translate(0%) translateZ(0) rotate(0deg);
	transform: translate(0%) translateZ(0) rotate(0deg);
	opacity: 1;
}

/* @end */

/* @group Effect 7 */

/* Effect 7:  slide and stick to top */
.socialPopupModalEffect-7{
	top: 0;
	-webkit-transform: translateX(-0%);
	-moz-transform: translateX(-0%);
	-ms-transform: translateX(-0%);
	transform: translateX(-0%);
}

.socialPopupModalEffect-7 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform: translateY(-200%);
	-moz-transform: translateY(-200%);
	-ms-transform: translateY(-200%);
	transform: translateY(-200%);
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
	opacity: 0;
}

.socialPopupModalShow.socialPopupModalEffect-7 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%);
	border-radius: 0 0 3px 3px;
	opacity: 1;
}

/* @end */

/* @group Effect 8 */

/* Effect 8: 3D flip horizontal */
.socialPopupModalEffect-8.socialPopupModal-1{
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.socialPopupModalEffect-8 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateY(-70deg);
	-moz-transform: rotateY(-70deg);
	-ms-transform: rotateY(-70deg);
	transform: rotateY(-70deg);
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
	opacity: 0;
}

.socialPopupModalShow.socialPopupModalEffect-8 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;
}

/* @end */

/* @group Effect 9 */

/* Effect 9: 3D flip vertical */
.socialPopupModalEffect-9.socialPopupModal-1{
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.socialPopupModalEffect-9 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateX(-70deg);
	-moz-transform: rotateX(-70deg);
	-ms-transform: rotateX(-70deg);
	transform: rotateX(-70deg);
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
	opacity: 0;
}

.socialPopupModalShow.socialPopupModalEffect-9 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	transform: rotateX(0deg);
	opacity: 1;
}

/* @end */

/* @group Effect 10 */

/* Effect 10: 3D sign */
.socialPopupModalEffect-10.socialPopupModal-1{
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.socialPopupModalEffect-10 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: rotateX(-60deg);
	-moz-transform: rotateX(-60deg);
	-ms-transform: rotateX(-60deg);
	transform: rotateX(-60deg);
	-webkit-transform-origin: 50% 0;
	-moz-transform-origin: 50% 0;
	transform-origin: 50% 0;
	opacity: 0;
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
}

.socialPopupModalShow.socialPopupModalEffect-10 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	transform: rotateX(0deg);
	opacity: 1;
}

/* @end */

/* @group Effect 11 */

/* Effect 11: Super scaled */
.socialPopupModalEffect-11 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
	opacity: 0;
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
}

.socialPopupModalShow.socialPopupModalEffect-11 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* @end */

/* @group Effect 12 */

/* Effect 12:  Just me */
.socialPopupModalEffect-12 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0;
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
}

.socialPopupModalShow.socialPopupModalEffect-12 ~ .socialPopupModalOverlay {
	background: #000000;
} 

.socialPopupModalEffect-12 #socialPopupModalContentstacks_in_2303_16 h3,
.socialPopupModalEffect-12 #socialPopupModalContentstacks_in_2303_16 {
	background: transparent;
}

.socialPopupModalShow.socialPopupModalEffect-12 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* @end */

/* @group Effect 13 */

/* Effect 13: 3D slit */
.socialPopupModalEffect-13.socialPopupModal-1{
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.socialPopupModalEffect-13 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(-3000px) rotateY(90deg);
	-moz-transform: translateZ(-3000px) rotateY(90deg);
	-ms-transform: translateZ(-3000px) rotateY(90deg);
	transform: translateZ(-3000px) rotateY(90deg);
	opacity: 0;
}

.socialPopupModalShow.socialPopupModalEffect-13 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-animation: slit .7s forwards ease-out;
	-moz-animation: slit .7s forwards ease-out;
	animation: slit .7s forwards ease-out;
}

@-webkit-keyframes slit {
	50% { -webkit-transform: translateZ(-250px) rotateY(89deg); opacity: .5; -webkit-animation-timing-function: ease-out;}
	100% { -webkit-transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

@-moz-keyframes slit {
	50% { -moz-transform: translateZ(-250px) rotateY(89deg); opacity: .5; -moz-animation-timing-function: ease-out;}
	100% { -moz-transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

@keyframes slit {
	50% { transform: translateZ(-250px) rotateY(89deg); opacity: 1; animation-timing-function: ease-in;}
	100% { transform: translateZ(0) rotateY(0deg); opacity: 1; }
}

/* @end */

/* @group Effect 14 */

/* Effect 14:  3D Rotate from bottom */
.socialPopupModalEffect-14.socialPopupModal-1{
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.socialPopupModalEffect-14 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateY(100%) rotateX(90deg);
	-moz-transform: translateY(100%) rotateX(90deg);
	-ms-transform: translateY(100%) rotateX(90deg);
	transform: translateY(100%) rotateX(90deg);
	-webkit-transform-origin: 0 100%;
	-moz-transform-origin: 0 100%;
	transform-origin: 0 100%;
	opacity: 0;
	-webkit-transition: all 1000ms ease-out;
	-moz-transition: all 1000ms ease-out;
	transition: all 1000ms ease-out;
}

.socialPopupModalShow.socialPopupModalEffect-14 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform: translateY(0%) rotateX(0deg);
	-moz-transform: translateY(0%) rotateX(0deg);
	-ms-transform: translateY(0%) rotateX(0deg);
	transform: translateY(0%) rotateX(0deg);
	opacity: 1;
}

/* @end */

/* @group Effect 15 */

/* Effect 15:  3D Rotate in from left */
.socialPopupModalEffect-15.socialPopupModal-1{
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.socialPopupModalEffect-15 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
	-webkit-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	-moz-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	-ms-transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	transform: translateZ(100px) translateX(-30%) rotateY(90deg);
	-webkit-transform-origin: 0 100%;
	-moz-transform-origin: 0 100%;
	transform-origin: 0 100%;
	opacity: 0;
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
}

.socialPopupModalShow.socialPopupModalEffect-15 #socialPopupModalContentstacks_in_2303_16 {
	-webkit-transform: translateZ(0px) translateX(0%) rotateY(0deg);
	-moz-transform: translateZ(0px) translateX(0%) rotateY(0deg);
	-ms-transform: translateZ(0px) translateX(0%) rotateY(0deg);
	transform: translateZ(0px) translateX(0%) rotateY(0deg);
	opacity: 1;
}

/* @end */

/*  */

/* @end */

/* @group Close button */

#sociableCloseButtonstacks_in_2303_16 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 0;
	margin: 0;
	color: #FFFFFF;
	font-size: 40px;
	line-height: 80px;
	width: 80px;
	text-align: center;
	text-decoration: none;
	background: none;
	border: none;
	outline: none;
	transition: all ease-in-out 300ms;
}

#sociableCloseButtonstacks_in_2303_16 [class^="fa fa-"] {
	color: #FFFFFF;
	transition: all ease-in-out 300ms;
}

#sociableCloseButtonstacks_in_2303_16:hover,
#sociableCloseButtonstacks_in_2303_16:hover [class^="fa fa-"] {
	color: #CDCDCD;
}

/* @end */

/* @group Radioactive Scroll Indicator */

@-webkit-keyframes radioactiveGlow {
	from { -webkit-box-shadow: 0 0 50px #FFFFFF; }
 	50% { -webkit-box-shadow: 0 0 0px #000000; }
 	to { -webkit-box-shadow: 0 0 50px #FFFFFF; }
}

@-moz-keyframes radioactiveGlow {
	from { -moz-box-shadow: 0 0 50px #FFFFFF; }
 	50% { -moz-box-shadow: 0 0 0px #000000; }
 	to { -moz-box-shadow: 0 0 50px #FFFFFF; }
}

@-ms-keyframes radioactiveGlow {
	from { -ms-box-shadow: 0 0 50px #FFFFFF; }
 	50% { -ms-box-shadow: 0 0 0px #000000; }
 	to { -ms-box-shadow: 0 0 50px #FFFFFF; }
}

@keyframes radioactiveGlow {
	from { box-shadow: 0 0 50px #FFFFFF; }
 	50% { box-shadow: 0 0 0px #000000; }
 	to { box-shadow: 0 0 50px #FFFFFF; }
}

#radioactiveScrollIndicatorstacks_in_2303_16 {
	-webkit-animation-name: radioactiveGlow;
 	-webkit-animation-duration: 2s;
 	-webkit-animation-iteration-count: infinite;
 	-moz-animation-name: radioactiveGlow;
 	-moz-animation-duration: 2s;
 	-moz-animation-iteration-count: infinite;
 	-ms-animation-name: radioactiveGlow;
 	-ms-animation-duration: 2s;
 	-ms-animation-iteration-count: infinite;
 	animation-name: radioactiveGlow;
 	animation-duration: 2s;
 	animation-iteration-count: infinite;
 	position: fixed;
 	bottom: -50px;
 	left: 0px;
 	width: 100%;
 	height: 50px;
 	background: #ffffff;
 	display: none;
}

.socialPopupScrollable #radioactiveScrollIndicatorstacks_in_2303_16 {
	display: block;
}

.modalScrolled #radioactiveScrollIndicatorstacks_in_2303_16 {
	display: none;
}

/* @end */

/* @group Social Icon List */

#sociableIconWrapper *,
#sociableIconWrapper *::after,
#sociableIconWrapper *::before {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}


#sociableIconWrapper {
	max-width: 1200px;
	margin: 60px auto;
	z-index: 1000000000;
	position: relative;
}

.socialIconArray {
	display: block;
	text-align: center;
}

.socialIconArray div {
	display: inline-block;
	width: auto;
	height: auto;
	line-height: 50px;
	text-align: center;
	position: relative;
	margin-bottom: 20px;
	text-align: center;
	line-height: 1.50em;
	font-size: 14px;
	z-index: 5;
	transition: all 300ms ease-in-out;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	color: #FFFFFF;
}

.socialIconArray div:hover {
	color: #FFFFFF;
}

.socialIconArray div a {
	position: absolute;
	top: 0;
	left: 0;
	width: 50%;
	height: 50%;
	display: block;
	z-index: 10;
}

.socialIconArray div [class^="fa fa-"] {
	font-size: 20px;
	height: 50px;
	width: 50px;
	line-height: 50px;
	border-radius: 50px;
	position: relative;
	z-index: 5;
	border: 1px solid #FFFFFF;
	transition: all 300ms ease-in-out;
	overflow: hidden;
	display: block;
	margin: 20px;
}

.socialIconArray div:hover [class^="fa fa-"] {
	-webkit-box-shadow: 0px 0px 0px #FFFFFF;
	-moz-box-shadow: 0px 0px 0px #FFFFFF;
	box-shadow: 0px 0px 0px #FFFFFF;
	border: 1px solid #FFFFFF;
}

/* Sub headings */

.socialIconArray .subheading {
	margin-top: 20px;
	padding-top: 20px;
	font-size: 14px;
	display: block;
	float: none;
	color: #FFFFFF;
}

.socialIconArray .subheading a,
.socialIconArray .subheading a:visited {
	color: #FFFFFF;
	text-decoration: underline;
	position: relative;
	top: auto;
	left: auto;
	width: auto;
	height: auto;
	display: inline;
}

.socialIconArray .subheading a:hover,
.socialIconArray .subheading a:active {
	color: #FFFFFF;
	text-decoration: underline;
}


/* Utility icons */

#sociableUtilityIcons *,
#sociableUtilityIcons *::after,
#sociableUtilityIcons *::before {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}

#sociableUtilityIcons {
	border-top: 1px solid #CDCDCD;
	margin-top: 20px;
	padding-top: 30px;
	display: none;
}

/* @end */

/* @group Print Styling */

@media print {
	#socialPopupstacks_in_2303_16,
	#socialPopupModalOverlaystacks_in_2303_16,
	#socialPopupTriggerButtonstacks_in_2303_16 {
		display: none !important;
	}
}

/* @end */

/* @group Edit Mode Styling */

/*  */

/* @end */#stacks_in_2303_14{text-align:center}@media only screen and (max-width:40em){#stacks_in_2303_14{text-align:center}#stacks_in_2303_14 .button{float:none !important}}#stacks_in_2303_14 .button{background-color:rgba(0, 106, 179, 1.00);color:rgba(255, 255, 255, 1.00)}#stacks_in_2303_14 .button:hover{background-color:rgba(0, 106, 179, 1.00)}#stacks_in_2303_14 .button.ghost{background-color:transparent;border-width:1px;border-color:rgba(0, 106, 179, 1.00);color:rgba(0, 106, 179, 1.00)}#stacks_in_2303_14 .button.ghost:hover{color:rgba(255, 255, 255, 1.00);border-color:rgba(0, 106, 179, 1.00);background-color:rgba(0, 106, 179, 1.00)}

#stacks_in_2303_14 {
	margin: 20px 0px 0px 0px;
}

#turnerstacks_in_2303_20 {display: none;}

@media screen
  and (min-height: 0px)
  and (max-height: 491px)
  and (orientation: landscape)  {

#turnerstacks_in_2303_20 {
	display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(51, 51, 51, 1.00);
    z-index: 100000;
}

#turner-contentstacks_in_2303_20{
    position: absolute;
    top: 50%;
    text-align: center;
    width: 90%;
    margin-left: 5%;
    transform: translateY(-50%);
}

.turner-animstacks_in_2303_20{
  max-width: 100px;
  max-height: 100px;
  margin-bottom: 18px;
}

.turner-headerstacks_in_2303_20{
  color: white;
  margin-top: 12px;
}
.turner-subheaderstacks_in_2303_20{
  color: white;
  margin-top: 12px;
}

.turner-subsubheaderstacks_in_2303_20{
  color: white;
  margin-top: 12px;
}

}




#stacks_in_2303_21 {
	font-size: 90%;
}

#stacks_in_2303_22 {
	font-size: 80%;
}
/*
 * Scotty
 * Author: Jeremy Hawes
 * Version: 1.1.0
 * URL: http://onelittledesigner.com/rapidweaver-stack/scotty
 * Support: http://forum.onelittledesigner.com
 * Description: Teleports you back to the top of the page
 */

#scrollUp_stacks_in_2303_29,
a#scrollUp_stacks_in_2303_29 {
	
		bottom: 0px;
		
			right: 20px;
		
		
		
	
	
	padding: 4px 12px;
	color: #FFFFFF !important;
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	-ms-border-radius: 0px;
	-o-border-radius: 0px;
	text-decoration: none;
	font-size: 18px;
	text-align: center;
	display: inline-block;
}
#scrollUp_stacks_in_2303_29:hover,
a#scrollUp_stacks_in_2303_29:hover {
	color: #666666 !important;
}
#scrollUp_stacks_in_2303_29.scrollUpTheme1,
#scrollUp_stacks_in_2303_29.scrollUpTheme3 {
	border-color: #FFFFFF;
	border-width: 1px;
	border-style: solid;
}
#scrollUp_stacks_in_2303_29.scrollUpTheme1.transparencyOff,
#scrollUp_stacks_in_2303_29.scrollUpTheme3.transparencyOff {
	background-color: #E0E0E0;
}
#scrollUp_stacks_in_2303_29.scrollUpTheme1.transparencyOn,
#scrollUp_stacks_in_2303_29.scrollUpTheme3.transparencyOn {
	background-color: none;
	border-color: none;
}
#scrollUp_stacks_in_2303_29.scrollUpTheme1.gradientOn,
#scrollUp_stacks_in_2303_29.scrollUpTheme3.gradientOn {
	background-color: #EBEBEB;
	background-image: -moz-linear-gradient(top, #EBEBEB, #DEDEDE);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#EBEBEB), to(#DEDEDE));
	background-image: -webkit-linear-gradient(top, #EBEBEB, #DEDEDE);
	background-image: -o-linear-gradient(top, #EBEBEB, #DEDEDE);
	background-image: linear-gradient(to bottom, #EBEBEB, #DEDEDE);
	background-repeat: repeat-x;
}
#scrollUp_stacks_in_2303_29.textShadowOn {
	text-shadow: 0 0px 0 #FFFFFF;
}
#scrollUp_stacks_in_2303_29.scrollUpTheme1.boxShadowOn,
#scrollUp_stacks_in_2303_29.scrollUpTheme3.boxShadowOn {
	-webkit-box-shadow: 0 0 2px 1px #CCCCCC;
	-moz-box-shadow: 0 0 2px 1px #CCCCCC;
	-ms-box-shadow: 0 0 2px 1px #CCCCCC;
	-o-box-shadow: 0 0 2px 1px #CCCCCC;
	box-shadow: 0 0 2px 1px #CCCCCC;
}
/* ====================
 * THEME 2 - IMAGE
 * ==================== */

/* ====================
 * THEME 3 - TAB
 * ==================== */


.scroller-header {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
}

.scroller-container {
  width: 100%;
  height: 20px;
  background: rgba(224, 224, 224, 1.00);
}

.scroller-bar {
  height: 20px;
  background: rgba(137, 34, 20, 1.00);
  width: 0%;
  
  
  
}








