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

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

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

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

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

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

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

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

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

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

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

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

.flash {
  animation-name: flash;
}

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

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

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

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

.pulse {
  animation-name: pulse;
}

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

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

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

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

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

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

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

.rubberBand {
  animation-name: rubberBand;
}

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

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

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

.shake {
  animation-name: shake;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.tada {
  animation-name: tada;
}

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

@keyframes wobble {
  from {
    transform: none;
  }

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

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

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

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

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

  to {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bounceIn {
  animation-name: bounceIn;
}

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

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

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

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

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

  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

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

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

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

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

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

  to {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

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

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

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

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

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

  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

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

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

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

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

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

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

.bounceInUp {
  animation-name: bounceInUp;
}

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

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

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

.bounceOut {
  animation-name: bounceOut;
}

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

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

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

.bounceOutDown {
  animation-name: bounceOutDown;
}

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

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

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

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

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

.bounceOutRight {
  animation-name: bounceOutRight;
}

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

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

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

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

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

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

.fadeInDown {
  animation-name: fadeInDown;
}

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

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

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

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

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

.fadeInLeft {
  animation-name: fadeInLeft;
}

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

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

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

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

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

.fadeInRight {
  animation-name: fadeInRight;
}

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

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

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

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

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

.fadeInUp {
  animation-name: fadeInUp;
}

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

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

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

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

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

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

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

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

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

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

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

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

.rotateIn {
  animation-name: rotateIn;
}

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

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

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

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

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

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

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

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

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

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

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

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

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

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

.rotateOut {
  animation-name: rotateOut;
}

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

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

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

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

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

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

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

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

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

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

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

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

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

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

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

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

.hinge {
  animation-name: hinge;
}

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

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

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

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

.hingeIn {
  animation-name: hingeIn;
}

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

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

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

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

.jackInTheBox {
  animation-name: jackInTheBox;
}

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

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

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

.rollIn {
  animation-name: rollIn;
}

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

.rollOut {
  animation-name: rollOut;
}

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

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

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

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

.zoomInDown {
  animation-name: zoomInDown;
}

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

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

.zoomInLeft {
  animation-name: zoomInLeft;
}

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

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

.zoomInRight {
  animation-name: zoomInRight;
}

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

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

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

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

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

.zoomOutDown {
  animation-name: zoomOutDown;
}

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

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

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

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

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

.zoomOutRight {
  animation-name: zoomOutRight;
}

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

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

.zoomOutUp {
  animation-name: zoomOutUp;
}

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

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

.slideInDown {
  animation-name: slideInDown;
}

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

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

.slideInLeft {
  animation-name: slideInLeft;
}

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

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

.slideInRight {
  animation-name: slideInRight;
}

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

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

.slideInUp {
  animation-name: slideInUp;
}

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

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

.slideOutDown {
  animation-name: slideOutDown;
}

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

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

.slideOutLeft {
  animation-name: slideOutLeft;
}

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

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

.slideOutRight {
  animation-name: slideOutRight;
}

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

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

.slideOutUp {
  animation-name: slideOutUp;
}

/* @group Description */

.description{
	padding: 4px;
    opacity: 0;  
    position: fixed; 
    display: none;
}

.descriptionIn{
	opacity: 1;
	display: block;
	right: 50px;
	-webkit-animation: descSlideIn .2s ease-out;
}

@-webkit-keyframes descSlideIn {
from {right: 0; opacity: 0;}
to   {opacity: 1;}
}
@-moz-keyframes descSlideIn {
from {right: 0; opacity: 0;}
to   {opacity: 1;}
}
@keyframes descSlideIn {
from {right: 0; opacity: 0;}
to   {opacity: 1;}
}


.descriptionOut{
	opacity: 0;
	right: 0;
	margin-right: 0;
	margin-top: 0;
	-webkit-animation: descSlideOut .2s ease-in;
}

@-webkit-keyframes descSlideOut {
from {opacity:1;}
to   {opacity: 0;right: 0;}
}
@-moz-keyframes descSlideOut {
from {opacity:1;}
to   {opacity: 0;right: 0;}
}
@keyframes descSlideOut {
from {opacity:1;}
to   {opacity: 0;right: 0;}
}

/* end */
/*Archetypon Parallax*/
#block1 a:link{
	color: #CCCCCC;
}
#block1 a:visited{
	color: #FFFFFF;
}
#block1 a:hover{
	color: #FFFFFF;
}
#block1 .story {margin-top: 0%}

#block1 {background: transparent !important}

/**********handheld images**********/

/*desktops*/
@media screen and (min-width: 1024px) {
  #block1 {
      background-image: url(0);
      background-repeat: no-repeat;
  }
}

/*ipad portrait*/
@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation:portrait) {
  #block1 {
      background-image: url(0)!important;
      background-repeat: no-repeat!important;
  }
}

/*ipad landscape*/
@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation:landscape) {
  #block1 {
      background-image: url(0)!important;
      background-repeat: no-repeat!important;
  }
}

/*iphone*/
@media only screen and (max-width: 480px){
    #block1 {
        background-image: url(0)!important;
        background-repeat: no-repeat!important;
    }
}/*
 * Responsive Columns
 * Version: 1.0.6
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns & 1-3 rows
 */
/***************************************  MASTER CONTROL **********************************/
.R_C{
  box-sizing: border-box;
}
#stacks_in_9386 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_9386.R_C.RC_Img img{
  width: 100%;
  height: auto;
  max-width:100;
  margin:0 auto;
  display:block;
}
/***************************************  NO GUTTER **********************************/
/***************** 1 Non   **************/

/***************** 2 Non   *********************/

.stacks_in_9386.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


}
.stacks_in_9386.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 50%;

  float:left;
}

/****************  3 Non ******************/

.stacks_in_9386.RC3_L.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

}
.stacks_in_9386.RC3_R.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

  float:left;
}
.stacks_in_9386.RC3_RS.RC3_Goff {
  width: calc(100%/3);
  width: 0.2%;

  float: left;
}
.stacks_in_9386.RC3_M.RC3_Goff {
  margin: 0 0% 10px 0%;
  width: calc(100%/3);
  width: 100%;

}

/****************  4 Non ******************/

.stacks_in_9386.RC4.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
.stacks_in_9386.RC4_S.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
/*
.stacks_in_9386.RC4_R.RC4_LL2.RC4_Goff {
  width: 25.1%;
  width: calc(100%/4);
  float: left;
}
*/
.stacks_in_9386.RC4_LF.RC4_Goff, .stacks_in_9386.RC4_LL.RC4_Goff, .stacks_in_9386.RC4_LF2.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_9386.RC4_LF.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_9386.RC4_LL2.RC4_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
  .stacks_in_9386.RC4_R.RC4_LL2.RC4_S.RC4_Goff{
    float: left;
    width: 25%;
    width: calc(100%/4);
  }
}*/

/****************  5 Non ******************/

.stacks_in_9386.RC5.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

  float:left;
}
.stacks_in_9386.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

}
.stacks_in_9386.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20.3%;

}
.stacks_in_9386.RC5_M.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_9386.RC5_LF.RC5_Goff, .stacks_in_9386.RC5_LL.RC5_Goff, .stacks_in_9386.RC5_RF.RC5_Goff, .stacks_in_9386.RC5_RL.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_9386.RespColone5_First.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_9386.RespColone5_Last.RC5_Goff {
  margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_9386.RC6.RC6_Goff {
  width: 16.66%;
}
.stacks_in_9386.RC6_S.RC6_Goff {
  width: 16.69%;
}
.stacks_in_9386.RC6_R1.RC6_LL.RC6_S.RC6_Goff, stacks_in_9386.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
  width: 17%;
}
.stacks_in_9386.RC6_M.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_9386.RC6_LF.RC6_Goff,
.stacks_in_9386.RC6_LL.RC6_Goff,
.stacks_in_9386.RC6_RF.RC6_Goff,
.stacks_in_9386.RC6_RL.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_9386.RC6_L1.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_9386.RC6_R1.RC6_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
    .stacks_in_9386.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
    .stacks_in_9386.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
      width: 16.6%;
  }
}*/

/***************************************  1 COLUMN **********************************/

.stacks_in_9386.ResponsiveCol1_L {
  width: 100%;
  margin: 0 0 10px 0;
}

.stacks_in_9386.maxWToggle{
  max-width:500px;
  margin:0 auto;
}

.stacks_in_9386.RC_PaddingOn.UsePix {
  padding: 10px 0;
}

.stacks_in_9386.RC_PaddingOn.UsePerc {
  padding: 10% 0;
}

@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_9386.ResponsiveCol1_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  2 COLUMN **********************************/

.stacks_in_9386.ResponsiveCol2_L {
  float: left;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
.stacks_in_9386.ResponsiveCol2_R {
  float: right;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_9386.ResponsiveCol2_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9386.ResponsiveCol2_R {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9386.ResponsiveCol2_L.RC2_Goff {
    width: 100%;
    margin:0 0 10px 0;
  }
  .stacks_in_9386.ResponsiveCol2_R.RC2_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  3 COLUMN **********************************/

.stacks_in_9386.RC3_L {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;

}
.stacks_in_9386.RC3_M {
  float: left;
  margin: 0 2% 10px 2%;
  width: 98%;
  width: calc(100%/3 - 1.2% );
}

.stacks_in_9386.RC3_R {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;
}

@media (max-width: 800px) {

  /*  ============ LARGE BOTTOM ================== */

  .stacks_in_9386.RC3_L.RespCol1 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_9386.RC3_M.RespCol1 {
    float: right;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_9386.RC3_R.RespCol1,
  .stacks_in_9386.RC3_RS.RespCol1 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9386.RC3_L.RespCol1.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9386.RC3_M.RespCol1.RC3_Goff  {
    float: right;
    width: %(50  0)%%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9386.RC3_R.RespCol1.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9386.RC3_RS.RespCol1.RC3_Goff  {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_9386.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9386.RC3_M.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_9386.RC3_R.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_9386.RC3_RS.RespCol2 {
    float: left;
    width: 49%;
    margin: 0 0 10px 1%;
  }
  .stacks_in_9386.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9386.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9386.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9386.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }

}
@media (max-width: 600px){
  .stacks_in_9386.RC3_L,
  .stacks_in_9386.RC3_R.RespCol2,
  .stacks_in_9386.RC3_R,
  .stacks_in_9386.RC3_R.RespCol1,
  .stacks_in_9386.RC3_RS.RespCol2,
  .stacks_in_9386.RC3_RS.RespCol3 {
    float: left !important;
    width: 100% !important;
    margin: 0 0 10px 0!important;
  }
  .stacks_in_9386.RC3_RS.RC3_Goff {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
  .stacks_in_9386.RC3_M {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
}

/***************************************  4 COLUMN **********************************/

.stacks_in_9386.RC4_L {
  float: left;
}
.stacks_in_9386.RC4_R {
  float: left;
}
.stacks_in_9386.RC4 {
  width: 23.5%;
  width: calc(100%/4 - 1%*1.5);
}
.stacks_in_9386.RC4_S {
  width: 23.6%;
}
.stacks_in_9386.RC4_LF,
.stacks_in_9386.RC4_LL,
.stacks_in_9386.RC4_LF2 {
  margin: 0 1% 10px 1%;
}
.stacks_in_9386.RC4_LF {
  margin: 0 1% 10px 0;
}
.stacks_in_9386.RC4_LL2 {
  margin: 0 0 10px 1%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_9386.RC4_S{
    width: 23.5%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_9386.RC4 {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_9386.RC4_S {
    width: 49%;
  }
  .stacks_in_9386.RC4_LF {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_9386.RC4_LL {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_9386.RC4_LF2 {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_9386.RC4_LL2 {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_9386.RC4_R {
    float:left;
  }
  .stacks_in_9386.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_9386.RC4_S.RC4_Goff,
  .stacks_in_9386.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_9386.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_9386.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_9386.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_9386.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
}

@media (max-width: 600px){
  .stacks_in_9386.RC4 {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9386.RC4_S {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9386.RC4.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9386.RC4_S.RC4_Goff,
  .stacks_in_9386.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  5 COLUMN **********************************/

.stacks_in_9386.RC5_L {
  float: left;
}
.stacks_in_9386.RC5_R {
  float: left;
}
.stacks_in_9386.RC5 {
  width: 18.4%;
  width: calc(100%/5 - 1%*1.6);
}
.stacks_in_9386.RC5_S {
  width: 18.4%;
}
.stacks_in_9386.RC5_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_9386.RC5_LF,
.stacks_in_9386.RC5_LL,
.stacks_in_9386.RC5_RF,
.stacks_in_9386.RC5_RL {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_9386.RespColone5_First {
  margin: 0 1% 10px 0;
}
.stacks_in_9386.RespColone5_Last {
  float:left;
  margin: 0 0 10px 1%;
}
@media (max-width: 800px) {
  .stacks_in_9386.RC5, .stacks_in_9386.RC5_S {
    width: 49%;
  }
  .stacks_in_9386.RC5_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_9386.RC5_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_9386.RC5.RespColone5_Last,
  .stacks_in_9386.RC5_S.RespColone5_Last {
    float: left;
    width: 99.8% ;
    margin: 0 auto 10px auto;
  }
  .stacks_in_9386.RC5.RC5_Goff {
    width: 50%;
  }
  .stacks_in_9386.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_9386.RC5_LF.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_9386.RC5_LL.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_9386.RespColone5_Last.RC5_Goff,
  .stacks_in_9386.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
    float: left;
    width: 100% ;
    margin: 0 auto 10px auto;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_9386.RC5.RespCol2,
  .stacks_in_9386.RC5_S.RespCol2 {
    width: 49%;
  }
  .stacks_in_9386.RC5_LF.RespCol2,
  .stacks_in_9386.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_9386.RC5_LL.RespCol2 {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_9386.RC5.RespColone5_First.RespCol2,
  .stacks_in_9386.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 10px auto;
  }
  .stacks_in_9386.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_9386.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_9386.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_9386.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_9386.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;

  }
  .stacks_in_9386.RC5_LL.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_9386.RespColone5_First.RespCol2.RC5_Goff,
  .stacks_in_9386.RespColone5_First.RespCol2.RC5_S.RC5_Goff {
    float: left;
    width: 100%;
    margin: 0 auto 10px auto;
  }
}
@media (max-width: 600px) {
  .stacks_in_9386.RC5.RC5_LL.RespCol2,
  .stacks_in_9386.RC5.RC5_LF.RespCol2,
  .stacks_in_9386.RC5.RC5_LL.RespCol1,
  .stacks_in_9386.RC5.RC5_LF.RespCol1,
  .stacks_in_9386.RC5_S.RC5_LL.RespCol2,
  .stacks_in_9386.RC5_S.RC5_LF.RespCol2,
  .stacks_in_9386.RC5_S.RC5_LL.RespCol1,
  .stacks_in_9386.RC5_S.RC5_LF.RespCol1 {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
  .stacks_in_9386.RC5.RC5_Goff,
  .stacks_in_9386.RC5_S.RC5_Goff,
  .stacks_in_9386.RC5_LL.RespCol2.RC5_Goff {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
}

/***************************************  6 COLUMN **********************************/

.stacks_in_9386.RC6_L,
.stacks_in_9386.RC6_L1 {
  float: left;
}
.stacks_in_9386.RC6_R,
.stacks_in_9386.RC6_R1 {
  float: left;
}
.stacks_in_9386.RC6 {
  width: 15%;
  width: calc(100%/6 - 1%*1.68);
}
.stacks_in_9386.RC6_S {
  width: 15.2%;
}
.stacks_in_9386.RC6_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_9386.RC6_LF,
.stacks_in_9386.RC6_LL,
.stacks_in_9386.RC6_RF,
.stacks_in_9386.RC6_RL {
  margin: 0 1% 10px 1%;
}
.stacks_in_9386.RC6_L1 {
  margin: 0 1% 10px 0;
}
.stacks_in_9386.RC6_R1 {
  margin: 0 0 10px 1%;
}
/*@media (max-width: 1099px) {
  .stacks_in_9386.RC6_S {
    width: 15%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_9386.RC6,
  .stacks_in_9386.RC6_S {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_9386.RC6_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_9386.RC6_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_9386.RC6.RC6_Goff,
  .stacks_in_9386.RC6_S.RC6_Goff,
  .stacks_in_9386.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
  .stacks_in_9386.RC6_L1.RC6_LF.RC6_S.RC6_Goff {
    width:50%;
  }
  .stacks_in_9386.RC6_LF.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_9386.RC6_LL.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 600px) {
  .stacks_in_9386.RC6,
  .stacks_in_9386.RC6_S {
    width: 100% !important;
    margin: 0 0 10px 0 !important;
  }
}

#stacks_in_9391 {
	padding: 0px 0px 0px 50px;
}

#stacks_out_9391 {
	width: 49%;
	margin-left:0;
}

#stacks_in_6869 {
	padding: 0px 50px 0px 0px;
}

#stacks_out_6869 {
	width: 20%;
	margin-right:0;
}
/*Archetypon Parallax*/
#block2 a:link{
	color: #CCCCCC;
}
#block2 a:visited{
	color: #FFFFFF;
}
#block2 a:hover{
	color: #FFFFFF;
}
#block2 .story {margin-top: 0%}

#block2 {background: transparent !important}

/**********handheld images**********/

/*desktops*/
@media screen and (min-width: 1024px) {
  #block2 {
      background-image: url(0);
      background-repeat: no-repeat;
  }
}

/*ipad portrait*/
@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation:portrait) {
  #block2 {
      background-image: url(0)!important;
      background-repeat: no-repeat!important;
  }
}

/*ipad landscape*/
@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation:landscape) {
  #block2 {
      background-image: url(0)!important;
      background-repeat: no-repeat!important;
  }
}

/*iphone*/
@media only screen and (max-width: 480px){
    #block2 {
        background-image: url(0)!important;
        background-repeat: no-repeat!important;
    }
}
#stacks_in_94 {
	border: solid rgba(197, 133, 46, 1.00);
	border-width: 2px 0px 0px 0px;
}
/*
 * Responsive Columns
 * Version: 1.0.6
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns & 1-3 rows
 */
/***************************************  MASTER CONTROL **********************************/
.R_C{
  box-sizing: border-box;
}
#stacks_in_9604 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_9604.R_C.RC_Img img{
  width: 100%;
  height: auto;
  max-width:100;
  margin:0 auto;
  display:block;
}
/***************************************  NO GUTTER **********************************/
/***************** 1 Non   **************/

/***************** 2 Non   *********************/

.stacks_in_9604.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


}
.stacks_in_9604.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 50%;

  float:left;
}

/****************  3 Non ******************/

.stacks_in_9604.RC3_L.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

}
.stacks_in_9604.RC3_R.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

  float:left;
}
.stacks_in_9604.RC3_RS.RC3_Goff {
  width: calc(100%/3);
  width: 0.2%;

  float: left;
}
.stacks_in_9604.RC3_M.RC3_Goff {
  margin: 0 0% 10px 0%;
  width: calc(100%/3);
  width: 100%;

}

/****************  4 Non ******************/

.stacks_in_9604.RC4.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
.stacks_in_9604.RC4_S.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
/*
.stacks_in_9604.RC4_R.RC4_LL2.RC4_Goff {
  width: 25.1%;
  width: calc(100%/4);
  float: left;
}
*/
.stacks_in_9604.RC4_LF.RC4_Goff, .stacks_in_9604.RC4_LL.RC4_Goff, .stacks_in_9604.RC4_LF2.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_9604.RC4_LF.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_9604.RC4_LL2.RC4_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
  .stacks_in_9604.RC4_R.RC4_LL2.RC4_S.RC4_Goff{
    float: left;
    width: 25%;
    width: calc(100%/4);
  }
}*/

/****************  5 Non ******************/

.stacks_in_9604.RC5.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

  float:left;
}
.stacks_in_9604.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

}
.stacks_in_9604.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20.3%;

}
.stacks_in_9604.RC5_M.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_9604.RC5_LF.RC5_Goff, .stacks_in_9604.RC5_LL.RC5_Goff, .stacks_in_9604.RC5_RF.RC5_Goff, .stacks_in_9604.RC5_RL.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_9604.RespColone5_First.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_9604.RespColone5_Last.RC5_Goff {
  margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_9604.RC6.RC6_Goff {
  width: 16.66%;
}
.stacks_in_9604.RC6_S.RC6_Goff {
  width: 16.69%;
}
.stacks_in_9604.RC6_R1.RC6_LL.RC6_S.RC6_Goff, stacks_in_9604.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
  width: 17%;
}
.stacks_in_9604.RC6_M.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_9604.RC6_LF.RC6_Goff,
.stacks_in_9604.RC6_LL.RC6_Goff,
.stacks_in_9604.RC6_RF.RC6_Goff,
.stacks_in_9604.RC6_RL.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_9604.RC6_L1.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_9604.RC6_R1.RC6_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
    .stacks_in_9604.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
    .stacks_in_9604.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
      width: 16.6%;
  }
}*/

/***************************************  1 COLUMN **********************************/

.stacks_in_9604.ResponsiveCol1_L {
  width: 100%;
  margin: 0 0 10px 0;
}

.stacks_in_9604.maxWToggle{
  max-width:500px;
  margin:0 auto;
}

.stacks_in_9604.RC_PaddingOn.UsePix {
  padding: 10px 0;
}

.stacks_in_9604.RC_PaddingOn.UsePerc {
  padding: 10% 0;
}

@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_9604.ResponsiveCol1_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  2 COLUMN **********************************/

.stacks_in_9604.ResponsiveCol2_L {
  float: left;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
.stacks_in_9604.ResponsiveCol2_R {
  float: right;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_9604.ResponsiveCol2_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9604.ResponsiveCol2_R {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9604.ResponsiveCol2_L.RC2_Goff {
    width: 100%;
    margin:0 0 10px 0;
  }
  .stacks_in_9604.ResponsiveCol2_R.RC2_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  3 COLUMN **********************************/

.stacks_in_9604.RC3_L {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;

}
.stacks_in_9604.RC3_M {
  float: left;
  margin: 0 2% 10px 2%;
  width: 98%;
  width: calc(100%/3 - 1.2% );
}

.stacks_in_9604.RC3_R {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;
}

@media (max-width: 800px) {

  /*  ============ LARGE BOTTOM ================== */

  .stacks_in_9604.RC3_L.RespCol1 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_9604.RC3_M.RespCol1 {
    float: right;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_9604.RC3_R.RespCol1,
  .stacks_in_9604.RC3_RS.RespCol1 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9604.RC3_L.RespCol1.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9604.RC3_M.RespCol1.RC3_Goff  {
    float: right;
    width: %(50  0)%%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9604.RC3_R.RespCol1.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9604.RC3_RS.RespCol1.RC3_Goff  {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_9604.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9604.RC3_M.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_9604.RC3_R.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_9604.RC3_RS.RespCol2 {
    float: left;
    width: 49%;
    margin: 0 0 10px 1%;
  }
  .stacks_in_9604.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9604.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9604.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9604.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }

}
@media (max-width: 600px){
  .stacks_in_9604.RC3_L,
  .stacks_in_9604.RC3_R.RespCol2,
  .stacks_in_9604.RC3_R,
  .stacks_in_9604.RC3_R.RespCol1,
  .stacks_in_9604.RC3_RS.RespCol2,
  .stacks_in_9604.RC3_RS.RespCol3 {
    float: left !important;
    width: 100% !important;
    margin: 0 0 10px 0!important;
  }
  .stacks_in_9604.RC3_RS.RC3_Goff {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
  .stacks_in_9604.RC3_M {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
}

/***************************************  4 COLUMN **********************************/

.stacks_in_9604.RC4_L {
  float: left;
}
.stacks_in_9604.RC4_R {
  float: left;
}
.stacks_in_9604.RC4 {
  width: 23.5%;
  width: calc(100%/4 - 1%*1.5);
}
.stacks_in_9604.RC4_S {
  width: 23.6%;
}
.stacks_in_9604.RC4_LF,
.stacks_in_9604.RC4_LL,
.stacks_in_9604.RC4_LF2 {
  margin: 0 1% 10px 1%;
}
.stacks_in_9604.RC4_LF {
  margin: 0 1% 10px 0;
}
.stacks_in_9604.RC4_LL2 {
  margin: 0 0 10px 1%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_9604.RC4_S{
    width: 23.5%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_9604.RC4 {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_9604.RC4_S {
    width: 49%;
  }
  .stacks_in_9604.RC4_LF {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_9604.RC4_LL {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_9604.RC4_LF2 {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_9604.RC4_LL2 {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_9604.RC4_R {
    float:left;
  }
  .stacks_in_9604.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_9604.RC4_S.RC4_Goff,
  .stacks_in_9604.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_9604.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_9604.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_9604.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_9604.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
}

@media (max-width: 600px){
  .stacks_in_9604.RC4 {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9604.RC4_S {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9604.RC4.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_9604.RC4_S.RC4_Goff,
  .stacks_in_9604.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  5 COLUMN **********************************/

.stacks_in_9604.RC5_L {
  float: left;
}
.stacks_in_9604.RC5_R {
  float: left;
}
.stacks_in_9604.RC5 {
  width: 18.4%;
  width: calc(100%/5 - 1%*1.6);
}
.stacks_in_9604.RC5_S {
  width: 18.4%;
}
.stacks_in_9604.RC5_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_9604.RC5_LF,
.stacks_in_9604.RC5_LL,
.stacks_in_9604.RC5_RF,
.stacks_in_9604.RC5_RL {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_9604.RespColone5_First {
  margin: 0 1% 10px 0;
}
.stacks_in_9604.RespColone5_Last {
  float:left;
  margin: 0 0 10px 1%;
}
@media (max-width: 800px) {
  .stacks_in_9604.RC5, .stacks_in_9604.RC5_S {
    width: 49%;
  }
  .stacks_in_9604.RC5_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_9604.RC5_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_9604.RC5.RespColone5_Last,
  .stacks_in_9604.RC5_S.RespColone5_Last {
    float: left;
    width: 99.8% ;
    margin: 0 auto 10px auto;
  }
  .stacks_in_9604.RC5.RC5_Goff {
    width: 50%;
  }
  .stacks_in_9604.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_9604.RC5_LF.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_9604.RC5_LL.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_9604.RespColone5_Last.RC5_Goff,
  .stacks_in_9604.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
    float: left;
    width: 100% ;
    margin: 0 auto 10px auto;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_9604.RC5.RespCol2,
  .stacks_in_9604.RC5_S.RespCol2 {
    width: 49%;
  }
  .stacks_in_9604.RC5_LF.RespCol2,
  .stacks_in_9604.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_9604.RC5_LL.RespCol2 {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_9604.RC5.RespColone5_First.RespCol2,
  .stacks_in_9604.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 10px auto;
  }
  .stacks_in_9604.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_9604.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_9604.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_9604.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_9604.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;

  }
  .stacks_in_9604.RC5_LL.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_9604.RespColone5_First.RespCol2.RC5_Goff,
  .stacks_in_9604.RespColone5_First.RespCol2.RC5_S.RC5_Goff {
    float: left;
    width: 100%;
    margin: 0 auto 10px auto;
  }
}
@media (max-width: 600px) {
  .stacks_in_9604.RC5.RC5_LL.RespCol2,
  .stacks_in_9604.RC5.RC5_LF.RespCol2,
  .stacks_in_9604.RC5.RC5_LL.RespCol1,
  .stacks_in_9604.RC5.RC5_LF.RespCol1,
  .stacks_in_9604.RC5_S.RC5_LL.RespCol2,
  .stacks_in_9604.RC5_S.RC5_LF.RespCol2,
  .stacks_in_9604.RC5_S.RC5_LL.RespCol1,
  .stacks_in_9604.RC5_S.RC5_LF.RespCol1 {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
  .stacks_in_9604.RC5.RC5_Goff,
  .stacks_in_9604.RC5_S.RC5_Goff,
  .stacks_in_9604.RC5_LL.RespCol2.RC5_Goff {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
}

/***************************************  6 COLUMN **********************************/

.stacks_in_9604.RC6_L,
.stacks_in_9604.RC6_L1 {
  float: left;
}
.stacks_in_9604.RC6_R,
.stacks_in_9604.RC6_R1 {
  float: left;
}
.stacks_in_9604.RC6 {
  width: 15%;
  width: calc(100%/6 - 1%*1.68);
}
.stacks_in_9604.RC6_S {
  width: 15.2%;
}
.stacks_in_9604.RC6_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_9604.RC6_LF,
.stacks_in_9604.RC6_LL,
.stacks_in_9604.RC6_RF,
.stacks_in_9604.RC6_RL {
  margin: 0 1% 10px 1%;
}
.stacks_in_9604.RC6_L1 {
  margin: 0 1% 10px 0;
}
.stacks_in_9604.RC6_R1 {
  margin: 0 0 10px 1%;
}
/*@media (max-width: 1099px) {
  .stacks_in_9604.RC6_S {
    width: 15%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_9604.RC6,
  .stacks_in_9604.RC6_S {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_9604.RC6_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_9604.RC6_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_9604.RC6.RC6_Goff,
  .stacks_in_9604.RC6_S.RC6_Goff,
  .stacks_in_9604.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
  .stacks_in_9604.RC6_L1.RC6_LF.RC6_S.RC6_Goff {
    width:50%;
  }
  .stacks_in_9604.RC6_LF.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_9604.RC6_LL.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 600px) {
  .stacks_in_9604.RC6,
  .stacks_in_9604.RC6_S {
    width: 100% !important;
    margin: 0 0 10px 0 !important;
  }
}

#stacks_in_9817 {
	padding: 0px 0px 0px 50px;
}

#stacks_in_9608 {
	padding: 0px 50px 0px 0px;
}

#stacks_in_8933 {
	border: solid rgba(197, 133, 46, 1.00);
	border-width: 2px 0px 0px 0px;
}
/*Archetypon Parallax*/
#block3 a:link{
	color: #CCCCCC;
}
#block3 a:visited{
	color: #FFFFFF;
}
#block3 a:hover{
	color: #FFFFFF;
}
#block3 .story {margin-top: 0%}

#block3 {background: transparent !important}

/**********handheld images**********/

/*desktops*/
@media screen and (min-width: 1024px) {
  #block3 {
      background-image: url(0);
      background-repeat: no-repeat;
  }
}

/*ipad portrait*/
@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation:portrait) {
  #block3 {
      background-image: url(0)!important;
      background-repeat: no-repeat!important;
  }
}

/*ipad landscape*/
@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation:landscape) {
  #block3 {
      background-image: url(0)!important;
      background-repeat: no-repeat!important;
  }
}

/*iphone*/
@media only screen and (max-width: 480px){
    #block3 {
        background-image: url(0)!important;
        background-repeat: no-repeat!important;
    }
}
#stacks_in_2614 {
	padding: 0px 0px 0px 10px;
}

#stacks_in_2616 {
	font-size: 70%;
}

#stacks_in_2617 {
	padding: 0px 0px 0px 50px;
}

#stacks_in_2618 {
	font-size: 99%;
	font-weight: lighter;
}

#stacks_in_2628 {
	font-size: 99%;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_9357.animated {
	animation-duration: 1500ms;
	animation-delay: 200ms;
}






#stacks_in_2636 {
	padding: 0px 0px 10px 50px;
}

#stacks_in_2638 {
	font-size: 99%;
	font-weight: lighter;
}

#stacks_in_2649 {
	font-size: 99%;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_9361.animated {
	animation-duration: 1500ms;
	animation-delay: 200ms;
}






#stacks_in_5145 {
	padding: 0px 0px 10px 50px;
}

#stacks_in_5146 {
	font-size: 99%;
}

#stacks_in_5571 {
	font-size: 99%;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_9365.animated {
	animation-duration: 1500ms;
	animation-delay: 200ms;
}






#stacks_in_5579 {
	padding: 0px 0px 10px 50px;
}

#stacks_in_5581 {
	font-size: 99%;
	font-weight: lighter;
}

#stacks_in_2670 {
	font-size: 99%;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_9367.animated {
	animation-duration: 1500ms;
	animation-delay: 200ms;
}






#stacks_in_2678 {
	padding: 0px 0px 10px 50px;
}

#stacks_in_2680 {
	font-size: 99%;
}

#stacks_in_2691 {
	font-size: 99%;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_9369.animated {
	animation-duration: 1500ms;
	animation-delay: 200ms;
}






#stacks_in_2699 {
	padding: 0px 0px 10px 50px;
}

#stacks_in_2701 {
	font-size: 99%;
	font-weight: lighter;
}

#stacks_in_2712 {
	font-size: 99%;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_9371.animated {
	animation-duration: 1500ms;
	animation-delay: 200ms;
}






#stacks_in_2720 {
	padding: 0px 0px 10px 50px;
}

#stacks_in_2722 {
	font-size: 99%;
	font-weight: lighter;
}

#stacks_in_2733 {
	font-size: 99%;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_9373.animated {
	animation-duration: 1500ms;
	animation-delay: 200ms;
}






#stacks_in_2741 {
	padding: 0px 0px 10px 50px;
}

#stacks_in_2743 {
	font-size: 99%;
}

#stacks_in_2754 {
	font-size: 99%;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_9375.animated {
	animation-duration: 1500ms;
	animation-delay: 200ms;
}






#stacks_in_2762 {
	padding: 0px 0px 10px 50px;
}

#stacks_in_2764 {
	font-size: 99%;
	font-weight: lighter;
}

#stacks_in_2775 {
	font-size: 99%;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_9377.animated {
	animation-duration: 1500ms;
	animation-delay: 200ms;
}






#stacks_in_2783 {
	padding: 0px 0px 10px 50px;
}

#stacks_in_2785 {
	font-size: 99%;
	font-weight: lighter;
}
/*Archetypon Parallax*/
#block1 a:link{
	color: #CCCCCC;
}
#block1 a:visited{
	color: #FFFFFF;
}
#block1 a:hover{
	color: #FFFFFF;
}
#block1 .story {margin-top: 0%}

#block1 {}

/**********handheld images**********/

/*desktops*/
@media screen and (min-width: 1024px) {
  #block1 {
      background-image: url(0);
      background-repeat: no-repeat;
  }
}

/*ipad portrait*/
@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation:portrait) {
  #block1 {
      background-image: url(0)!important;
      background-repeat: no-repeat!important;
  }
}

/*ipad landscape*/
@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation:landscape) {
  #block1 {
      background-image: url(0)!important;
      background-repeat: no-repeat!important;
  }
}

/*iphone*/
@media only screen and (max-width: 480px){
    #block1 {
        background-image: url(0)!important;
        background-repeat: no-repeat!important;
    }
}/*Archetypon Parallax*/
#block3 a:link{
	color: #CCCCCC;
}
#block3 a:visited{
	color: #FFFFFF;
}
#block3 a:hover{
	color: #FFFFFF;
}
#block3 .story {margin-top: 0%}

#block3 {background: transparent !important}

/**********handheld images**********/

/*desktops*/
@media screen and (min-width: 1024px) {
  #block3 {
      background-image: url(0);
      background-repeat: no-repeat;
  }
}

/*ipad portrait*/
@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation:portrait) {
  #block3 {
      background-image: url(0)!important;
      background-repeat: no-repeat!important;
  }
}

/*ipad landscape*/
@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation:landscape) {
  #block3 {
      background-image: url(0)!important;
      background-repeat: no-repeat!important;
  }
}

/*iphone*/
@media only screen and (max-width: 480px){
    #block3 {
        background-image: url(0)!important;
        background-repeat: no-repeat!important;
    }
}
#stacks_in_280 {
	padding: 0px 0px 0px 50px;
}

#stacks_in_282 {
	font-size: 99%;
}

#stacks_in_283 {
	padding: 0px 0px 0px 50px;
}

#stacks_in_284 {
	font-size: 99%;
	font-weight: lighter;
}
/*
 * Responsive Columns
 * Version: 1.0.6
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns & 1-3 rows
 */
/***************************************  MASTER CONTROL **********************************/
.R_C{
  box-sizing: border-box;
}
#stacks_in_8935 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_8935.R_C.RC_Img img{
  width: 100%;
  height: auto;
  max-width:100;
  margin:0 auto;
  display:block;
}
/***************************************  NO GUTTER **********************************/
/***************** 1 Non   **************/

/***************** 2 Non   *********************/

.stacks_in_8935.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


}
.stacks_in_8935.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 50%;

  float:left;
}

/****************  3 Non ******************/

.stacks_in_8935.RC3_L.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

}
.stacks_in_8935.RC3_R.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

  float:left;
}
.stacks_in_8935.RC3_RS.RC3_Goff {
  width: calc(100%/3);
  width: 0.2%;

  float: left;
}
.stacks_in_8935.RC3_M.RC3_Goff {
  margin: 0 0% 10px 0%;
  width: calc(100%/3);
  width: 100%;

}

/****************  4 Non ******************/

.stacks_in_8935.RC4.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
.stacks_in_8935.RC4_S.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
/*
.stacks_in_8935.RC4_R.RC4_LL2.RC4_Goff {
  width: 25.1%;
  width: calc(100%/4);
  float: left;
}
*/
.stacks_in_8935.RC4_LF.RC4_Goff, .stacks_in_8935.RC4_LL.RC4_Goff, .stacks_in_8935.RC4_LF2.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_8935.RC4_LF.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_8935.RC4_LL2.RC4_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
  .stacks_in_8935.RC4_R.RC4_LL2.RC4_S.RC4_Goff{
    float: left;
    width: 25%;
    width: calc(100%/4);
  }
}*/

/****************  5 Non ******************/

.stacks_in_8935.RC5.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

  float:left;
}
.stacks_in_8935.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

}
.stacks_in_8935.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20.3%;

}
.stacks_in_8935.RC5_M.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_8935.RC5_LF.RC5_Goff, .stacks_in_8935.RC5_LL.RC5_Goff, .stacks_in_8935.RC5_RF.RC5_Goff, .stacks_in_8935.RC5_RL.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_8935.RespColone5_First.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_8935.RespColone5_Last.RC5_Goff {
  margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_8935.RC6.RC6_Goff {
  width: 16.66%;
}
.stacks_in_8935.RC6_S.RC6_Goff {
  width: 16.69%;
}
.stacks_in_8935.RC6_R1.RC6_LL.RC6_S.RC6_Goff, stacks_in_8935.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
  width: 17%;
}
.stacks_in_8935.RC6_M.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_8935.RC6_LF.RC6_Goff,
.stacks_in_8935.RC6_LL.RC6_Goff,
.stacks_in_8935.RC6_RF.RC6_Goff,
.stacks_in_8935.RC6_RL.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_8935.RC6_L1.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_8935.RC6_R1.RC6_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
    .stacks_in_8935.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
    .stacks_in_8935.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
      width: 16.6%;
  }
}*/

/***************************************  1 COLUMN **********************************/

.stacks_in_8935.ResponsiveCol1_L {
  width: 100%;
  margin: 0 0 10px 0;
}

.stacks_in_8935.maxWToggle{
  max-width:500px;
  margin:0 auto;
}

.stacks_in_8935.RC_PaddingOn.UsePix {
  padding: 10px 0;
}

.stacks_in_8935.RC_PaddingOn.UsePerc {
  padding: 10% 0;
}

@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_8935.ResponsiveCol1_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  2 COLUMN **********************************/

.stacks_in_8935.ResponsiveCol2_L {
  float: left;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
.stacks_in_8935.ResponsiveCol2_R {
  float: right;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_8935.ResponsiveCol2_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8935.ResponsiveCol2_R {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8935.ResponsiveCol2_L.RC2_Goff {
    width: 100%;
    margin:0 0 10px 0;
  }
  .stacks_in_8935.ResponsiveCol2_R.RC2_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  3 COLUMN **********************************/

.stacks_in_8935.RC3_L {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;

}
.stacks_in_8935.RC3_M {
  float: left;
  margin: 0 2% 10px 2%;
  width: 98%;
  width: calc(100%/3 - 1.2% );
}

.stacks_in_8935.RC3_R {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;
}

@media (max-width: 800px) {

  /*  ============ LARGE BOTTOM ================== */

  .stacks_in_8935.RC3_L.RespCol1 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_8935.RC3_M.RespCol1 {
    float: right;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_8935.RC3_R.RespCol1,
  .stacks_in_8935.RC3_RS.RespCol1 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8935.RC3_L.RespCol1.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8935.RC3_M.RespCol1.RC3_Goff  {
    float: right;
    width: %(50  0)%%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8935.RC3_R.RespCol1.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8935.RC3_RS.RespCol1.RC3_Goff  {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_8935.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8935.RC3_M.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_8935.RC3_R.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_8935.RC3_RS.RespCol2 {
    float: left;
    width: 49%;
    margin: 0 0 10px 1%;
  }
  .stacks_in_8935.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8935.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8935.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8935.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }

}
@media (max-width: 600px){
  .stacks_in_8935.RC3_L,
  .stacks_in_8935.RC3_R.RespCol2,
  .stacks_in_8935.RC3_R,
  .stacks_in_8935.RC3_R.RespCol1,
  .stacks_in_8935.RC3_RS.RespCol2,
  .stacks_in_8935.RC3_RS.RespCol3 {
    float: left !important;
    width: 100% !important;
    margin: 0 0 10px 0!important;
  }
  .stacks_in_8935.RC3_RS.RC3_Goff {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
  .stacks_in_8935.RC3_M {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
}

/***************************************  4 COLUMN **********************************/

.stacks_in_8935.RC4_L {
  float: left;
}
.stacks_in_8935.RC4_R {
  float: left;
}
.stacks_in_8935.RC4 {
  width: 23.5%;
  width: calc(100%/4 - 1%*1.5);
}
.stacks_in_8935.RC4_S {
  width: 23.6%;
}
.stacks_in_8935.RC4_LF,
.stacks_in_8935.RC4_LL,
.stacks_in_8935.RC4_LF2 {
  margin: 0 1% 10px 1%;
}
.stacks_in_8935.RC4_LF {
  margin: 0 1% 10px 0;
}
.stacks_in_8935.RC4_LL2 {
  margin: 0 0 10px 1%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_8935.RC4_S{
    width: 23.5%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_8935.RC4 {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_8935.RC4_S {
    width: 49%;
  }
  .stacks_in_8935.RC4_LF {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_8935.RC4_LL {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_8935.RC4_LF2 {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_8935.RC4_LL2 {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_8935.RC4_R {
    float:left;
  }
  .stacks_in_8935.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_8935.RC4_S.RC4_Goff,
  .stacks_in_8935.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_8935.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_8935.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_8935.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_8935.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
}

@media (max-width: 600px){
  .stacks_in_8935.RC4 {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8935.RC4_S {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8935.RC4.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8935.RC4_S.RC4_Goff,
  .stacks_in_8935.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  5 COLUMN **********************************/

.stacks_in_8935.RC5_L {
  float: left;
}
.stacks_in_8935.RC5_R {
  float: left;
}
.stacks_in_8935.RC5 {
  width: 18.4%;
  width: calc(100%/5 - 1%*1.6);
}
.stacks_in_8935.RC5_S {
  width: 18.4%;
}
.stacks_in_8935.RC5_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_8935.RC5_LF,
.stacks_in_8935.RC5_LL,
.stacks_in_8935.RC5_RF,
.stacks_in_8935.RC5_RL {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_8935.RespColone5_First {
  margin: 0 1% 10px 0;
}
.stacks_in_8935.RespColone5_Last {
  float:left;
  margin: 0 0 10px 1%;
}
@media (max-width: 800px) {
  .stacks_in_8935.RC5, .stacks_in_8935.RC5_S {
    width: 49%;
  }
  .stacks_in_8935.RC5_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_8935.RC5_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_8935.RC5.RespColone5_Last,
  .stacks_in_8935.RC5_S.RespColone5_Last {
    float: left;
    width: 99.8% ;
    margin: 0 auto 10px auto;
  }
  .stacks_in_8935.RC5.RC5_Goff {
    width: 50%;
  }
  .stacks_in_8935.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_8935.RC5_LF.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_8935.RC5_LL.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_8935.RespColone5_Last.RC5_Goff,
  .stacks_in_8935.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
    float: left;
    width: 100% ;
    margin: 0 auto 10px auto;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_8935.RC5.RespCol2,
  .stacks_in_8935.RC5_S.RespCol2 {
    width: 49%;
  }
  .stacks_in_8935.RC5_LF.RespCol2,
  .stacks_in_8935.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_8935.RC5_LL.RespCol2 {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_8935.RC5.RespColone5_First.RespCol2,
  .stacks_in_8935.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 10px auto;
  }
  .stacks_in_8935.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_8935.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_8935.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_8935.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_8935.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;

  }
  .stacks_in_8935.RC5_LL.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_8935.RespColone5_First.RespCol2.RC5_Goff,
  .stacks_in_8935.RespColone5_First.RespCol2.RC5_S.RC5_Goff {
    float: left;
    width: 100%;
    margin: 0 auto 10px auto;
  }
}
@media (max-width: 600px) {
  .stacks_in_8935.RC5.RC5_LL.RespCol2,
  .stacks_in_8935.RC5.RC5_LF.RespCol2,
  .stacks_in_8935.RC5.RC5_LL.RespCol1,
  .stacks_in_8935.RC5.RC5_LF.RespCol1,
  .stacks_in_8935.RC5_S.RC5_LL.RespCol2,
  .stacks_in_8935.RC5_S.RC5_LF.RespCol2,
  .stacks_in_8935.RC5_S.RC5_LL.RespCol1,
  .stacks_in_8935.RC5_S.RC5_LF.RespCol1 {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
  .stacks_in_8935.RC5.RC5_Goff,
  .stacks_in_8935.RC5_S.RC5_Goff,
  .stacks_in_8935.RC5_LL.RespCol2.RC5_Goff {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
}

/***************************************  6 COLUMN **********************************/

.stacks_in_8935.RC6_L,
.stacks_in_8935.RC6_L1 {
  float: left;
}
.stacks_in_8935.RC6_R,
.stacks_in_8935.RC6_R1 {
  float: left;
}
.stacks_in_8935.RC6 {
  width: 15%;
  width: calc(100%/6 - 1%*1.68);
}
.stacks_in_8935.RC6_S {
  width: 15.2%;
}
.stacks_in_8935.RC6_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_8935.RC6_LF,
.stacks_in_8935.RC6_LL,
.stacks_in_8935.RC6_RF,
.stacks_in_8935.RC6_RL {
  margin: 0 1% 10px 1%;
}
.stacks_in_8935.RC6_L1 {
  margin: 0 1% 10px 0;
}
.stacks_in_8935.RC6_R1 {
  margin: 0 0 10px 1%;
}
/*@media (max-width: 1099px) {
  .stacks_in_8935.RC6_S {
    width: 15%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_8935.RC6,
  .stacks_in_8935.RC6_S {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_8935.RC6_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_8935.RC6_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_8935.RC6.RC6_Goff,
  .stacks_in_8935.RC6_S.RC6_Goff,
  .stacks_in_8935.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
  .stacks_in_8935.RC6_L1.RC6_LF.RC6_S.RC6_Goff {
    width:50%;
  }
  .stacks_in_8935.RC6_LF.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_8935.RC6_LL.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 600px) {
  .stacks_in_8935.RC6,
  .stacks_in_8935.RC6_S {
    width: 100% !important;
    margin: 0 0 10px 0 !important;
  }
}

/* Preview and publish styling */


#animateItWrapperstacks_in_8234.animated {
	animation-duration: 2000ms;
	animation-delay: 200ms;
}






#stacks_in_8235 {
	margin: 0px 10px 5px 0px;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_8239.animated {
	animation-duration: 1500ms;
	animation-delay: 0ms;
}






#stacks_in_8240 {
	margin: 0px 0px 5px 0px;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_8245.animated {
	animation-duration: 1500ms;
	animation-delay: 100ms;
}






#stacks_in_8246 {
	margin: 0px 10px 5px 0px;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_5173.animated {
	animation-duration: 1000ms;
	animation-delay: 100ms;
}






#stacks_in_8265 {
	margin:  10px;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_8256.animated {
	animation-duration: 1000ms;
	animation-delay: 100ms;
}






#stacks_in_8257 {
	margin: 0px 10px 5px 0px;
}

/* Preview and publish styling */


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






#stacks_in_5162 {
	margin: 0px 0px 5px 10px;
}
/*
 * Responsive Columns
 * Version: 1.0.6
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns & 1-3 rows
 */
/***************************************  MASTER CONTROL **********************************/
.R_C{
  box-sizing: border-box;
}
#stacks_in_8951 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_8951.R_C.RC_Img img{
  width: 100%;
  height: auto;
  max-width:100;
  margin:0 auto;
  display:block;
}
/***************************************  NO GUTTER **********************************/
/***************** 1 Non   **************/

/***************** 2 Non   *********************/

.stacks_in_8951.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


}
.stacks_in_8951.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 50%;

  float:left;
}

/****************  3 Non ******************/

.stacks_in_8951.RC3_L.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

}
.stacks_in_8951.RC3_R.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

  float:left;
}
.stacks_in_8951.RC3_RS.RC3_Goff {
  width: calc(100%/3);
  width: 0.2%;

  float: left;
}
.stacks_in_8951.RC3_M.RC3_Goff {
  margin: 0 0% 10px 0%;
  width: calc(100%/3);
  width: 100%;

}

/****************  4 Non ******************/

.stacks_in_8951.RC4.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
.stacks_in_8951.RC4_S.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
/*
.stacks_in_8951.RC4_R.RC4_LL2.RC4_Goff {
  width: 25.1%;
  width: calc(100%/4);
  float: left;
}
*/
.stacks_in_8951.RC4_LF.RC4_Goff, .stacks_in_8951.RC4_LL.RC4_Goff, .stacks_in_8951.RC4_LF2.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_8951.RC4_LF.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_8951.RC4_LL2.RC4_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
  .stacks_in_8951.RC4_R.RC4_LL2.RC4_S.RC4_Goff{
    float: left;
    width: 25%;
    width: calc(100%/4);
  }
}*/

/****************  5 Non ******************/

.stacks_in_8951.RC5.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

  float:left;
}
.stacks_in_8951.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

}
.stacks_in_8951.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20.3%;

}
.stacks_in_8951.RC5_M.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_8951.RC5_LF.RC5_Goff, .stacks_in_8951.RC5_LL.RC5_Goff, .stacks_in_8951.RC5_RF.RC5_Goff, .stacks_in_8951.RC5_RL.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_8951.RespColone5_First.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_8951.RespColone5_Last.RC5_Goff {
  margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_8951.RC6.RC6_Goff {
  width: 16.66%;
}
.stacks_in_8951.RC6_S.RC6_Goff {
  width: 16.69%;
}
.stacks_in_8951.RC6_R1.RC6_LL.RC6_S.RC6_Goff, stacks_in_8951.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
  width: 17%;
}
.stacks_in_8951.RC6_M.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_8951.RC6_LF.RC6_Goff,
.stacks_in_8951.RC6_LL.RC6_Goff,
.stacks_in_8951.RC6_RF.RC6_Goff,
.stacks_in_8951.RC6_RL.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_8951.RC6_L1.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_8951.RC6_R1.RC6_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
    .stacks_in_8951.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
    .stacks_in_8951.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
      width: 16.6%;
  }
}*/

/***************************************  1 COLUMN **********************************/

.stacks_in_8951.ResponsiveCol1_L {
  width: 100%;
  margin: 0 0 10px 0;
}

.stacks_in_8951.maxWToggle{
  max-width:500px;
  margin:0 auto;
}

.stacks_in_8951.RC_PaddingOn.UsePix {
  padding: 10px 0;
}

.stacks_in_8951.RC_PaddingOn.UsePerc {
  padding: 10% 0;
}

@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_8951.ResponsiveCol1_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  2 COLUMN **********************************/

.stacks_in_8951.ResponsiveCol2_L {
  float: left;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
.stacks_in_8951.ResponsiveCol2_R {
  float: right;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_8951.ResponsiveCol2_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8951.ResponsiveCol2_R {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8951.ResponsiveCol2_L.RC2_Goff {
    width: 100%;
    margin:0 0 10px 0;
  }
  .stacks_in_8951.ResponsiveCol2_R.RC2_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  3 COLUMN **********************************/

.stacks_in_8951.RC3_L {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;

}
.stacks_in_8951.RC3_M {
  float: left;
  margin: 0 2% 10px 2%;
  width: 98%;
  width: calc(100%/3 - 1.2% );
}

.stacks_in_8951.RC3_R {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;
}

@media (max-width: 800px) {

  /*  ============ LARGE BOTTOM ================== */

  .stacks_in_8951.RC3_L.RespCol1 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_8951.RC3_M.RespCol1 {
    float: right;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_8951.RC3_R.RespCol1,
  .stacks_in_8951.RC3_RS.RespCol1 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8951.RC3_L.RespCol1.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8951.RC3_M.RespCol1.RC3_Goff  {
    float: right;
    width: %(50  0)%%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8951.RC3_R.RespCol1.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8951.RC3_RS.RespCol1.RC3_Goff  {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_8951.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8951.RC3_M.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_8951.RC3_R.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_8951.RC3_RS.RespCol2 {
    float: left;
    width: 49%;
    margin: 0 0 10px 1%;
  }
  .stacks_in_8951.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8951.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8951.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8951.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }

}
@media (max-width: 600px){
  .stacks_in_8951.RC3_L,
  .stacks_in_8951.RC3_R.RespCol2,
  .stacks_in_8951.RC3_R,
  .stacks_in_8951.RC3_R.RespCol1,
  .stacks_in_8951.RC3_RS.RespCol2,
  .stacks_in_8951.RC3_RS.RespCol3 {
    float: left !important;
    width: 100% !important;
    margin: 0 0 10px 0!important;
  }
  .stacks_in_8951.RC3_RS.RC3_Goff {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
  .stacks_in_8951.RC3_M {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
}

/***************************************  4 COLUMN **********************************/

.stacks_in_8951.RC4_L {
  float: left;
}
.stacks_in_8951.RC4_R {
  float: left;
}
.stacks_in_8951.RC4 {
  width: 23.5%;
  width: calc(100%/4 - 1%*1.5);
}
.stacks_in_8951.RC4_S {
  width: 23.6%;
}
.stacks_in_8951.RC4_LF,
.stacks_in_8951.RC4_LL,
.stacks_in_8951.RC4_LF2 {
  margin: 0 1% 10px 1%;
}
.stacks_in_8951.RC4_LF {
  margin: 0 1% 10px 0;
}
.stacks_in_8951.RC4_LL2 {
  margin: 0 0 10px 1%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_8951.RC4_S{
    width: 23.5%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_8951.RC4 {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_8951.RC4_S {
    width: 49%;
  }
  .stacks_in_8951.RC4_LF {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_8951.RC4_LL {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_8951.RC4_LF2 {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_8951.RC4_LL2 {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_8951.RC4_R {
    float:left;
  }
  .stacks_in_8951.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_8951.RC4_S.RC4_Goff,
  .stacks_in_8951.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_8951.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_8951.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_8951.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_8951.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
}

@media (max-width: 600px){
  .stacks_in_8951.RC4 {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8951.RC4_S {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8951.RC4.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_8951.RC4_S.RC4_Goff,
  .stacks_in_8951.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  5 COLUMN **********************************/

.stacks_in_8951.RC5_L {
  float: left;
}
.stacks_in_8951.RC5_R {
  float: left;
}
.stacks_in_8951.RC5 {
  width: 18.4%;
  width: calc(100%/5 - 1%*1.6);
}
.stacks_in_8951.RC5_S {
  width: 18.4%;
}
.stacks_in_8951.RC5_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_8951.RC5_LF,
.stacks_in_8951.RC5_LL,
.stacks_in_8951.RC5_RF,
.stacks_in_8951.RC5_RL {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_8951.RespColone5_First {
  margin: 0 1% 10px 0;
}
.stacks_in_8951.RespColone5_Last {
  float:left;
  margin: 0 0 10px 1%;
}
@media (max-width: 800px) {
  .stacks_in_8951.RC5, .stacks_in_8951.RC5_S {
    width: 49%;
  }
  .stacks_in_8951.RC5_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_8951.RC5_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_8951.RC5.RespColone5_Last,
  .stacks_in_8951.RC5_S.RespColone5_Last {
    float: left;
    width: 99.8% ;
    margin: 0 auto 10px auto;
  }
  .stacks_in_8951.RC5.RC5_Goff {
    width: 50%;
  }
  .stacks_in_8951.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_8951.RC5_LF.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_8951.RC5_LL.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_8951.RespColone5_Last.RC5_Goff,
  .stacks_in_8951.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
    float: left;
    width: 100% ;
    margin: 0 auto 10px auto;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_8951.RC5.RespCol2,
  .stacks_in_8951.RC5_S.RespCol2 {
    width: 49%;
  }
  .stacks_in_8951.RC5_LF.RespCol2,
  .stacks_in_8951.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_8951.RC5_LL.RespCol2 {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_8951.RC5.RespColone5_First.RespCol2,
  .stacks_in_8951.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 10px auto;
  }
  .stacks_in_8951.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_8951.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_8951.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_8951.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_8951.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;

  }
  .stacks_in_8951.RC5_LL.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_8951.RespColone5_First.RespCol2.RC5_Goff,
  .stacks_in_8951.RespColone5_First.RespCol2.RC5_S.RC5_Goff {
    float: left;
    width: 100%;
    margin: 0 auto 10px auto;
  }
}
@media (max-width: 600px) {
  .stacks_in_8951.RC5.RC5_LL.RespCol2,
  .stacks_in_8951.RC5.RC5_LF.RespCol2,
  .stacks_in_8951.RC5.RC5_LL.RespCol1,
  .stacks_in_8951.RC5.RC5_LF.RespCol1,
  .stacks_in_8951.RC5_S.RC5_LL.RespCol2,
  .stacks_in_8951.RC5_S.RC5_LF.RespCol2,
  .stacks_in_8951.RC5_S.RC5_LL.RespCol1,
  .stacks_in_8951.RC5_S.RC5_LF.RespCol1 {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
  .stacks_in_8951.RC5.RC5_Goff,
  .stacks_in_8951.RC5_S.RC5_Goff,
  .stacks_in_8951.RC5_LL.RespCol2.RC5_Goff {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
}

/***************************************  6 COLUMN **********************************/

.stacks_in_8951.RC6_L,
.stacks_in_8951.RC6_L1 {
  float: left;
}
.stacks_in_8951.RC6_R,
.stacks_in_8951.RC6_R1 {
  float: left;
}
.stacks_in_8951.RC6 {
  width: 15%;
  width: calc(100%/6 - 1%*1.68);
}
.stacks_in_8951.RC6_S {
  width: 15.2%;
}
.stacks_in_8951.RC6_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_8951.RC6_LF,
.stacks_in_8951.RC6_LL,
.stacks_in_8951.RC6_RF,
.stacks_in_8951.RC6_RL {
  margin: 0 1% 10px 1%;
}
.stacks_in_8951.RC6_L1 {
  margin: 0 1% 10px 0;
}
.stacks_in_8951.RC6_R1 {
  margin: 0 0 10px 1%;
}
/*@media (max-width: 1099px) {
  .stacks_in_8951.RC6_S {
    width: 15%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_8951.RC6,
  .stacks_in_8951.RC6_S {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_8951.RC6_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_8951.RC6_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_8951.RC6.RC6_Goff,
  .stacks_in_8951.RC6_S.RC6_Goff,
  .stacks_in_8951.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
  .stacks_in_8951.RC6_L1.RC6_LF.RC6_S.RC6_Goff {
    width:50%;
  }
  .stacks_in_8951.RC6_LF.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_8951.RC6_LL.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 600px) {
  .stacks_in_8951.RC6,
  .stacks_in_8951.RC6_S {
    width: 100% !important;
    margin: 0 0 10px 0 !important;
  }
}

/* Preview and publish styling */


#animateItWrapperstacks_in_5183.animated {
	animation-duration: 1500ms;
	animation-delay: 200ms;
}






#stacks_in_5184 {
	margin: 0px 0px 5px 10px;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_5203.animated {
	animation-duration: 1500ms;
	animation-delay: 200ms;
}






#stacks_in_5204 {
	margin: 0px 0px 5px 10px;
}

#stacks_in_5206 {
	font-size: 99%;
}
/*Archetypon Parallax*/
#block1 a:link{
	color: #CCCCCC;
}
#block1 a:visited{
	color: #FFFFFF;
}
#block1 a:hover{
	color: #FFFFFF;
}
#block1 .story {margin-top: 0%}

#block1 {}

/**********handheld images**********/

/*desktops*/
@media screen and (min-width: 1024px) {
  #block1 {
      background-image: url(0);
      background-repeat: no-repeat;
  }
}

/*ipad portrait*/
@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation:portrait) {
  #block1 {
      background-image: url(0)!important;
      background-repeat: no-repeat!important;
  }
}

/*ipad landscape*/
@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation:landscape) {
  #block1 {
      background-image: url(0)!important;
      background-repeat: no-repeat!important;
  }
}

/*iphone*/
@media only screen and (max-width: 480px){
    #block1 {
        background-image: url(0)!important;
        background-repeat: no-repeat!important;
    }
}/*Archetypon Parallax*/
#block4 a:link{
	color: #CCCCCC;
}
#block4 a:visited{
	color: #FFFFFF;
}
#block4 a:hover{
	color: #FFFFFF;
}
#block4 .story {margin-top: 0%}

#block4 {background: transparent !important}

/**********handheld images**********/

/*desktops*/
@media screen and (min-width: 1024px) {
  #block4 {
      background-image: url(0);
      background-repeat: no-repeat;
  }
}

/*ipad portrait*/
@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation:portrait) {
  #block4 {
      background-image: url(0)!important;
      background-repeat: no-repeat!important;
  }
}

/*ipad landscape*/
@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation:landscape) {
  #block4 {
      background-image: url(0)!important;
      background-repeat: no-repeat!important;
  }
}

/*iphone*/
@media only screen and (max-width: 480px){
    #block4 {
        background-image: url(0)!important;
        background-repeat: no-repeat!important;
    }
}
#stacks_in_2485 {
	padding: 40px 0px 0px 0px;
}
/*
 * Responsive Columns
 * Version: 1.0.6
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns & 1-3 rows
 */
/***************************************  MASTER CONTROL **********************************/
.R_C{
  box-sizing: border-box;
}
#stacks_in_2486 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_2486.R_C.RC_Img img{
  width: 100%;
  height: auto;
  max-width:100;
  margin:0 auto;
  display:block;
}
/***************************************  NO GUTTER **********************************/
/***************** 1 Non   **************/

/***************** 2 Non   *********************/

.stacks_in_2486.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


}
.stacks_in_2486.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 50%;

  float:left;
}

/****************  3 Non ******************/

.stacks_in_2486.RC3_L.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

}
.stacks_in_2486.RC3_R.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

  float:left;
}
.stacks_in_2486.RC3_RS.RC3_Goff {
  width: calc(100%/3);
  width: 0.2%;

  float: left;
}
.stacks_in_2486.RC3_M.RC3_Goff {
  margin: 0 0% 10px 0%;
  width: calc(100%/3);
  width: 100%;

}

/****************  4 Non ******************/

.stacks_in_2486.RC4.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
.stacks_in_2486.RC4_S.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
/*
.stacks_in_2486.RC4_R.RC4_LL2.RC4_Goff {
  width: 25.1%;
  width: calc(100%/4);
  float: left;
}
*/
.stacks_in_2486.RC4_LF.RC4_Goff, .stacks_in_2486.RC4_LL.RC4_Goff, .stacks_in_2486.RC4_LF2.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2486.RC4_LF.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2486.RC4_LL2.RC4_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
  .stacks_in_2486.RC4_R.RC4_LL2.RC4_S.RC4_Goff{
    float: left;
    width: 25%;
    width: calc(100%/4);
  }
}*/

/****************  5 Non ******************/

.stacks_in_2486.RC5.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

  float:left;
}
.stacks_in_2486.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

}
.stacks_in_2486.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20.3%;

}
.stacks_in_2486.RC5_M.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2486.RC5_LF.RC5_Goff, .stacks_in_2486.RC5_LL.RC5_Goff, .stacks_in_2486.RC5_RF.RC5_Goff, .stacks_in_2486.RC5_RL.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2486.RespColone5_First.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2486.RespColone5_Last.RC5_Goff {
  margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_2486.RC6.RC6_Goff {
  width: 16.66%;
}
.stacks_in_2486.RC6_S.RC6_Goff {
  width: 16.69%;
}
.stacks_in_2486.RC6_R1.RC6_LL.RC6_S.RC6_Goff, stacks_in_2486.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
  width: 17%;
}
.stacks_in_2486.RC6_M.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2486.RC6_LF.RC6_Goff,
.stacks_in_2486.RC6_LL.RC6_Goff,
.stacks_in_2486.RC6_RF.RC6_Goff,
.stacks_in_2486.RC6_RL.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2486.RC6_L1.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2486.RC6_R1.RC6_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
    .stacks_in_2486.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
    .stacks_in_2486.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
      width: 16.6%;
  }
}*/

/***************************************  1 COLUMN **********************************/

.stacks_in_2486.ResponsiveCol1_L {
  width: 100%;
  margin: 0 0 10px 0;
}

.stacks_in_2486.maxWToggle{
  max-width:500px;
  margin:0 auto;
}

.stacks_in_2486.RC_PaddingOn.UsePix {
  padding: 10px 0;
}

.stacks_in_2486.RC_PaddingOn.UsePerc {
  padding: 10% 0;
}

@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_2486.ResponsiveCol1_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  2 COLUMN **********************************/

.stacks_in_2486.ResponsiveCol2_L {
  float: left;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
.stacks_in_2486.ResponsiveCol2_R {
  float: right;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_2486.ResponsiveCol2_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2486.ResponsiveCol2_R {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2486.ResponsiveCol2_L.RC2_Goff {
    width: 100%;
    margin:0 0 10px 0;
  }
  .stacks_in_2486.ResponsiveCol2_R.RC2_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  3 COLUMN **********************************/

.stacks_in_2486.RC3_L {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;

}
.stacks_in_2486.RC3_M {
  float: left;
  margin: 0 2% 10px 2%;
  width: 98%;
  width: calc(100%/3 - 1.2% );
}

.stacks_in_2486.RC3_R {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;
}

@media (max-width: 800px) {

  /*  ============ LARGE BOTTOM ================== */

  .stacks_in_2486.RC3_L.RespCol1 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_2486.RC3_M.RespCol1 {
    float: right;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_2486.RC3_R.RespCol1,
  .stacks_in_2486.RC3_RS.RespCol1 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2486.RC3_L.RespCol1.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2486.RC3_M.RespCol1.RC3_Goff  {
    float: right;
    width: %(50  0)%%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2486.RC3_R.RespCol1.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2486.RC3_RS.RespCol1.RC3_Goff  {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_2486.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2486.RC3_M.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_2486.RC3_R.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_2486.RC3_RS.RespCol2 {
    float: left;
    width: 49%;
    margin: 0 0 10px 1%;
  }
  .stacks_in_2486.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2486.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2486.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2486.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }

}
@media (max-width: 600px){
  .stacks_in_2486.RC3_L,
  .stacks_in_2486.RC3_R.RespCol2,
  .stacks_in_2486.RC3_R,
  .stacks_in_2486.RC3_R.RespCol1,
  .stacks_in_2486.RC3_RS.RespCol2,
  .stacks_in_2486.RC3_RS.RespCol3 {
    float: left !important;
    width: 100% !important;
    margin: 0 0 10px 0!important;
  }
  .stacks_in_2486.RC3_RS.RC3_Goff {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
  .stacks_in_2486.RC3_M {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
}

/***************************************  4 COLUMN **********************************/

.stacks_in_2486.RC4_L {
  float: left;
}
.stacks_in_2486.RC4_R {
  float: left;
}
.stacks_in_2486.RC4 {
  width: 23.5%;
  width: calc(100%/4 - 1%*1.5);
}
.stacks_in_2486.RC4_S {
  width: 23.6%;
}
.stacks_in_2486.RC4_LF,
.stacks_in_2486.RC4_LL,
.stacks_in_2486.RC4_LF2 {
  margin: 0 1% 10px 1%;
}
.stacks_in_2486.RC4_LF {
  margin: 0 1% 10px 0;
}
.stacks_in_2486.RC4_LL2 {
  margin: 0 0 10px 1%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_2486.RC4_S{
    width: 23.5%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_2486.RC4 {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_2486.RC4_S {
    width: 49%;
  }
  .stacks_in_2486.RC4_LF {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_2486.RC4_LL {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_2486.RC4_LF2 {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_2486.RC4_LL2 {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_2486.RC4_R {
    float:left;
  }
  .stacks_in_2486.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_2486.RC4_S.RC4_Goff,
  .stacks_in_2486.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_2486.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_2486.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_2486.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_2486.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
}

@media (max-width: 600px){
  .stacks_in_2486.RC4 {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2486.RC4_S {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2486.RC4.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2486.RC4_S.RC4_Goff,
  .stacks_in_2486.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  5 COLUMN **********************************/

.stacks_in_2486.RC5_L {
  float: left;
}
.stacks_in_2486.RC5_R {
  float: left;
}
.stacks_in_2486.RC5 {
  width: 18.4%;
  width: calc(100%/5 - 1%*1.6);
}
.stacks_in_2486.RC5_S {
  width: 18.4%;
}
.stacks_in_2486.RC5_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_2486.RC5_LF,
.stacks_in_2486.RC5_LL,
.stacks_in_2486.RC5_RF,
.stacks_in_2486.RC5_RL {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_2486.RespColone5_First {
  margin: 0 1% 10px 0;
}
.stacks_in_2486.RespColone5_Last {
  float:left;
  margin: 0 0 10px 1%;
}
@media (max-width: 800px) {
  .stacks_in_2486.RC5, .stacks_in_2486.RC5_S {
    width: 49%;
  }
  .stacks_in_2486.RC5_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_2486.RC5_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_2486.RC5.RespColone5_Last,
  .stacks_in_2486.RC5_S.RespColone5_Last {
    float: left;
    width: 99.8% ;
    margin: 0 auto 10px auto;
  }
  .stacks_in_2486.RC5.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2486.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2486.RC5_LF.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_2486.RC5_LL.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_2486.RespColone5_Last.RC5_Goff,
  .stacks_in_2486.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
    float: left;
    width: 100% ;
    margin: 0 auto 10px auto;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_2486.RC5.RespCol2,
  .stacks_in_2486.RC5_S.RespCol2 {
    width: 49%;
  }
  .stacks_in_2486.RC5_LF.RespCol2,
  .stacks_in_2486.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_2486.RC5_LL.RespCol2 {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_2486.RC5.RespColone5_First.RespCol2,
  .stacks_in_2486.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 10px auto;
  }
  .stacks_in_2486.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2486.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_2486.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2486.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_2486.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;

  }
  .stacks_in_2486.RC5_LL.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_2486.RespColone5_First.RespCol2.RC5_Goff,
  .stacks_in_2486.RespColone5_First.RespCol2.RC5_S.RC5_Goff {
    float: left;
    width: 100%;
    margin: 0 auto 10px auto;
  }
}
@media (max-width: 600px) {
  .stacks_in_2486.RC5.RC5_LL.RespCol2,
  .stacks_in_2486.RC5.RC5_LF.RespCol2,
  .stacks_in_2486.RC5.RC5_LL.RespCol1,
  .stacks_in_2486.RC5.RC5_LF.RespCol1,
  .stacks_in_2486.RC5_S.RC5_LL.RespCol2,
  .stacks_in_2486.RC5_S.RC5_LF.RespCol2,
  .stacks_in_2486.RC5_S.RC5_LL.RespCol1,
  .stacks_in_2486.RC5_S.RC5_LF.RespCol1 {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
  .stacks_in_2486.RC5.RC5_Goff,
  .stacks_in_2486.RC5_S.RC5_Goff,
  .stacks_in_2486.RC5_LL.RespCol2.RC5_Goff {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
}

/***************************************  6 COLUMN **********************************/

.stacks_in_2486.RC6_L,
.stacks_in_2486.RC6_L1 {
  float: left;
}
.stacks_in_2486.RC6_R,
.stacks_in_2486.RC6_R1 {
  float: left;
}
.stacks_in_2486.RC6 {
  width: 15%;
  width: calc(100%/6 - 1%*1.68);
}
.stacks_in_2486.RC6_S {
  width: 15.2%;
}
.stacks_in_2486.RC6_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_2486.RC6_LF,
.stacks_in_2486.RC6_LL,
.stacks_in_2486.RC6_RF,
.stacks_in_2486.RC6_RL {
  margin: 0 1% 10px 1%;
}
.stacks_in_2486.RC6_L1 {
  margin: 0 1% 10px 0;
}
.stacks_in_2486.RC6_R1 {
  margin: 0 0 10px 1%;
}
/*@media (max-width: 1099px) {
  .stacks_in_2486.RC6_S {
    width: 15%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_2486.RC6,
  .stacks_in_2486.RC6_S {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_2486.RC6_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_2486.RC6_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_2486.RC6.RC6_Goff,
  .stacks_in_2486.RC6_S.RC6_Goff,
  .stacks_in_2486.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
  .stacks_in_2486.RC6_L1.RC6_LF.RC6_S.RC6_Goff {
    width:50%;
  }
  .stacks_in_2486.RC6_LF.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_2486.RC6_LL.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 600px) {
  .stacks_in_2486.RC6,
  .stacks_in_2486.RC6_S {
    width: 100% !important;
    margin: 0 0 10px 0 !important;
  }
}

/* Preview and publish styling */


#animateItWrapperstacks_in_5235.animated {
	animation-duration: 1500ms;
	animation-delay: 800ms;
}






#stacks_in_2496 {
	padding: 20px 0px 0px 0px;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_5502.animated {
	animation-duration: 1500ms;
	animation-delay: 1300ms;
}






#stacks_in_5503 {
	padding: 20px 0px 0px 0px;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_5506.animated {
	animation-duration: 1500ms;
	animation-delay: 1800ms;
}






#stacks_in_5507 {
	padding: 20px 0px 0px 0px;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_5510.animated {
	animation-duration: 1500ms;
	animation-delay: 2300ms;
}






#stacks_in_5511 {
	padding: 20px 0px 0px 0px;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_5514.animated {
	animation-duration: 1500ms;
	animation-delay: 200ms;
}






/* Preview and publish styling */


#animateItWrapperstacks_in_5530.animated {
	animation-duration: 1500ms;
	animation-delay: 2800ms;
}






#stacks_in_5531 {
	padding: 20px 0px 0px 0px;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_5518.animated {
	animation-duration: 1500ms;
	animation-delay: 3200ms;
}






#stacks_in_5519 {
	padding: 20px 0px 0px 0px;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_5522.animated {
	animation-duration: 1500ms;
	animation-delay: 3800ms;
}






#stacks_in_5523 {
	padding: 20px 0px 0px 0px;
}

#stacks_in_5527 {
	padding: 20px 0px 0px 0px;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_5534.animated {
	animation-duration: 1500ms;
	animation-delay: 300ms;
}






/* Preview and publish styling */


#animateItWrapperstacks_in_5538.animated {
	animation-duration: 1500ms;
	animation-delay: 3200ms;
}






#stacks_in_5554 {
	padding: 20px 0px 0px 0px;
}

/* Preview and publish styling */


#animateItWrapperstacks_in_5539.animated {
	animation-duration: 1500ms;
	animation-delay: 3800ms;
}






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

/* Preview and publish styling */


#animateItWrapperstacks_in_5546.animated {
	animation-duration: 1500ms;
	animation-delay: 4200ms;
}






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

/* Preview and publish styling */


#animateItWrapperstacks_in_5550.animated {
	animation-duration: 1500ms;
	animation-delay: 4800ms;
}






#stacks_in_5551 {
	margin: 20px 0px 0px 0px;
}
#hoverBoxWrapperstacks_in_2565 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

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

#hoverBoxStaticstacks_in_2565 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_2565 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_2565 a,
#hoverBoxLinkstacks_in_2565 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_2565.touchDeviceDetected #hoverBoxStaticstacks_in_2565 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_2565.touchDeviceDetected #hoverBoxRolloverstacks_in_2565 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_2565.noTouchDeviceDetected #hoverBoxRolloverstacks_in_2565 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

#hoverBoxWrapperstacks_in_2565.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_2565 {
	opacity: 1.00;
}






















#stacks_in_2567 {
	padding: 0px 0px 0px 100px;
}

#stacks_in_2568 {
	padding: 0px 0px 0px 100px;
}
#hoverBoxWrapperstacks_in_2569 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

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

#hoverBoxStaticstacks_in_2569 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_2569 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_2569 a,
#hoverBoxLinkstacks_in_2569 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_2569.touchDeviceDetected #hoverBoxStaticstacks_in_2569 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_2569.touchDeviceDetected #hoverBoxRolloverstacks_in_2569 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_2569.noTouchDeviceDetected #hoverBoxRolloverstacks_in_2569 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

#hoverBoxWrapperstacks_in_2569.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_2569 {
	opacity: 1.00;
}






















#stacks_in_2571 {
	padding: 0px 0px 0px 100px;
}

#stacks_in_2572 {
	padding: 0px 0px 0px 100px;
}
#hoverBoxWrapperstacks_in_2573 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

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

#hoverBoxStaticstacks_in_2573 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_2573 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_2573 a,
#hoverBoxLinkstacks_in_2573 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_2573.touchDeviceDetected #hoverBoxStaticstacks_in_2573 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_2573.touchDeviceDetected #hoverBoxRolloverstacks_in_2573 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_2573.noTouchDeviceDetected #hoverBoxRolloverstacks_in_2573 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

#hoverBoxWrapperstacks_in_2573.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_2573 {
	opacity: 1.00;
}






















#stacks_in_2575 {
	padding: 0px 0px 0px 100px;
}

#stacks_in_2576 {
	padding: 0px 0px 0px 100px;
}
#hoverBoxWrapperstacks_in_2577 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

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

#hoverBoxStaticstacks_in_2577 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_2577 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_2577 a,
#hoverBoxLinkstacks_in_2577 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_2577.touchDeviceDetected #hoverBoxStaticstacks_in_2577 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_2577.touchDeviceDetected #hoverBoxRolloverstacks_in_2577 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_2577.noTouchDeviceDetected #hoverBoxRolloverstacks_in_2577 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

#hoverBoxWrapperstacks_in_2577.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_2577 {
	opacity: 1.00;
}






















#stacks_in_2579 {
	padding: 0px 0px 0px 100px;
}

#stacks_in_2580 {
	padding: 0px 0px 0px 100px;
}
/*
 * Responsive Columns
 * Version: 1.0.6
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns & 1-3 rows
 */
/***************************************  MASTER CONTROL **********************************/
.R_C{
  box-sizing: border-box;
}
#stacks_in_2523 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_2523.R_C.RC_Img img{
  width: 100%;
  height: auto;
  max-width:100;
  margin:0 auto;
  display:block;
}
/***************************************  NO GUTTER **********************************/
/***************** 1 Non   **************/

/***************** 2 Non   *********************/

.stacks_in_2523.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 29%;


}
.stacks_in_2523.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 71%;

  float:left;
}

/****************  3 Non ******************/

.stacks_in_2523.RC3_L.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

}
.stacks_in_2523.RC3_R.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

  float:left;
}
.stacks_in_2523.RC3_RS.RC3_Goff {
  width: calc(100%/3);
  width: 0.2%;

  float: left;
}
.stacks_in_2523.RC3_M.RC3_Goff {
  margin: 0 0% 10px 0%;
  width: calc(100%/3);
  width: 100%;

}

/****************  4 Non ******************/

.stacks_in_2523.RC4.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
.stacks_in_2523.RC4_S.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
/*
.stacks_in_2523.RC4_R.RC4_LL2.RC4_Goff {
  width: 25.1%;
  width: calc(100%/4);
  float: left;
}
*/
.stacks_in_2523.RC4_LF.RC4_Goff, .stacks_in_2523.RC4_LL.RC4_Goff, .stacks_in_2523.RC4_LF2.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2523.RC4_LF.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2523.RC4_LL2.RC4_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
  .stacks_in_2523.RC4_R.RC4_LL2.RC4_S.RC4_Goff{
    float: left;
    width: 25%;
    width: calc(100%/4);
  }
}*/

/****************  5 Non ******************/

.stacks_in_2523.RC5.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

  float:left;
}
.stacks_in_2523.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

}
.stacks_in_2523.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20.3%;

}
.stacks_in_2523.RC5_M.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2523.RC5_LF.RC5_Goff, .stacks_in_2523.RC5_LL.RC5_Goff, .stacks_in_2523.RC5_RF.RC5_Goff, .stacks_in_2523.RC5_RL.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2523.RespColone5_First.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2523.RespColone5_Last.RC5_Goff {
  margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_2523.RC6.RC6_Goff {
  width: 16.66%;
}
.stacks_in_2523.RC6_S.RC6_Goff {
  width: 16.69%;
}
.stacks_in_2523.RC6_R1.RC6_LL.RC6_S.RC6_Goff, stacks_in_2523.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
  width: 17%;
}
.stacks_in_2523.RC6_M.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2523.RC6_LF.RC6_Goff,
.stacks_in_2523.RC6_LL.RC6_Goff,
.stacks_in_2523.RC6_RF.RC6_Goff,
.stacks_in_2523.RC6_RL.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2523.RC6_L1.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_2523.RC6_R1.RC6_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
    .stacks_in_2523.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
    .stacks_in_2523.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
      width: 16.6%;
  }
}*/

/***************************************  1 COLUMN **********************************/

.stacks_in_2523.ResponsiveCol1_L {
  width: 100%;
  margin: 0 0 10px 0;
}

.stacks_in_2523.maxWToggle{
  max-width:500px;
  margin:0 auto;
}

.stacks_in_2523.RC_PaddingOn.UsePix {
  padding: 10px 0;
}

.stacks_in_2523.RC_PaddingOn.UsePerc {
  padding: 10% 0;
}

@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_2523.ResponsiveCol1_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  2 COLUMN **********************************/

.stacks_in_2523.ResponsiveCol2_L {
  float: left;
  width: 28%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
.stacks_in_2523.ResponsiveCol2_R {
  float: right;
  width: 70%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_2523.ResponsiveCol2_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2523.ResponsiveCol2_R {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2523.ResponsiveCol2_L.RC2_Goff {
    width: 100%;
    margin:0 0 10px 0;
  }
  .stacks_in_2523.ResponsiveCol2_R.RC2_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  3 COLUMN **********************************/

.stacks_in_2523.RC3_L {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;

}
.stacks_in_2523.RC3_M {
  float: left;
  margin: 0 2% 10px 2%;
  width: 98%;
  width: calc(100%/3 - 1.2% );
}

.stacks_in_2523.RC3_R {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;
}

@media (max-width: 800px) {

  /*  ============ LARGE BOTTOM ================== */

  .stacks_in_2523.RC3_L.RespCol1 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_2523.RC3_M.RespCol1 {
    float: right;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_2523.RC3_R.RespCol1,
  .stacks_in_2523.RC3_RS.RespCol1 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2523.RC3_L.RespCol1.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2523.RC3_M.RespCol1.RC3_Goff  {
    float: right;
    width: %(50  0)%%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2523.RC3_R.RespCol1.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2523.RC3_RS.RespCol1.RC3_Goff  {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_2523.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2523.RC3_M.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_2523.RC3_R.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_2523.RC3_RS.RespCol2 {
    float: left;
    width: 49%;
    margin: 0 0 10px 1%;
  }
  .stacks_in_2523.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2523.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2523.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2523.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }

}
@media (max-width: 600px){
  .stacks_in_2523.RC3_L,
  .stacks_in_2523.RC3_R.RespCol2,
  .stacks_in_2523.RC3_R,
  .stacks_in_2523.RC3_R.RespCol1,
  .stacks_in_2523.RC3_RS.RespCol2,
  .stacks_in_2523.RC3_RS.RespCol3 {
    float: left !important;
    width: 100% !important;
    margin: 0 0 10px 0!important;
  }
  .stacks_in_2523.RC3_RS.RC3_Goff {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
  .stacks_in_2523.RC3_M {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
}

/***************************************  4 COLUMN **********************************/

.stacks_in_2523.RC4_L {
  float: left;
}
.stacks_in_2523.RC4_R {
  float: left;
}
.stacks_in_2523.RC4 {
  width: 23.5%;
  width: calc(100%/4 - 1%*1.5);
}
.stacks_in_2523.RC4_S {
  width: 23.6%;
}
.stacks_in_2523.RC4_LF,
.stacks_in_2523.RC4_LL,
.stacks_in_2523.RC4_LF2 {
  margin: 0 1% 10px 1%;
}
.stacks_in_2523.RC4_LF {
  margin: 0 1% 10px 0;
}
.stacks_in_2523.RC4_LL2 {
  margin: 0 0 10px 1%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_2523.RC4_S{
    width: 23.5%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_2523.RC4 {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_2523.RC4_S {
    width: 49%;
  }
  .stacks_in_2523.RC4_LF {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_2523.RC4_LL {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_2523.RC4_LF2 {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_2523.RC4_LL2 {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_2523.RC4_R {
    float:left;
  }
  .stacks_in_2523.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_2523.RC4_S.RC4_Goff,
  .stacks_in_2523.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_2523.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_2523.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_2523.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_2523.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
}

@media (max-width: 600px){
  .stacks_in_2523.RC4 {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2523.RC4_S {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2523.RC4.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_2523.RC4_S.RC4_Goff,
  .stacks_in_2523.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  5 COLUMN **********************************/

.stacks_in_2523.RC5_L {
  float: left;
}
.stacks_in_2523.RC5_R {
  float: left;
}
.stacks_in_2523.RC5 {
  width: 18.4%;
  width: calc(100%/5 - 1%*1.6);
}
.stacks_in_2523.RC5_S {
  width: 18.4%;
}
.stacks_in_2523.RC5_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_2523.RC5_LF,
.stacks_in_2523.RC5_LL,
.stacks_in_2523.RC5_RF,
.stacks_in_2523.RC5_RL {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_2523.RespColone5_First {
  margin: 0 1% 10px 0;
}
.stacks_in_2523.RespColone5_Last {
  float:left;
  margin: 0 0 10px 1%;
}
@media (max-width: 800px) {
  .stacks_in_2523.RC5, .stacks_in_2523.RC5_S {
    width: 49%;
  }
  .stacks_in_2523.RC5_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_2523.RC5_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_2523.RC5.RespColone5_Last,
  .stacks_in_2523.RC5_S.RespColone5_Last {
    float: left;
    width: 99.8% ;
    margin: 0 auto 10px auto;
  }
  .stacks_in_2523.RC5.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2523.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2523.RC5_LF.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_2523.RC5_LL.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_2523.RespColone5_Last.RC5_Goff,
  .stacks_in_2523.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
    float: left;
    width: 100% ;
    margin: 0 auto 10px auto;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_2523.RC5.RespCol2,
  .stacks_in_2523.RC5_S.RespCol2 {
    width: 49%;
  }
  .stacks_in_2523.RC5_LF.RespCol2,
  .stacks_in_2523.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_2523.RC5_LL.RespCol2 {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_2523.RC5.RespColone5_First.RespCol2,
  .stacks_in_2523.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 10px auto;
  }
  .stacks_in_2523.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2523.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_2523.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_2523.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_2523.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;

  }
  .stacks_in_2523.RC5_LL.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_2523.RespColone5_First.RespCol2.RC5_Goff,
  .stacks_in_2523.RespColone5_First.RespCol2.RC5_S.RC5_Goff {
    float: left;
    width: 100%;
    margin: 0 auto 10px auto;
  }
}
@media (max-width: 600px) {
  .stacks_in_2523.RC5.RC5_LL.RespCol2,
  .stacks_in_2523.RC5.RC5_LF.RespCol2,
  .stacks_in_2523.RC5.RC5_LL.RespCol1,
  .stacks_in_2523.RC5.RC5_LF.RespCol1,
  .stacks_in_2523.RC5_S.RC5_LL.RespCol2,
  .stacks_in_2523.RC5_S.RC5_LF.RespCol2,
  .stacks_in_2523.RC5_S.RC5_LL.RespCol1,
  .stacks_in_2523.RC5_S.RC5_LF.RespCol1 {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
  .stacks_in_2523.RC5.RC5_Goff,
  .stacks_in_2523.RC5_S.RC5_Goff,
  .stacks_in_2523.RC5_LL.RespCol2.RC5_Goff {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
}

/***************************************  6 COLUMN **********************************/

.stacks_in_2523.RC6_L,
.stacks_in_2523.RC6_L1 {
  float: left;
}
.stacks_in_2523.RC6_R,
.stacks_in_2523.RC6_R1 {
  float: left;
}
.stacks_in_2523.RC6 {
  width: 15%;
  width: calc(100%/6 - 1%*1.68);
}
.stacks_in_2523.RC6_S {
  width: 15.2%;
}
.stacks_in_2523.RC6_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_2523.RC6_LF,
.stacks_in_2523.RC6_LL,
.stacks_in_2523.RC6_RF,
.stacks_in_2523.RC6_RL {
  margin: 0 1% 10px 1%;
}
.stacks_in_2523.RC6_L1 {
  margin: 0 1% 10px 0;
}
.stacks_in_2523.RC6_R1 {
  margin: 0 0 10px 1%;
}
/*@media (max-width: 1099px) {
  .stacks_in_2523.RC6_S {
    width: 15%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_2523.RC6,
  .stacks_in_2523.RC6_S {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_2523.RC6_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_2523.RC6_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_2523.RC6.RC6_Goff,
  .stacks_in_2523.RC6_S.RC6_Goff,
  .stacks_in_2523.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
  .stacks_in_2523.RC6_L1.RC6_LF.RC6_S.RC6_Goff {
    width:50%;
  }
  .stacks_in_2523.RC6_LF.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_2523.RC6_LL.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 600px) {
  .stacks_in_2523.RC6,
  .stacks_in_2523.RC6_S {
    width: 100% !important;
    margin: 0 0 10px 0 !important;
  }
}

#stacks_in_2523 {
	padding: 30px 0px 0px 0px;
}
#hoverBoxWrapperstacks_in_2581 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

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

#hoverBoxStaticstacks_in_2581 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_2581 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_2581 a,
#hoverBoxLinkstacks_in_2581 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_2581.touchDeviceDetected #hoverBoxStaticstacks_in_2581 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_2581.touchDeviceDetected #hoverBoxRolloverstacks_in_2581 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_2581.noTouchDeviceDetected #hoverBoxRolloverstacks_in_2581 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

#hoverBoxWrapperstacks_in_2581.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_2581 {
	opacity: 1.00;
}






















#stacks_in_2583 {
	padding: 0px 0px 0px 100px;
}

#stacks_in_2584 {
	padding: 0px 0px 0px 100px;
}
#hoverBoxWrapperstacks_in_2585 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

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

#hoverBoxStaticstacks_in_2585 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_2585 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_2585 a,
#hoverBoxLinkstacks_in_2585 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_2585.touchDeviceDetected #hoverBoxStaticstacks_in_2585 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_2585.touchDeviceDetected #hoverBoxRolloverstacks_in_2585 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_2585.noTouchDeviceDetected #hoverBoxRolloverstacks_in_2585 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

#hoverBoxWrapperstacks_in_2585.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_2585 {
	opacity: 1.00;
}






















#stacks_in_2587 {
	padding: 0px 0px 0px 100px;
}

#stacks_in_2588 {
	padding: 0px 0px 0px 100px;
}
#hoverBoxWrapperstacks_in_2589 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

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

#hoverBoxStaticstacks_in_2589 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_2589 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_2589 a,
#hoverBoxLinkstacks_in_2589 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_2589.touchDeviceDetected #hoverBoxStaticstacks_in_2589 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_2589.touchDeviceDetected #hoverBoxRolloverstacks_in_2589 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_2589.noTouchDeviceDetected #hoverBoxRolloverstacks_in_2589 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

#hoverBoxWrapperstacks_in_2589.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_2589 {
	opacity: 1.00;
}






















#stacks_in_2591 {
	padding: 0px 0px 0px 100px;
}

#stacks_in_2592 {
	padding: 0px 0px 0px 100px;
}
#hoverBoxWrapperstacks_in_2593 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

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

#hoverBoxStaticstacks_in_2593 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_2593 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_2593 a,
#hoverBoxLinkstacks_in_2593 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_2593.touchDeviceDetected #hoverBoxStaticstacks_in_2593 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_2593.touchDeviceDetected #hoverBoxRolloverstacks_in_2593 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_2593.noTouchDeviceDetected #hoverBoxRolloverstacks_in_2593 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

#hoverBoxWrapperstacks_in_2593.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_2593 {
	opacity: 1.00;
}






















#stacks_in_2595 {
	padding: 0px 0px 0px 100px;
}

#stacks_in_2596 {
	padding: 0px 0px 0px 100px;
}
/*
 * Responsive Columns
 * Version: 1.0.6
 * Requirements: RapidWeaver 5, Stacks 2
 * Support: http://forum.onelittledesigner.com
 * Description: 1-6 responsive columns & 1-3 rows
 */
/***************************************  MASTER CONTROL **********************************/
.R_C{
  box-sizing: border-box;
}
#stacks_in_5240 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_5240.R_C.RC_Img img{
  width: 100%;
  height: auto;
  max-width:100;
  margin:0 auto;
  display:block;
}
/***************************************  NO GUTTER **********************************/
/***************** 1 Non   **************/

/***************** 2 Non   *********************/

.stacks_in_5240.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


}
.stacks_in_5240.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 50%;

  float:left;
}

/****************  3 Non ******************/

.stacks_in_5240.RC3_L.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

}
.stacks_in_5240.RC3_R.RC3_Goff {
  width: calc(100%/3);
  width: 0%;

  float:left;
}
.stacks_in_5240.RC3_RS.RC3_Goff {
  width: calc(100%/3);
  width: 0.2%;

  float: left;
}
.stacks_in_5240.RC3_M.RC3_Goff {
  margin: 0 0% 10px 0%;
  width: calc(100%/3);
  width: 100%;

}

/****************  4 Non ******************/

.stacks_in_5240.RC4.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
.stacks_in_5240.RC4_S.RC4_Goff {
  width: calc(100%/4);
  width: 25%;

}
/*
.stacks_in_5240.RC4_R.RC4_LL2.RC4_Goff {
  width: 25.1%;
  width: calc(100%/4);
  float: left;
}
*/
.stacks_in_5240.RC4_LF.RC4_Goff, .stacks_in_5240.RC4_LL.RC4_Goff, .stacks_in_5240.RC4_LF2.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_5240.RC4_LF.RC4_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_5240.RC4_LL2.RC4_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
  .stacks_in_5240.RC4_R.RC4_LL2.RC4_S.RC4_Goff{
    float: left;
    width: 25%;
    width: calc(100%/4);
  }
}*/

/****************  5 Non ******************/

.stacks_in_5240.RC5.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

  float:left;
}
.stacks_in_5240.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20%;

}
.stacks_in_5240.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
  width: calc(100%/5);
  width: 20.3%;

}
.stacks_in_5240.RC5_M.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_5240.RC5_LF.RC5_Goff, .stacks_in_5240.RC5_LL.RC5_Goff, .stacks_in_5240.RC5_RF.RC5_Goff, .stacks_in_5240.RC5_RL.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_5240.RespColone5_First.RC5_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_5240.RespColone5_Last.RC5_Goff {
  margin: 0 0 10px 0;
}

/****************  6 Non ******************/

.stacks_in_5240.RC6.RC6_Goff {
  width: 16.66%;
}
.stacks_in_5240.RC6_S.RC6_Goff {
  width: 16.69%;
}
.stacks_in_5240.RC6_R1.RC6_LL.RC6_S.RC6_Goff, stacks_in_5240.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
  width: 17%;
}
.stacks_in_5240.RC6_M.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_5240.RC6_LF.RC6_Goff,
.stacks_in_5240.RC6_LL.RC6_Goff,
.stacks_in_5240.RC6_RF.RC6_Goff,
.stacks_in_5240.RC6_RL.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_5240.RC6_L1.RC6_Goff {
  margin: 0 0 10px 0;
}
.stacks_in_5240.RC6_R1.RC6_Goff {
  margin: 0 0 10px 0;
}
/*@media (max-width: 1099px) {
    .stacks_in_5240.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
    .stacks_in_5240.RC6_L1.RC6_LF.RC6_Goff.RC6_S.RC6_Goff  {
      width: 16.6%;
  }
}*/

/***************************************  1 COLUMN **********************************/

.stacks_in_5240.ResponsiveCol1_L {
  width: 100%;
  margin: 0 0 10px 0;
}

.stacks_in_5240.maxWToggle{
  max-width:500px;
  margin:0 auto;
}

.stacks_in_5240.RC_PaddingOn.UsePix {
  padding: 10px 0;
}

.stacks_in_5240.RC_PaddingOn.UsePerc {
  padding: 10% 0;
}

@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_5240.ResponsiveCol1_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  2 COLUMN **********************************/

.stacks_in_5240.ResponsiveCol2_L {
  float: left;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
.stacks_in_5240.ResponsiveCol2_R {
  float: right;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
@media (max-width: 800px) {

}
@media (max-width: 600px) {
  .stacks_in_5240.ResponsiveCol2_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_5240.ResponsiveCol2_R {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_5240.ResponsiveCol2_L.RC2_Goff {
    width: 100%;
    margin:0 0 10px 0;
  }
  .stacks_in_5240.ResponsiveCol2_R.RC2_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  3 COLUMN **********************************/

.stacks_in_5240.RC3_L {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;

}
.stacks_in_5240.RC3_M {
  float: left;
  margin: 0 2% 10px 2%;
  width: 98%;
  width: calc(100%/3 - 1.2% );
}

.stacks_in_5240.RC3_R {
  float: left;
  width: -1%;
  width: calc(100%/3 - 1.4%);
  margin: 0 0 10px 0;
}

@media (max-width: 800px) {

  /*  ============ LARGE BOTTOM ================== */

  .stacks_in_5240.RC3_L.RespCol1 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_5240.RC3_M.RespCol1 {
    float: right;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_5240.RC3_R.RespCol1,
  .stacks_in_5240.RC3_RS.RespCol1 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_5240.RC3_L.RespCol1.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_5240.RC3_M.RespCol1.RC3_Goff  {
    float: right;
    width: %(50  0)%%;
    margin: 0 0 10px 0;
  }
  .stacks_in_5240.RC3_R.RespCol1.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_5240.RC3_RS.RespCol1.RC3_Goff  {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_5240.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_5240.RC3_M.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_5240.RC3_R.RespCol2 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_5240.RC3_RS.RespCol2 {
    float: left;
    width: 49%;
    margin: 0 0 10px 1%;
  }
  .stacks_in_5240.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_5240.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_5240.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_5240.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }

}
@media (max-width: 600px){
  .stacks_in_5240.RC3_L,
  .stacks_in_5240.RC3_R.RespCol2,
  .stacks_in_5240.RC3_R,
  .stacks_in_5240.RC3_R.RespCol1,
  .stacks_in_5240.RC3_RS.RespCol2,
  .stacks_in_5240.RC3_RS.RespCol3 {
    float: left !important;
    width: 100% !important;
    margin: 0 0 10px 0!important;
  }
  .stacks_in_5240.RC3_RS.RC3_Goff {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
  .stacks_in_5240.RC3_M {
    float: left !important;
    width: 100%!important;
    margin:0 0 10px 0!important;
  }
}

/***************************************  4 COLUMN **********************************/

.stacks_in_5240.RC4_L {
  float: left;
}
.stacks_in_5240.RC4_R {
  float: left;
}
.stacks_in_5240.RC4 {
  width: 23.5%;
  width: calc(100%/4 - 1%*1.5);
}
.stacks_in_5240.RC4_S {
  width: 23.6%;
}
.stacks_in_5240.RC4_LF,
.stacks_in_5240.RC4_LL,
.stacks_in_5240.RC4_LF2 {
  margin: 0 1% 10px 1%;
}
.stacks_in_5240.RC4_LF {
  margin: 0 1% 10px 0;
}
.stacks_in_5240.RC4_LL2 {
  margin: 0 0 10px 1%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_5240.RC4_S{
    width: 23.5%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_5240.RC4 {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_5240.RC4_S {
    width: 49%;
  }
  .stacks_in_5240.RC4_LF {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_5240.RC4_LL {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_5240.RC4_LF2 {
    float: left;
    margin: 0 1% 10px 0 ;
  }
  .stacks_in_5240.RC4_LL2 {
    float: left;
    margin: 0 0 10px 1% ;
  }
  .stacks_in_5240.RC4_R {
    float:left;
  }
  .stacks_in_5240.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_5240.RC4_S.RC4_Goff,
  .stacks_in_5240.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_5240.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_5240.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_5240.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
  .stacks_in_5240.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 10px 0 ;
  }
}

@media (max-width: 600px){
  .stacks_in_5240.RC4 {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_5240.RC4_S {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_5240.RC4.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_5240.RC4_S.RC4_Goff,
  .stacks_in_5240.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

/***************************************  5 COLUMN **********************************/

.stacks_in_5240.RC5_L {
  float: left;
}
.stacks_in_5240.RC5_R {
  float: left;
}
.stacks_in_5240.RC5 {
  width: 18.4%;
  width: calc(100%/5 - 1%*1.6);
}
.stacks_in_5240.RC5_S {
  width: 18.4%;
}
.stacks_in_5240.RC5_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_5240.RC5_LF,
.stacks_in_5240.RC5_LL,
.stacks_in_5240.RC5_RF,
.stacks_in_5240.RC5_RL {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_5240.RespColone5_First {
  margin: 0 1% 10px 0;
}
.stacks_in_5240.RespColone5_Last {
  float:left;
  margin: 0 0 10px 1%;
}
@media (max-width: 800px) {
  .stacks_in_5240.RC5, .stacks_in_5240.RC5_S {
    width: 49%;
  }
  .stacks_in_5240.RC5_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_5240.RC5_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_5240.RC5.RespColone5_Last,
  .stacks_in_5240.RC5_S.RespColone5_Last {
    float: left;
    width: 99.8% ;
    margin: 0 auto 10px auto;
  }
  .stacks_in_5240.RC5.RC5_Goff {
    width: 50%;
  }
  .stacks_in_5240.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_5240.RC5_LF.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_5240.RC5_LL.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_5240.RespColone5_Last.RC5_Goff,
  .stacks_in_5240.RC5_R1.RC5_LF.RespColone5_Last.RC5_S.RC5_Goff {
    float: left;
    width: 100% ;
    margin: 0 auto 10px auto;
  }

  /*  ============ LARGE TOP ================== */

  .stacks_in_5240.RC5.RespCol2,
  .stacks_in_5240.RC5_S.RespCol2 {
    width: 49%;
  }
  .stacks_in_5240.RC5_LF.RespCol2,
  .stacks_in_5240.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_5240.RC5_LL.RespCol2 {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_5240.RC5.RespColone5_First.RespCol2,
  .stacks_in_5240.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 10px auto;
  }
  .stacks_in_5240.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_5240.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_5240.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_5240.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_5240.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;

  }
  .stacks_in_5240.RC5_LL.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_5240.RespColone5_First.RespCol2.RC5_Goff,
  .stacks_in_5240.RespColone5_First.RespCol2.RC5_S.RC5_Goff {
    float: left;
    width: 100%;
    margin: 0 auto 10px auto;
  }
}
@media (max-width: 600px) {
  .stacks_in_5240.RC5.RC5_LL.RespCol2,
  .stacks_in_5240.RC5.RC5_LF.RespCol2,
  .stacks_in_5240.RC5.RC5_LL.RespCol1,
  .stacks_in_5240.RC5.RC5_LF.RespCol1,
  .stacks_in_5240.RC5_S.RC5_LL.RespCol2,
  .stacks_in_5240.RC5_S.RC5_LF.RespCol2,
  .stacks_in_5240.RC5_S.RC5_LL.RespCol1,
  .stacks_in_5240.RC5_S.RC5_LF.RespCol1 {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
  .stacks_in_5240.RC5.RC5_Goff,
  .stacks_in_5240.RC5_S.RC5_Goff,
  .stacks_in_5240.RC5_LL.RespCol2.RC5_Goff {
    width: 100% !important;
    margin: 0 0 10px 0;
  }
}

/***************************************  6 COLUMN **********************************/

.stacks_in_5240.RC6_L,
.stacks_in_5240.RC6_L1 {
  float: left;
}
.stacks_in_5240.RC6_R,
.stacks_in_5240.RC6_R1 {
  float: left;
}
.stacks_in_5240.RC6 {
  width: 15%;
  width: calc(100%/6 - 1%*1.68);
}
.stacks_in_5240.RC6_S {
  width: 15.2%;
}
.stacks_in_5240.RC6_M {
  float: left;
  margin: 0 1% 10px 1%;
}
.stacks_in_5240.RC6_LF,
.stacks_in_5240.RC6_LL,
.stacks_in_5240.RC6_RF,
.stacks_in_5240.RC6_RL {
  margin: 0 1% 10px 1%;
}
.stacks_in_5240.RC6_L1 {
  margin: 0 1% 10px 0;
}
.stacks_in_5240.RC6_R1 {
  margin: 0 0 10px 1%;
}
/*@media (max-width: 1099px) {
  .stacks_in_5240.RC6_S {
    width: 15%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_5240.RC6,
  .stacks_in_5240.RC6_S {
    width: 49%;
    width: calc(100%/2 - 1%);
  }
  .stacks_in_5240.RC6_LF {
    float: left;
    margin: 0 1% 10px 0;
  }
  .stacks_in_5240.RC6_LL {
    float: left;
    margin: 0 0 10px 1%;
  }
  .stacks_in_5240.RC6.RC6_Goff,
  .stacks_in_5240.RC6_S.RC6_Goff,
  .stacks_in_5240.RC6_R1.RC6_LL.RC6_S.RC6_Goff,
  .stacks_in_5240.RC6_L1.RC6_LF.RC6_S.RC6_Goff {
    width:50%;
  }
  .stacks_in_5240.RC6_LF.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
  .stacks_in_5240.RC6_LL.RC6_Goff {
    float: left;
    margin: 0 0 10px 0;
  }
}
@media (max-width: 600px) {
  .stacks_in_5240.RC6,
  .stacks_in_5240.RC6_S {
    width: 100% !important;
    margin: 0 0 10px 0 !important;
  }
}

#stacks_in_5240 {
	border: solid rgba(197, 133, 46, 1.00);
	border-width: 0px 0px 1px 0px;
	padding: 10px 0px 0px 0px;
}

#stacks_in_5247 {
	padding: 0px 0px 0px 10px;
}
#hoverBoxWrapperstacks_in_5279 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

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

#hoverBoxStaticstacks_in_5279 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_5279 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_5279 a,
#hoverBoxLinkstacks_in_5279 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_5279.touchDeviceDetected #hoverBoxStaticstacks_in_5279 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_5279.touchDeviceDetected #hoverBoxRolloverstacks_in_5279 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_5279.noTouchDeviceDetected #hoverBoxRolloverstacks_in_5279 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

#hoverBoxWrapperstacks_in_5279.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_5279 {
	opacity: 1.00;
}






















#stacks_in_5283 {
	padding: 0px 0px 0px 100px;
}

#stacks_in_5288 {
	padding: 0px 0px 0px 100px;
}
#hoverBoxWrapperstacks_in_5291 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

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

#hoverBoxStaticstacks_in_5291 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_5291 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_5291 a,
#hoverBoxLinkstacks_in_5291 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_5291.touchDeviceDetected #hoverBoxStaticstacks_in_5291 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_5291.touchDeviceDetected #hoverBoxRolloverstacks_in_5291 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_5291.noTouchDeviceDetected #hoverBoxRolloverstacks_in_5291 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

#hoverBoxWrapperstacks_in_5291.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_5291 {
	opacity: 1.00;
}






















#stacks_in_5295 {
	padding: 0px 0px 0px 100px;
}

#stacks_in_5300 {
	padding: 0px 0px 0px 100px;
}
#hoverBoxWrapperstacks_in_5303 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

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

#hoverBoxStaticstacks_in_5303 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_5303 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_5303 a,
#hoverBoxLinkstacks_in_5303 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_5303.touchDeviceDetected #hoverBoxStaticstacks_in_5303 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_5303.touchDeviceDetected #hoverBoxRolloverstacks_in_5303 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_5303.noTouchDeviceDetected #hoverBoxRolloverstacks_in_5303 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

#hoverBoxWrapperstacks_in_5303.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_5303 {
	opacity: 1.00;
}






















#stacks_in_5307 {
	padding: 0px 0px 0px 100px;
}

#stacks_in_5312 {
	padding: 0px 0px 0px 100px;
}
#hoverBoxWrapperstacks_in_5315 {
	height: auto;
	min-height: 0px;
	max-height: 1000px;
	display: block;
	position: relative;
	overflow: hidden;
	padding: 0;
	margin: 0;
	z-index: 1;
	cursor: auto;
}

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

#hoverBoxStaticstacks_in_5315 {
	position: relative;
	display: block;
	z-index: 8;
	width: 100%;
}

#hoverBoxRolloverstacks_in_5315 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
}

#hoverBoxLinkstacks_in_5315 a,
#hoverBoxLinkstacks_in_5315 a:hover {
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 30;
	height: 100%;
	width: 100%;
	background: url(../files/bg_fill.gif) repeat;
	border: none;
	outline: none;
}




#hoverBoxWrapperstacks_in_5315.touchDeviceDetected #hoverBoxStaticstacks_in_5315 {
	display: block;
	opacity: 1.00;
}

#hoverBoxWrapperstacks_in_5315.touchDeviceDetected #hoverBoxRolloverstacks_in_5315 {
	display: none;
	opacity: 0;
}









#hoverBoxWrapperstacks_in_5315.noTouchDeviceDetected #hoverBoxRolloverstacks_in_5315 {
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	z-index: 10;
	height: 100%;
	width: 100%;
	opacity: 0;
	-moz-transition: opacity 500ms linear;
	-webkit-transition: opacity 500ms linear;
	transition: opacity 500ms linear;
}

#hoverBoxWrapperstacks_in_5315.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_5315 {
	opacity: 1.00;
}






















#stacks_in_5319 {
	padding: 0px 0px 0px 100px;
}

#stacks_in_5324 {
	padding: 0px 0px 0px 100px;
}

#stacks_in_5796 {
	padding: 20px 0px 0px 0px;
}

#stacks_in_5798 {
	font-size: 99%;
}

#stacks_in_5802 {
	padding:  20px;
}
