@-webkit-keyframes slideup-swingInX{0%{-webkit-transform:perspective(400px) rotateX(-90deg)}100%{-webkit-transform:perspective(400px) rotateX(0deg)}}@keyframes slideup-swingInX{0%{-webkit-transform:perspective(400px) rotateX(-90deg);transform:perspective(400px) rotateX(-90deg)}100%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg)}}@-webkit-keyframes slideup-swingOutX{0%{-webkit-transform:perspective(400px) rotateX(0deg)}100%{-webkit-transform:perspective(400px) rotateX(-90deg)}}@keyframes slideup-swingOutX{0%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg)}100%{-webkit-transform:perspective(400px) rotateX(-90deg);transform:perspective(400px) rotateX(-90deg)}}@-webkit-keyframes slideup-slideDown{0%{-webkit-transform:translateY(-100%)}100%{-webkit-transform:translateY(0)}}@keyframes slideup-slideDown{0%{-webkit-transform:translateY(-100%);transform:translateY(-100%)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes slideup-slideUp{0%{-webkit-transform:translateY(0)}100%{-webkit-transform:translateY(-100%)}}@keyframes slideup-slideUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}100%{-webkit-transform:translateY(-100%);transform:translateY(-100%)}}@-webkit-keyframes slideup-flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);opacity:0}100%{-webkit-transform:perspective(400px) rotateX(0deg);opacity:1}}@keyframes slideup-flipInX{0%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}100%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}}@-webkit-keyframes slideup-flipOutX{0%{-webkit-transform:perspective(400px) rotateX(0deg);opacity:1}100%{-webkit-transform:perspective(400px) rotateX(90deg);opacity:0}}@keyframes slideup-flipOutX{0%{-webkit-transform:perspective(400px) rotateX(0deg);transform:perspective(400px) rotateX(0deg);opacity:1}100%{-webkit-transform:perspective(400px) rotateX(90deg);transform:perspective(400px) rotateX(90deg);opacity:0}}@-webkit-keyframes slideup-bounceInDown{0%{opacity:0;-webkit-transform:translateY(-200px)}60%{opacity:1;-webkit-transform:translateY(30px)}80%{-webkit-transform:translateY(-10px)}100%{-webkit-transform:translateY(0)}}@keyframes slideup-bounceInDown{0%{opacity:0;-webkit-transform:translateY(-200px);transform:translateY(-200px)}60%{opacity:1;-webkit-transform:translateY(30px);transform:translateY(30px)}80%{-webkit-transform:translateY(-10px);transform:translateY(-10px)}100%{-webkit-transform:translateY(0);transform:translateY(0)}}@-webkit-keyframes slideup-bounceOutUp{0%{-webkit-transform:translateY(0)}30%{opacity:1;-webkit-transform:translateY(20px)}100%{opacity:0;-webkit-transform:translateY(-200px)}}@keyframes slideup-bounceOutUp{0%{-webkit-transform:translateY(0);transform:translateY(0)}30%{opacity:1;-webkit-transform:translateY(20px);transform:translateY(20px)}100%{opacity:0;-webkit-transform:translateY(-200px);transform:translateY(-200px)}}
/*!
 * 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;
}
/*Start CSSLayerStack*/

 

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

	 
	background: url() 1 repeat 
	 

	
	 

	 
	center
	 

	 

	 
	center;
	 

 

 

}









#stacks_in_9895 .layer_containera
{
 
	height: px;
 

/*cursor:pointer;*/

display:block;

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

  
 

}

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

padding-top: 0px;



   
width: 100%;















   
min-height: 150px;
overflow: hidden;













/*Custom CSS;*/

   



}






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



   
width: 100%;






   
height: auto;
overflow: hidden;











top: 10px;





   
left: 0; right: 0;




  

/*Custom CSS;*/

   



}

#stacks_in_9895 .layernote 
{
 display: none !important; 

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

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

}

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


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



#hoverBoxWrapperstacks_in_9897 {
	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_9897 img {
	max-width: 100%;
	height: auto;
}

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

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

#hoverBoxLinkstacks_in_9897 a,
#hoverBoxLinkstacks_in_9897 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_9897.noTouchDeviceDetected #hoverBoxRolloverstacks_in_9897 {
	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_9897.noTouchDeviceDetected:hover #hoverBoxRolloverstacks_in_9897 {
	opacity: 1.00;
}





















/* Start Play stack CSS code */#stacks_in_27175 {	z-index: 4;}.stacks_in_27175playContainer {	overflow: hidden;	position: relative !important;	z-index: 6;}.stacks_in_27175playContainer {	background-image: url("") !important;	background-position: center center !important;	background-attachment: scroll;	-webkit-background-size: cover;	-moz-background-size: cover;	-o-background-size: cover;	background-size: cover;	background-repeat: cover;}  .stacks_in_27175overlay{	position: absolute;	top: 0;	left: 0;	bottom: 0;	right: 0;	z-index: 7;}.stacks_in_27175contentBox{	position: relative;	text-align: center;	opacity: 1;	-webkit-transition: opacity 100ms linear;    -moz-transition: opacity 100ms linear;    -o-transition: opacity 100ms linear;    transition: opacity 100ms linear;    z-index: 8;}.stacks_in_27175content{	position: relative;	max-width: 1000px;	margin: 0 auto 0 auto;	padding: 80px 20px 80px 20px;	text-align: center !important;	z-index: 8;	text-shadow: none !important;}.stacks_in_27175content,.stacks_in_27175content h1,.stacks_in_27175content h2,.stacks_in_27175content h3,.stacks_in_27175content h4,.stacks_in_27175content h5,.stacks_in_27175content h6{	color: rgba(255, 255, 255, 1.00) !important;}.stacks_in_27175content a,.stacks_in_27175content a:active,.stacks_in_27175content a:visited{	color: rgba(59, 148, 217, 1.00) !important;	text-decoration: none !important;}.stacks_in_27175content a:hover{	color: rgba(221, 221, 221, 1.00) !important;	text-decoration: none !important;}.stacks_in_27175playScrollButton i{	color: rgba(255, 255, 255, 1.00) !important;}.stacks_in_27175playScrollButton{	position: absolute;	width: 100%;	bottom: 0;	color: #fff !important;	font-size: 36px;	text-align: center;	padding-top: 30px;	padding-bottom: 30px;	display: none;	cursor: pointer;	z-index: 8;}	.stacks_in_27175playScrollButton{		display: block;	}	.stacks_in_27175playContainer {		min-height: 500px;	}		.stacks_in_27175contentBox{		position: absolute;		width: 100%;		top: 50%;		-webkit-transform: translate(0,-50%);		-moz-transform:    translate(0,-50%);		-ms-transform:     translate(0,-50%);		-o-transform:      translate(0,-50%);		transform:         translate(0,-50%);	}/* -- End Preview/Published -- */@keyframes playanimation {	43% { transform: translate(0,0);} 	0% { transform: translate(0,0);} 	30% { transform: translate(0,11px);} 	17% { transform: translate(0,-5px);} 	11% { transform: translate(0,0);} }@-webkit-keyframes playanimation {	43% { transform: translate(0,0);} 	0% { transform: translate(0,0);} 	30% { transform: translate(0,11px);} 	17% { transform: translate(0,-5px);} 	11% { transform: translate(0,0);} }/* apply the .animation class to the element you want to animate */.playanimation {	animation: playanimation 3s ease-in-out 0s infinite normal none;	-webkit-animation: playanimation 3s ease-in-out 0s infinite normal none;}	.wallpaper, 	.wallpaper .wallpaper-container, 	.wallpaper .wallpaper-media {		-webkit-transition: none !important;		        transition: none !important;	}	.wallpaper { overflow: hidden; position: relative;} 	.wallpaper .wallpaper-container { height: 100%; overflow: hidden; position: absolute; top: 0; width: 100%; z-index: 0; } 	.wallpaper .wallpaper-media { left: 0; opacity: 0; position: absolute; top: 0; } 	.wallpaper .wallpaper-media.animated {	 	-webkit-transition: opacity 0.5s linear !important;		        transition: opacity 0.5s linear !important; 	} 	.wallpaper .wallpaper-media img, 	.wallpaper .wallpaper-media video, 	.wallpaper .wallpaper-media iframe { display: block; height: 100%; width: 100%; } 	.wallpaper .wallpaper-embed.ready:after { content: ''; height: 100%; left: 0; position: absolute; top: 0; width: 100%; z-index: 1; } 	.wallpaper .wallpaper-embed.ready iframe { /* pointer-events: none; - safari doesn't like this :/ */ z-index: 0; } 	.wallpaper .wallpaper-media.native { background-position: center; background-size: cover; height: 100%; width: 100%; } 	.wallpaper .wallpaper-media.native img { display: none; } 	.wallpaper .wallpaper-media.fixed { background-position: center; background-attachment: fixed; height: 100%; width: 100%; } 	.wallpaper .wallpaper-media.fixed img { display: none; }/* End Play stack CSS code */#stacks_in_27193>.s3_row {
	margin: 0 -0px;
}

#stacks_in_27193>.s3_row>.s3_column_left {
	width: 33.43%;
}

#stacks_in_27193>.s3_row>.s3_column_right {
	width: 66.570000%;
}




#stacks_in_27193>.s3_row>.s3_column {
	padding: 0 0px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_27193>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_27193>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}






#stacks_in_27196 {
	padding: 0px 0px 0px 10px;
}

#stacks_out_27196 {
	width: 45%;
	margin-left:0;
}
/* Start Video Plus stack CSS code */.stacks_in_27189overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_27189leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27189leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27189leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27189leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27189rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27189rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27189theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27189overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27189leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27189leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27189leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27189leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27189rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27189rightcolContent{		margin: auto;	}}					.stacks_in_27189posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_27189posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27189posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27189posterWrapper img:hover{	cursor: pointer;}.stacks_in_27189rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27189rightCol{		display: none;	}	.stacks_in_27189leftCol{		position: absolute;		width: 100%;		height: 100%;		top:0;		left: 0;		right: 0;		overflow: scroll;		margin-left: -100%;		transition: all 0.6s ease;	}		@media all and (max-width: 768px) {		.stacks_in_27189overlay{			background: rgba(0,0,0,0.9) !important;			padding-top: 0px;		}				.stacks_in_27189leftCol{			background: rgba(0,0,0,0.9) !important;		}				.stacks_in_27189leftcolContent{		    width: 90%;		    margin: auto;		    text-align: center;		}	}.stacks_in_27189videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */#stacks_in_16948{overflow:visible}.pin-spacer.spacer-stacks_in_16948{width:100%;min-width:100%}.pin-spacer.spacer-stacks_in_16948.posFixed.allow-overlay{display:none}@media screen and (max-width:% id=breakpoint %px){.pin-spacer.spacer-stacks_in_16948.hide-below-bp{display:none}}@media screen and (min-width:% id=breakpoint %px){.pin-spacer.spacer-stacks_in_16948.hide-above-bp{display:none}}#stacks_in_16948 > .pin-fixed{z-index:999}#stacks_in_16948 > .pin-fixed.pin-it::after{background:#FFFFFF;opacity:0.50}#stacks_in_16948 > .pin-it.pin-static{position:relative;z-index:1}@media screen and (max-width:% id=breakpoint %px){#stacks_in_16948 > .pin-it.hide-below-bp{display:none}}@media screen and (min-width:% id=breakpoint %px){#stacks_in_16948 > .pin-it.hide-above-bp{display:none}}#stacks_in_16948 > .pin-it::after{z-index:-1;position:absolute;top:0;left:0;bottom:0;right:0;content:"";background:#FFFFFF;opacity:1.0;-webkit-transition:all 300ms ease-in-out;transition:all 300ms ease-in-out}#stacks_in_16948 > .pin-it.pin-fixed{position:fixed;top: 0px }@media screen and (max-width:% id=breakpoint %px){#stacks_in_16948 > .pin-it.pin-fixed.mob-full-width{left:0;width:100% !important}}@media screen and (min-width:% id=breakpoint %px){#stacks_in_16948 > .pin-it.pin-fixed{top:0px}}
#stacks_in_16948 .pin-it.pin-fixed.fixed-shadow   {-webkit-box-shadow:rgba(0,0,0,0.40) 0 1px 5px;-moz-box-shadow:rgba(0,0,0,0.40) 0 1px 5px;box-shadow:rgba(0,0,0,0.40) 0 1px 5px}

#stacks_in_16948 {
	background-color: rgba(255, 255, 255, 1.00);
}
#stacks_in_25131>.s3_row {
	margin: 0 -10px;
}

#stacks_in_25131>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_25131>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_25131>.s3_row>.s3_column_right {
	width: 33.33%;
}

#stacks_in_25131>.s3_row>.s3_column {
	padding: 0 10px;
}








@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_25131>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_25131>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}




#stacks_in_25131 {
	border: solid rgba(255, 255, 255, 1.00);
	border-width: 0px 0px 1px 0px;
}
.blockOverlay.cartloom-modal{z-index:9000!important}#stacks_in_25133 .expose_launcher{}.expose_Menu1{cursor:pointer}#expose_Menu1{display:none;z-index:9999;padding:20px;margin:0;overflow:visible !important;background-color:transparent;width:80%;max-width:550px;position:fixed;top:50%;left:50%;opacity:0;transition:all 0.5s ease;transform:translateY(-50%) translateX(-50%);height:auto;min-height:50px;border-radius:0px;border-style:solid;border-width:0px;border-color:#000000;}#expose_Menu1 img.youtube_poster{display:none}#expose_Menu1 > a.close{z-index:1000000;background-image:url('../../rw_common/plugins/stacks/expose-images/close.png');background-color:transparent !important;position:absolute;top:-12px;cursor:pointer;height:28px;width:28px;left:-12px;}

#stacks_in_25138 {
	letter-spacing: 10px;
	text-transform: capitalize;
	font-size: 80%;
	font-weight: bold;
}
#stacks_in_25155>.s3_row {
	margin: 0 -3px;
}

#stacks_in_25155>.s3_row>.s3_column {
	padding: 0 3px;
}








  


@media only screen and (max-width: 770px) {






}



@media only screen and (max-width: 400px) {






}




  
#stacks_in_27712>.s3_row {
	margin: 0 -3px;
}

#stacks_in_27712>.s3_row>.s3_column {
	padding: 0 3px;
}








  


@media only screen and (max-width: 770px) {






}



@media only screen and (max-width: 400px) {






}




  

#stacks_in_25169 {
	font-size: 70%;
}
.blockOverlay.cartloom-modal{z-index:9000!important}#stacks_in_25171 .expose_launcher{}.expose_Menu2{cursor:pointer}#expose_Menu2{display:none;z-index:9999;padding:20px;margin:0;overflow:visible !important;background-color:transparent;width:80%;max-width:600px;position:fixed;top:50%;left:50%;opacity:0;transition:all 0.5s ease;transform:translateY(-50%) translateX(-50%);height:auto;min-height:50px;border-radius:0px;border-style:solid;border-width:0px;border-color:#000000;}#expose_Menu2 img.youtube_poster{display:none}#expose_Menu2 > a.close{z-index:1000000;background-image:url('../../rw_common/plugins/stacks/expose-images/close.png');background-color:transparent !important;position:absolute;top:-12px;cursor:pointer;height:28px;width:28px;left:-12px;}

#stacks_in_25176 {
	letter-spacing: 10px;
	text-transform: capitalize;
	font-size: 80%;
	font-weight: bold;
}
/*
 * 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_25189 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_25189.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_25189.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 33%;


}
.stacks_in_25189.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 67%;

  float:left;
}

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

.stacks_in_25189.ResponsiveCol2_L {
  float: left;
  width: 30%;
  /*width: calc(100%/2 - 3%);*/
  margin: 0 0 0px 0;
}
.stacks_in_25189.ResponsiveCol2_R {
  float: right;
  width: 64%;
  /*width: calc(100%/2 - 3%);*/
  margin: 0 0 0px 0;
}
@media (max-width: 800px) {

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

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

.stacks_in_25189.RC3_L {
  float: left;
  width: -3%;
  width: calc(100%/3 - 3.4%);
  margin: 0 0 0px 0;

}
.stacks_in_25189.RC3_M {
  float: left;
  margin: 0 6% 0px 6%;
  width: 94%;
  width: calc(100%/3 - 3.2% );
}

.stacks_in_25189.RC3_R {
  float: left;
  width: -3%;
  width: calc(100%/3 - 3.4%);
  margin: 0 0 0px 0;
}

@media (max-width: 800px) {

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

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

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

  .stacks_in_25189.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_25189.RC3_M.RespCol2 {
    float: left;
    width: 47%;
    width: calc(100%/2 - 3%);
    margin: 0 3% 0px 0;
  }
  .stacks_in_25189.RC3_R.RespCol2 {
    float: left;
    width: 47%;
    width: calc(100%/2 - 3%);
    margin: 0 0 0px 3%;
  }
  .stacks_in_25189.RC3_RS.RespCol2 {
    float: left;
    width: 47%;
    margin: 0 0 0px 3%;
  }
  .stacks_in_25189.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_25189.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }
  .stacks_in_25189.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }
  .stacks_in_25189.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }

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

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

.stacks_in_25189.RC4_L {
  float: left;
}
.stacks_in_25189.RC4_R {
  float: left;
}
.stacks_in_25189.RC4 {
  width: 19.5%;
  width: calc(100%/4 - 3%*1.5);
}
.stacks_in_25189.RC4_S {
  width: 19.6%;
}
.stacks_in_25189.RC4_LF,
.stacks_in_25189.RC4_LL,
.stacks_in_25189.RC4_LF2 {
  margin: 0 3% 0px 3%;
}
.stacks_in_25189.RC4_LF {
  margin: 0 3% 0px 0;
}
.stacks_in_25189.RC4_LL2 {
  margin: 0 0 0px 3%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_25189.RC4_S{
    width: 19.5%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_25189.RC4 {
    width: 45%;
    width: calc(100%/2 - 3%);
  }
  .stacks_in_25189.RC4_S {
    width: 45%;
  }
  .stacks_in_25189.RC4_LF {
    float: left;
    margin: 0 3% 0px 0 ;
  }
  .stacks_in_25189.RC4_LL {
    float: left;
    margin: 0 0 0px 3% ;
  }
  .stacks_in_25189.RC4_LF2 {
    float: left;
    margin: 0 3% 0px 0 ;
  }
  .stacks_in_25189.RC4_LL2 {
    float: left;
    margin: 0 0 0px 3% ;
  }
  .stacks_in_25189.RC4_R {
    float:left;
  }
  .stacks_in_25189.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_25189.RC4_S.RC4_Goff,
  .stacks_in_25189.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_25189.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
  .stacks_in_25189.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
  .stacks_in_25189.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
  .stacks_in_25189.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
}

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

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

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

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

  .stacks_in_25189.RC5.RespCol2,
  .stacks_in_25189.RC5_S.RespCol2 {
    width: 45%;
  }
  .stacks_in_25189.RC5_LF.RespCol2,
  .stacks_in_25189.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 0px 3%;
  }
  .stacks_in_25189.RC5_LL.RespCol2 {
    float: left;
    margin: 0 3% 0px 0;
  }
  .stacks_in_25189.RC5.RespColone5_First.RespCol2,
  .stacks_in_25189.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 0px auto;
  }
  .stacks_in_25189.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_25189.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_25189.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_25189.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_25189.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 0px 0;

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

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

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

#stacks_in_25189 {
	padding: 0px 0px 5px 0px;
}

#stacks_in_25199 {
	font-size: 110%;
}
/*
 * 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_25211 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_25211.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_25211.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 33%;


}
.stacks_in_25211.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 67%;

  float:left;
}

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

.stacks_in_25211.ResponsiveCol2_L {
  float: left;
  width: 30%;
  /*width: calc(100%/2 - 3%);*/
  margin: 0 0 0px 0;
}
.stacks_in_25211.ResponsiveCol2_R {
  float: right;
  width: 64%;
  /*width: calc(100%/2 - 3%);*/
  margin: 0 0 0px 0;
}
@media (max-width: 800px) {

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

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

.stacks_in_25211.RC3_L {
  float: left;
  width: -3%;
  width: calc(100%/3 - 3.4%);
  margin: 0 0 0px 0;

}
.stacks_in_25211.RC3_M {
  float: left;
  margin: 0 6% 0px 6%;
  width: 94%;
  width: calc(100%/3 - 3.2% );
}

.stacks_in_25211.RC3_R {
  float: left;
  width: -3%;
  width: calc(100%/3 - 3.4%);
  margin: 0 0 0px 0;
}

@media (max-width: 800px) {

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

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

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

  .stacks_in_25211.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_25211.RC3_M.RespCol2 {
    float: left;
    width: 47%;
    width: calc(100%/2 - 3%);
    margin: 0 3% 0px 0;
  }
  .stacks_in_25211.RC3_R.RespCol2 {
    float: left;
    width: 47%;
    width: calc(100%/2 - 3%);
    margin: 0 0 0px 3%;
  }
  .stacks_in_25211.RC3_RS.RespCol2 {
    float: left;
    width: 47%;
    margin: 0 0 0px 3%;
  }
  .stacks_in_25211.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_25211.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }
  .stacks_in_25211.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }
  .stacks_in_25211.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }

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

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

.stacks_in_25211.RC4_L {
  float: left;
}
.stacks_in_25211.RC4_R {
  float: left;
}
.stacks_in_25211.RC4 {
  width: 19.5%;
  width: calc(100%/4 - 3%*1.5);
}
.stacks_in_25211.RC4_S {
  width: 19.6%;
}
.stacks_in_25211.RC4_LF,
.stacks_in_25211.RC4_LL,
.stacks_in_25211.RC4_LF2 {
  margin: 0 3% 0px 3%;
}
.stacks_in_25211.RC4_LF {
  margin: 0 3% 0px 0;
}
.stacks_in_25211.RC4_LL2 {
  margin: 0 0 0px 3%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_25211.RC4_S{
    width: 19.5%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_25211.RC4 {
    width: 45%;
    width: calc(100%/2 - 3%);
  }
  .stacks_in_25211.RC4_S {
    width: 45%;
  }
  .stacks_in_25211.RC4_LF {
    float: left;
    margin: 0 3% 0px 0 ;
  }
  .stacks_in_25211.RC4_LL {
    float: left;
    margin: 0 0 0px 3% ;
  }
  .stacks_in_25211.RC4_LF2 {
    float: left;
    margin: 0 3% 0px 0 ;
  }
  .stacks_in_25211.RC4_LL2 {
    float: left;
    margin: 0 0 0px 3% ;
  }
  .stacks_in_25211.RC4_R {
    float:left;
  }
  .stacks_in_25211.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_25211.RC4_S.RC4_Goff,
  .stacks_in_25211.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_25211.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
  .stacks_in_25211.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
  .stacks_in_25211.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
  .stacks_in_25211.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
}

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

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

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

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

  .stacks_in_25211.RC5.RespCol2,
  .stacks_in_25211.RC5_S.RespCol2 {
    width: 45%;
  }
  .stacks_in_25211.RC5_LF.RespCol2,
  .stacks_in_25211.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 0px 3%;
  }
  .stacks_in_25211.RC5_LL.RespCol2 {
    float: left;
    margin: 0 3% 0px 0;
  }
  .stacks_in_25211.RC5.RespColone5_First.RespCol2,
  .stacks_in_25211.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 0px auto;
  }
  .stacks_in_25211.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_25211.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_25211.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_25211.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_25211.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 0px 0;

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

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

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

#stacks_in_25211 {
	padding: 0px 0px 5px 0px;
}

#stacks_in_25221 {
	font-size: 110%;
}
/*
 * 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_25233 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_25233.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_25233.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 33%;


}
.stacks_in_25233.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 67%;

  float:left;
}

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

.stacks_in_25233.ResponsiveCol2_L {
  float: left;
  width: 30%;
  /*width: calc(100%/2 - 3%);*/
  margin: 0 0 0px 0;
}
.stacks_in_25233.ResponsiveCol2_R {
  float: right;
  width: 64%;
  /*width: calc(100%/2 - 3%);*/
  margin: 0 0 0px 0;
}
@media (max-width: 800px) {

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

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

.stacks_in_25233.RC3_L {
  float: left;
  width: -3%;
  width: calc(100%/3 - 3.4%);
  margin: 0 0 0px 0;

}
.stacks_in_25233.RC3_M {
  float: left;
  margin: 0 6% 0px 6%;
  width: 94%;
  width: calc(100%/3 - 3.2% );
}

.stacks_in_25233.RC3_R {
  float: left;
  width: -3%;
  width: calc(100%/3 - 3.4%);
  margin: 0 0 0px 0;
}

@media (max-width: 800px) {

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

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

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

  .stacks_in_25233.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_25233.RC3_M.RespCol2 {
    float: left;
    width: 47%;
    width: calc(100%/2 - 3%);
    margin: 0 3% 0px 0;
  }
  .stacks_in_25233.RC3_R.RespCol2 {
    float: left;
    width: 47%;
    width: calc(100%/2 - 3%);
    margin: 0 0 0px 3%;
  }
  .stacks_in_25233.RC3_RS.RespCol2 {
    float: left;
    width: 47%;
    margin: 0 0 0px 3%;
  }
  .stacks_in_25233.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_25233.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }
  .stacks_in_25233.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }
  .stacks_in_25233.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }

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

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

.stacks_in_25233.RC4_L {
  float: left;
}
.stacks_in_25233.RC4_R {
  float: left;
}
.stacks_in_25233.RC4 {
  width: 19.5%;
  width: calc(100%/4 - 3%*1.5);
}
.stacks_in_25233.RC4_S {
  width: 19.6%;
}
.stacks_in_25233.RC4_LF,
.stacks_in_25233.RC4_LL,
.stacks_in_25233.RC4_LF2 {
  margin: 0 3% 0px 3%;
}
.stacks_in_25233.RC4_LF {
  margin: 0 3% 0px 0;
}
.stacks_in_25233.RC4_LL2 {
  margin: 0 0 0px 3%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_25233.RC4_S{
    width: 19.5%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_25233.RC4 {
    width: 45%;
    width: calc(100%/2 - 3%);
  }
  .stacks_in_25233.RC4_S {
    width: 45%;
  }
  .stacks_in_25233.RC4_LF {
    float: left;
    margin: 0 3% 0px 0 ;
  }
  .stacks_in_25233.RC4_LL {
    float: left;
    margin: 0 0 0px 3% ;
  }
  .stacks_in_25233.RC4_LF2 {
    float: left;
    margin: 0 3% 0px 0 ;
  }
  .stacks_in_25233.RC4_LL2 {
    float: left;
    margin: 0 0 0px 3% ;
  }
  .stacks_in_25233.RC4_R {
    float:left;
  }
  .stacks_in_25233.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_25233.RC4_S.RC4_Goff,
  .stacks_in_25233.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_25233.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
  .stacks_in_25233.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
  .stacks_in_25233.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
  .stacks_in_25233.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
}

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

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

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

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

  .stacks_in_25233.RC5.RespCol2,
  .stacks_in_25233.RC5_S.RespCol2 {
    width: 45%;
  }
  .stacks_in_25233.RC5_LF.RespCol2,
  .stacks_in_25233.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 0px 3%;
  }
  .stacks_in_25233.RC5_LL.RespCol2 {
    float: left;
    margin: 0 3% 0px 0;
  }
  .stacks_in_25233.RC5.RespColone5_First.RespCol2,
  .stacks_in_25233.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 0px auto;
  }
  .stacks_in_25233.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_25233.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_25233.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_25233.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_25233.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 0px 0;

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

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

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

#stacks_in_25233 {
	padding: 0px 0px 5px 0px;
}

#stacks_in_25243 {
	font-size: 110%;
}
/*
 * 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_25255 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_25255.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_25255.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 33%;


}
.stacks_in_25255.ResponsiveCol2_R.RC2_Goff {
  width: calc(100%/2);
  width: 67%;

  float:left;
}

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

.stacks_in_25255.ResponsiveCol2_L {
  float: left;
  width: 30%;
  /*width: calc(100%/2 - 3%);*/
  margin: 0 0 0px 0;
}
.stacks_in_25255.ResponsiveCol2_R {
  float: right;
  width: 64%;
  /*width: calc(100%/2 - 3%);*/
  margin: 0 0 0px 0;
}
@media (max-width: 800px) {

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

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

.stacks_in_25255.RC3_L {
  float: left;
  width: -3%;
  width: calc(100%/3 - 3.4%);
  margin: 0 0 0px 0;

}
.stacks_in_25255.RC3_M {
  float: left;
  margin: 0 6% 0px 6%;
  width: 94%;
  width: calc(100%/3 - 3.2% );
}

.stacks_in_25255.RC3_R {
  float: left;
  width: -3%;
  width: calc(100%/3 - 3.4%);
  margin: 0 0 0px 0;
}

@media (max-width: 800px) {

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

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

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

  .stacks_in_25255.RC3_L.RespCol2 {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_25255.RC3_M.RespCol2 {
    float: left;
    width: 47%;
    width: calc(100%/2 - 3%);
    margin: 0 3% 0px 0;
  }
  .stacks_in_25255.RC3_R.RespCol2 {
    float: left;
    width: 47%;
    width: calc(100%/2 - 3%);
    margin: 0 0 0px 3%;
  }
  .stacks_in_25255.RC3_RS.RespCol2 {
    float: left;
    width: 47%;
    margin: 0 0 0px 3%;
  }
  .stacks_in_25255.RC3_L.RespCol2.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 0px 0;
  }
  .stacks_in_25255.RC3_M.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }
  .stacks_in_25255.RC3_R.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }
  .stacks_in_25255.RC3_RS.RespCol2.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 0px 0;
  }

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

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

.stacks_in_25255.RC4_L {
  float: left;
}
.stacks_in_25255.RC4_R {
  float: left;
}
.stacks_in_25255.RC4 {
  width: 19.5%;
  width: calc(100%/4 - 3%*1.5);
}
.stacks_in_25255.RC4_S {
  width: 19.6%;
}
.stacks_in_25255.RC4_LF,
.stacks_in_25255.RC4_LL,
.stacks_in_25255.RC4_LF2 {
  margin: 0 3% 0px 3%;
}
.stacks_in_25255.RC4_LF {
  margin: 0 3% 0px 0;
}
.stacks_in_25255.RC4_LL2 {
  margin: 0 0 0px 3%;
  float: float;
}
/*@media (max-width: 1074px) {
  .stacks_in_25255.RC4_S{
    width: 19.5%;
  }
}*/
@media (max-width: 800px) {
  .stacks_in_25255.RC4 {
    width: 45%;
    width: calc(100%/2 - 3%);
  }
  .stacks_in_25255.RC4_S {
    width: 45%;
  }
  .stacks_in_25255.RC4_LF {
    float: left;
    margin: 0 3% 0px 0 ;
  }
  .stacks_in_25255.RC4_LL {
    float: left;
    margin: 0 0 0px 3% ;
  }
  .stacks_in_25255.RC4_LF2 {
    float: left;
    margin: 0 3% 0px 0 ;
  }
  .stacks_in_25255.RC4_LL2 {
    float: left;
    margin: 0 0 0px 3% ;
  }
  .stacks_in_25255.RC4_R {
    float:left;
  }
  .stacks_in_25255.RC4.RC4_Goff {
    width: 50%;
  }
  .stacks_in_25255.RC4_S.RC4_Goff,
  .stacks_in_25255.RC4_R.RC4_LL2.RC4_S.RC4_Goff {
    width: 50%;
  }
  .stacks_in_25255.RC4_LF.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
  .stacks_in_25255.RC4_LL.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
  .stacks_in_25255.RC4_LF2.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
  .stacks_in_25255.RC4_LL2.RC4_Goff {
    float: left;
    margin: 0 0 0px 0 ;
  }
}

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

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

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

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

  .stacks_in_25255.RC5.RespCol2,
  .stacks_in_25255.RC5_S.RespCol2 {
    width: 45%;
  }
  .stacks_in_25255.RC5_LF.RespCol2,
  .stacks_in_25255.RespColone5_Last.RespCol2 {
    float: left;
    margin: 0 0 0px 3%;
  }
  .stacks_in_25255.RC5_LL.RespCol2 {
    float: left;
    margin: 0 3% 0px 0;
  }
  .stacks_in_25255.RC5.RespColone5_First.RespCol2,
  .stacks_in_25255.RC5_S.RespColone5_First.RespCol2 {
    float: left;
    width: 99.8%;
    margin: 0 auto 0px auto;
  }
  .stacks_in_25255.RC5.RespCol2.RC5_Goff {
    width: 50%;
  }
  .stacks_in_25255.RC5_S.RespCol2.RC5_Goff,
  .stacks_in_25255.RC5_R1.RC5_LF.RespColone5_Last.RespCol2.RC5_S.RC5_Goff {
    width: 50%;
  }
  .stacks_in_25255.RC5_LF.RespCol2.RC5_Goff,
  .stacks_in_25255.RespColone5_Last.RespCol2.RC5_Goff {
    float: left;
    margin: 0 0 0px 0;

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

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

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

#stacks_in_25265 {
	font-size: 110%;
}
.blockOverlay.cartloom-modal{z-index:9000!important}#stacks_in_25267 .expose_launcher{}.expose_Menu3{cursor:pointer}#expose_Menu3{display:none;z-index:9999;padding:20px;margin:0;overflow:visible !important;background-color:transparent;width:80%;max-width:600px;position:fixed;top:50%;left:50%;opacity:0;transition:all 0.5s ease;transform:translateY(-50%) translateX(-50%);height:auto;min-height:50px;border-radius:0px;border-style:solid;border-width:0px;border-color:#000000;}#expose_Menu3 img.youtube_poster{display:none}#expose_Menu3 > a.close{z-index:1000000;background-image:url('../../rw_common/plugins/stacks/expose-images/close.png');background-color:transparent !important;position:absolute;top:-12px;cursor:pointer;height:28px;width:28px;left:-12px;}

#stacks_in_25272 {
	letter-spacing: 10px;
	text-transform: capitalize;
	font-size: 80%;
	font-weight: bold;
}

#stacks_out_25276 {
	width: 50%;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_25278Calligrapher{			font-size: 200% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_25278Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_25278Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_25278Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_25278Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_25278Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_25278Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_25278Calligrapher h6, .stacks_in_25278Calligrapher h5, .stacks_in_25278Calligrapher h4, .stacks_in_25278Calligrapher h3, .stacks_in_25278Calligrapher h2, .stacks_in_25278Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- */ .stacks_in_25278Calligrapher, .stacks_in_25278Calligrapher h1, .stacks_in_25278Calligrapher h2, .stacks_in_25278Calligrapher h3, .stacks_in_25278Calligrapher h4, .stacks_in_25278Calligrapher h5, .stacks_in_25278Calligrapher h6{	font-family: "'Droid Serif', serif" !important;}/* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_25278targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_25278Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_25278Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_25278Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_25278Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_25278 {
	padding: 0px 0px 10px 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_25282 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_25282.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_25282.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


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

  float:left;
}

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

.stacks_in_25282.ResponsiveCol2_L {
  float: left;
  width: 49%;
  /*width: calc(100%/2 - 1%);*/
  margin: 0 0 10px 0;
}
.stacks_in_25282.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_25282.ResponsiveCol2_L {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_25282.ResponsiveCol2_R {
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_25282.ResponsiveCol2_L.RC2_Goff {
    width: 100%;
    margin:0 0 10px 0;
  }
  .stacks_in_25282.ResponsiveCol2_R.RC2_Goff {
    width: 100%;
    margin: 0 0 10px 0;
  }
}

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

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

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

.stacks_in_25282.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_25282.RC3_L.RespCol1 {
    float: left;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 1% 10px 0;
  }
  .stacks_in_25282.RC3_M.RespCol1 {
    float: right;
    width: 49%;
    width: calc(100%/2 - 1%);
    margin: 0 0 10px 1%;
  }
  .stacks_in_25282.RC3_R.RespCol1,
  .stacks_in_25282.RC3_RS.RespCol1 {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_25282.RC3_L.RespCol1.RC3_Goff {
    float: left;
    width: 50%;
    margin: 0 0 10px 0;
  }
  .stacks_in_25282.RC3_M.RespCol1.RC3_Goff  {
    float: right;
    width: %(50  0)%%;
    margin: 0 0 10px 0;
  }
  .stacks_in_25282.RC3_R.RespCol1.RC3_Goff {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }
  .stacks_in_25282.RC3_RS.RespCol1.RC3_Goff  {
    float: left;
    width: 100%;
    margin: 0 0 10px 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#stacks_out_25284 {
	width: 85px;
}

#stacks_out_25287 {
	width: 85px;
}

#stacks_out_25290 {
	width: 85px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_25292Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_25292Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_25292Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_25292Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_25292Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_25292Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_25292Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_25292Calligrapher h6, .stacks_in_25292Calligrapher h5, .stacks_in_25292Calligrapher h4, .stacks_in_25292Calligrapher h3, .stacks_in_25292Calligrapher h2, .stacks_in_25292Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- */ .stacks_in_25292Calligrapher, .stacks_in_25292Calligrapher h1, .stacks_in_25292Calligrapher h2, .stacks_in_25292Calligrapher h3, .stacks_in_25292Calligrapher h4, .stacks_in_25292Calligrapher h5, .stacks_in_25292Calligrapher h6{	font-family: "'Droid Serif', serif" !important;}/* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_25292targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_25292Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_25292Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_25292Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_25292Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#toTop{display:none;text-decoration:none;position:fixed;bottom:10px;right:10px;overflow:hidden;width:51px;height:51px;border:none;text-indent:-9999px;background:url(../files/elevator-images/top.png) no-repeat left top;z-index:9988}#toTop:hover{background:url(../files/elevator-images/top.png) no-repeat left -51px}#toTop:active,#toTop:focus{outline:none}
#stacks_in_29754 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29754 a {
    text-decoration: none;
    outline: none;
}


a.cookieManagerCustomButton {
  background: #1bb821;
  background-image: -webkit-linear-gradient(top, #1bb821, #176e10);
  background-image: -moz-linear-gradient(top, #1bb821, #176e10);
  background-image: -ms-linear-gradient(top, #1bb821, #176e10);
  background-image: -o-linear-gradient(top, #1bb821, #176e10);
  background-image: linear-gradient(to bottom, #1bb821, #176e10);
  -webkit-border-radius: 5;
  -moz-border-radius: 5;
  border-radius: 5px;
  font-family: Arial;
  color: #ffffff;
  font-size: 16px;
  padding: 10px 20px 10px 20px;
  text-decoration: none;
}

a.cookieManagerCustomButton:hover {
  background: #6bcc5a;
  background-image: -webkit-linear-gradient(top, #6bcc5a, #178a17);
  background-image: -moz-linear-gradient(top, #6bcc5a, #178a17);
  background-image: -ms-linear-gradient(top, #6bcc5a, #178a17);
  background-image: -o-linear-gradient(top, #6bcc5a, #178a17);
  background-image: linear-gradient(to bottom, #6bcc5a, #178a17);
  text-decoration: none;
}

/* Preview and publish styling */

	/* Start hidden */
	#animateItWrapperstacks_in_29760 {
		opacity: 0;
	}

	


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





/* Start Video Plus stack CSS code */.stacks_in_29761overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_29761leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_29761leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_29761leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_29761leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_29761rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_29761rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_29761theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_29761overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_29761leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_29761leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_29761leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_29761leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_29761rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_29761rightcolContent{		margin: auto;	}}					.stacks_in_29761posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_29761posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_29761posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_29761posterWrapper img:hover{	cursor: pointer;}.stacks_in_29761rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_29761videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_29761 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_29762Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_29762Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_29762Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_29762Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_29762Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_29762Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_29762Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_29762Calligrapher h6, .stacks_in_29762Calligrapher h5, .stacks_in_29762Calligrapher h4, .stacks_in_29762Calligrapher h3, .stacks_in_29762Calligrapher h2, .stacks_in_29762Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_29762Calligrapher, .stacks_in_29762Calligrapher h1, .stacks_in_29762Calligrapher h2, .stacks_in_29762Calligrapher h3, .stacks_in_29762Calligrapher h4, .stacks_in_29762Calligrapher h5, .stacks_in_29762Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_29762targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_29762Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_29762Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_29762Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_29762Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_29766Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_29766Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29766Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29766Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29766Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29766Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29766Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29766Calligrapher h6, .stacks_in_29766Calligrapher h5, .stacks_in_29766Calligrapher h4, .stacks_in_29766Calligrapher h3, .stacks_in_29766Calligrapher h2, .stacks_in_29766Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_29766Calligrapher, .stacks_in_29766Calligrapher h1, .stacks_in_29766Calligrapher h2, .stacks_in_29766Calligrapher h3, .stacks_in_29766Calligrapher h4, .stacks_in_29766Calligrapher h5, .stacks_in_29766Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_29766targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_29766Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_29766Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_29766Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_29766Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//*
 * 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_13683 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_13683.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_13683.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


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

  float:left;
}

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Preview and publish styling */

	/* Start hidden */
	#animateItWrapperstacks_in_13685 {
		opacity: 0;
	}

	


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





/* Start Video Plus stack CSS code */.stacks_in_13687overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_13687leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_13687leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_13687leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_13687leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_13687rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_13687rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_13687theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_13687overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_13687leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_13687leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_13687leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_13687leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_13687rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_13687rightcolContent{		margin: auto;	}}					.stacks_in_13687posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_13687posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_13687posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_13687posterWrapper img:hover{	cursor: pointer;}.stacks_in_13687rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_13687videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_13687 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_13689Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_13689Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13689Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13689Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13689Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13689Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13689Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13689Calligrapher h6, .stacks_in_13689Calligrapher h5, .stacks_in_13689Calligrapher h4, .stacks_in_13689Calligrapher h3, .stacks_in_13689Calligrapher h2, .stacks_in_13689Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_13689Calligrapher, .stacks_in_13689Calligrapher h1, .stacks_in_13689Calligrapher h2, .stacks_in_13689Calligrapher h3, .stacks_in_13689Calligrapher h4, .stacks_in_13689Calligrapher h5, .stacks_in_13689Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_13689targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_13689Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_13689Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_13689Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_13689Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_13693Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_13693Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13693Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13693Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13693Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13693Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13693Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13693Calligrapher h6, .stacks_in_13693Calligrapher h5, .stacks_in_13693Calligrapher h4, .stacks_in_13693Calligrapher h3, .stacks_in_13693Calligrapher h2, .stacks_in_13693Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_13693Calligrapher, .stacks_in_13693Calligrapher h1, .stacks_in_13693Calligrapher h2, .stacks_in_13693Calligrapher h3, .stacks_in_13693Calligrapher h4, .stacks_in_13693Calligrapher h5, .stacks_in_13693Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_13693targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_13693Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_13693Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_13693Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_13693Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

	/* Start hidden */
	#animateItWrapperstacks_in_13700 {
		opacity: 0;
	}

	


#animateItWrapperstacks_in_13700.animated {
	animation-duration: 1500ms;
	animation-delay: 10ms;
}





/* Start Video Plus stack CSS code */.stacks_in_13702overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_13702leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_13702leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_13702leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_13702leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_13702rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_13702rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_13702theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_13702overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_13702leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_13702leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_13702leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_13702leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_13702rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_13702rightcolContent{		margin: auto;	}}					.stacks_in_13702posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_13702posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_13702posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_13702posterWrapper img:hover{	cursor: pointer;}.stacks_in_13702rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_13702videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_13702 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_13704Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_13704Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13704Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13704Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13704Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13704Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13704Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13704Calligrapher h6, .stacks_in_13704Calligrapher h5, .stacks_in_13704Calligrapher h4, .stacks_in_13704Calligrapher h3, .stacks_in_13704Calligrapher h2, .stacks_in_13704Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_13704Calligrapher, .stacks_in_13704Calligrapher h1, .stacks_in_13704Calligrapher h2, .stacks_in_13704Calligrapher h3, .stacks_in_13704Calligrapher h4, .stacks_in_13704Calligrapher h5, .stacks_in_13704Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_13704targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_13704Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_13704Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_13704Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_13704Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_13708Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_13708Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13708Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13708Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13708Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13708Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13708Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13708Calligrapher h6, .stacks_in_13708Calligrapher h5, .stacks_in_13708Calligrapher h4, .stacks_in_13708Calligrapher h3, .stacks_in_13708Calligrapher h2, .stacks_in_13708Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_13708Calligrapher, .stacks_in_13708Calligrapher h1, .stacks_in_13708Calligrapher h2, .stacks_in_13708Calligrapher h3, .stacks_in_13708Calligrapher h4, .stacks_in_13708Calligrapher h5, .stacks_in_13708Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_13708targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_13708Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_13708Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_13708Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_13708Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

	/* Start hidden */
	#animateItWrapperstacks_in_13715 {
		opacity: 0;
	}

	


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





/* Start Video Plus stack CSS code */.stacks_in_13717overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_13717leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_13717leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_13717leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_13717leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_13717rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_13717rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_13717theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_13717overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_13717leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_13717leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_13717leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_13717leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_13717rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_13717rightcolContent{		margin: auto;	}}					.stacks_in_13717posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_13717posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_13717posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_13717posterWrapper img:hover{	cursor: pointer;}.stacks_in_13717rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_13717videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_13717 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_13719Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_13719Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13719Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13719Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13719Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13719Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13719Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13719Calligrapher h6, .stacks_in_13719Calligrapher h5, .stacks_in_13719Calligrapher h4, .stacks_in_13719Calligrapher h3, .stacks_in_13719Calligrapher h2, .stacks_in_13719Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_13719Calligrapher, .stacks_in_13719Calligrapher h1, .stacks_in_13719Calligrapher h2, .stacks_in_13719Calligrapher h3, .stacks_in_13719Calligrapher h4, .stacks_in_13719Calligrapher h5, .stacks_in_13719Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_13719targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_13719Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_13719Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_13719Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_13719Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_13723Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_13723Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13723Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13723Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13723Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13723Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13723Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13723Calligrapher h6, .stacks_in_13723Calligrapher h5, .stacks_in_13723Calligrapher h4, .stacks_in_13723Calligrapher h3, .stacks_in_13723Calligrapher h2, .stacks_in_13723Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_13723Calligrapher, .stacks_in_13723Calligrapher h1, .stacks_in_13723Calligrapher h2, .stacks_in_13723Calligrapher h3, .stacks_in_13723Calligrapher h4, .stacks_in_13723Calligrapher h5, .stacks_in_13723Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_13723targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_13723Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_13723Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_13723Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_13723Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

	/* Start hidden */
	#animateItWrapperstacks_in_13730 {
		opacity: 0;
	}

	


#animateItWrapperstacks_in_13730.animated {
	animation-duration: 1500ms;
	animation-delay: 10ms;
}





/* Start Video Plus stack CSS code */.stacks_in_13732overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_13732leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_13732leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_13732leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_13732leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_13732rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_13732rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_13732theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_13732overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_13732leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_13732leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_13732leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_13732leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_13732rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_13732rightcolContent{		margin: auto;	}}					.stacks_in_13732posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_13732posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_13732posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_13732posterWrapper img:hover{	cursor: pointer;}.stacks_in_13732rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_13732videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_13732 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_13734Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_13734Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13734Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13734Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13734Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13734Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13734Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_13734Calligrapher h6, .stacks_in_13734Calligrapher h5, .stacks_in_13734Calligrapher h4, .stacks_in_13734Calligrapher h3, .stacks_in_13734Calligrapher h2, .stacks_in_13734Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_13734Calligrapher, .stacks_in_13734Calligrapher h1, .stacks_in_13734Calligrapher h2, .stacks_in_13734Calligrapher h3, .stacks_in_13734Calligrapher h4, .stacks_in_13734Calligrapher h5, .stacks_in_13734Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_13734targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_13734Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_13734Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_13734Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_13734Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_13738Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_13738Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13738Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13738Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13738Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13738Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13738Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_13738Calligrapher h6, .stacks_in_13738Calligrapher h5, .stacks_in_13738Calligrapher h4, .stacks_in_13738Calligrapher h3, .stacks_in_13738Calligrapher h2, .stacks_in_13738Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_13738Calligrapher, .stacks_in_13738Calligrapher h1, .stacks_in_13738Calligrapher h2, .stacks_in_13738Calligrapher h3, .stacks_in_13738Calligrapher h4, .stacks_in_13738Calligrapher h5, .stacks_in_13738Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_13738targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_13738Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_13738Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_13738Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_13738Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_27734 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_27734 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_27358overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_27358leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27358leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27358leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27358leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27358rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27358rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27358theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27358overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27358leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27358leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27358leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27358leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27358rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27358rightcolContent{		margin: auto;	}}					.stacks_in_27358posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_27358posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27358posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27358posterWrapper img:hover{	cursor: pointer;}.stacks_in_27358rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27358videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27358 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27359Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27359Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27359Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27359Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27359Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27359Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27359Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27359Calligrapher h6, .stacks_in_27359Calligrapher h5, .stacks_in_27359Calligrapher h4, .stacks_in_27359Calligrapher h3, .stacks_in_27359Calligrapher h2, .stacks_in_27359Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27359Calligrapher, .stacks_in_27359Calligrapher h1, .stacks_in_27359Calligrapher h2, .stacks_in_27359Calligrapher h3, .stacks_in_27359Calligrapher h4, .stacks_in_27359Calligrapher h5, .stacks_in_27359Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27359targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27359Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27359Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27359Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27359Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27363Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27363Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27363Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27363Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27363Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27363Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27363Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27363Calligrapher h6, .stacks_in_27363Calligrapher h5, .stacks_in_27363Calligrapher h4, .stacks_in_27363Calligrapher h3, .stacks_in_27363Calligrapher h2, .stacks_in_27363Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27363Calligrapher, .stacks_in_27363Calligrapher h1, .stacks_in_27363Calligrapher h2, .stacks_in_27363Calligrapher h3, .stacks_in_27363Calligrapher h4, .stacks_in_27363Calligrapher h5, .stacks_in_27363Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27363targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27363Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27363Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27363Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27363Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_27744 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_27744 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_27372overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_27372leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27372leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27372leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27372leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27372rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27372rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27372theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27372overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27372leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27372leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27372leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27372leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27372rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27372rightcolContent{		margin: auto;	}}					.stacks_in_27372posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_27372posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27372posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27372posterWrapper img:hover{	cursor: pointer;}.stacks_in_27372rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27372videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27372 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27373Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27373Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27373Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27373Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27373Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27373Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27373Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27373Calligrapher h6, .stacks_in_27373Calligrapher h5, .stacks_in_27373Calligrapher h4, .stacks_in_27373Calligrapher h3, .stacks_in_27373Calligrapher h2, .stacks_in_27373Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27373Calligrapher, .stacks_in_27373Calligrapher h1, .stacks_in_27373Calligrapher h2, .stacks_in_27373Calligrapher h3, .stacks_in_27373Calligrapher h4, .stacks_in_27373Calligrapher h5, .stacks_in_27373Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27373targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27373Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27373Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27373Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27373Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27377Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27377Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27377Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27377Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27377Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27377Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27377Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27377Calligrapher h6, .stacks_in_27377Calligrapher h5, .stacks_in_27377Calligrapher h4, .stacks_in_27377Calligrapher h3, .stacks_in_27377Calligrapher h2, .stacks_in_27377Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27377Calligrapher, .stacks_in_27377Calligrapher h1, .stacks_in_27377Calligrapher h2, .stacks_in_27377Calligrapher h3, .stacks_in_27377Calligrapher h4, .stacks_in_27377Calligrapher h5, .stacks_in_27377Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27377targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27377Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27377Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27377Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27377Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_27756 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_27756 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_27386overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_27386leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27386leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27386leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27386leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27386rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27386rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27386theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27386overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27386leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27386leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27386leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27386leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27386rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27386rightcolContent{		margin: auto;	}}					.stacks_in_27386posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_27386posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27386posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27386posterWrapper img:hover{	cursor: pointer;}.stacks_in_27386rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27386videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27386 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27387Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27387Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27387Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27387Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27387Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27387Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27387Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27387Calligrapher h6, .stacks_in_27387Calligrapher h5, .stacks_in_27387Calligrapher h4, .stacks_in_27387Calligrapher h3, .stacks_in_27387Calligrapher h2, .stacks_in_27387Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27387Calligrapher, .stacks_in_27387Calligrapher h1, .stacks_in_27387Calligrapher h2, .stacks_in_27387Calligrapher h3, .stacks_in_27387Calligrapher h4, .stacks_in_27387Calligrapher h5, .stacks_in_27387Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27387targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27387Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27387Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27387Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27387Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27391Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27391Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27391Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27391Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27391Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27391Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27391Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27391Calligrapher h6, .stacks_in_27391Calligrapher h5, .stacks_in_27391Calligrapher h4, .stacks_in_27391Calligrapher h3, .stacks_in_27391Calligrapher h2, .stacks_in_27391Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27391Calligrapher, .stacks_in_27391Calligrapher h1, .stacks_in_27391Calligrapher h2, .stacks_in_27391Calligrapher h3, .stacks_in_27391Calligrapher h4, .stacks_in_27391Calligrapher h5, .stacks_in_27391Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27391targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27391Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27391Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27391Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27391Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_27759 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_27759 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_27414overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_27414leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27414leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27414leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27414leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27414rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27414rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27414theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27414overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27414leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27414leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27414leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27414leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27414rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27414rightcolContent{		margin: auto;	}}					.stacks_in_27414posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_27414posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27414posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27414posterWrapper img:hover{	cursor: pointer;}.stacks_in_27414rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27414videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27414 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27415Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27415Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27415Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27415Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27415Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27415Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27415Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27415Calligrapher h6, .stacks_in_27415Calligrapher h5, .stacks_in_27415Calligrapher h4, .stacks_in_27415Calligrapher h3, .stacks_in_27415Calligrapher h2, .stacks_in_27415Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27415Calligrapher, .stacks_in_27415Calligrapher h1, .stacks_in_27415Calligrapher h2, .stacks_in_27415Calligrapher h3, .stacks_in_27415Calligrapher h4, .stacks_in_27415Calligrapher h5, .stacks_in_27415Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27415targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27415Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27415Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27415Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27415Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27419Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27419Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27419Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27419Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27419Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27419Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27419Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27419Calligrapher h6, .stacks_in_27419Calligrapher h5, .stacks_in_27419Calligrapher h4, .stacks_in_27419Calligrapher h3, .stacks_in_27419Calligrapher h2, .stacks_in_27419Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27419Calligrapher, .stacks_in_27419Calligrapher h1, .stacks_in_27419Calligrapher h2, .stacks_in_27419Calligrapher h3, .stacks_in_27419Calligrapher h4, .stacks_in_27419Calligrapher h5, .stacks_in_27419Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27419targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27419Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27419Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27419Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27419Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_27777 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_27777 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_27686overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_27686leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27686leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27686leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27686leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27686rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27686rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27686theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27686overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27686leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27686leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27686leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27686leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27686rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27686rightcolContent{		margin: auto;	}}					.stacks_in_27686posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_27686posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27686posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27686posterWrapper img:hover{	cursor: pointer;}.stacks_in_27686rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27686videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27686 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27687Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27687Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27687Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27687Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27687Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27687Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27687Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27687Calligrapher h6, .stacks_in_27687Calligrapher h5, .stacks_in_27687Calligrapher h4, .stacks_in_27687Calligrapher h3, .stacks_in_27687Calligrapher h2, .stacks_in_27687Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27687Calligrapher, .stacks_in_27687Calligrapher h1, .stacks_in_27687Calligrapher h2, .stacks_in_27687Calligrapher h3, .stacks_in_27687Calligrapher h4, .stacks_in_27687Calligrapher h5, .stacks_in_27687Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27687targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27687Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27687Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27687Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27687Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27691Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27691Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27691Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27691Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27691Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27691Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27691Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27691Calligrapher h6, .stacks_in_27691Calligrapher h5, .stacks_in_27691Calligrapher h4, .stacks_in_27691Calligrapher h3, .stacks_in_27691Calligrapher h2, .stacks_in_27691Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27691Calligrapher, .stacks_in_27691Calligrapher h1, .stacks_in_27691Calligrapher h2, .stacks_in_27691Calligrapher h3, .stacks_in_27691Calligrapher h4, .stacks_in_27691Calligrapher h5, .stacks_in_27691Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27691targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27691Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27691Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27691Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27691Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_27792 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_27792 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_27400overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_27400leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27400leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27400leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27400leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27400rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27400rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27400theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27400overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27400leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27400leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27400leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27400leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27400rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27400rightcolContent{		margin: auto;	}}					.stacks_in_27400posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_27400posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27400posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27400posterWrapper img:hover{	cursor: pointer;}.stacks_in_27400rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27400videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27400 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27401Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27401Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27401Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27401Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27401Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27401Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27401Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27401Calligrapher h6, .stacks_in_27401Calligrapher h5, .stacks_in_27401Calligrapher h4, .stacks_in_27401Calligrapher h3, .stacks_in_27401Calligrapher h2, .stacks_in_27401Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27401Calligrapher, .stacks_in_27401Calligrapher h1, .stacks_in_27401Calligrapher h2, .stacks_in_27401Calligrapher h3, .stacks_in_27401Calligrapher h4, .stacks_in_27401Calligrapher h5, .stacks_in_27401Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27401targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27401Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27401Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27401Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27401Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27405Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27405Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27405Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27405Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27405Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27405Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27405Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27405Calligrapher h6, .stacks_in_27405Calligrapher h5, .stacks_in_27405Calligrapher h4, .stacks_in_27405Calligrapher h3, .stacks_in_27405Calligrapher h2, .stacks_in_27405Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27405Calligrapher, .stacks_in_27405Calligrapher h1, .stacks_in_27405Calligrapher h2, .stacks_in_27405Calligrapher h3, .stacks_in_27405Calligrapher h4, .stacks_in_27405Calligrapher h5, .stacks_in_27405Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27405targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27405Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27405Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27405Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27405Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//*
 * 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_27816 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_27816.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_27816.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


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

  float:left;
}

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Preview and publish styling */

	/* Start hidden */
	#animateItWrapperstacks_in_27968 {
		opacity: 0;
	}

	


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





/* Start Video Plus stack CSS code */.stacks_in_27970overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_27970leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27970leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27970leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27970leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27970rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27970rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27970theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27970overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27970leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27970leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27970leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27970leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27970rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27970rightcolContent{		margin: auto;	}}					.stacks_in_27970posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_27970posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27970posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27970posterWrapper img:hover{	cursor: pointer;}.stacks_in_27970rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27970videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27970 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27972Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27972Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27972Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27972Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27972Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27972Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27972Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27972Calligrapher h6, .stacks_in_27972Calligrapher h5, .stacks_in_27972Calligrapher h4, .stacks_in_27972Calligrapher h3, .stacks_in_27972Calligrapher h2, .stacks_in_27972Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27972Calligrapher, .stacks_in_27972Calligrapher h1, .stacks_in_27972Calligrapher h2, .stacks_in_27972Calligrapher h3, .stacks_in_27972Calligrapher h4, .stacks_in_27972Calligrapher h5, .stacks_in_27972Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27972targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27972Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27972Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27972Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27972Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27976Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27976Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27976Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27976Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27976Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27976Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27976Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27976Calligrapher h6, .stacks_in_27976Calligrapher h5, .stacks_in_27976Calligrapher h4, .stacks_in_27976Calligrapher h3, .stacks_in_27976Calligrapher h2, .stacks_in_27976Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27976Calligrapher, .stacks_in_27976Calligrapher h1, .stacks_in_27976Calligrapher h2, .stacks_in_27976Calligrapher h3, .stacks_in_27976Calligrapher h4, .stacks_in_27976Calligrapher h5, .stacks_in_27976Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27976targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27976Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27976Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27976Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27976Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

	/* Start hidden */
	#animateItWrapperstacks_in_27983 {
		opacity: 0;
	}

	


#animateItWrapperstacks_in_27983.animated {
	animation-duration: 1500ms;
	animation-delay: 10ms;
}





/* Start Video Plus stack CSS code */.stacks_in_27985overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_27985leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27985leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27985leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27985leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27985rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27985rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27985theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27985overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27985leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27985leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27985leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27985leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27985rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27985rightcolContent{		margin: auto;	}}					.stacks_in_27985posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_27985posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27985posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27985posterWrapper img:hover{	cursor: pointer;}.stacks_in_27985rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27985videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27985 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27987Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27987Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27987Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27987Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27987Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27987Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27987Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27987Calligrapher h6, .stacks_in_27987Calligrapher h5, .stacks_in_27987Calligrapher h4, .stacks_in_27987Calligrapher h3, .stacks_in_27987Calligrapher h2, .stacks_in_27987Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27987Calligrapher, .stacks_in_27987Calligrapher h1, .stacks_in_27987Calligrapher h2, .stacks_in_27987Calligrapher h3, .stacks_in_27987Calligrapher h4, .stacks_in_27987Calligrapher h5, .stacks_in_27987Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27987targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27987Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27987Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27987Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27987Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27991Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27991Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27991Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27991Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27991Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27991Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27991Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27991Calligrapher h6, .stacks_in_27991Calligrapher h5, .stacks_in_27991Calligrapher h4, .stacks_in_27991Calligrapher h3, .stacks_in_27991Calligrapher h2, .stacks_in_27991Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27991Calligrapher, .stacks_in_27991Calligrapher h1, .stacks_in_27991Calligrapher h2, .stacks_in_27991Calligrapher h3, .stacks_in_27991Calligrapher h4, .stacks_in_27991Calligrapher h5, .stacks_in_27991Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27991targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27991Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27991Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27991Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27991Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

	/* Start hidden */
	#animateItWrapperstacks_in_27998 {
		opacity: 0;
	}

	


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





/* Start Video Plus stack CSS code */.stacks_in_28000overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28000leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28000leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28000leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28000leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28000rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28000rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28000theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28000overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28000leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28000leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28000leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28000leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28000rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28000rightcolContent{		margin: auto;	}}					.stacks_in_28000posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28000posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28000posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28000posterWrapper img:hover{	cursor: pointer;}.stacks_in_28000rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28000videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28000 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28002Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28002Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28002Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28002Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28002Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28002Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28002Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28002Calligrapher h6, .stacks_in_28002Calligrapher h5, .stacks_in_28002Calligrapher h4, .stacks_in_28002Calligrapher h3, .stacks_in_28002Calligrapher h2, .stacks_in_28002Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28002Calligrapher, .stacks_in_28002Calligrapher h1, .stacks_in_28002Calligrapher h2, .stacks_in_28002Calligrapher h3, .stacks_in_28002Calligrapher h4, .stacks_in_28002Calligrapher h5, .stacks_in_28002Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28002targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28002Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28002Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28002Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28002Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28006Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28006Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28006Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28006Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28006Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28006Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28006Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28006Calligrapher h6, .stacks_in_28006Calligrapher h5, .stacks_in_28006Calligrapher h4, .stacks_in_28006Calligrapher h3, .stacks_in_28006Calligrapher h2, .stacks_in_28006Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28006Calligrapher, .stacks_in_28006Calligrapher h1, .stacks_in_28006Calligrapher h2, .stacks_in_28006Calligrapher h3, .stacks_in_28006Calligrapher h4, .stacks_in_28006Calligrapher h5, .stacks_in_28006Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28006targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28006Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28006Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28006Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28006Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

	/* Start hidden */
	#animateItWrapperstacks_in_28013 {
		opacity: 0;
	}

	


#animateItWrapperstacks_in_28013.animated {
	animation-duration: 1500ms;
	animation-delay: 10ms;
}





/* Start Video Plus stack CSS code */.stacks_in_28015overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28015leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28015leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28015leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28015leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28015rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28015rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28015theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28015overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28015leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28015leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28015leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28015leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28015rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28015rightcolContent{		margin: auto;	}}					.stacks_in_28015posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28015posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28015posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28015posterWrapper img:hover{	cursor: pointer;}.stacks_in_28015rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28015videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28015 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28017Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28017Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28017Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28017Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28017Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28017Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28017Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28017Calligrapher h6, .stacks_in_28017Calligrapher h5, .stacks_in_28017Calligrapher h4, .stacks_in_28017Calligrapher h3, .stacks_in_28017Calligrapher h2, .stacks_in_28017Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28017Calligrapher, .stacks_in_28017Calligrapher h1, .stacks_in_28017Calligrapher h2, .stacks_in_28017Calligrapher h3, .stacks_in_28017Calligrapher h4, .stacks_in_28017Calligrapher h5, .stacks_in_28017Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28017targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28017Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28017Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28017Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28017Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28021Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28021Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28021Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28021Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28021Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28021Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28021Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28021Calligrapher h6, .stacks_in_28021Calligrapher h5, .stacks_in_28021Calligrapher h4, .stacks_in_28021Calligrapher h3, .stacks_in_28021Calligrapher h2, .stacks_in_28021Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28021Calligrapher, .stacks_in_28021Calligrapher h1, .stacks_in_28021Calligrapher h2, .stacks_in_28021Calligrapher h3, .stacks_in_28021Calligrapher h4, .stacks_in_28021Calligrapher h5, .stacks_in_28021Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28021targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28021Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28021Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28021Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28021Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29526 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29526 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_27818overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_27818leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27818leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27818leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27818leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27818rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27818rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27818theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27818overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27818leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27818leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27818leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27818leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27818rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27818rightcolContent{		margin: auto;	}}					.stacks_in_27818posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_27818posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27818posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27818posterWrapper img:hover{	cursor: pointer;}.stacks_in_27818rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27818videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27818 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27819Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27819Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27819Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27819Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27819Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27819Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27819Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27819Calligrapher h6, .stacks_in_27819Calligrapher h5, .stacks_in_27819Calligrapher h4, .stacks_in_27819Calligrapher h3, .stacks_in_27819Calligrapher h2, .stacks_in_27819Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27819Calligrapher, .stacks_in_27819Calligrapher h1, .stacks_in_27819Calligrapher h2, .stacks_in_27819Calligrapher h3, .stacks_in_27819Calligrapher h4, .stacks_in_27819Calligrapher h5, .stacks_in_27819Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27819targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27819Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27819Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27819Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27819Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27823Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27823Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27823Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27823Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27823Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27823Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27823Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27823Calligrapher h6, .stacks_in_27823Calligrapher h5, .stacks_in_27823Calligrapher h4, .stacks_in_27823Calligrapher h3, .stacks_in_27823Calligrapher h2, .stacks_in_27823Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27823Calligrapher, .stacks_in_27823Calligrapher h1, .stacks_in_27823Calligrapher h2, .stacks_in_27823Calligrapher h3, .stacks_in_27823Calligrapher h4, .stacks_in_27823Calligrapher h5, .stacks_in_27823Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27823targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27823Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27823Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27823Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27823Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29541 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29541 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_27833overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_27833leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27833leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27833leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27833leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27833rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27833rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27833theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27833overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27833leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27833leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27833leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27833leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27833rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27833rightcolContent{		margin: auto;	}}					.stacks_in_27833posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_27833posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27833posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27833posterWrapper img:hover{	cursor: pointer;}.stacks_in_27833rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27833videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27833 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27834Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27834Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27834Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27834Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27834Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27834Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27834Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27834Calligrapher h6, .stacks_in_27834Calligrapher h5, .stacks_in_27834Calligrapher h4, .stacks_in_27834Calligrapher h3, .stacks_in_27834Calligrapher h2, .stacks_in_27834Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27834Calligrapher, .stacks_in_27834Calligrapher h1, .stacks_in_27834Calligrapher h2, .stacks_in_27834Calligrapher h3, .stacks_in_27834Calligrapher h4, .stacks_in_27834Calligrapher h5, .stacks_in_27834Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27834targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27834Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27834Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27834Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27834Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27838Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27838Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27838Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27838Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27838Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27838Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27838Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27838Calligrapher h6, .stacks_in_27838Calligrapher h5, .stacks_in_27838Calligrapher h4, .stacks_in_27838Calligrapher h3, .stacks_in_27838Calligrapher h2, .stacks_in_27838Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27838Calligrapher, .stacks_in_27838Calligrapher h1, .stacks_in_27838Calligrapher h2, .stacks_in_27838Calligrapher h3, .stacks_in_27838Calligrapher h4, .stacks_in_27838Calligrapher h5, .stacks_in_27838Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27838targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27838Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27838Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27838Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27838Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29559 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29559 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_27848overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_27848leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27848leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27848leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27848leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27848rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27848rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27848theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27848overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27848leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27848leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27848leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27848leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27848rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27848rightcolContent{		margin: auto;	}}					.stacks_in_27848posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_27848posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27848posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27848posterWrapper img:hover{	cursor: pointer;}.stacks_in_27848rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27848videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27848 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27849Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27849Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27849Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27849Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27849Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27849Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27849Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27849Calligrapher h6, .stacks_in_27849Calligrapher h5, .stacks_in_27849Calligrapher h4, .stacks_in_27849Calligrapher h3, .stacks_in_27849Calligrapher h2, .stacks_in_27849Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27849Calligrapher, .stacks_in_27849Calligrapher h1, .stacks_in_27849Calligrapher h2, .stacks_in_27849Calligrapher h3, .stacks_in_27849Calligrapher h4, .stacks_in_27849Calligrapher h5, .stacks_in_27849Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27849targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27849Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27849Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27849Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27849Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27853Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27853Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27853Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27853Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27853Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27853Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27853Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27853Calligrapher h6, .stacks_in_27853Calligrapher h5, .stacks_in_27853Calligrapher h4, .stacks_in_27853Calligrapher h3, .stacks_in_27853Calligrapher h2, .stacks_in_27853Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27853Calligrapher, .stacks_in_27853Calligrapher h1, .stacks_in_27853Calligrapher h2, .stacks_in_27853Calligrapher h3, .stacks_in_27853Calligrapher h4, .stacks_in_27853Calligrapher h5, .stacks_in_27853Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27853targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27853Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27853Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27853Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27853Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29562 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29562 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_27863overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_27863leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27863leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27863leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27863leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27863rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27863rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27863theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27863overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27863leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27863leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27863leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27863leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27863rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27863rightcolContent{		margin: auto;	}}					.stacks_in_27863posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_27863posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27863posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27863posterWrapper img:hover{	cursor: pointer;}.stacks_in_27863rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27863videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27863 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27864Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27864Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27864Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27864Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27864Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27864Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27864Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27864Calligrapher h6, .stacks_in_27864Calligrapher h5, .stacks_in_27864Calligrapher h4, .stacks_in_27864Calligrapher h3, .stacks_in_27864Calligrapher h2, .stacks_in_27864Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27864Calligrapher, .stacks_in_27864Calligrapher h1, .stacks_in_27864Calligrapher h2, .stacks_in_27864Calligrapher h3, .stacks_in_27864Calligrapher h4, .stacks_in_27864Calligrapher h5, .stacks_in_27864Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27864targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27864Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27864Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27864Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27864Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27868Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27868Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27868Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27868Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27868Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27868Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27868Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27868Calligrapher h6, .stacks_in_27868Calligrapher h5, .stacks_in_27868Calligrapher h4, .stacks_in_27868Calligrapher h3, .stacks_in_27868Calligrapher h2, .stacks_in_27868Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27868Calligrapher, .stacks_in_27868Calligrapher h1, .stacks_in_27868Calligrapher h2, .stacks_in_27868Calligrapher h3, .stacks_in_27868Calligrapher h4, .stacks_in_27868Calligrapher h5, .stacks_in_27868Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27868targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27868Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27868Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27868Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27868Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29565 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29565 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_27878overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_27878leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27878leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27878leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27878leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27878rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27878rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27878theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27878overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27878leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27878leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27878leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27878leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27878rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27878rightcolContent{		margin: auto;	}}					.stacks_in_27878posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_27878posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27878posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27878posterWrapper img:hover{	cursor: pointer;}.stacks_in_27878rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27878videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27878 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27879Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27879Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27879Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27879Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27879Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27879Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27879Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27879Calligrapher h6, .stacks_in_27879Calligrapher h5, .stacks_in_27879Calligrapher h4, .stacks_in_27879Calligrapher h3, .stacks_in_27879Calligrapher h2, .stacks_in_27879Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27879Calligrapher, .stacks_in_27879Calligrapher h1, .stacks_in_27879Calligrapher h2, .stacks_in_27879Calligrapher h3, .stacks_in_27879Calligrapher h4, .stacks_in_27879Calligrapher h5, .stacks_in_27879Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27879targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27879Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27879Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27879Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27879Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27883Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27883Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27883Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27883Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27883Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27883Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27883Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27883Calligrapher h6, .stacks_in_27883Calligrapher h5, .stacks_in_27883Calligrapher h4, .stacks_in_27883Calligrapher h3, .stacks_in_27883Calligrapher h2, .stacks_in_27883Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27883Calligrapher, .stacks_in_27883Calligrapher h1, .stacks_in_27883Calligrapher h2, .stacks_in_27883Calligrapher h3, .stacks_in_27883Calligrapher h4, .stacks_in_27883Calligrapher h5, .stacks_in_27883Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27883targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27883Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27883Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27883Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27883Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29568 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29568 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_27893overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_27893leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27893leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27893leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27893leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27893rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27893rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27893theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27893overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27893leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27893leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27893leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27893leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27893rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27893rightcolContent{		margin: auto;	}}					.stacks_in_27893posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_27893posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27893posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27893posterWrapper img:hover{	cursor: pointer;}.stacks_in_27893rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27893videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27893 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27894Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27894Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27894Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27894Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27894Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27894Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27894Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27894Calligrapher h6, .stacks_in_27894Calligrapher h5, .stacks_in_27894Calligrapher h4, .stacks_in_27894Calligrapher h3, .stacks_in_27894Calligrapher h2, .stacks_in_27894Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27894Calligrapher, .stacks_in_27894Calligrapher h1, .stacks_in_27894Calligrapher h2, .stacks_in_27894Calligrapher h3, .stacks_in_27894Calligrapher h4, .stacks_in_27894Calligrapher h5, .stacks_in_27894Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27894targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27894Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27894Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27894Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27894Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27898Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27898Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27898Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27898Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27898Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27898Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27898Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27898Calligrapher h6, .stacks_in_27898Calligrapher h5, .stacks_in_27898Calligrapher h4, .stacks_in_27898Calligrapher h3, .stacks_in_27898Calligrapher h2, .stacks_in_27898Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27898Calligrapher, .stacks_in_27898Calligrapher h1, .stacks_in_27898Calligrapher h2, .stacks_in_27898Calligrapher h3, .stacks_in_27898Calligrapher h4, .stacks_in_27898Calligrapher h5, .stacks_in_27898Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27898targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27898Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27898Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27898Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27898Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29571 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29571 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_27908overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_27908leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27908leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27908leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27908leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27908rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27908rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27908theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27908overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27908leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27908leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27908leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27908leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27908rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27908rightcolContent{		margin: auto;	}}					.stacks_in_27908posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_27908posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27908posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27908posterWrapper img:hover{	cursor: pointer;}.stacks_in_27908rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27908videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27908 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27909Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27909Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27909Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27909Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27909Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27909Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27909Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27909Calligrapher h6, .stacks_in_27909Calligrapher h5, .stacks_in_27909Calligrapher h4, .stacks_in_27909Calligrapher h3, .stacks_in_27909Calligrapher h2, .stacks_in_27909Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27909Calligrapher, .stacks_in_27909Calligrapher h1, .stacks_in_27909Calligrapher h2, .stacks_in_27909Calligrapher h3, .stacks_in_27909Calligrapher h4, .stacks_in_27909Calligrapher h5, .stacks_in_27909Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27909targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27909Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27909Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27909Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27909Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27913Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27913Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27913Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27913Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27913Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27913Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27913Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27913Calligrapher h6, .stacks_in_27913Calligrapher h5, .stacks_in_27913Calligrapher h4, .stacks_in_27913Calligrapher h3, .stacks_in_27913Calligrapher h2, .stacks_in_27913Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27913Calligrapher, .stacks_in_27913Calligrapher h1, .stacks_in_27913Calligrapher h2, .stacks_in_27913Calligrapher h3, .stacks_in_27913Calligrapher h4, .stacks_in_27913Calligrapher h5, .stacks_in_27913Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27913targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27913Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27913Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27913Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27913Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29574 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29574 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_27923overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_27923leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27923leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27923leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27923leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27923rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27923rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27923theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27923overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27923leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27923leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27923leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27923leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27923rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27923rightcolContent{		margin: auto;	}}					.stacks_in_27923posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_27923posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27923posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27923posterWrapper img:hover{	cursor: pointer;}.stacks_in_27923rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27923videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27923 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27924Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27924Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27924Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27924Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27924Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27924Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27924Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27924Calligrapher h6, .stacks_in_27924Calligrapher h5, .stacks_in_27924Calligrapher h4, .stacks_in_27924Calligrapher h3, .stacks_in_27924Calligrapher h2, .stacks_in_27924Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27924Calligrapher, .stacks_in_27924Calligrapher h1, .stacks_in_27924Calligrapher h2, .stacks_in_27924Calligrapher h3, .stacks_in_27924Calligrapher h4, .stacks_in_27924Calligrapher h5, .stacks_in_27924Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27924targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27924Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27924Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27924Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27924Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27928Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_27928Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27928Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27928Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27928Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27928Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27928Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27928Calligrapher h6, .stacks_in_27928Calligrapher h5, .stacks_in_27928Calligrapher h4, .stacks_in_27928Calligrapher h3, .stacks_in_27928Calligrapher h2, .stacks_in_27928Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27928Calligrapher, .stacks_in_27928Calligrapher h1, .stacks_in_27928Calligrapher h2, .stacks_in_27928Calligrapher h3, .stacks_in_27928Calligrapher h4, .stacks_in_27928Calligrapher h5, .stacks_in_27928Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27928targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27928Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27928Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27928Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27928Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//*
 * 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_28195 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_28195.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_28195.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


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

  float:left;
}

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#cookieManagerButtonWrapstacks_in_29577 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28197overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28197leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28197leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28197leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28197leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28197rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28197rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28197theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28197overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28197leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28197leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28197leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28197leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28197rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28197rightcolContent{		margin: auto;	}}					.stacks_in_28197posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28197posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28197posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28197posterWrapper img:hover{	cursor: pointer;}.stacks_in_28197rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28197videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28197 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28198Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28198Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28198Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28198Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28198Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28198Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28198Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28198Calligrapher h6, .stacks_in_28198Calligrapher h5, .stacks_in_28198Calligrapher h4, .stacks_in_28198Calligrapher h3, .stacks_in_28198Calligrapher h2, .stacks_in_28198Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28198Calligrapher, .stacks_in_28198Calligrapher h1, .stacks_in_28198Calligrapher h2, .stacks_in_28198Calligrapher h3, .stacks_in_28198Calligrapher h4, .stacks_in_28198Calligrapher h5, .stacks_in_28198Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28198targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28198Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28198Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28198Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28198Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28202Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28202Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28202Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28202Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28202Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28202Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28202Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28202Calligrapher h6, .stacks_in_28202Calligrapher h5, .stacks_in_28202Calligrapher h4, .stacks_in_28202Calligrapher h3, .stacks_in_28202Calligrapher h2, .stacks_in_28202Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28202Calligrapher, .stacks_in_28202Calligrapher h1, .stacks_in_28202Calligrapher h2, .stacks_in_28202Calligrapher h3, .stacks_in_28202Calligrapher h4, .stacks_in_28202Calligrapher h5, .stacks_in_28202Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28202targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28202Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28202Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28202Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28202Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29580 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29580 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28212overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28212leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28212leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28212leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28212leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28212rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28212rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28212theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28212overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28212leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28212leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28212leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28212leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28212rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28212rightcolContent{		margin: auto;	}}					.stacks_in_28212posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28212posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28212posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28212posterWrapper img:hover{	cursor: pointer;}.stacks_in_28212rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28212videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28212 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28213Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28213Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28213Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28213Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28213Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28213Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28213Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28213Calligrapher h6, .stacks_in_28213Calligrapher h5, .stacks_in_28213Calligrapher h4, .stacks_in_28213Calligrapher h3, .stacks_in_28213Calligrapher h2, .stacks_in_28213Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28213Calligrapher, .stacks_in_28213Calligrapher h1, .stacks_in_28213Calligrapher h2, .stacks_in_28213Calligrapher h3, .stacks_in_28213Calligrapher h4, .stacks_in_28213Calligrapher h5, .stacks_in_28213Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28213targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28213Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28213Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28213Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28213Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28217Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28217Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28217Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28217Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28217Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28217Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28217Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28217Calligrapher h6, .stacks_in_28217Calligrapher h5, .stacks_in_28217Calligrapher h4, .stacks_in_28217Calligrapher h3, .stacks_in_28217Calligrapher h2, .stacks_in_28217Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28217Calligrapher, .stacks_in_28217Calligrapher h1, .stacks_in_28217Calligrapher h2, .stacks_in_28217Calligrapher h3, .stacks_in_28217Calligrapher h4, .stacks_in_28217Calligrapher h5, .stacks_in_28217Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28217targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28217Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28217Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28217Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28217Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29583 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29583 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28227overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28227leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28227leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28227leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28227leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28227rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28227rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28227theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28227overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28227leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28227leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28227leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28227leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28227rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28227rightcolContent{		margin: auto;	}}					.stacks_in_28227posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28227posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28227posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28227posterWrapper img:hover{	cursor: pointer;}.stacks_in_28227rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28227videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28227 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28228Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28228Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28228Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28228Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28228Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28228Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28228Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28228Calligrapher h6, .stacks_in_28228Calligrapher h5, .stacks_in_28228Calligrapher h4, .stacks_in_28228Calligrapher h3, .stacks_in_28228Calligrapher h2, .stacks_in_28228Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28228Calligrapher, .stacks_in_28228Calligrapher h1, .stacks_in_28228Calligrapher h2, .stacks_in_28228Calligrapher h3, .stacks_in_28228Calligrapher h4, .stacks_in_28228Calligrapher h5, .stacks_in_28228Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28228targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28228Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28228Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28228Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28228Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28232Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28232Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28232Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28232Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28232Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28232Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28232Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28232Calligrapher h6, .stacks_in_28232Calligrapher h5, .stacks_in_28232Calligrapher h4, .stacks_in_28232Calligrapher h3, .stacks_in_28232Calligrapher h2, .stacks_in_28232Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28232Calligrapher, .stacks_in_28232Calligrapher h1, .stacks_in_28232Calligrapher h2, .stacks_in_28232Calligrapher h3, .stacks_in_28232Calligrapher h4, .stacks_in_28232Calligrapher h5, .stacks_in_28232Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28232targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28232Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28232Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28232Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28232Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29586 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29586 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28242overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28242leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28242leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28242leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28242leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28242rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28242rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28242theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28242overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28242leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28242leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28242leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28242leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28242rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28242rightcolContent{		margin: auto;	}}					.stacks_in_28242posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28242posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28242posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28242posterWrapper img:hover{	cursor: pointer;}.stacks_in_28242rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28242videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28242 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28243Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28243Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28243Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28243Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28243Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28243Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28243Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28243Calligrapher h6, .stacks_in_28243Calligrapher h5, .stacks_in_28243Calligrapher h4, .stacks_in_28243Calligrapher h3, .stacks_in_28243Calligrapher h2, .stacks_in_28243Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28243Calligrapher, .stacks_in_28243Calligrapher h1, .stacks_in_28243Calligrapher h2, .stacks_in_28243Calligrapher h3, .stacks_in_28243Calligrapher h4, .stacks_in_28243Calligrapher h5, .stacks_in_28243Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28243targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28243Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28243Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28243Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28243Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28247Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28247Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28247Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28247Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28247Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28247Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28247Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28247Calligrapher h6, .stacks_in_28247Calligrapher h5, .stacks_in_28247Calligrapher h4, .stacks_in_28247Calligrapher h3, .stacks_in_28247Calligrapher h2, .stacks_in_28247Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28247Calligrapher, .stacks_in_28247Calligrapher h1, .stacks_in_28247Calligrapher h2, .stacks_in_28247Calligrapher h3, .stacks_in_28247Calligrapher h4, .stacks_in_28247Calligrapher h5, .stacks_in_28247Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28247targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28247Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28247Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28247Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28247Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29589 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29589 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28257overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28257leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28257leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28257leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28257leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28257rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28257rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28257theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28257overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28257leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28257leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28257leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28257leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28257rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28257rightcolContent{		margin: auto;	}}					.stacks_in_28257posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28257posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28257posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28257posterWrapper img:hover{	cursor: pointer;}.stacks_in_28257rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28257videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28257 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28258Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28258Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28258Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28258Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28258Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28258Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28258Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28258Calligrapher h6, .stacks_in_28258Calligrapher h5, .stacks_in_28258Calligrapher h4, .stacks_in_28258Calligrapher h3, .stacks_in_28258Calligrapher h2, .stacks_in_28258Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28258Calligrapher, .stacks_in_28258Calligrapher h1, .stacks_in_28258Calligrapher h2, .stacks_in_28258Calligrapher h3, .stacks_in_28258Calligrapher h4, .stacks_in_28258Calligrapher h5, .stacks_in_28258Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28258targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28258Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28258Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28258Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28258Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28262Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28262Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28262Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28262Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28262Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28262Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28262Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28262Calligrapher h6, .stacks_in_28262Calligrapher h5, .stacks_in_28262Calligrapher h4, .stacks_in_28262Calligrapher h3, .stacks_in_28262Calligrapher h2, .stacks_in_28262Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28262Calligrapher, .stacks_in_28262Calligrapher h1, .stacks_in_28262Calligrapher h2, .stacks_in_28262Calligrapher h3, .stacks_in_28262Calligrapher h4, .stacks_in_28262Calligrapher h5, .stacks_in_28262Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28262targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28262Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28262Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28262Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28262Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29592 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29592 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28272overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28272leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28272leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28272leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28272leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28272rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28272rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28272theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28272overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28272leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28272leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28272leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28272leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28272rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28272rightcolContent{		margin: auto;	}}					.stacks_in_28272posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28272posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28272posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28272posterWrapper img:hover{	cursor: pointer;}.stacks_in_28272rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28272videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28272 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28273Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28273Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28273Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28273Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28273Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28273Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28273Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28273Calligrapher h6, .stacks_in_28273Calligrapher h5, .stacks_in_28273Calligrapher h4, .stacks_in_28273Calligrapher h3, .stacks_in_28273Calligrapher h2, .stacks_in_28273Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28273Calligrapher, .stacks_in_28273Calligrapher h1, .stacks_in_28273Calligrapher h2, .stacks_in_28273Calligrapher h3, .stacks_in_28273Calligrapher h4, .stacks_in_28273Calligrapher h5, .stacks_in_28273Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28273targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28273Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28273Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28273Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28273Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28277Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28277Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28277Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28277Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28277Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28277Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28277Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28277Calligrapher h6, .stacks_in_28277Calligrapher h5, .stacks_in_28277Calligrapher h4, .stacks_in_28277Calligrapher h3, .stacks_in_28277Calligrapher h2, .stacks_in_28277Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28277Calligrapher, .stacks_in_28277Calligrapher h1, .stacks_in_28277Calligrapher h2, .stacks_in_28277Calligrapher h3, .stacks_in_28277Calligrapher h4, .stacks_in_28277Calligrapher h5, .stacks_in_28277Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28277targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28277Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28277Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28277Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28277Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29595 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29595 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28287overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28287leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28287leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28287leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28287leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28287rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28287rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28287theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28287overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28287leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28287leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28287leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28287leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28287rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28287rightcolContent{		margin: auto;	}}					.stacks_in_28287posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28287posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28287posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28287posterWrapper img:hover{	cursor: pointer;}.stacks_in_28287rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28287videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28287 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28288Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28288Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28288Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28288Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28288Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28288Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28288Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28288Calligrapher h6, .stacks_in_28288Calligrapher h5, .stacks_in_28288Calligrapher h4, .stacks_in_28288Calligrapher h3, .stacks_in_28288Calligrapher h2, .stacks_in_28288Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28288Calligrapher, .stacks_in_28288Calligrapher h1, .stacks_in_28288Calligrapher h2, .stacks_in_28288Calligrapher h3, .stacks_in_28288Calligrapher h4, .stacks_in_28288Calligrapher h5, .stacks_in_28288Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28288targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28288Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28288Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28288Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28288Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28292Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28292Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28292Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28292Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28292Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28292Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28292Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28292Calligrapher h6, .stacks_in_28292Calligrapher h5, .stacks_in_28292Calligrapher h4, .stacks_in_28292Calligrapher h3, .stacks_in_28292Calligrapher h2, .stacks_in_28292Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28292Calligrapher, .stacks_in_28292Calligrapher h1, .stacks_in_28292Calligrapher h2, .stacks_in_28292Calligrapher h3, .stacks_in_28292Calligrapher h4, .stacks_in_28292Calligrapher h5, .stacks_in_28292Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28292targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28292Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28292Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28292Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28292Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29598 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29598 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28302overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28302leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28302leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28302leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28302leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28302rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28302rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28302theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28302overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28302leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28302leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28302leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28302leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28302rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28302rightcolContent{		margin: auto;	}}					.stacks_in_28302posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28302posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28302posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28302posterWrapper img:hover{	cursor: pointer;}.stacks_in_28302rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28302videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28302 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28303Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28303Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28303Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28303Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28303Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28303Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28303Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28303Calligrapher h6, .stacks_in_28303Calligrapher h5, .stacks_in_28303Calligrapher h4, .stacks_in_28303Calligrapher h3, .stacks_in_28303Calligrapher h2, .stacks_in_28303Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28303Calligrapher, .stacks_in_28303Calligrapher h1, .stacks_in_28303Calligrapher h2, .stacks_in_28303Calligrapher h3, .stacks_in_28303Calligrapher h4, .stacks_in_28303Calligrapher h5, .stacks_in_28303Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28303targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28303Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28303Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28303Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28303Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28307Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28307Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28307Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28307Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28307Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28307Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28307Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28307Calligrapher h6, .stacks_in_28307Calligrapher h5, .stacks_in_28307Calligrapher h4, .stacks_in_28307Calligrapher h3, .stacks_in_28307Calligrapher h2, .stacks_in_28307Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28307Calligrapher, .stacks_in_28307Calligrapher h1, .stacks_in_28307Calligrapher h2, .stacks_in_28307Calligrapher h3, .stacks_in_28307Calligrapher h4, .stacks_in_28307Calligrapher h5, .stacks_in_28307Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28307targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28307Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28307Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28307Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28307Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//*
 * 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_28316 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_28316.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_28316.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


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

  float:left;
}

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#cookieManagerButtonWrapstacks_in_29601 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28318overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28318leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28318leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28318leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28318leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28318rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28318rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28318theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28318overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28318leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28318leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28318leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28318leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28318rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28318rightcolContent{		margin: auto;	}}					.stacks_in_28318posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28318posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28318posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28318posterWrapper img:hover{	cursor: pointer;}.stacks_in_28318rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28318videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28318 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28319Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28319Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28319Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28319Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28319Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28319Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28319Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28319Calligrapher h6, .stacks_in_28319Calligrapher h5, .stacks_in_28319Calligrapher h4, .stacks_in_28319Calligrapher h3, .stacks_in_28319Calligrapher h2, .stacks_in_28319Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28319Calligrapher, .stacks_in_28319Calligrapher h1, .stacks_in_28319Calligrapher h2, .stacks_in_28319Calligrapher h3, .stacks_in_28319Calligrapher h4, .stacks_in_28319Calligrapher h5, .stacks_in_28319Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28319targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28319Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28319Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28319Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28319Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28323Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28323Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28323Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28323Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28323Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28323Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28323Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28323Calligrapher h6, .stacks_in_28323Calligrapher h5, .stacks_in_28323Calligrapher h4, .stacks_in_28323Calligrapher h3, .stacks_in_28323Calligrapher h2, .stacks_in_28323Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28323Calligrapher, .stacks_in_28323Calligrapher h1, .stacks_in_28323Calligrapher h2, .stacks_in_28323Calligrapher h3, .stacks_in_28323Calligrapher h4, .stacks_in_28323Calligrapher h5, .stacks_in_28323Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28323targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28323Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28323Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28323Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28323Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29604 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29604 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28333overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28333leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28333leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28333leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28333leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28333rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28333rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28333theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28333overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28333leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28333leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28333leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28333leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28333rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28333rightcolContent{		margin: auto;	}}					.stacks_in_28333posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28333posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28333posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28333posterWrapper img:hover{	cursor: pointer;}.stacks_in_28333rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28333videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28333 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28334Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28334Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28334Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28334Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28334Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28334Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28334Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28334Calligrapher h6, .stacks_in_28334Calligrapher h5, .stacks_in_28334Calligrapher h4, .stacks_in_28334Calligrapher h3, .stacks_in_28334Calligrapher h2, .stacks_in_28334Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28334Calligrapher, .stacks_in_28334Calligrapher h1, .stacks_in_28334Calligrapher h2, .stacks_in_28334Calligrapher h3, .stacks_in_28334Calligrapher h4, .stacks_in_28334Calligrapher h5, .stacks_in_28334Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28334targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28334Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28334Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28334Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28334Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28338Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28338Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28338Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28338Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28338Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28338Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28338Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28338Calligrapher h6, .stacks_in_28338Calligrapher h5, .stacks_in_28338Calligrapher h4, .stacks_in_28338Calligrapher h3, .stacks_in_28338Calligrapher h2, .stacks_in_28338Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28338Calligrapher, .stacks_in_28338Calligrapher h1, .stacks_in_28338Calligrapher h2, .stacks_in_28338Calligrapher h3, .stacks_in_28338Calligrapher h4, .stacks_in_28338Calligrapher h5, .stacks_in_28338Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28338targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28338Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28338Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28338Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28338Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29607 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29607 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28348overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28348leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28348leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28348leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28348leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28348rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28348rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28348theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28348overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28348leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28348leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28348leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28348leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28348rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28348rightcolContent{		margin: auto;	}}					.stacks_in_28348posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28348posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28348posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28348posterWrapper img:hover{	cursor: pointer;}.stacks_in_28348rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28348videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28348 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28349Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28349Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28349Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28349Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28349Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28349Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28349Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28349Calligrapher h6, .stacks_in_28349Calligrapher h5, .stacks_in_28349Calligrapher h4, .stacks_in_28349Calligrapher h3, .stacks_in_28349Calligrapher h2, .stacks_in_28349Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28349Calligrapher, .stacks_in_28349Calligrapher h1, .stacks_in_28349Calligrapher h2, .stacks_in_28349Calligrapher h3, .stacks_in_28349Calligrapher h4, .stacks_in_28349Calligrapher h5, .stacks_in_28349Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28349targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28349Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28349Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28349Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28349Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28353Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28353Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28353Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28353Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28353Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28353Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28353Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28353Calligrapher h6, .stacks_in_28353Calligrapher h5, .stacks_in_28353Calligrapher h4, .stacks_in_28353Calligrapher h3, .stacks_in_28353Calligrapher h2, .stacks_in_28353Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28353Calligrapher, .stacks_in_28353Calligrapher h1, .stacks_in_28353Calligrapher h2, .stacks_in_28353Calligrapher h3, .stacks_in_28353Calligrapher h4, .stacks_in_28353Calligrapher h5, .stacks_in_28353Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28353targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28353Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28353Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28353Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28353Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29610 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29610 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28363overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28363leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28363leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28363leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28363leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28363rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28363rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28363theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28363overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28363leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28363leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28363leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28363leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28363rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28363rightcolContent{		margin: auto;	}}					.stacks_in_28363posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28363posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28363posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28363posterWrapper img:hover{	cursor: pointer;}.stacks_in_28363rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28363videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28363 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28364Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28364Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28364Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28364Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28364Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28364Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28364Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28364Calligrapher h6, .stacks_in_28364Calligrapher h5, .stacks_in_28364Calligrapher h4, .stacks_in_28364Calligrapher h3, .stacks_in_28364Calligrapher h2, .stacks_in_28364Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28364Calligrapher, .stacks_in_28364Calligrapher h1, .stacks_in_28364Calligrapher h2, .stacks_in_28364Calligrapher h3, .stacks_in_28364Calligrapher h4, .stacks_in_28364Calligrapher h5, .stacks_in_28364Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28364targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28364Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28364Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28364Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28364Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28368Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28368Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28368Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28368Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28368Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28368Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28368Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28368Calligrapher h6, .stacks_in_28368Calligrapher h5, .stacks_in_28368Calligrapher h4, .stacks_in_28368Calligrapher h3, .stacks_in_28368Calligrapher h2, .stacks_in_28368Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28368Calligrapher, .stacks_in_28368Calligrapher h1, .stacks_in_28368Calligrapher h2, .stacks_in_28368Calligrapher h3, .stacks_in_28368Calligrapher h4, .stacks_in_28368Calligrapher h5, .stacks_in_28368Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28368targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28368Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28368Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28368Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28368Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29613 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29613 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28378overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28378leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28378leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28378leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28378leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28378rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28378rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28378theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28378overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28378leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28378leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28378leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28378leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28378rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28378rightcolContent{		margin: auto;	}}					.stacks_in_28378posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28378posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28378posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28378posterWrapper img:hover{	cursor: pointer;}.stacks_in_28378rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28378videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28378 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28379Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28379Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28379Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28379Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28379Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28379Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28379Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28379Calligrapher h6, .stacks_in_28379Calligrapher h5, .stacks_in_28379Calligrapher h4, .stacks_in_28379Calligrapher h3, .stacks_in_28379Calligrapher h2, .stacks_in_28379Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28379Calligrapher, .stacks_in_28379Calligrapher h1, .stacks_in_28379Calligrapher h2, .stacks_in_28379Calligrapher h3, .stacks_in_28379Calligrapher h4, .stacks_in_28379Calligrapher h5, .stacks_in_28379Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28379targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28379Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28379Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28379Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28379Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28383Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28383Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28383Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28383Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28383Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28383Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28383Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28383Calligrapher h6, .stacks_in_28383Calligrapher h5, .stacks_in_28383Calligrapher h4, .stacks_in_28383Calligrapher h3, .stacks_in_28383Calligrapher h2, .stacks_in_28383Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28383Calligrapher, .stacks_in_28383Calligrapher h1, .stacks_in_28383Calligrapher h2, .stacks_in_28383Calligrapher h3, .stacks_in_28383Calligrapher h4, .stacks_in_28383Calligrapher h5, .stacks_in_28383Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28383targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28383Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28383Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28383Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28383Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29616 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29616 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28393overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28393leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28393leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28393leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28393leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28393rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28393rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28393theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28393overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28393leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28393leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28393leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28393leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28393rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28393rightcolContent{		margin: auto;	}}					.stacks_in_28393posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28393posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28393posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28393posterWrapper img:hover{	cursor: pointer;}.stacks_in_28393rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28393videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28393 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28394Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28394Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28394Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28394Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28394Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28394Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28394Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28394Calligrapher h6, .stacks_in_28394Calligrapher h5, .stacks_in_28394Calligrapher h4, .stacks_in_28394Calligrapher h3, .stacks_in_28394Calligrapher h2, .stacks_in_28394Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28394Calligrapher, .stacks_in_28394Calligrapher h1, .stacks_in_28394Calligrapher h2, .stacks_in_28394Calligrapher h3, .stacks_in_28394Calligrapher h4, .stacks_in_28394Calligrapher h5, .stacks_in_28394Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28394targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28394Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28394Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28394Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28394Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28398Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28398Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28398Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28398Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28398Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28398Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28398Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28398Calligrapher h6, .stacks_in_28398Calligrapher h5, .stacks_in_28398Calligrapher h4, .stacks_in_28398Calligrapher h3, .stacks_in_28398Calligrapher h2, .stacks_in_28398Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28398Calligrapher, .stacks_in_28398Calligrapher h1, .stacks_in_28398Calligrapher h2, .stacks_in_28398Calligrapher h3, .stacks_in_28398Calligrapher h4, .stacks_in_28398Calligrapher h5, .stacks_in_28398Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28398targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28398Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28398Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28398Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28398Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29619 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29619 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28408overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28408leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28408leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28408leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28408leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28408rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28408rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28408theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28408overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28408leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28408leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28408leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28408leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28408rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28408rightcolContent{		margin: auto;	}}					.stacks_in_28408posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28408posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28408posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28408posterWrapper img:hover{	cursor: pointer;}.stacks_in_28408rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28408videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28408 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28409Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28409Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28409Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28409Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28409Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28409Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28409Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28409Calligrapher h6, .stacks_in_28409Calligrapher h5, .stacks_in_28409Calligrapher h4, .stacks_in_28409Calligrapher h3, .stacks_in_28409Calligrapher h2, .stacks_in_28409Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28409Calligrapher, .stacks_in_28409Calligrapher h1, .stacks_in_28409Calligrapher h2, .stacks_in_28409Calligrapher h3, .stacks_in_28409Calligrapher h4, .stacks_in_28409Calligrapher h5, .stacks_in_28409Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28409targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28409Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28409Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28409Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28409Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28413Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28413Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28413Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28413Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28413Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28413Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28413Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28413Calligrapher h6, .stacks_in_28413Calligrapher h5, .stacks_in_28413Calligrapher h4, .stacks_in_28413Calligrapher h3, .stacks_in_28413Calligrapher h2, .stacks_in_28413Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28413Calligrapher, .stacks_in_28413Calligrapher h1, .stacks_in_28413Calligrapher h2, .stacks_in_28413Calligrapher h3, .stacks_in_28413Calligrapher h4, .stacks_in_28413Calligrapher h5, .stacks_in_28413Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28413targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28413Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28413Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28413Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28413Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29622 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29622 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28423overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28423leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28423leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28423leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28423leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28423rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28423rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28423theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28423overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28423leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28423leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28423leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28423leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28423rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28423rightcolContent{		margin: auto;	}}					.stacks_in_28423posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28423posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28423posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28423posterWrapper img:hover{	cursor: pointer;}.stacks_in_28423rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28423videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28423 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28424Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28424Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28424Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28424Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28424Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28424Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28424Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28424Calligrapher h6, .stacks_in_28424Calligrapher h5, .stacks_in_28424Calligrapher h4, .stacks_in_28424Calligrapher h3, .stacks_in_28424Calligrapher h2, .stacks_in_28424Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28424Calligrapher, .stacks_in_28424Calligrapher h1, .stacks_in_28424Calligrapher h2, .stacks_in_28424Calligrapher h3, .stacks_in_28424Calligrapher h4, .stacks_in_28424Calligrapher h5, .stacks_in_28424Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28424targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28424Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28424Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28424Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28424Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28428Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28428Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28428Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28428Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28428Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28428Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28428Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28428Calligrapher h6, .stacks_in_28428Calligrapher h5, .stacks_in_28428Calligrapher h4, .stacks_in_28428Calligrapher h3, .stacks_in_28428Calligrapher h2, .stacks_in_28428Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28428Calligrapher, .stacks_in_28428Calligrapher h1, .stacks_in_28428Calligrapher h2, .stacks_in_28428Calligrapher h3, .stacks_in_28428Calligrapher h4, .stacks_in_28428Calligrapher h5, .stacks_in_28428Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28428targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28428Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28428Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28428Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28428Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//*
 * 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_28558 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_28558.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_28558.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


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

  float:left;
}

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#cookieManagerButtonWrapstacks_in_29625 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28560overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28560leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28560leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28560leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28560leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28560rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28560rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28560theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28560overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28560leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28560leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28560leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28560leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28560rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28560rightcolContent{		margin: auto;	}}					.stacks_in_28560posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28560posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28560posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28560posterWrapper img:hover{	cursor: pointer;}.stacks_in_28560rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28560videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28560 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28561Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28561Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28561Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28561Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28561Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28561Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28561Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28561Calligrapher h6, .stacks_in_28561Calligrapher h5, .stacks_in_28561Calligrapher h4, .stacks_in_28561Calligrapher h3, .stacks_in_28561Calligrapher h2, .stacks_in_28561Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28561Calligrapher, .stacks_in_28561Calligrapher h1, .stacks_in_28561Calligrapher h2, .stacks_in_28561Calligrapher h3, .stacks_in_28561Calligrapher h4, .stacks_in_28561Calligrapher h5, .stacks_in_28561Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28561targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28561Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28561Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28561Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28561Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28565Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28565Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28565Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28565Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28565Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28565Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28565Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28565Calligrapher h6, .stacks_in_28565Calligrapher h5, .stacks_in_28565Calligrapher h4, .stacks_in_28565Calligrapher h3, .stacks_in_28565Calligrapher h2, .stacks_in_28565Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28565Calligrapher, .stacks_in_28565Calligrapher h1, .stacks_in_28565Calligrapher h2, .stacks_in_28565Calligrapher h3, .stacks_in_28565Calligrapher h4, .stacks_in_28565Calligrapher h5, .stacks_in_28565Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28565targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28565Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28565Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28565Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28565Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29628 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29628 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28575overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28575leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28575leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28575leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28575leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28575rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28575rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28575theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28575overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28575leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28575leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28575leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28575leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28575rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28575rightcolContent{		margin: auto;	}}					.stacks_in_28575posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28575posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28575posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28575posterWrapper img:hover{	cursor: pointer;}.stacks_in_28575rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28575videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28575 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28576Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28576Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28576Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28576Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28576Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28576Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28576Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28576Calligrapher h6, .stacks_in_28576Calligrapher h5, .stacks_in_28576Calligrapher h4, .stacks_in_28576Calligrapher h3, .stacks_in_28576Calligrapher h2, .stacks_in_28576Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28576Calligrapher, .stacks_in_28576Calligrapher h1, .stacks_in_28576Calligrapher h2, .stacks_in_28576Calligrapher h3, .stacks_in_28576Calligrapher h4, .stacks_in_28576Calligrapher h5, .stacks_in_28576Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28576targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28576Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28576Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28576Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28576Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28580Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28580Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28580Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28580Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28580Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28580Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28580Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28580Calligrapher h6, .stacks_in_28580Calligrapher h5, .stacks_in_28580Calligrapher h4, .stacks_in_28580Calligrapher h3, .stacks_in_28580Calligrapher h2, .stacks_in_28580Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28580Calligrapher, .stacks_in_28580Calligrapher h1, .stacks_in_28580Calligrapher h2, .stacks_in_28580Calligrapher h3, .stacks_in_28580Calligrapher h4, .stacks_in_28580Calligrapher h5, .stacks_in_28580Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28580targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28580Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28580Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28580Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28580Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29631 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29631 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28590overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28590leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28590leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28590leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28590leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28590rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28590rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28590theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28590overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28590leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28590leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28590leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28590leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28590rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28590rightcolContent{		margin: auto;	}}					.stacks_in_28590posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28590posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28590posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28590posterWrapper img:hover{	cursor: pointer;}.stacks_in_28590rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28590videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28590 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28591Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28591Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28591Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28591Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28591Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28591Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28591Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28591Calligrapher h6, .stacks_in_28591Calligrapher h5, .stacks_in_28591Calligrapher h4, .stacks_in_28591Calligrapher h3, .stacks_in_28591Calligrapher h2, .stacks_in_28591Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28591Calligrapher, .stacks_in_28591Calligrapher h1, .stacks_in_28591Calligrapher h2, .stacks_in_28591Calligrapher h3, .stacks_in_28591Calligrapher h4, .stacks_in_28591Calligrapher h5, .stacks_in_28591Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28591targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28591Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28591Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28591Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28591Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28595Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28595Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28595Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28595Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28595Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28595Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28595Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28595Calligrapher h6, .stacks_in_28595Calligrapher h5, .stacks_in_28595Calligrapher h4, .stacks_in_28595Calligrapher h3, .stacks_in_28595Calligrapher h2, .stacks_in_28595Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28595Calligrapher, .stacks_in_28595Calligrapher h1, .stacks_in_28595Calligrapher h2, .stacks_in_28595Calligrapher h3, .stacks_in_28595Calligrapher h4, .stacks_in_28595Calligrapher h5, .stacks_in_28595Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28595targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28595Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28595Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28595Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28595Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29634 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29634 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28605overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28605leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28605leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28605leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28605leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28605rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28605rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28605theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28605overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28605leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28605leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28605leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28605leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28605rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28605rightcolContent{		margin: auto;	}}					.stacks_in_28605posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28605posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28605posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28605posterWrapper img:hover{	cursor: pointer;}.stacks_in_28605rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28605videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28605 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28606Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28606Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28606Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28606Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28606Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28606Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28606Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28606Calligrapher h6, .stacks_in_28606Calligrapher h5, .stacks_in_28606Calligrapher h4, .stacks_in_28606Calligrapher h3, .stacks_in_28606Calligrapher h2, .stacks_in_28606Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28606Calligrapher, .stacks_in_28606Calligrapher h1, .stacks_in_28606Calligrapher h2, .stacks_in_28606Calligrapher h3, .stacks_in_28606Calligrapher h4, .stacks_in_28606Calligrapher h5, .stacks_in_28606Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28606targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28606Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28606Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28606Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28606Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28610Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28610Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28610Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28610Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28610Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28610Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28610Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28610Calligrapher h6, .stacks_in_28610Calligrapher h5, .stacks_in_28610Calligrapher h4, .stacks_in_28610Calligrapher h3, .stacks_in_28610Calligrapher h2, .stacks_in_28610Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28610Calligrapher, .stacks_in_28610Calligrapher h1, .stacks_in_28610Calligrapher h2, .stacks_in_28610Calligrapher h3, .stacks_in_28610Calligrapher h4, .stacks_in_28610Calligrapher h5, .stacks_in_28610Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28610targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28610Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28610Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28610Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28610Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29637 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29637 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28620overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28620leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28620leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28620leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28620leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28620rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28620rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28620theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28620overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28620leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28620leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28620leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28620leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28620rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28620rightcolContent{		margin: auto;	}}					.stacks_in_28620posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28620posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28620posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28620posterWrapper img:hover{	cursor: pointer;}.stacks_in_28620rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28620videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28620 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28621Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28621Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28621Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28621Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28621Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28621Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28621Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28621Calligrapher h6, .stacks_in_28621Calligrapher h5, .stacks_in_28621Calligrapher h4, .stacks_in_28621Calligrapher h3, .stacks_in_28621Calligrapher h2, .stacks_in_28621Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28621Calligrapher, .stacks_in_28621Calligrapher h1, .stacks_in_28621Calligrapher h2, .stacks_in_28621Calligrapher h3, .stacks_in_28621Calligrapher h4, .stacks_in_28621Calligrapher h5, .stacks_in_28621Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28621targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28621Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28621Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28621Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28621Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28625Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28625Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28625Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28625Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28625Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28625Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28625Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28625Calligrapher h6, .stacks_in_28625Calligrapher h5, .stacks_in_28625Calligrapher h4, .stacks_in_28625Calligrapher h3, .stacks_in_28625Calligrapher h2, .stacks_in_28625Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28625Calligrapher, .stacks_in_28625Calligrapher h1, .stacks_in_28625Calligrapher h2, .stacks_in_28625Calligrapher h3, .stacks_in_28625Calligrapher h4, .stacks_in_28625Calligrapher h5, .stacks_in_28625Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28625targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28625Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28625Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28625Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28625Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29640 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29640 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28635overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28635leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28635leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28635leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28635leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28635rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28635rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28635theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28635overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28635leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28635leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28635leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28635leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28635rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28635rightcolContent{		margin: auto;	}}					.stacks_in_28635posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28635posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28635posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28635posterWrapper img:hover{	cursor: pointer;}.stacks_in_28635rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28635videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28635 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28636Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28636Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28636Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28636Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28636Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28636Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28636Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28636Calligrapher h6, .stacks_in_28636Calligrapher h5, .stacks_in_28636Calligrapher h4, .stacks_in_28636Calligrapher h3, .stacks_in_28636Calligrapher h2, .stacks_in_28636Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28636Calligrapher, .stacks_in_28636Calligrapher h1, .stacks_in_28636Calligrapher h2, .stacks_in_28636Calligrapher h3, .stacks_in_28636Calligrapher h4, .stacks_in_28636Calligrapher h5, .stacks_in_28636Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28636targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28636Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28636Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28636Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28636Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28640Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28640Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28640Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28640Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28640Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28640Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28640Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28640Calligrapher h6, .stacks_in_28640Calligrapher h5, .stacks_in_28640Calligrapher h4, .stacks_in_28640Calligrapher h3, .stacks_in_28640Calligrapher h2, .stacks_in_28640Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28640Calligrapher, .stacks_in_28640Calligrapher h1, .stacks_in_28640Calligrapher h2, .stacks_in_28640Calligrapher h3, .stacks_in_28640Calligrapher h4, .stacks_in_28640Calligrapher h5, .stacks_in_28640Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28640targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28640Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28640Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28640Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28640Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29643 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29643 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28650overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28650leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28650leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28650leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28650leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28650rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28650rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28650theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28650overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28650leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28650leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28650leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28650leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28650rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28650rightcolContent{		margin: auto;	}}					.stacks_in_28650posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28650posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28650posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28650posterWrapper img:hover{	cursor: pointer;}.stacks_in_28650rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28650videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28650 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28651Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28651Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28651Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28651Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28651Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28651Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28651Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28651Calligrapher h6, .stacks_in_28651Calligrapher h5, .stacks_in_28651Calligrapher h4, .stacks_in_28651Calligrapher h3, .stacks_in_28651Calligrapher h2, .stacks_in_28651Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28651Calligrapher, .stacks_in_28651Calligrapher h1, .stacks_in_28651Calligrapher h2, .stacks_in_28651Calligrapher h3, .stacks_in_28651Calligrapher h4, .stacks_in_28651Calligrapher h5, .stacks_in_28651Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28651targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28651Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28651Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28651Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28651Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28655Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28655Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28655Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28655Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28655Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28655Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28655Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28655Calligrapher h6, .stacks_in_28655Calligrapher h5, .stacks_in_28655Calligrapher h4, .stacks_in_28655Calligrapher h3, .stacks_in_28655Calligrapher h2, .stacks_in_28655Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28655Calligrapher, .stacks_in_28655Calligrapher h1, .stacks_in_28655Calligrapher h2, .stacks_in_28655Calligrapher h3, .stacks_in_28655Calligrapher h4, .stacks_in_28655Calligrapher h5, .stacks_in_28655Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28655targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28655Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28655Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28655Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28655Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29646 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29646 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28665overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28665leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28665leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28665leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28665leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28665rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28665rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28665theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28665overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28665leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28665leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28665leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28665leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28665rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28665rightcolContent{		margin: auto;	}}					.stacks_in_28665posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28665posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28665posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28665posterWrapper img:hover{	cursor: pointer;}.stacks_in_28665rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28665videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28665 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28666Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28666Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28666Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28666Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28666Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28666Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28666Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28666Calligrapher h6, .stacks_in_28666Calligrapher h5, .stacks_in_28666Calligrapher h4, .stacks_in_28666Calligrapher h3, .stacks_in_28666Calligrapher h2, .stacks_in_28666Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28666Calligrapher, .stacks_in_28666Calligrapher h1, .stacks_in_28666Calligrapher h2, .stacks_in_28666Calligrapher h3, .stacks_in_28666Calligrapher h4, .stacks_in_28666Calligrapher h5, .stacks_in_28666Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28666targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28666Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28666Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28666Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28666Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28670Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28670Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28670Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28670Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28670Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28670Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28670Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28670Calligrapher h6, .stacks_in_28670Calligrapher h5, .stacks_in_28670Calligrapher h4, .stacks_in_28670Calligrapher h3, .stacks_in_28670Calligrapher h2, .stacks_in_28670Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28670Calligrapher, .stacks_in_28670Calligrapher h1, .stacks_in_28670Calligrapher h2, .stacks_in_28670Calligrapher h3, .stacks_in_28670Calligrapher h4, .stacks_in_28670Calligrapher h5, .stacks_in_28670Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28670targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28670Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28670Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28670Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28670Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//*
 * 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_28679 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

.stacks_in_28679.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_28679.ResponsiveCol2_L.RC2_Goff {
  width: calc(100%/2);
  width: 50%;


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

  float:left;
}

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#cookieManagerButtonWrapstacks_in_29649 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28681overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28681leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28681leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28681leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28681leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28681rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28681rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28681theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28681overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28681leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28681leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28681leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28681leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28681rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28681rightcolContent{		margin: auto;	}}					.stacks_in_28681posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28681posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28681posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28681posterWrapper img:hover{	cursor: pointer;}.stacks_in_28681rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28681videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28681 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28682Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28682Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28682Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28682Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28682Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28682Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28682Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28682Calligrapher h6, .stacks_in_28682Calligrapher h5, .stacks_in_28682Calligrapher h4, .stacks_in_28682Calligrapher h3, .stacks_in_28682Calligrapher h2, .stacks_in_28682Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28682Calligrapher, .stacks_in_28682Calligrapher h1, .stacks_in_28682Calligrapher h2, .stacks_in_28682Calligrapher h3, .stacks_in_28682Calligrapher h4, .stacks_in_28682Calligrapher h5, .stacks_in_28682Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28682targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28682Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28682Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28682Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28682Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28686Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28686Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28686Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28686Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28686Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28686Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28686Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28686Calligrapher h6, .stacks_in_28686Calligrapher h5, .stacks_in_28686Calligrapher h4, .stacks_in_28686Calligrapher h3, .stacks_in_28686Calligrapher h2, .stacks_in_28686Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28686Calligrapher, .stacks_in_28686Calligrapher h1, .stacks_in_28686Calligrapher h2, .stacks_in_28686Calligrapher h3, .stacks_in_28686Calligrapher h4, .stacks_in_28686Calligrapher h5, .stacks_in_28686Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28686targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28686Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28686Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28686Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28686Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_29652 {
    padding: 10px;
}

#cookieManagerButtonWrapstacks_in_29652 a {
    text-decoration: none;
    outline: none;
}

/* Start Video Plus stack CSS code */.stacks_in_28696overlay{	display: none;	position: fixed;	top: 0;	left: 0;	width: 100%;	height: 100%;	background: rgba(0,0,0,0.2);	z-index: 2147483000;	overflow: scroll;	transition: all 1s ease 0.2s;}.stacks_in_28696leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28696leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28696leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28696leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28696rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28696rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28696theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28696overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28696leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28696leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28696leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28696leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28696rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28696rightcolContent{		margin: auto;	}}					.stacks_in_28696posterWrapper img {		    -webkit-transition: all .5s ease; /* Safari and Chrome */		    -moz-transition: all .5s ease; /* Firefox */		    -ms-transition: all .5s ease; /* IE 9 */		    -o-transition: all .5s ease; /* Opera */		    transition: all .5s ease;		}		.stacks_in_28696posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28696posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28696posterWrapper img:hover{	cursor: pointer;}.stacks_in_28696rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28696videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28696 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28697Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 2px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28697Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28697Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28697Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28697Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28697Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28697Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28697Calligrapher h6, .stacks_in_28697Calligrapher h5, .stacks_in_28697Calligrapher h4, .stacks_in_28697Calligrapher h3, .stacks_in_28697Calligrapher h2, .stacks_in_28697Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28697Calligrapher, .stacks_in_28697Calligrapher h1, .stacks_in_28697Calligrapher h2, .stacks_in_28697Calligrapher h3, .stacks_in_28697Calligrapher h4, .stacks_in_28697Calligrapher h5, .stacks_in_28697Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28697targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28697Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28697Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28697Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28697Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28701Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 3px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_28701Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28701Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28701Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28701Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28701Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28701Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28701Calligrapher h6, .stacks_in_28701Calligrapher h5, .stacks_in_28701Calligrapher h4, .stacks_in_28701Calligrapher h3, .stacks_in_28701Calligrapher h2, .stacks_in_28701Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28701Calligrapher, .stacks_in_28701Calligrapher h1, .stacks_in_28701Calligrapher h2, .stacks_in_28701Calligrapher h3, .stacks_in_28701Calligrapher h4, .stacks_in_28701Calligrapher h5, .stacks_in_28701Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28701targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28701Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28701Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28701Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28701Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

	/* Start hidden */
	#animateItWrapperstacks_in_28713 {
		opacity: 0;
	}

	


#animateItWrapperstacks_in_28713.animated {
	animation-duration: 1500ms;
	animation-delay: 10ms;
}





