


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


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}
.rwmenu{list-style:none}.rwmenu.dropdown,.rwmenu.drilldown,.rwmenu.accordion-menu{display:none}.rwmenu-wrapper>.rwmenu{display:-webkit-box;display:-ms-flexbox;display:flex}

/* 
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);
}/* Corner Stack v.1.0.1 */


/* General styles for the modal */

.corner-modal {
	position: fixed;
	z-index: 9999;
  transform: translateZ(0px);
	right: 0px;
  bottom: 0px;
	max-width: 320px;
	/*max-height:100%;*/
	visibility: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	margin:20px;
}

.corner-modal.corner-show{
	visibility: visible;
}

.corner-button {
	visibility: hidden;
	opacity: 0;
	z-index: 9998;
	transform: translateZ(0px);
	position: fixed;
	right:0px;
	bottom:0px;
	padding:10px 20px;
  margin: 20px;
	background: rgba(143,27,15,0.8);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
  cursor:pointer;
}

.corner-button.corner-tl,
.corner-button.corner-tr {
	margin-top: -60px;
}

.corner-button.corner-bl,
.corner-button.corner-br {
	margin-bottom: -60px;
}

.corner-button.corner-show {
	visibility: visible;
	opacity: 1;
}

.corner-button.corner-tl.corner-show,
.corner-button.corner-tr.corner-show {
	margin-top: 20px;
}

.corner-button.corner-bl.corner-show,
.corner-button.corner-br.corner-show {
	margin-bottom: 20px;
}

.corner-close {
	position:absolute;
	top:10px;
	right:10px;
	cursor:pointer;
}

.corner-overlay {
	position: fixed;
	width: 100%;
	height: 100%;
	visibility: hidden;
	top: 0;
	left: 0;
	z-index: 1000;
	opacity: 0;
	background: rgba(143,27,15,0.8);
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-overlay.corner-show {
	opacity: 1;
	visibility: visible;
}

/* Content styles */
.corner-content {
	position: relative;
	margin: 0 auto;
  padding:30px 20px 20px 20px;
}

/*.corner-content > div {
	padding: 15px 40px 30px;
	margin: 0;
	font-weight: 300;
	font-size: 1.15em;
}*/

.corner-tl
{
	left: 0px;
  top: 0px;
  bottom: auto !important;
  right:auto !important;
}

.corner-tr
{
	left: auto !important;
  top: 0px;
  bottom: auto !important;
  right:0px;
}

.corner-br
{
	left: auto !important;
  top: auto !important;
  bottom: 0px;
  right:0px;
}

.corner-bl
{
	left: 0px;
  top: auto !important;
  bottom: 0px;
  right:auto !important;
}


/* Individual modal styles with animations/transitions */

/* Effect 1: Fade in and scale up */
.corner-effect-1 .corner-content {
	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	transform: scale(0.7);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-1 .corner-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* Effect 2: Slide from the right */
.corner-effect-2 .corner-content {
	-webkit-transform: translateX(20%);
	-moz-transform: translateX(20%);
	-ms-transform: translateX(20%);
	transform: translateX(20%);
	opacity: 0;
	-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);
	transition: all 0.3s cubic-bezier(0.25, 0.5, 0.5, 0.9);
}

.corner-show.corner-effect-2 .corner-content {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
}

/* Effect 3: Slide from the bottom */
.corner-effect-3 .corner-content {
	-webkit-transform: translateY(20%);
	-moz-transform: translateY(20%);
	-ms-transform: translateY(20%);
	transform: translateY(20%);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-3 .corner-content {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

/* Effect 4: Newspaper */
.corner-effect-4 .corner-content {
	-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;
}

.corner-show.corner-effect-4 ~ .corner-overlay,
.corner-effect-4 .corner-content {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.corner-show.corner-effect-4 .corner-content {
	-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;
}

/* Effect 5: fall */
.corner-effect-5.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-5 .corner-content {
	-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;
}

.corner-show.corner-effect-5 .corner-content {
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	transition: all 0.3s 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;
}

/* Effect 6: side fall */
.corner-effect-6.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-6 .corner-content {
	-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;
}

.corner-show.corner-effect-6 .corner-content {
	-webkit-transition: all 0.3s ease-in;
	-moz-transition: all 0.3s ease-in;
	transition: all 0.3s 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;
}

/* Effect 7:  slide and stick to top */
.corner-effect-7{
	top: 0;
	-webkit-transform: translateX(-50%);
	-moz-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
}

.corner-effect-7 .corner-content {
	-webkit-transform: translateY(-200%);
	-moz-transform: translateY(-200%);
	-ms-transform: translateY(-200%);
	transform: translateY(-200%);
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	transition: all .3s;
	opacity: 0;
}

.corner-show.corner-effect-7 .corner-content {
	-webkit-transform: translateY(0%);
	-moz-transform: translateY(0%);
	-ms-transform: translateY(0%);
	transform: translateY(0%);
	border-radius: 0 0 3px 3px;
	opacity: 1;
}

/* Effect 8: 3D flip horizontal */
.corner-effect-8.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-8 .corner-content {
	-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 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}

.corner-show.corner-effect-8 .corner-content {
	-webkit-transform: rotateY(0deg);
	-moz-transform: rotateY(0deg);
	-ms-transform: rotateY(0deg);
	transform: rotateY(0deg);
	opacity: 1;
}

/* Effect 9: 3D flip vertical */
.corner-effect-9.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-9 .corner-content {
	-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 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
	opacity: 0;
}

.corner-show.corner-effect-9 .corner-content {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	transform: rotateX(0deg);
	opacity: 1;
}

/* Effect 10: 3D sign */
.corner-effect-10.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-10 .corner-content {
	-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 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-10 .corner-content {
	-webkit-transform: rotateX(0deg);
	-moz-transform: rotateX(0deg);
	-ms-transform: rotateX(0deg);
	transform: rotateX(0deg);
	opacity: 1;
}

/* Effect 11: Super scaled */
.corner-effect-11 .corner-content {
	-webkit-transform: scale(2);
	-moz-transform: scale(2);
	-ms-transform: scale(2);
	transform: scale(2);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-11 .corner-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* Effect 12:  Just me */
.corner-effect-12 .corner-content {
	-webkit-transform: scale(0.8);
	-moz-transform: scale(0.8);
	-ms-transform: scale(0.8);
	transform: scale(0.8);
	opacity: 0;
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-12 ~ .corner-overlay {
	background: #e74c3c;
} 

.corner-effect-12 .corner-content h3,
.corner-effect-12 .corner-content {
	background: transparent;
}

.corner-show.corner-effect-12 .corner-content {
	-webkit-transform: scale(1);
	-moz-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	opacity: 1;
}

/* Effect 13: 3D slit */
.corner-effect-13.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-13 .corner-content {
	-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;
}

.corner-show.corner-effect-13 .corner-content {
	-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; }
}

/* Effect 14:  3D Rotate from bottom */
.corner-effect-14.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-14 .corner-content {
	-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 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

.corner-show.corner-effect-14 .corner-content {
	-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;
}

/* Effect 15:  3D Rotate in from left */
.corner-effect-15.corner-modal {
	-webkit-perspective: 1300px;
	-moz-perspective: 1300px;
	perspective: 1300px;
}

.corner-effect-15 .corner-content {
	-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 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-15 .corner-content {
	-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;
}

/* Effect 16:  Blur */
.corner-show.corner-effect-16 ~ .corner-overlay {
	background: rgba(180,46,32,0.5);
}

.corner-show.corner-effect-16 ~ .container {
	-webkit-filter: blur(3px);
	-moz-filter: blur(3px);
	filter: blur(3px);
}

.corner-effect-16 .corner-content {
	-webkit-transform: translateY(-5%);
	-moz-transform: translateY(-5%);
	-ms-transform: translateY(-5%);
	transform: translateY(-5%);
	opacity: 0;
}

.corner-show.corner-effect-16 ~ .container,
.corner-effect-16 .corner-content {
	-webkit-transition: all 0.3s;
	-moz-transition: all 0.3s;
	transition: all 0.3s;
}

.corner-show.corner-effect-16 .corner-content {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
}

/* Effect 17:  Slide in from bottom with perspective on container */
.corner-show.corner-effect-17 ~ .container {
	height: 100%;
	overflow: hidden;
	-webkit-transition: -webkit-transform 0.3s;
	-moz-transition: -moz-transform 0.3s;
	transition: transform 0.3s;
}	

.corner-show.corner-effect-17 ~ .container,
.corner-show.corner-effect-17 ~ .corner-overlay  {
	-webkit-transform: rotateX(-2deg);
	-moz-transform: rotateX(-2deg);
	-ms-transform: rotateX(-2deg);
	transform: rotateX(-2deg);
	-webkit-transform-origin: 50% 0%;
	-moz-transform-origin: 50% 0%;
	transform-origin: 50% 0%;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.corner-effect-17 .corner-content {
	opacity: 0;
	-webkit-transform: translateY(200%);
	-moz-transform: translateY(200%);
	-ms-transform: translateY(200%);
	transform: translateY(200%);
}

.corner-show.corner-effect-17 .corner-content {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-webkit-transition: all 0.3s 0.2s;
	-moz-transition: all 0.3s 0.2s;
	transition: all 0.3s 0.2s;
}

/* Effect 18:  Slide from right with perspective on container */
.corner-show.corner-effect-18 ~ .container {
	height: 100%;
	overflow: hidden;
}

.corner-show.corner-effect-18 ~ .corner-overlay {
	background: rgba(143,27,15,0.8);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.corner-show.corner-effect-18 ~ .container,
.corner-show.corner-effect-18 ~ .corner-overlay {
	-webkit-transform-style: preserve-3d;
	-webkit-transform-origin: 0% 50%;
	-webkit-animation: rotateRightSideFirst 0.5s forwards ease-in;
	-moz-transform-style: preserve-3d;
	-moz-transform-origin: 0% 50%;
	-moz-animation: rotateRightSideFirst 0.5s forwards ease-in;
	transform-style: preserve-3d;
	transform-origin: 0% 50%;
	animation: rotateRightSideFirst 0.5s forwards ease-in;
}

@-webkit-keyframes rotateRightSideFirst {
	50% { -webkit-transform: translateZ(-50px) rotateY(5deg); -webkit-animation-timing-function: ease-out; }
	100% { -webkit-transform: translateZ(-200px); }
}

@-moz-keyframes rotateRightSideFirst {
	50% { -moz-transform: translateZ(-50px) rotateY(5deg); -moz-animation-timing-function: ease-out; }
	100% { -moz-transform: translateZ(-200px); }
}

@keyframes rotateRightSideFirst {
	50% { transform: translateZ(-50px) rotateY(5deg); animation-timing-function: ease-out; }
	100% { transform: translateZ(-200px); }
}

.corner-effect-18 .corner-content {
	-webkit-transform: translateX(200%);
	-moz-transform: translateX(200%);
	-ms-transform: translateX(200%);
	transform: translateX(200%);
	opacity: 0;
}

.corner-show.corner-effect-18 .corner-content {
	-webkit-transform: translateX(0);
	-moz-transform: translateX(0);
	-ms-transform: translateX(0);
	transform: translateX(0);
	opacity: 1;
	-webkit-transition: all 0.5s 0.1s;
	-moz-transition: all 0.5s 0.1s;
	transition: all 0.5s 0.1s;
}

/* Effect 19:  Slip in from the top with perspective on container */
.corner-show.corner-effect-19 ~ .container {
	height: 100%;
	overflow: hidden;
}

.corner-show.corner-effect-19 ~ .corner-overlay {
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

.corner-show.corner-effect-19 ~ .container,
.corner-show.corner-effect-19 ~ .corner-overlay {
	-webkit-transform-style: preserve-3d;
	-webkit-transform-origin: 50% 100%;
	-webkit-animation: OpenTop 0.5s forwards ease-in;
	-moz-transform-style: preserve-3d;
	-moz-transform-origin: 50% 100%;
	-moz-animation: OpenTop 0.5s forwards ease-in;
	transform-style: preserve-3d;
	transform-origin: 50% 100%;
	animation: OpenTop 0.5s forwards ease-in;
}

@-webkit-keyframes OpenTop {
	50% { 
		-webkit-transform: rotateX(10deg); 
		-webkit-animation-timing-function: ease-out; 
	}
}

@-moz-keyframes OpenTop {
	50% { 
		-moz-transform: rotateX(10deg); 
		-moz-animation-timing-function: ease-out; 
	}
}

@keyframes OpenTop {
	50% { 
		transform: rotateX(10deg); 
		animation-timing-function: ease-out; 
	}
}

.corner-effect-19 .corner-content {
	-webkit-transform: translateY(-200%);
	-moz-transform: translateY(-200%);
	-ms-transform: translateY(-200%);
	transform: translateY(-200%);
	opacity: 0;
}

.corner-show.corner-effect-19 .corner-content {
	-webkit-transform: translateY(0);
	-moz-transform: translateY(0);
	-ms-transform: translateY(0);
	transform: translateY(0);
	opacity: 1;
	-webkit-transition: all 0.5s 0.1s;
	-moz-transition: all 0.5s 0.1s;
	transition: all 0.5s 0.1s;
}



.biscuitbox {
  display: none;
  width: 100%;
  bottom: 0;
  position: fixed;
  z-index: 9999; }

.biscuitbox.biscuitbox-display-top {
  bottom: auto;
  top: 0; }

.biscuitbox-wrapper {
  display: flex;
  flex-flow: row wrap; }

.biscuitbox-wrapper > * {
  flex: 1 100%; }

.biscuitbox-button {
  text-align: center; }
.com_joeworkman_stacks_glider_stack .glider-wrapper,.com_joeworkman_stacks_glider_stack .glider-button{position:fixed;z-index:99999;border:none}.com_joeworkman_stacks_glider_stack .glider-toggle{padding:1rem;cursor:pointer;font-size:1rem;outline:none;height:auto}.com_joeworkman_stacks_glider_stack .glider-toggle.opened{z-index:999999}.com_joeworkman_stacks_glider_stack .glider-toggle i.fa{display:none;line-height:1.28571429em}.com_joeworkman_stacks_glider_stack .glider-toggle.round.custom-style{border-radius:1000px}.com_joeworkman_stacks_glider_stack .glider-toggle.radius.custom-style{border-radius:3px}.com_joeworkman_stacks_glider_stack .glider-toggle.opened i.fa.close-icon{display:inline-block}.com_joeworkman_stacks_glider_stack .glider-toggle:not(.opened) i.fa.open{display:inline-block}.com_joeworkman_stacks_glider_stack .glider-wrapper{width:0;overflow:auto;-webkit-overflow-scrolling:touch}.com_joeworkman_stacks_glider_stack .glider-wrapper.opened{width:100%;z-index:199999}.com_joeworkman_stacks_glider_stack .glider-wrapper .glider-content.centerContent{position:relative;top:50%;transform:translateY(-50%);}.com_joeworkman_stacks_glider_stack .glider-wrapper > .glider-toggle{position:absolute;top:0;right:0;background:transparent;margin:0;z-index:999999;display:block}@media only screen and (min-width:40.063em){.com_joeworkman_stacks_glider_stack .glider-wrapper > .glider-toggle{display:none}}.com_joeworkman_stacks_glider_stack .glider-wrapper > .glider-toggle i.fa{display:block}.com_joeworkman_stacks_glider_stack .glider-wrapper.size-100 > .glider-toggle{display:block !important}.com_joeworkman_stacks_glider_stack .headless .glider-button{display:none}.com_joeworkman_stacks_glider_stack .headless .glider-wrapper .glider-toggle{display:block}.com_joeworkman_stacks_glider_stack .launcher-bar .glider-button{width:100%}.com_joeworkman_stacks_glider_stack .location-left .glider-wrapper{height:100%;top:0;left:0}.com_joeworkman_stacks_glider_stack .location-left .glider-wrapper.opened.accent{box-shadow:inset -1px 0 15px rgba(255,255,255,0.2),1px 0 2px rgba(0,0,0,0.3)}.com_joeworkman_stacks_glider_stack .location-left .glider-button{left:0}.com_joeworkman_stacks_glider_stack .location-left .glider-button.flush.radius{border-top-left-radius:0;border-bottom-left-radius:0}.com_joeworkman_stacks_glider_stack .location-left .glider-button.opened{left:100%}.com_joeworkman_stacks_glider_stack .location-left.slideout .glider-wrapper{width:100%;margin-left:-100%}.com_joeworkman_stacks_glider_stack .location-left.slideout .glider-wrapper.opened{margin-left:0 !important}.com_joeworkman_stacks_glider_stack .location-right .glider-wrapper{height:100%;top:0;right:0}.com_joeworkman_stacks_glider_stack .location-right .glider-wrapper.opened.accent{box-shadow:inset 1px 0 15px rgba(255,255,255,0.2),-1px 0 2px rgba(0,0,0,0.3)}.com_joeworkman_stacks_glider_stack .location-right .glider-wrapper .glider-toggle{right:auto;left:0}.com_joeworkman_stacks_glider_stack .location-right .glider-button{right:0}.com_joeworkman_stacks_glider_stack .location-right .glider-button.flush.radius{border-top-right-radius:0;border-bottom-right-radius:0}.com_joeworkman_stacks_glider_stack .location-right .glider-button.opened{right:100%}.com_joeworkman_stacks_glider_stack .location-right.slideout .glider-wrapper{width:100%;margin-right:-100%}.com_joeworkman_stacks_glider_stack .location-right.slideout .glider-wrapper.opened{margin-right:0 !important}.com_joeworkman_stacks_glider_stack .location-top .glider-wrapper{top:0;left:0;width:100%;height:0}.com_joeworkman_stacks_glider_stack .location-top .glider-wrapper.opened{height:100%}.com_joeworkman_stacks_glider_stack .location-top .glider-wrapper.opened.accent{box-shadow:inset 0 -1px 15px rgba(255,255,255,0.2),0 1px 2px rgba(0,0,0,0.3)}.com_joeworkman_stacks_glider_stack .location-top .glider-button{top:0}.com_joeworkman_stacks_glider_stack .location-top .glider-button.flush.radius{border-top-right-radius:0;border-top-left-radius:0}.com_joeworkman_stacks_glider_stack .location-top .glider-button.opened{top:100%}.com_joeworkman_stacks_glider_stack .location-bottom .glider-wrapper{bottom:0;left:0;width:100%;height:0}.com_joeworkman_stacks_glider_stack .location-bottom .glider-wrapper.opened{height:100%}.com_joeworkman_stacks_glider_stack .location-bottom .glider-wrapper.opened.accent{box-shadow:inset 0 1px 15px rgba(255,255,255,0.2),0 -1px 2px rgba(0,0,0,0.3)}.com_joeworkman_stacks_glider_stack .location-bottom .glider-button{bottom:0}.com_joeworkman_stacks_glider_stack .location-bottom .glider-button.flush.radius{border-bottom-right-radius:0;border-bottom-left-radius:0}.com_joeworkman_stacks_glider_stack .location-bottom .glider-button.opened{bottom:100%}



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(51, 51, 51, 1.00);--black-color:var(--black);--white:rgba(254, 254, 254, 1.00);--white-color:var(--white);--primary:rgba(0, 128, 179, 1.00);--secondary:rgba(226, 0, 26, 1.00);--success:rgba(240, 240, 239, 1.00);--warning:rgba(226, 0, 26, 1.00);--alert:rgba(240, 65, 36, 1.00);--primary-contrast:rgba(240, 240, 239, 1.00);--secondary-contrast:rgba(240, 240, 239, 1.00);--success-contrast:rgba(51, 51, 51, 1.00);--warning-contrast:rgba(240, 240, 239, 1.00);--alert-contrast:rgba(240, 240, 239, 1.00);/* --primary-light:rgba(210, 255, 255, 1.00);--secondary-light:rgba(255, 210, 236, 1.00);--success-light:rgba(255, 255, 255, 1.00);--warning-light:rgba(255, 210, 236, 1.00);--alert-light:rgba(255, 255, 246, 1.00);*/--primary-dark:rgba(0, 98, 149, 1.00);--secondary-dark:rgba(196, 0, 0, 1.00);--success-dark:rgba(210, 210, 209, 1.00);--warning-dark:rgba(196, 0, 0, 1.00);--alert-dark:rgba(210, 35, 6, 1.00);--header-color:rgba(76, 76, 76, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(76, 76, 76, 1.00);--link-color:rgba(25, 25, 25, 1.00);--link-color-hover:rgba(59, 59, 59, 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:6px}::-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(25, 25, 25, 1.00);--link-color-hover:rgba(59, 59, 59, 1.00);--link-decoration:none;--link-decoration-hover:none}.grid-container{max-width:calc(1200rem/16);}.radius{border-radius:var(--radius)}body{font-size:calc(16rem/16)}h1,.h1{font-size:calc(24rem/16)}h2,.h2{font-size:calc(23rem/16)}h3,.h3{font-size:calc(22rem/16)}h4,.h4{font-size:calc(18rem/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(25rem/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(17rem/16)}h1,.h1{font-size:calc(48rem/16)}h2,.h2{font-size:calc(40rem/16)}h3,.h3{font-size:calc(26rem/16)}h4,.h4{font-size:calc(24rem/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(6rem/16)}body{}
            .myclass{font-family:'Helvetica Neue', Helvetica, Arial, sans-serif }
            .fontsize90{font-size:calc(18rem/16) !important;font-weight:400 !important;}@media only screen and (min-width:40em){            .fontsize90{font-size:calc(24rem/16) !important}}@media only screen and (min-width:64em){            .fontsize90{font-size:calc(18rem/16) !important}}
            .fontsize90{font-size:calc(18rem/16) !important;font-weight:400 !important;}@media only screen and (min-width:40em){            .fontsize90{font-size:calc(24rem/16) !important}}@media only screen and (min-width:64em){            .fontsize90{font-size:calc(18rem/16) !important}}
            .fontsize90{font-size:calc(18rem/16) !important;font-weight:400 !important;}@media only screen and (min-width:40em){            .fontsize90{font-size:calc(24rem/16) !important}}@media only screen and (min-width:64em){            .fontsize90{font-size:calc(18rem/16) !important}}
            .fontsize120{font-size:calc(18rem/16) !important;font-weight:400 !important;}@media only screen and (min-width:40em){            .fontsize120{font-size:calc(20rem/16) !important}}@media only screen and (min-width:64em){            .fontsize120{font-size:calc(20rem/16) !important}}
            .projektbutton{font-size:calc(30rem/16) ;font-weight:400 ;}@media only screen and (min-width:40em){            .projektbutton{font-size:calc(24rem/16) }}@media only screen and (min-width:64em){            .projektbutton{font-size:calc(24rem/16) }}
.start{height:82.00vh ;}@media only screen and (min-width:40em){.start{height:78.00vh }}@media only screen and (min-width:64em){.start{height:73.00vh }}
.start-txt{display:inline-block;white-space:nowrap}
.sticky{position:  sticky;z-index:1;top:0px ;}
.card{margin-top:12.00% ;margin-left:0.00% ;margin-bottom:0.00% ;margin-right:0.00% ;}@media only screen and (min-width:40em){.card{margin-top:12.00% ;margin-left:0.00% ;margin-bottom:12.00% ;margin-right:0.00% }}@media only screen and (min-width:64em){.card{margin-top:10.00% ;margin-left:0.00% ;margin-bottom:10.00% ;margin-right:0.00% }}
.card{padding-top:0.00% ;padding-left:0.00% ;padding-bottom:12.00% ;padding-right:0.00% ;}@media only screen and (min-width:40em){.card{padding-top:16.00% ;padding-left:0.00% ;padding-bottom:16.00% ;padding-right:0.00% }}@media only screen and (min-width:64em){.card{padding-top:3.00% ;padding-left:0.00% ;padding-bottom:3.00% ;padding-right:0.00% }}
.shadowbutton{-webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.30);box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.30);}
.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}
.txtblau{--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}
.txtrot{--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}
.card-divider{--header-color:rgba(51, 51, 51, 1.00);--subheader-color:rgba(138, 138, 138, 1.00);--small-color:rgba(202, 202, 202, 1.00);--text-color:rgba(51, 51, 51, 1.00);--link-color:rgba(51, 51, 51, 1.00);--link-color-hover:rgba(51, 51, 51, 1.00);--link-decoration:none;--link-decoration-hover:none}
.reveal{-webkit-box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.20);box-shadow: 2px 2px 10px 0px rgba(0, 0, 0, 0.20);}
.card{position:relative}.card > *{position:relative}.card:hover:before{content:"";position:absolute;top:0;bottom:0;left:0;right:0;opacity:1.00 ;background-color:rgba(204, 204, 204, 1.00) ;}
.card{background-color:rgba(240, 240, 239, 1.00) ;}
.card-divider{background:none ;}
.menu a{display:inline-block;white-space:nowrap}
.txtadresse{display:inline-block;white-space:nowrap}
.txtfooteradresse{display:inline-block;white-space:nowrap}
.txtfooteradresse2{display:inline-block;white-space:nowrap}
.bgfooter{background-color:rgba(202, 204, 204, 1.00) ;}
.margingsmartfoot{margin-top:0.00% ;margin-left:12.00% ;margin-bottom:0.00% ;margin-right:12.00% ;}@media only screen and (min-width:40em){.margingsmartfoot{margin-top:0.00% ;margin-left:24.00% ;margin-bottom:0.00% ;margin-right:24.00% }}@media only screen and (min-width:64em){.margingsmartfoot{margin-top:0.00% ;margin-left:0.00% ;margin-bottom:0.00% ;margin-right:0.00% }}
.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 }}
.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}}
.fullheight{height:auto ;min-height:fit-content ;max-height:fit-content ;}  
.hgr{background-color:rgba(251, 2, 7, 1.00) ;}
.hgb{background-color:rgba(0, 0, 255, 1.00) ;}
.txtwy{display:inline-block;white-space:nowrap}
.shadow1{text-shadow:1px 1px 1px rgba(204, 204, 204, 1.00);}
.border1{border-color:rgba(224, 224, 224, 1.00) ;border-width:1px ;border-style:solid ;}
.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));}
.formweiss{--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}
.schatten1{text-shadow:2px 2px 5px rgba(0, 0, 0, 0.80);}
.shaddow1{-webkit-filter:drop-shadow(1px 1px 0px rgba(230, 230, 230, 1.00));filter:drop-shadow(1px 1px 0px rgba(230, 230, 230, 1.00));}
.right{position: absolute ;z-index:1;right:-14px ;}
/* SmoothScroll stack v1.2.0 [each.css] */



/* End of SmoothScroll stack */

/*Start CSSLayerStack*/

 

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

	 
	background: url() 1 repeat 
	 

	
	 

	 
	center
	 

	 

	 
	center;
	 

 

 

}









#stacks_in_135894_3 .layer_containera
{
 
	height: px;
 

/*cursor:pointer;*/

display:block;

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

  
 

}

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

padding-top: 0px;



   
width: 100%;








   
height: auto;
overflow: hidden;













   
overflow: auto !important;







/*Custom CSS;*/

   



}






#stacks_in_135894_3 .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_135894_3 .layernote 
{
 display: none !important; 

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

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

.stacks_in_135894_14svgwrapper{
	position: relative;
}



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





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






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

#stacks_out_135894_14 {
	width: 24%;
	margin-left:0;
}
/* -- Start Svg Each css Template -- */


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

.stacks_in_135894_15svgwrapper{
	position: relative;
}



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





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






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

#stacks_out_135894_15 {
	width: 30%;
	margin-left:0;
}
/* -- Start Svg Each css Template -- */


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

.stacks_in_135894_16svgwrapper{
	position: relative;
}



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





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






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

#stacks_out_135894_16 {
	width: 16%;
	margin-left:0;
}
#stickystacks_in_135894_10 {
	display: block;
	position: fixed;
	left: 8px;
	top: 0px;
	padding: 0;
	margin: 0;
	width: 1000px;
	overflow: hidden;
	z-index: 100;
}

#stickyLinkstacks_in_135894_10 a {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

@media print {
	#stickystacks_in_135894_10 {
		display: none !important;
	}
}/* LinkPlus stack v1.1.4 */#stacks_in_135894_32 a:link {	font-weight: bold !important;		color: #0080B3 !important;		}#stacks_in_135894_32 a:visited {	color: #0080B3 !important;	}#stacks_in_135894_32 a:hover,#stacks_in_135894_32 a:focus  {	color: #0080B3 !important;	}#stacks_in_135894_32 a:active  {	color: #0080B3 !important;		}#stacks_in_135894_32 a:link span,#stacks_in_135894_32 .com_marathia_stacks_downloadlinkicon_stack a:link:before, /* for DLI */#stacks_in_135894_32 .com_marathia_stacks_downloadlinkicon_stack a:link:after /* for DLI */ {	color: #0080B3 !important;	text-decoration: none !important;	cursor: pointer;}#stacks_in_135894_32 a:visited span,#stacks_in_135894_32 .com_marathia_stacks_downloadlinkicon_stack a:visited:before, /* for DLI */#stacks_in_135894_32 .com_marathia_stacks_downloadlinkicon_stack a:visited:after /* for DLI */ {	color: #0080B3 !important;}#stacks_in_135894_32 a:hover span,#stacks_in_135894_32 a:focus span,#stacks_in_135894_32 .com_marathia_stacks_downloadlinkicon_stack a:hover:before, /* for DLI */#stacks_in_135894_32 .com_marathia_stacks_downloadlinkicon_stack a:focus:before, /* for DLI */#stacks_in_135894_32 .com_marathia_stacks_downloadlinkicon_stack a:hover:after, /* for DLI */#stacks_in_135894_32 .com_marathia_stacks_downloadlinkicon_stack a:focus:after /* for DLI */ {	color: #0080B3 !important;}#stacks_in_135894_32 a:active span,#stacks_in_135894_32 .com_marathia_stacks_downloadlinkicon_stack a:active:before, /* for DLI */#stacks_in_135894_32 .com_marathia_stacks_downloadlinkicon_stack a:active:after /* for DLI */ {	color: #0080B3 !important;}/* @group internal link icon *//* @end *//* @group external link icon *//* @end *//* @group email link icon */#stacks_in_135894_32 a[href^="mailto"] span:after {								content: "";}/* @end *//* End of LinkPlus stack *//* LinkPlus stack v1.1.4 */#stacks_in_135894_34 a:link {	font-weight: bold !important;		color: #0080B3 !important;		}#stacks_in_135894_34 a:visited {	color: #0080B3 !important;	}#stacks_in_135894_34 a:hover,#stacks_in_135894_34 a:focus  {	color: #0080B3 !important;	}#stacks_in_135894_34 a:active  {	color: #0080B3 !important;		}#stacks_in_135894_34 a:link span,#stacks_in_135894_34 .com_marathia_stacks_downloadlinkicon_stack a:link:before, /* for DLI */#stacks_in_135894_34 .com_marathia_stacks_downloadlinkicon_stack a:link:after /* for DLI */ {	color: #0080B3 !important;	text-decoration: none !important;	cursor: pointer;}#stacks_in_135894_34 a:visited span,#stacks_in_135894_34 .com_marathia_stacks_downloadlinkicon_stack a:visited:before, /* for DLI */#stacks_in_135894_34 .com_marathia_stacks_downloadlinkicon_stack a:visited:after /* for DLI */ {	color: #0080B3 !important;}#stacks_in_135894_34 a:hover span,#stacks_in_135894_34 a:focus span,#stacks_in_135894_34 .com_marathia_stacks_downloadlinkicon_stack a:hover:before, /* for DLI */#stacks_in_135894_34 .com_marathia_stacks_downloadlinkicon_stack a:focus:before, /* for DLI */#stacks_in_135894_34 .com_marathia_stacks_downloadlinkicon_stack a:hover:after, /* for DLI */#stacks_in_135894_34 .com_marathia_stacks_downloadlinkicon_stack a:focus:after /* for DLI */ {	color: #0080B3 !important;}#stacks_in_135894_34 a:active span,#stacks_in_135894_34 .com_marathia_stacks_downloadlinkicon_stack a:active:before, /* for DLI */#stacks_in_135894_34 .com_marathia_stacks_downloadlinkicon_stack a:active:after /* for DLI */ {	color: #0080B3 !important;}/* @group internal link icon *//* @end *//* @group external link icon *//* @end *//* @group email link icon */#stacks_in_135894_34 a[href^="mailto"] span:after {								content: "";}/* @end *//* End of LinkPlus stack *//* SmoothScroll stack v1.2.0 [each.css] */



/* End of SmoothScroll stack */


#stacks_in_135972_2 {
	margin: 8px 0px 0px 0px;
}
#stacks_in_135895_2 .glider-wrapper,#stacks_in_135895_2 .glider-button{transition:all 400ms ease}#stacks_in_135895_2 .glider-wrapper.custom-style{color:rgba(255, 255, 255, 1.00)}#stacks_in_135895_2 .glider-wrapper.custom-style div,#stacks_in_135895_2 .glider-wrapper.custom-style p{color:rgba(255, 255, 255, 1.00)}#stacks_in_135895_2 .glider-wrapper.custom-style .glider-toggle{color:rgba(255, 255, 255, 1.00)}#stacks_in_135895_2 .glider-wrapper .glider-content{padding:3.25rem 1rem}@media only screen and (min-width:40.063em){#stacks_in_135895_2 .glider-wrapper .glider-content{padding:0.00rem 1.00rem}}#stacks_in_135895_2 .glider-button{margin:0px}#stacks_in_135895_2 .glider-button.custom-style{color:#FFFFFF}#stacks_in_135895_2 .glider-button.static-width{width:100px}#stacks_in_135895_2 .launcher-bar .glider-button{text-align:left}#stacks_in_135895_2 .location-left .glider-button,#stacks_in_135895_2 .location-right .glider-button{top:0%}#stacks_in_135895_2 .location-left .glider-button.flipPosition,#stacks_in_135895_2 .location-right .glider-button.flipPosition{top:auto;bottom:0%}#stacks_in_135895_2 .location-top .glider-button,#stacks_in_135895_2 .location-bottom .glider-button{left:0%}#stacks_in_135895_2 .location-top .glider-button.flipPosition,#stacks_in_135895_2 .location-bottom .glider-button.flipPosition{left:auto;right:0%}@media only screen and (min-width:40.063em){#stacks_in_135895_2 .location-left .glider-wrapper.opened,#stacks_in_135895_2 .location-right .glider-wrapper.opened{width:50%}#stacks_in_135895_2 .location-left.slideout .glider-wrapper,#stacks_in_135895_2 .location-right.slideout .glider-wrapper{width:50%}#stacks_in_135895_2 .location-left .glider-button.opened{left:50%}#stacks_in_135895_2 .location-left.slideout .glider-wrapper{margin-left:-50%}#stacks_in_135895_2 .location-right .glider-button.opened{right:50%}#stacks_in_135895_2 .location-right.slideout .glider-wrapper{margin-right:-50%}#stacks_in_135895_2 .location-top .glider-wrapper.opened,#stacks_in_135895_2 .location-bottom .glider-wrapper.opened{height:50%}#stacks_in_135895_2 .location-top .glider-button.opened{top:50%}#stacks_in_135895_2 .location-bottom .glider-button.opened{bottom:50%}}
/* -- Start Svg Each css Template -- */


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

.stacks_in_135895_4svgwrapper{
	position: relative;
}



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





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






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

#stacks_out_135895_4 {
	width: 70%;
}
/* -- Start Svg Each css Template -- */


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

.stacks_in_135895_5svgwrapper{
	position: relative;
}



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





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






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

#stacks_out_135895_5 {
	width: 50%;
}
/* -- Start Svg Each css Template -- */


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

.stacks_in_135895_6svgwrapper{
	position: relative;
}



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





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






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

#stacks_out_135895_6 {
	width: 40%;
}
#linkBoxstacks_in_135895_7 {
	display: block;
	position: relative;
	z-index: 1;
}

#linkBoxContentstacks_in_135895_7 {
	position: relative;
	display: block;
	z-index: 2;
}

#linkBoxLinkstacks_in_135895_7 a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	z-index: 10;
	background: url(../files/bg_fill.gif) repeat;
}


#linkBoxstacks_in_135895_11 {
	display: block;
	position: relative;
	z-index: 1;
}

#linkBoxContentstacks_in_135895_11 {
	position: relative;
	display: block;
	z-index: 2;
}

#linkBoxLinkstacks_in_135895_11 a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	z-index: 10;
	background: url(../files/bg_fill.gif) repeat;
}


#linkBoxstacks_in_135895_15 {
	display: block;
	position: relative;
	z-index: 1;
}

#linkBoxContentstacks_in_135895_15 {
	position: relative;
	display: block;
	z-index: 2;
}

#linkBoxLinkstacks_in_135895_15 a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	z-index: 10;
	background: url(../files/bg_fill.gif) repeat;
}


#linkBoxstacks_in_135895_19 {
	display: block;
	position: relative;
	z-index: 1;
}

#linkBoxContentstacks_in_135895_19 {
	position: relative;
	display: block;
	z-index: 2;
}

#linkBoxLinkstacks_in_135895_19 a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	z-index: 10;
	background: url(../files/bg_fill.gif) repeat;
}


#linkBoxstacks_in_135895_23 {
	display: block;
	position: relative;
	z-index: 1;
}

#linkBoxContentstacks_in_135895_23 {
	position: relative;
	display: block;
	z-index: 2;
}

#linkBoxLinkstacks_in_135895_23 a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	z-index: 10;
	background: url(../files/bg_fill.gif) repeat;
}


#linkBoxstacks_in_135895_27 {
	display: block;
	position: relative;
	z-index: 1;
}

#linkBoxContentstacks_in_135895_27 {
	position: relative;
	display: block;
	z-index: 2;
}

#linkBoxLinkstacks_in_135895_27 a {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	z-index: 10;
	background: url(../files/bg_fill.gif) repeat;
}



#stacks_in_135895_32 {
	font-size: 80%;
}
/* SmoothScroll stack v1.2.0 [each.css] */



/* End of SmoothScroll stack */

/* LinkPlus stack v1.1.4 */#stacks_in_135922 a:link {	font-weight: bold !important;		color: #D70016 !important;		}#stacks_in_135922 a:visited {	color: #D70016 !important;	}#stacks_in_135922 a:hover,#stacks_in_135922 a:focus  {	color: #D70016 !important;	}#stacks_in_135922 a:active  {	color: #D70016 !important;		}#stacks_in_135922 a:link span,#stacks_in_135922 .com_marathia_stacks_downloadlinkicon_stack a:link:before, /* for DLI */#stacks_in_135922 .com_marathia_stacks_downloadlinkicon_stack a:link:after /* for DLI */ {	color: #0E6CA4 !important;	text-decoration: none !important;	cursor: pointer;}#stacks_in_135922 a:visited span,#stacks_in_135922 .com_marathia_stacks_downloadlinkicon_stack a:visited:before, /* for DLI */#stacks_in_135922 .com_marathia_stacks_downloadlinkicon_stack a:visited:after /* for DLI */ {	color: #0E6CA4 !important;}#stacks_in_135922 a:hover span,#stacks_in_135922 a:focus span,#stacks_in_135922 .com_marathia_stacks_downloadlinkicon_stack a:hover:before, /* for DLI */#stacks_in_135922 .com_marathia_stacks_downloadlinkicon_stack a:focus:before, /* for DLI */#stacks_in_135922 .com_marathia_stacks_downloadlinkicon_stack a:hover:after, /* for DLI */#stacks_in_135922 .com_marathia_stacks_downloadlinkicon_stack a:focus:after /* for DLI */ {	color: #0E6CA4 !important;}#stacks_in_135922 a:active span,#stacks_in_135922 .com_marathia_stacks_downloadlinkicon_stack a:active:before, /* for DLI */#stacks_in_135922 .com_marathia_stacks_downloadlinkicon_stack a:active:after /* for DLI */ {	color: #0E6CA4 !important;}/* @group internal link icon *//* @end *//* @group external link icon *//* @end *//* @group email link icon */#stacks_in_135922 a[href^="mailto"] span:after {								content: "";}/* @end *//* End of LinkPlus stack */.webYepAttachmentWrapstacks_in_135924 {
  text-align: left;
  
  
  display: block;
}


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

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

  


#stacks_in_135924 {
	margin: 0px 0px 20px 0px;
}
.webYepGallerystacks_in_135928,
.webYepGallerystacks_in_135928 *,
.webYepGallerystacks_in_135928 *:before,
.webYepGallerystacks_in_135928 *:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

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

.webYepGallerystacks_in_135928 .WebYepGalleryRow {
  
  align-self: flex-start !important;
  
  
  
}

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

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


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

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

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

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

.webYepGallerystacks_in_135928 .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_135928 .WebYepGalleryImage:hover a:before {
  color: rgba(255, 255, 255, 0.00);
}



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

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


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


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

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


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

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

  


#stacks_in_135962 {
	margin: 0px 0px 20px 0px;
}
.webYepGallerystacks_in_135965,
.webYepGallerystacks_in_135965 *,
.webYepGallerystacks_in_135965 *:before,
.webYepGallerystacks_in_135965 *:after {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

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

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

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

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


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

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

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

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

.webYepGallerystacks_in_135965 .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_135965 .WebYepGalleryImage:hover a:before {
  color: rgba(255, 255, 255, 0.00);
}



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


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

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

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

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

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

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

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




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

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



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

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


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


.fadeInWrapperstacks_in_135898_5 {
  display: none;
}

.freeStyleWrapperstacks_in_135898_5 {
  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;
}






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



/* End of SmoothScroll stack */

.stacks_in_135899_3 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 0px)}

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

#usefulStackstacks_in_135899_9 {
	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_135899_9 {
		display: none;
	}
}












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



/* End of SmoothScroll stack */


#stacks_in_135899_25 {
	margin: 16px 0px 0px 0px;
}
/* Start Defender stack CSS code */#stacks_in_135899_29{	-webkit-touch-callout: none;	-webkit-user-select: none;	-khtml-user-select: none;	-moz-user-select: none;	-ms-user-select: none;	user-select: none;}.stacks_in_135899_29edit{	background: rgba(0,0,0,0.1);	border-radius: 4px;}.stacks_in_135899_29info{	background: #5A5A6C;	padding: 3px 10px 3px 10px;	margin: 10px 0px 20px 0px;	text-align: center;	color: #fff;	border-top-left-radius: 4px;	border-top-right-radius: 4px;}/* End Defender stack CSS code *//* -- Start Svg Each css Template -- */


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

.stacks_in_135899_31svgwrapper{
	position: relative;
}



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





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






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

#stacks_out_135899_31 {
	width: 90%;
}

#stacks_in_135899_32 {
	margin: 12px 0px 10px 0px;
}

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

#stacks_in_135899_15 {
	margin: 16px 0px 0px 0px;
}

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

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

#stacks_out_135899_35 {
	margin-right:0;
}
.nivo-lightbox-theme-default.nivo-lightbox-overlay {
	
	
	background: rgba(223, 223, 223, 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: 50%; 
}

.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 {
	
	white-space: nowrap !important;
	overflow: hidden !important;
	text-overflow: ellipsis !important;
	display: block;
	
	
	display: block;
	
	color: rgba(140, 186, 61, 0.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_135899_21 {
	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_135899_21 #topBoxTriggerstacks_in_135899_21 {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: block;
	z-index: 10;
}


#topBoxTriggerRegionstacks_in_135899_21 #topBoxTriggerContentstacks_in_135899_21 {
	position: relative;
	z-index: 5;
}

#topBoxTriggerRegionstacks_in_135899_21 #topBoxTriggerContentstacks_in_135899_21 img {
	display: block;
	margin: 0 auto;
}

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

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

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

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

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

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

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

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

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



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


#topBoxContentWrapperstacks_in_135899_21 {
	display: none;
}








#stacks_in_135899_39 {
	margin: 0px 4px 40px 4px;
	padding: 0px 10px 2px 10px;
}

#stacks_out_135899_39 {
	width: 119px;
}


#stacks_in_135899_44 {
	background-color: rgba(249, 249, 249, 1.00);
}
/* LinkPlus stack v1.1.4 */#stacks_in_135899_46 a:link {			color: #3B3B3B !important;		}#stacks_in_135899_46 a:visited {	color: #3B3B3B !important;	}#stacks_in_135899_46 a:hover,#stacks_in_135899_46 a:focus  {	color: #3B3B3B !important;	}#stacks_in_135899_46 a:active  {	color: #3B3B3B !important;		}#stacks_in_135899_46 a:link span,#stacks_in_135899_46 .com_marathia_stacks_downloadlinkicon_stack a:link:before, /* for DLI */#stacks_in_135899_46 .com_marathia_stacks_downloadlinkicon_stack a:link:after /* for DLI */ {	color: #0E6CA4 !important;	text-decoration: none !important;	cursor: pointer;}#stacks_in_135899_46 a:visited span,#stacks_in_135899_46 .com_marathia_stacks_downloadlinkicon_stack a:visited:before, /* for DLI */#stacks_in_135899_46 .com_marathia_stacks_downloadlinkicon_stack a:visited:after /* for DLI */ {	color: #0E6CA4 !important;}#stacks_in_135899_46 a:hover span,#stacks_in_135899_46 a:focus span,#stacks_in_135899_46 .com_marathia_stacks_downloadlinkicon_stack a:hover:before, /* for DLI */#stacks_in_135899_46 .com_marathia_stacks_downloadlinkicon_stack a:focus:before, /* for DLI */#stacks_in_135899_46 .com_marathia_stacks_downloadlinkicon_stack a:hover:after, /* for DLI */#stacks_in_135899_46 .com_marathia_stacks_downloadlinkicon_stack a:focus:after /* for DLI */ {	color: #0E6CA4 !important;}#stacks_in_135899_46 a:active span,#stacks_in_135899_46 .com_marathia_stacks_downloadlinkicon_stack a:active:before, /* for DLI */#stacks_in_135899_46 .com_marathia_stacks_downloadlinkicon_stack a:active:after /* for DLI */ {	color: #0E6CA4 !important;}/* @group internal link icon *//* @end *//* @group external link icon *//* @end *//* @group email link icon */#stacks_in_135899_46 a[href^="mailto"] span:after {								content: "";}/* @end *//* End of LinkPlus stack */#usefulStackWrapperstacks_in_135899_48 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	z-index: 1;
}

#usefulStackstacks_in_135899_48 {
	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_135899_48 {
		display: none;
	}
}














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

@media (max-width: 768px) {
	#stacks_in_135899_50 {
		height: 460px;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	#stacks_in_135899_50 {
		height: 520px;
	}
}
@media (min-width: 992px) and (max-width: 1199px) {
	#stacks_in_135899_50 {
		height: 460px;
	}
}
@media (min-width: 1200px) {
	#stacks_in_135899_50 {
		height: 460px;
	}
}

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

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

#stacks_in_135900_4 {
	margin: 0px 0px 24px 0px;
}

#stacks_in_135900_6 {
	font-size: 140%;
}
.stacks_in_135900_7 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}

/* Start Defender stack CSS code */#stacks_in_135900_10{	-webkit-touch-callout: none;	-webkit-user-select: none;	-khtml-user-select: none;	-moz-user-select: none;	-ms-user-select: none;	user-select: none;}.stacks_in_135900_10edit{	background: rgba(0,0,0,0.1);	border-radius: 4px;}.stacks_in_135900_10info{	background: #5A5A6C;	padding: 3px 10px 3px 10px;	margin: 10px 0px 20px 0px;	text-align: center;	color: #fff;	border-top-left-radius: 4px;	border-top-right-radius: 4px;}/* End Defender stack CSS code */
#stacks_in_135900_10 {
	margin: 0px 10px 0px 0px;
}
/* -- Start Svg Each css Template -- */


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

.stacks_in_135900_11svgwrapper{
	position: relative;
}


		#stacks_in_135900_11 img  {
			max-width: 400px;
		}
	
		@media (max-width: 61.9em) {
			#stacks_in_135900_11 img {
				max-width: 400px;
			}
		}
		
		@media (max-width: 47.9em) {
			#stacks_in_135900_11 img {
				max-width: 400px;
			}
		}
	


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





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






/* -- End Svg Each css Template -- */
#stacks_out_135900_11 {
	width: 80%;
}

#stacks_in_135900_13 {
	margin: 4px 0px 0px 0px;
}


#stacks_out_135900_17 {
	margin-left:0;
}


#stacks_out_135900_21 {
	margin-left:0;
}

/* Start Defender stack CSS code */#stacks_in_135900_32{	-webkit-touch-callout: none;	-webkit-user-select: none;	-khtml-user-select: none;	-moz-user-select: none;	-ms-user-select: none;	user-select: none;}.stacks_in_135900_32edit{	background: rgba(0,0,0,0.1);	border-radius: 4px;}.stacks_in_135900_32info{	background: #5A5A6C;	padding: 3px 10px 3px 10px;	margin: 10px 0px 20px 0px;	text-align: center;	color: #fff;	border-top-left-radius: 4px;	border-top-right-radius: 4px;}/* End Defender stack CSS code *//* -- Start Svg Each css Template -- */


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

.stacks_in_135900_34svgwrapper{
	position: relative;
}



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





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






/* -- End Svg Each css Template -- *//* Start Defender stack CSS code */#stacks_in_135900_30{	-webkit-touch-callout: none;	-webkit-user-select: none;	-khtml-user-select: none;	-moz-user-select: none;	-ms-user-select: none;	user-select: none;}.stacks_in_135900_30edit{	background: rgba(0,0,0,0.1);	border-radius: 4px;}.stacks_in_135900_30info{	background: #5A5A6C;	padding: 3px 10px 3px 10px;	margin: 10px 0px 20px 0px;	text-align: center;	color: #fff;	border-top-left-radius: 4px;	border-top-right-radius: 4px;}/* End Defender stack CSS code *//* -- Start Svg Each css Template -- */


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

.stacks_in_135900_37svgwrapper{
	position: relative;
}



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





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






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

#stacks_in_135900_38 {
	margin: 0px 0px 10px 0px;
}
.stacks_in_135900_39 > .grid-divider-wrapper > .grid-divider{height:calc(100% - 2rem)}






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

#stacks_in_135900_59 {
	margin: 0px 0px 10px 0px;
}
/*
-------------------------------------------
File: 'Blueball FreeStack Responsive Breadcrumb Stack' 
Style Sheet: fsrbreadcrumb.css
Created: 27, October, 2010
Last Modified: 18, January 2014
Author: Charlie Lockhart, Blueball Design
www.blueballdesign.com
Copyright 2010-2014 Blueball Design LLC USA/Charlie Lockhart
All Rights Reserved
-------------------------------------------
*/

#stacks_in_135900_62 {
}

#stacks_in_135900_62 #breadcrumbcontainer {
	line-height: 1.00em;
	text-align: left;
}


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

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

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

#stacks_in_135900_75 {
	word-spacing: 1px;
	font-size: 90%;
}
#usefulStackWrapperstacks_in_135900_76 {
	margin: 0 auto;
	min-width: 0px;
	max-width: 10000px;
	min-height: 0px;
	max-height: 20000px;
	overflow: hidden;
	position: relative;
	
}

#usefulStackstacks_in_135900_76 {
	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_135900_76 {
		display: none;
	}
}









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





#stacks_in_135900_76 {
	margin: 0px 0px 30px 0px;
}
.webYepLoginStackstacks_in_135900_78 {
	
	text-align: center;
	
	
}

@media print {
	.webYepLoginStackstacks_in_135900_78 {
		display: none !important;
	}
}
/*
 * 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_135900_79,
a#scrollUp_stacks_in_135900_79 {
	
		bottom: 0px;
		
		
		
			left: 50%;
		
	
	
	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_135900_79:hover,
a#scrollUp_stacks_in_135900_79:hover {
	color: #666666 !important;
}
#scrollUp_stacks_in_135900_79.scrollUpTheme1,
#scrollUp_stacks_in_135900_79.scrollUpTheme3 {
	border-color: #E6E6E5;
	border-width: 1px;
	border-style: solid;
}
#scrollUp_stacks_in_135900_79.scrollUpTheme1.transparencyOff,
#scrollUp_stacks_in_135900_79.scrollUpTheme3.transparencyOff {
	background-color: #CACCCC;
}
#scrollUp_stacks_in_135900_79.scrollUpTheme1.transparencyOn,
#scrollUp_stacks_in_135900_79.scrollUpTheme3.transparencyOn {
	background-color: none;
	border-color: none;
}
#scrollUp_stacks_in_135900_79.scrollUpTheme1.gradientOn,
#scrollUp_stacks_in_135900_79.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_135900_79.textShadowOn {
	text-shadow: 0 0px 0 #FFFFFF;
}
#scrollUp_stacks_in_135900_79.scrollUpTheme1.boxShadowOn,
#scrollUp_stacks_in_135900_79.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
 * ==================== */

#com_barthpartners_biscuitbox_stacks_in_135901_3.biscuitbox {
  justify-content: center;
  z-index: 99999; }

#com_barthpartners_biscuitbox_stacks_in_135901_3 .biscuitbox-wrapper {
  align-items: center;
  background-color: #4c4d4c;
  padding: 20px;
  width: 70%; }

@media screen and (max-width: 600px) {
  .biscuitbox-info-text {
    padding-bottom: 1em; }
  .biscuitbox-btnaccept {
    padding-bottom: 5px; } }

@media screen and (min-width: 600px) {
  .biscuitbox-info-text {
    padding-bottom: 1em; }
  .biscuitbox-button {
    flex: 1 auto; } }

@media screen and (min-width: 800px) {
  .biscuitbox-info-text {
    padding-bottom: 1em; }
  .biscuitbox-btnaccept {
    order: 1; }
  .biscuitbox-btndecline {
    order: 2; } }



	#stacks_in_135901_6 .button_icon,#stacks_in_135901_6 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:32px;
		line-height:32px;
		font-size:19px;
	}
	


#stacks_in_135901_6 .button_label {
	font: 500 16px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	
	
}


	#stacks_in_135901_6 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:14px;
	}
	#stacks_in_135901_6 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 7px 0px 14px;
	}




#stacks_in_135901_6 .sweet_button_wrapper {
	text-align:right;

	
		height:32px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_135901_6 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_135901_6 .button_icon,#stacks_in_135901_6 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_135901_6 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_135901_6 .sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 14px;
	text-decoration:none;
	text-align:center;
	color:rgba(76, 76, 76, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(217, 217, 217, 1.00);
	border-radius:0px;
	background:rgba(217, 217, 217, 1.00);
}
#stacks_in_135901_6 .sweet_button:visited {
	color:rgba(76, 76, 76, 1.00);
}

#stacks_in_135901_6 .sweet_button:hover {
	border-color:rgba(217, 217, 217, 1.00);
}








#stacks_in_135901_6 .sweet_button:hover {
	color:rgba(76, 76, 76, 1.00);
	background: rgba(237, 237, 237, 1.00);
}
#stacks_in_135901_6 .sweet_button:active{
	background: rgba(197, 197, 197, 1.00);
}
#stacks_in_135901_6 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_135901_6 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_135901_6 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}










	#stacks_in_135901_12 .button_icon,#stacks_in_135901_12 .button_icon i {
		margin:0;
		padding:0;
		display:inline-block;
		font-weight:normal;
		height:32px;
		line-height:32px;
		font-size:19px;
	}
	


#stacks_in_135901_12 .button_label {
	font: 500 16px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
	height:2em;
	line-height:2em;
	display: inline-block;
	
	
}


	#stacks_in_135901_12 .button_icon {
		border-right: 1px solid rgba(0,0,0,0.2);
		float:left;
		padding-right:14px;
	}
	#stacks_in_135901_12 .button_label {
		border-left: 1px solid rgba(255,255,255, 0.2);
		float:left;
		padding: 0px 7px 0px 14px;
	}




#stacks_in_135901_12 .sweet_button_wrapper {
	text-align:center;

	
		height:32px;
	
}

@media screen and (max-width:500px){ /* iPhone Landscape */
	#stacks_in_135901_12 .sweet_button_wrapper {
		
			height:28px;
		
	}

	
		#stacks_in_135901_12 .button_icon,#stacks_in_135901_12 .button_icon i {
			height:28px;
			line-height:2em;
			font-size:17px;
		}
		
	

	#stacks_in_135901_12 .button_label {
		font: 500 14px/150% "Helvetica Neue", Helvetica, Arial, Geneva, sans-serif;
		line-height:2em;
	}
}

#stacks_in_135901_12 .sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 14px;
	text-decoration:none;
	text-align:center;
	color:rgba(76, 76, 76, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(217, 217, 217, 1.00);
	border-radius:0px;
	background:rgba(217, 217, 217, 1.00);
}
#stacks_in_135901_12 .sweet_button:visited {
	color:rgba(76, 76, 76, 1.00);
}

#stacks_in_135901_12 .sweet_button:hover {
	border-color:rgba(217, 217, 217, 1.00);
}








#stacks_in_135901_12 .sweet_button:hover {
	color:rgba(76, 76, 76, 1.00);
	background: rgba(237, 237, 237, 1.00);
}
#stacks_in_135901_12 .sweet_button:active{
	background: rgba(197, 197, 197, 1.00);
}
#stacks_in_135901_12 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_135901_12 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_135901_12 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}







/* custom stuff */


#corner-stacks_in_135901_14 .corner-modal
{
  z-index: 100000000;
  max-width:400px;
  max-height:620px;
}



#corner-stacks_in_135901_14 .corner-content {
	border:0px solid rgba(0, 0, 0, 0.40);
	border-radius:0px;
  background-color:rgba(0, 128, 179, 1.00);
  color: rgba(255, 255, 255, 1.00);
  overflow:auto;
}

#corner-stacks_in_135901_14 .corner-button
{
	font-family: ;
	font-size: 14px;
  font-weight: 700;
	border:0px solid rgba(0, 128, 179, 1.00);
	border-radius:0px;
  background-color:rgba(0, 128, 179, 1.00);
  color: rgba(255, 255, 255, 1.00);
  padding-top: 6px;
  padding-right: 10px;
  padding-bottom: 6px;
  padding-left: 10px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 20px;
  margin-left: 0px;
  z-index: 9998;
}


#corner-stacks_in_135901_14 .corner-button.corner-tl,
#corner-stacks_in_135901_14 .corner-button.corner-tr {
  margin-top: -60px;
}

#corner-stacks_in_135901_14 .corner-button.corner-bl,
#corner-stacks_in_135901_14 .corner-button.corner-br {
  margin-bottom: -60px;
}


#corner-stacks_in_135901_14 .corner-content {
	padding-top: 30px;
  padding-right: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  margin-top: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
  margin-left: 10px;
}

#corner-stacks_in_135901_14 .corner-button.corner-tl.corner-show,
#corner-stacks_in_135901_14 .corner-button.corner-tr.corner-show {
  margin-top: 0px;
}

#corner-stacks_in_135901_14 .corner-button.corner-bl.corner-show,
#corner-stacks_in_135901_14 .corner-button.corner-br.corner-show {
  margin-bottom: 20px;
}


/* hide the text in button on smaller screens */
@media only screen and (max-width: 770px)  
{ 
  #corner-stacks_in_135901_14 .corner-modal
  {
    width:100%;
    max-width:100%;
    max-height:100%;
    margin:0;
  }

  #corner-stacks_in_135901_14 .corner-content
  {
    margin:4px;
  }

  #corner-stacks_in_135901_14 span.corner-label { 
    display:none; 
  }
}




#stacks_in_135901_16 {
	padding: 0px 4px 0px 4px;
}

#stacks_out_135901_16 {
	margin-left:0;
}

#stacks_in_135901_17 {
	font-size: 90%;
}

#stacks_in_135901_18 {
	margin: 0px 0px 24px 0px;
}
#stacks_in_135901_20 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_135901_20 .jwresp_col{overflow:hidden;margin:0;width:49%; float:left;}#stacks_in_135901_20 #jwresp_col2_stacks_in_135901_20{ float:right; width:49%}@media screen and (max-width:500px){#stacks_in_135901_20 #jwresp_col1_stacks_in_135901_20,#stacks_in_135901_20 #jwresp_col2_stacks_in_135901_20{width:100%;float:none;display:block}#stacks_in_135901_20 #jwresp_col1_stacks_in_135901_20{margin-bottom:15px}}

#stacks_in_135901_20 {
	margin: 0px 0px 2px 0px;
}

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

#stacks_out_135901_22 {
	width: 120px;
	margin-left:0;
}


/* Start doobox image pop css */

/* ############################################################# */
/* ############# CSS BOTH EDIT AND PREVIEW ##################### */
/* ############################################################# */
.stacks_in_135901_25popBox{
	position: relative;
	display: block;
	margin: 10px auto 14px auto;
	padding: 10px;
	background: #0080B3;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 0 0 10px rgba(0,0,0,.4);
	-webkit-box-shadow: 0 0 10px rgba(0,0,0,.4);
	-box-shadow: 0 0 10px rgba(0,0,0,.4);
	max-width: 90%;
	display: none;
}

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

.stacks_in_135901_25popBoxClose{
	position: absolute;
	top:-11px;
	left: -12px;
	width: 26px;
	height: 26px;
	background: url(../files/imagepop_files/thex.png);
	cursor: pointer;
}

@media only screen and (max-width: 480px) {
.stacks_in_135901_25popBoxClose{
	top:  0px;
	left: 0px;
	width: 48px;
	height: 48px;
	background: url(../files/imagepop_files/thex2times.png);
}
}


.stacks_in_135901_25popThumbnail{
	position: relative;
	margin: 0 auto 0 auto;
	padding: 0;
	max-width: 150px;
	overflow: hidden;
	border: 0px solid #CCCCCC;
}

.stacks_in_135901_25popThumbnail img{
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
	padding: 0;
}

.stacks_in_135901_25popThumbOverlay{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 150px;
	height: 150px;
	padding: 0;
	margin: 0;
	background: #000000;
	cursor: pointer;
	-moz-opacity:0; 
	filter:alpha(opacity=0); 
	opacity:0; 
}


/* ############################################################# */
/* ############# CSS PREVIEW MODE ONLY ######################### */
/* ############################################################# */


.stacks_in_135901_25popThumbOverlay{
	-moz-opacity:0; 
	filter:alpha(opacity=0); 
	opacity:0; 
	cursor: pointer;
	-webkit-transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    -ms-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
}

.stacks_in_135901_25popThumbOverlay:hover{
	zoom: 1;
	-moz-opacity:.3; 
	filter:alpha(opacity=3); 
	opacity:.3; 
}



/* ############################################################# */
/* ############# CSS EDIT MODE ONLY ############################ */
/* ############################################################# */


/* end doobox image pop css */


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

#stacks_out_135901_25 {
	width: 94px;
	margin-right:0;
}

.scroller-header {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 99999;
  width: 100%;
}

.scroller-container {
  width: 100%;
  height: 20px;
  background: rgba(198, 202, 202, 1.00);
}

.scroller-bar {
  height: 20px;
  background: rgba(236, 236, 235, 1.00);
  width: 0%;
  
  
  
}








/* @group Page */

/* Stop the background page scrolling when the modal is open */
body.sociableOpen {
	overflow: hidden !important;
}

/* @end */

/* @group Share Button */

#socialPopupTriggerButtonstacks_in_135901_29 *,
#socialPopupTriggerButtonstacks_in_135901_29 *::after,
#socialPopupTriggerButtonstacks_in_135901_29 *::before {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}


#socialPopupTriggerButtonstacks_in_135901_29 {
	position: fixed;
	top: 44.00%;
	left: 0.00%;
	cursor: pointer;
	z-index: 1000000000;
}





#socialPopupTriggerButtonstacks_in_135901_29 {
	display: none;
}


#socialPopupTriggerButtonstacks_in_135901_29 a {
	background: none;
	border: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	outline: none;
}

#socialPopupTriggerButtonstacks_in_135901_29 a:focus {
	outline: none;
	border: none;
}

#socialPopupTriggerButtonstacks_in_135901_29 #socialPopupTriggerButtonBorderstacks_in_135901_29 {
	border: 0px solid #CDCDCD;
	background: #0E6CA4;
	border-radius: 0px;
	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	height: 36px;
	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_135901_29:hover #socialPopupTriggerButtonBorderstacks_in_135901_29 {
	border: 0px solid #999999;
	background: #0E6CA4;
}


#socialPopupTriggerButtonstacks_in_135901_29:hover #socialPopupTriggerButtonBorderstacks_in_135901_29 {
	padding-right: 15px;
}




#socialPopupTriggerButtonstacks_in_135901_29 #socialPopupTriggerButtonIconstacks_in_135901_29 [class^="fa fa-"] {
	color: #FFFFFF;
	font-size: 20px;
	line-height: 36px;
	width: 36px;
	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_135901_29:hover #socialPopupTriggerButtonBorderstacks_in_135901_29 [class^="fa fa-"] {
	color: #FFFFFF;
}

#socialPopupTriggerButtonstacks_in_135901_29 #socialPopupTriggerButtonTextstacks_in_135901_29 {
	color: #FFFFFF;
	font: 14px "Helvetica Neue", Arial, Helvetica, Geneva, sans-serif;
	float: right;
	max-width: 0px;
	overflow: hidden;
	line-height: 36px;
	-webkit-transition: all 300ms ease-in-out;
	-moz-transition: all 300ms ease-in-out;
	transition: all 300ms ease-in-out;
}




#socialPopupTriggerButtonstacks_in_135901_29:hover #socialPopupTriggerButtonTextstacks_in_135901_29 {
	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: #B3B3B3;
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
}

.socialPopupModalShow ~ .socialPopupModalOverlay {
	opacity: 0.99;
	visibility: visible;
}

/* Content styles */
#socialPopupModalContentstacks_in_135901_29 {
	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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-webkit-transition: all 1000ms;
	-moz-transition: all 1000ms;
	transition: all 1000ms;
}

.socialPopupModalShow.socialPopupModalEffect-4 #socialPopupModalContentstacks_in_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 h3,
.socialPopupModalEffect-12 #socialPopupModalContentstacks_in_135901_29 {
	background: transparent;
}

.socialPopupModalShow.socialPopupModalEffect-12 #socialPopupModalContentstacks_in_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	-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_135901_29 {
	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_135901_29 [class^="fa fa-"] {
	color: #FFFFFF;
	transition: all ease-in-out 300ms;
}

#sociableCloseButtonstacks_in_135901_29:hover,
#sociableCloseButtonstacks_in_135901_29: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_135901_29 {
	-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_135901_29 {
	display: block;
}

.modalScrolled #radioactiveScrollIndicatorstacks_in_135901_29 {
	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: 15px;
	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: 24px;
	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: 15px;
}

.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: 15px;
	padding-top: 15px;
	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_135901_29,
	#socialPopupModalOverlaystacks_in_135901_29,
	#socialPopupTriggerButtonstacks_in_135901_29 {
		display: none !important;
	}
}

/* @end */

/* @group Edit Mode Styling */

/*  */

/* @end */
#stacks_in_135901_29 {
	margin: 0px 0px 20px 0px;
}
#stacks_in_135901_33{text-align:center}@media only screen and (max-width:40em){#stacks_in_135901_33{text-align:center}#stacks_in_135901_33 .button{float:none !important}}#stacks_in_135901_33 .button{background-color:rgba(0, 106, 179, 1.00);color:rgba(255, 255, 255, 1.00)}#stacks_in_135901_33 .button:hover{background-color:rgba(0, 106, 179, 1.00)}#stacks_in_135901_33 .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_135901_33 .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_135901_33 {
	margin: 20px 0px 0px 0px;
}

#turnerstacks_in_135901_34 {display: none;}

@media screen
  and (min-height: 0px)
  and (max-height: 491px)
  and (orientation: landscape)  {

#turnerstacks_in_135901_34 {
	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_135901_34{
    position: absolute;
    top: 50%;
    text-align: center;
    width: 90%;
    margin-left: 5%;
    transform: translateY(-50%);
}

.turner-animstacks_in_135901_34{
  max-width: 100px;
  max-height: 100px;
  margin-bottom: 18px;
}

.turner-headerstacks_in_135901_34{
  color: white;
  margin-top: 12px;
}
.turner-subheaderstacks_in_135901_34{
  color: white;
  margin-top: 12px;
}

.turner-subsubheaderstacks_in_135901_34{
  color: white;
  margin-top: 12px;
}

}



