@-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;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_25136 {
	letter-spacing: 10px;
	text-transform: capitalize;
	font-size: 140%;
	font-weight: bold;
}

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

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








  


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






}



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






}




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

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








  


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






}



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






}




  

#stacks_in_25154 {
	font-size: 110%;
}
#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;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_25174 {
	letter-spacing: 10px;
	text-transform: capitalize;
	font-size: 140%;
	font-weight: bold;
}

#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_25178 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

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


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

  float:left;
}

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_25178 {
	padding: 0px 0px 30px 0px;
}

#stacks_in_25188 {
	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_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_25200 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

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


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

  float:left;
}

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_25200 {
	padding: 0px 0px 30px 0px;
}

#stacks_in_25210 {
	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_25222 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

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


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

  float:left;
}

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_25222 {
	padding: 0px 0px 30px 0px;
}

#stacks_in_25232 {
	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_25244 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

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


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

  float:left;
}

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_25254 {
	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;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_25270 {
	letter-spacing: 10px;
	text-transform: capitalize;
	font-size: 140%;
	font-weight: bold;
}

#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{--elevator-image:url(../../rw_common/plugins/stacks/elevator-images/top.png);--elevator-size:50px;display:none;text-decoration:none;position:fixed;bottom:10px;right:10px;overflow:hidden;width:var(--elevator-size);height:var(--elevator-size);border:none;text-indent:-9999px;background-image:var(--elevator-image);background-repeat:no-repeat;background-position:left top;z-index:9988}#toTop:active,#toTop:focus{outline:none}#toTop:hover{background-position:left calc(var(--elevator-size) * -1)}
/*
 * 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 */
/* Preview and publish styling */

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

	


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





/* 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 */
/* Preview and publish styling */

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

	


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





/* 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 */
/* Preview and publish styling */

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

	


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





/* 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 */
/* Preview and publish styling */

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

	


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





/* 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 */
/* Preview and publish styling */

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

	


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





/* 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 */
/* Preview and publish styling */

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

	


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





/* 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 */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_28210overlay{	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_28210leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28210leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28210leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28210leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28210rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28210rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28210theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28210overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28210leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28210leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28210leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28210leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28210rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28210rightcolContent{		margin: auto;	}}					.stacks_in_28210posterWrapper 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_28210posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28210posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28210posterWrapper img:hover{	cursor: pointer;}.stacks_in_28210rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28210videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28210 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28211Calligrapher{			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_28211Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28211Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28211Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28211Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28211Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28211Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28211Calligrapher h6, .stacks_in_28211Calligrapher h5, .stacks_in_28211Calligrapher h4, .stacks_in_28211Calligrapher h3, .stacks_in_28211Calligrapher h2, .stacks_in_28211Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28211Calligrapher, .stacks_in_28211Calligrapher h1, .stacks_in_28211Calligrapher h2, .stacks_in_28211Calligrapher h3, .stacks_in_28211Calligrapher h4, .stacks_in_28211Calligrapher h5, .stacks_in_28211Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28211targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28211Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28211Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28211Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28211Calligrapher 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_28215Calligrapher{			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_28215Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28215Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28215Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28215Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28215Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28215Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28215Calligrapher h6, .stacks_in_28215Calligrapher h5, .stacks_in_28215Calligrapher h4, .stacks_in_28215Calligrapher h3, .stacks_in_28215Calligrapher h2, .stacks_in_28215Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28215Calligrapher, .stacks_in_28215Calligrapher h1, .stacks_in_28215Calligrapher h2, .stacks_in_28215Calligrapher h3, .stacks_in_28215Calligrapher h4, .stacks_in_28215Calligrapher h5, .stacks_in_28215Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28215targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28215Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28215Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28215Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28215Calligrapher 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_28223 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

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


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

  float:left;
}

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_28346overlay{	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_28346leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28346leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28346leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28346leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28346rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28346rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28346theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28346overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28346leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28346leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28346leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28346leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28346rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28346rightcolContent{		margin: auto;	}}					.stacks_in_28346posterWrapper 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_28346posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28346posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28346posterWrapper img:hover{	cursor: pointer;}.stacks_in_28346rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28346videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28346 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28348Calligrapher{			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_28348Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28348Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28348Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28348Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28348Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28348Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28348Calligrapher h6, .stacks_in_28348Calligrapher h5, .stacks_in_28348Calligrapher h4, .stacks_in_28348Calligrapher h3, .stacks_in_28348Calligrapher h2, .stacks_in_28348Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28348Calligrapher, .stacks_in_28348Calligrapher h1, .stacks_in_28348Calligrapher h2, .stacks_in_28348Calligrapher h3, .stacks_in_28348Calligrapher h4, .stacks_in_28348Calligrapher h5, .stacks_in_28348Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28348targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28348Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28348Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28348Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28348Calligrapher 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_28350Calligrapher{			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_28350Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28350Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28350Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28350Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28350Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28350Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28350Calligrapher h6, .stacks_in_28350Calligrapher h5, .stacks_in_28350Calligrapher h4, .stacks_in_28350Calligrapher h3, .stacks_in_28350Calligrapher h2, .stacks_in_28350Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28350Calligrapher, .stacks_in_28350Calligrapher h1, .stacks_in_28350Calligrapher h2, .stacks_in_28350Calligrapher h3, .stacks_in_28350Calligrapher h4, .stacks_in_28350Calligrapher h5, .stacks_in_28350Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28350targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28350Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28350Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28350Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28350Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_28353overlay{	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_28353leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28353leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28353leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28353leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28353rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28353rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28353theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28353overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28353leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28353leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28353leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28353leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28353rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28353rightcolContent{		margin: auto;	}}					.stacks_in_28353posterWrapper 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_28353posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28353posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28353posterWrapper img:hover{	cursor: pointer;}.stacks_in_28353rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28353videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28353 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28355Calligrapher{			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_28355Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28355Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28355Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28355Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28355Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28355Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28355Calligrapher h6, .stacks_in_28355Calligrapher h5, .stacks_in_28355Calligrapher h4, .stacks_in_28355Calligrapher h3, .stacks_in_28355Calligrapher h2, .stacks_in_28355Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28355Calligrapher, .stacks_in_28355Calligrapher h1, .stacks_in_28355Calligrapher h2, .stacks_in_28355Calligrapher h3, .stacks_in_28355Calligrapher h4, .stacks_in_28355Calligrapher h5, .stacks_in_28355Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28355targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28355Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28355Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28355Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28355Calligrapher 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_28357Calligrapher{			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_28357Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28357Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28357Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28357Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28357Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28357Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28357Calligrapher h6, .stacks_in_28357Calligrapher h5, .stacks_in_28357Calligrapher h4, .stacks_in_28357Calligrapher h3, .stacks_in_28357Calligrapher h2, .stacks_in_28357Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28357Calligrapher, .stacks_in_28357Calligrapher h1, .stacks_in_28357Calligrapher h2, .stacks_in_28357Calligrapher h3, .stacks_in_28357Calligrapher h4, .stacks_in_28357Calligrapher h5, .stacks_in_28357Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28357targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28357Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28357Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28357Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28357Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_28360overlay{	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_28360leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28360leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28360leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28360leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28360rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28360rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28360theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28360overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28360leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28360leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28360leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28360leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28360rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28360rightcolContent{		margin: auto;	}}					.stacks_in_28360posterWrapper 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_28360posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28360posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28360posterWrapper img:hover{	cursor: pointer;}.stacks_in_28360rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28360videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28360 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28362Calligrapher{			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_28362Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28362Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28362Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28362Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28362Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28362Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28362Calligrapher h6, .stacks_in_28362Calligrapher h5, .stacks_in_28362Calligrapher h4, .stacks_in_28362Calligrapher h3, .stacks_in_28362Calligrapher h2, .stacks_in_28362Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28362Calligrapher, .stacks_in_28362Calligrapher h1, .stacks_in_28362Calligrapher h2, .stacks_in_28362Calligrapher h3, .stacks_in_28362Calligrapher h4, .stacks_in_28362Calligrapher h5, .stacks_in_28362Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28362targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28362Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28362Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28362Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28362Calligrapher 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_28364Calligrapher{			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_28364Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28364Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28364Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28364Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28364Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28364Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !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 */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_28367overlay{	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_28367leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28367leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28367leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28367leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28367rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28367rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28367theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28367overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28367leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28367leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28367leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28367leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28367rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28367rightcolContent{		margin: auto;	}}					.stacks_in_28367posterWrapper 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_28367posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28367posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28367posterWrapper img:hover{	cursor: pointer;}.stacks_in_28367rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28367videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28367 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28369Calligrapher{			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_28369Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28369Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28369Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28369Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28369Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28369Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28369Calligrapher h6, .stacks_in_28369Calligrapher h5, .stacks_in_28369Calligrapher h4, .stacks_in_28369Calligrapher h3, .stacks_in_28369Calligrapher h2, .stacks_in_28369Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28369Calligrapher, .stacks_in_28369Calligrapher h1, .stacks_in_28369Calligrapher h2, .stacks_in_28369Calligrapher h3, .stacks_in_28369Calligrapher h4, .stacks_in_28369Calligrapher h5, .stacks_in_28369Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28369targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28369Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28369Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28369Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28369Calligrapher 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_28371Calligrapher{			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_28371Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28371Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28371Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28371Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28371Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28371Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28371Calligrapher h6, .stacks_in_28371Calligrapher h5, .stacks_in_28371Calligrapher h4, .stacks_in_28371Calligrapher h3, .stacks_in_28371Calligrapher h2, .stacks_in_28371Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28371Calligrapher, .stacks_in_28371Calligrapher h1, .stacks_in_28371Calligrapher h2, .stacks_in_28371Calligrapher h3, .stacks_in_28371Calligrapher h4, .stacks_in_28371Calligrapher h5, .stacks_in_28371Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28371targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28371Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28371Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28371Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28371Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_28374overlay{	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_28374leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28374leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28374leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28374leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28374rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28374rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28374theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28374overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28374leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28374leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28374leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28374leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28374rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28374rightcolContent{		margin: auto;	}}					.stacks_in_28374posterWrapper 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_28374posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28374posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28374posterWrapper img:hover{	cursor: pointer;}.stacks_in_28374rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28374videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28374 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28376Calligrapher{			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_28376Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28376Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28376Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28376Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28376Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28376Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28376Calligrapher h6, .stacks_in_28376Calligrapher h5, .stacks_in_28376Calligrapher h4, .stacks_in_28376Calligrapher h3, .stacks_in_28376Calligrapher h2, .stacks_in_28376Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28376Calligrapher, .stacks_in_28376Calligrapher h1, .stacks_in_28376Calligrapher h2, .stacks_in_28376Calligrapher h3, .stacks_in_28376Calligrapher h4, .stacks_in_28376Calligrapher h5, .stacks_in_28376Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28376targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28376Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28376Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28376Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28376Calligrapher 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_28378Calligrapher{			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_28378Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28378Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28378Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28378Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28378Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28378Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28378Calligrapher h6, .stacks_in_28378Calligrapher h5, .stacks_in_28378Calligrapher h4, .stacks_in_28378Calligrapher h3, .stacks_in_28378Calligrapher h2, .stacks_in_28378Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28378Calligrapher, .stacks_in_28378Calligrapher h1, .stacks_in_28378Calligrapher h2, .stacks_in_28378Calligrapher h3, .stacks_in_28378Calligrapher h4, .stacks_in_28378Calligrapher h5, .stacks_in_28378Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28378targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28378Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28378Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28378Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28378Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_28381overlay{	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_28381leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28381leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28381leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28381leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28381rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28381rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28381theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28381overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28381leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28381leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28381leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28381leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28381rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28381rightcolContent{		margin: auto;	}}					.stacks_in_28381posterWrapper 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_28381posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28381posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28381posterWrapper img:hover{	cursor: pointer;}.stacks_in_28381rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28381videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28381 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28383Calligrapher{			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_28383Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28383Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28383Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28383Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28383Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28383Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !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 *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28385Calligrapher{			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_28385Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28385Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28385Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28385Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28385Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28385Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28385Calligrapher h6, .stacks_in_28385Calligrapher h5, .stacks_in_28385Calligrapher h4, .stacks_in_28385Calligrapher h3, .stacks_in_28385Calligrapher h2, .stacks_in_28385Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28385Calligrapher, .stacks_in_28385Calligrapher h1, .stacks_in_28385Calligrapher h2, .stacks_in_28385Calligrapher h3, .stacks_in_28385Calligrapher h4, .stacks_in_28385Calligrapher h5, .stacks_in_28385Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28385targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28385Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28385Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28385Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28385Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_28388overlay{	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_28388leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28388leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28388leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28388leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28388rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28388rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28388theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28388overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28388leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28388leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28388leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28388leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28388rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28388rightcolContent{		margin: auto;	}}					.stacks_in_28388posterWrapper 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_28388posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28388posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28388posterWrapper img:hover{	cursor: pointer;}.stacks_in_28388rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28388videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28388 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28390Calligrapher{			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_28390Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28390Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28390Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28390Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28390Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28390Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28390Calligrapher h6, .stacks_in_28390Calligrapher h5, .stacks_in_28390Calligrapher h4, .stacks_in_28390Calligrapher h3, .stacks_in_28390Calligrapher h2, .stacks_in_28390Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28390Calligrapher, .stacks_in_28390Calligrapher h1, .stacks_in_28390Calligrapher h2, .stacks_in_28390Calligrapher h3, .stacks_in_28390Calligrapher h4, .stacks_in_28390Calligrapher h5, .stacks_in_28390Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28390targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28390Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28390Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28390Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28390Calligrapher 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_28392Calligrapher{			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_28392Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28392Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28392Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28392Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28392Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28392Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28392Calligrapher h6, .stacks_in_28392Calligrapher h5, .stacks_in_28392Calligrapher h4, .stacks_in_28392Calligrapher h3, .stacks_in_28392Calligrapher h2, .stacks_in_28392Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28392Calligrapher, .stacks_in_28392Calligrapher h1, .stacks_in_28392Calligrapher h2, .stacks_in_28392Calligrapher h3, .stacks_in_28392Calligrapher h4, .stacks_in_28392Calligrapher h5, .stacks_in_28392Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28392targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28392Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28392Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28392Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28392Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_28395overlay{	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_28395leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28395leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28395leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28395leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28395rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28395rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28395theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28395overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28395leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28395leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28395leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28395leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28395rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28395rightcolContent{		margin: auto;	}}					.stacks_in_28395posterWrapper 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_28395posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28395posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28395posterWrapper img:hover{	cursor: pointer;}.stacks_in_28395rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28395videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28395 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28397Calligrapher{			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_28397Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28397Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28397Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28397Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28397Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28397Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28397Calligrapher h6, .stacks_in_28397Calligrapher h5, .stacks_in_28397Calligrapher h4, .stacks_in_28397Calligrapher h3, .stacks_in_28397Calligrapher h2, .stacks_in_28397Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28397Calligrapher, .stacks_in_28397Calligrapher h1, .stacks_in_28397Calligrapher h2, .stacks_in_28397Calligrapher h3, .stacks_in_28397Calligrapher h4, .stacks_in_28397Calligrapher h5, .stacks_in_28397Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28397targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28397Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28397Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28397Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28397Calligrapher 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_28399Calligrapher{			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_28399Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28399Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28399Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28399Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28399Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28399Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28399Calligrapher h6, .stacks_in_28399Calligrapher h5, .stacks_in_28399Calligrapher h4, .stacks_in_28399Calligrapher h3, .stacks_in_28399Calligrapher h2, .stacks_in_28399Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28399Calligrapher, .stacks_in_28399Calligrapher h1, .stacks_in_28399Calligrapher h2, .stacks_in_28399Calligrapher h3, .stacks_in_28399Calligrapher h4, .stacks_in_28399Calligrapher h5, .stacks_in_28399Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28399targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28399Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28399Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28399Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28399Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_28402overlay{	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_28402leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28402leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28402leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28402leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28402rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28402rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28402theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28402overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28402leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28402leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28402leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28402leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28402rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28402rightcolContent{		margin: auto;	}}					.stacks_in_28402posterWrapper 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_28402posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28402posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28402posterWrapper img:hover{	cursor: pointer;}.stacks_in_28402rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28402videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28402 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28404Calligrapher{			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_28404Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28404Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28404Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28404Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28404Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28404Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28404Calligrapher h6, .stacks_in_28404Calligrapher h5, .stacks_in_28404Calligrapher h4, .stacks_in_28404Calligrapher h3, .stacks_in_28404Calligrapher h2, .stacks_in_28404Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28404Calligrapher, .stacks_in_28404Calligrapher h1, .stacks_in_28404Calligrapher h2, .stacks_in_28404Calligrapher h3, .stacks_in_28404Calligrapher h4, .stacks_in_28404Calligrapher h5, .stacks_in_28404Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28404targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28404Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28404Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28404Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28404Calligrapher 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_28406Calligrapher{			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_28406Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28406Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28406Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28406Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28406Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28406Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28406Calligrapher h6, .stacks_in_28406Calligrapher h5, .stacks_in_28406Calligrapher h4, .stacks_in_28406Calligrapher h3, .stacks_in_28406Calligrapher h2, .stacks_in_28406Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28406Calligrapher, .stacks_in_28406Calligrapher h1, .stacks_in_28406Calligrapher h2, .stacks_in_28406Calligrapher h3, .stacks_in_28406Calligrapher h4, .stacks_in_28406Calligrapher h5, .stacks_in_28406Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28406targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28406Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28406Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28406Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28406Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_28409overlay{	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_28409leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28409leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28409leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28409leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28409rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28409rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28409theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28409overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28409leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28409leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28409leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28409leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28409rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28409rightcolContent{		margin: auto;	}}					.stacks_in_28409posterWrapper 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_28409posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28409posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28409posterWrapper img:hover{	cursor: pointer;}.stacks_in_28409rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28409videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28409 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28411Calligrapher{			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_28411Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28411Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28411Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28411Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28411Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28411Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28411Calligrapher h6, .stacks_in_28411Calligrapher h5, .stacks_in_28411Calligrapher h4, .stacks_in_28411Calligrapher h3, .stacks_in_28411Calligrapher h2, .stacks_in_28411Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28411Calligrapher, .stacks_in_28411Calligrapher h1, .stacks_in_28411Calligrapher h2, .stacks_in_28411Calligrapher h3, .stacks_in_28411Calligrapher h4, .stacks_in_28411Calligrapher h5, .stacks_in_28411Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28411targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28411Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28411Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28411Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28411Calligrapher 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 */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_28225overlay{	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_28225leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28225leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28225leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28225leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28225rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28225rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28225theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28225overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28225leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28225leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28225leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28225leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28225rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28225rightcolContent{		margin: auto;	}}					.stacks_in_28225posterWrapper 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_28225posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28225posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28225posterWrapper img:hover{	cursor: pointer;}.stacks_in_28225rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28225videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28225 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28226Calligrapher{			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_28226Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28226Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28226Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28226Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28226Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28226Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28226Calligrapher h6, .stacks_in_28226Calligrapher h5, .stacks_in_28226Calligrapher h4, .stacks_in_28226Calligrapher h3, .stacks_in_28226Calligrapher h2, .stacks_in_28226Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28226Calligrapher, .stacks_in_28226Calligrapher h1, .stacks_in_28226Calligrapher h2, .stacks_in_28226Calligrapher h3, .stacks_in_28226Calligrapher h4, .stacks_in_28226Calligrapher h5, .stacks_in_28226Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28226targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28226Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28226Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28226Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28226Calligrapher 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_28230Calligrapher{			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_28230Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28230Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28230Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28230Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28230Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28230Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28230Calligrapher h6, .stacks_in_28230Calligrapher h5, .stacks_in_28230Calligrapher h4, .stacks_in_28230Calligrapher h3, .stacks_in_28230Calligrapher h2, .stacks_in_28230Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28230Calligrapher, .stacks_in_28230Calligrapher h1, .stacks_in_28230Calligrapher h2, .stacks_in_28230Calligrapher h3, .stacks_in_28230Calligrapher h4, .stacks_in_28230Calligrapher h5, .stacks_in_28230Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28230targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28230Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28230Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28230Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28230Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_28240overlay{	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_28240leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28240leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28240leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28240leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28240rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28240rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28240theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28240overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28240leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28240leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28240leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28240leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28240rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28240rightcolContent{		margin: auto;	}}					.stacks_in_28240posterWrapper 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_28240posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28240posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28240posterWrapper img:hover{	cursor: pointer;}.stacks_in_28240rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28240videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28240 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28241Calligrapher{			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_28241Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28241Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28241Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28241Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28241Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28241Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28241Calligrapher h6, .stacks_in_28241Calligrapher h5, .stacks_in_28241Calligrapher h4, .stacks_in_28241Calligrapher h3, .stacks_in_28241Calligrapher h2, .stacks_in_28241Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28241Calligrapher, .stacks_in_28241Calligrapher h1, .stacks_in_28241Calligrapher h2, .stacks_in_28241Calligrapher h3, .stacks_in_28241Calligrapher h4, .stacks_in_28241Calligrapher h5, .stacks_in_28241Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28241targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28241Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28241Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28241Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28241Calligrapher 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_28245Calligrapher{			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_28245Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28245Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28245Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28245Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28245Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28245Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28245Calligrapher h6, .stacks_in_28245Calligrapher h5, .stacks_in_28245Calligrapher h4, .stacks_in_28245Calligrapher h3, .stacks_in_28245Calligrapher h2, .stacks_in_28245Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28245Calligrapher, .stacks_in_28245Calligrapher h1, .stacks_in_28245Calligrapher h2, .stacks_in_28245Calligrapher h3, .stacks_in_28245Calligrapher h4, .stacks_in_28245Calligrapher h5, .stacks_in_28245Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28245targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28245Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28245Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28245Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28245Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_28255overlay{	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_28255leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28255leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28255leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28255leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28255rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28255rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28255theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28255overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28255leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28255leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28255leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28255leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28255rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28255rightcolContent{		margin: auto;	}}					.stacks_in_28255posterWrapper 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_28255posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28255posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28255posterWrapper img:hover{	cursor: pointer;}.stacks_in_28255rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28255videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28255 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28256Calligrapher{			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_28256Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28256Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28256Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28256Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28256Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28256Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28256Calligrapher h6, .stacks_in_28256Calligrapher h5, .stacks_in_28256Calligrapher h4, .stacks_in_28256Calligrapher h3, .stacks_in_28256Calligrapher h2, .stacks_in_28256Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28256Calligrapher, .stacks_in_28256Calligrapher h1, .stacks_in_28256Calligrapher h2, .stacks_in_28256Calligrapher h3, .stacks_in_28256Calligrapher h4, .stacks_in_28256Calligrapher h5, .stacks_in_28256Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28256targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28256Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28256Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28256Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28256Calligrapher 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_28260Calligrapher{			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_28260Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28260Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28260Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28260Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28260Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28260Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28260Calligrapher h6, .stacks_in_28260Calligrapher h5, .stacks_in_28260Calligrapher h4, .stacks_in_28260Calligrapher h3, .stacks_in_28260Calligrapher h2, .stacks_in_28260Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28260Calligrapher, .stacks_in_28260Calligrapher h1, .stacks_in_28260Calligrapher h2, .stacks_in_28260Calligrapher h3, .stacks_in_28260Calligrapher h4, .stacks_in_28260Calligrapher h5, .stacks_in_28260Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28260targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28260Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28260Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28260Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28260Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_28270overlay{	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_28270leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28270leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28270leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28270leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28270rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28270rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28270theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28270overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28270leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28270leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28270leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28270leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28270rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28270rightcolContent{		margin: auto;	}}					.stacks_in_28270posterWrapper 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_28270posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28270posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28270posterWrapper img:hover{	cursor: pointer;}.stacks_in_28270rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28270videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28270 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28271Calligrapher{			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_28271Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28271Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28271Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28271Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28271Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28271Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28271Calligrapher h6, .stacks_in_28271Calligrapher h5, .stacks_in_28271Calligrapher h4, .stacks_in_28271Calligrapher h3, .stacks_in_28271Calligrapher h2, .stacks_in_28271Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28271Calligrapher, .stacks_in_28271Calligrapher h1, .stacks_in_28271Calligrapher h2, .stacks_in_28271Calligrapher h3, .stacks_in_28271Calligrapher h4, .stacks_in_28271Calligrapher h5, .stacks_in_28271Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28271targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28271Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28271Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28271Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28271Calligrapher 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_28275Calligrapher{			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_28275Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28275Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28275Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28275Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28275Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28275Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28275Calligrapher h6, .stacks_in_28275Calligrapher h5, .stacks_in_28275Calligrapher h4, .stacks_in_28275Calligrapher h3, .stacks_in_28275Calligrapher h2, .stacks_in_28275Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28275Calligrapher, .stacks_in_28275Calligrapher h1, .stacks_in_28275Calligrapher h2, .stacks_in_28275Calligrapher h3, .stacks_in_28275Calligrapher h4, .stacks_in_28275Calligrapher h5, .stacks_in_28275Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28275targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28275Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28275Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28275Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28275Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_28285overlay{	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_28285leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28285leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28285leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28285leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28285rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28285rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28285theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28285overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28285leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28285leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28285leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28285leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28285rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28285rightcolContent{		margin: auto;	}}					.stacks_in_28285posterWrapper 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_28285posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28285posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28285posterWrapper img:hover{	cursor: pointer;}.stacks_in_28285rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28285videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28285 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28286Calligrapher{			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_28286Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28286Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28286Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28286Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28286Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28286Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28286Calligrapher h6, .stacks_in_28286Calligrapher h5, .stacks_in_28286Calligrapher h4, .stacks_in_28286Calligrapher h3, .stacks_in_28286Calligrapher h2, .stacks_in_28286Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28286Calligrapher, .stacks_in_28286Calligrapher h1, .stacks_in_28286Calligrapher h2, .stacks_in_28286Calligrapher h3, .stacks_in_28286Calligrapher h4, .stacks_in_28286Calligrapher h5, .stacks_in_28286Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28286targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28286Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28286Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28286Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28286Calligrapher 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_28290Calligrapher{			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_28290Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28290Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28290Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28290Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28290Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28290Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28290Calligrapher h6, .stacks_in_28290Calligrapher h5, .stacks_in_28290Calligrapher h4, .stacks_in_28290Calligrapher h3, .stacks_in_28290Calligrapher h2, .stacks_in_28290Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28290Calligrapher, .stacks_in_28290Calligrapher h1, .stacks_in_28290Calligrapher h2, .stacks_in_28290Calligrapher h3, .stacks_in_28290Calligrapher h4, .stacks_in_28290Calligrapher h5, .stacks_in_28290Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28290targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28290Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28290Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28290Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28290Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_28300overlay{	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_28300leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28300leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28300leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28300leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28300rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28300rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28300theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28300overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28300leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28300leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28300leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28300leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28300rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28300rightcolContent{		margin: auto;	}}					.stacks_in_28300posterWrapper 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_28300posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28300posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28300posterWrapper img:hover{	cursor: pointer;}.stacks_in_28300rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28300videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28300 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28301Calligrapher{			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_28301Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28301Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28301Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28301Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28301Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28301Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28301Calligrapher h6, .stacks_in_28301Calligrapher h5, .stacks_in_28301Calligrapher h4, .stacks_in_28301Calligrapher h3, .stacks_in_28301Calligrapher h2, .stacks_in_28301Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28301Calligrapher, .stacks_in_28301Calligrapher h1, .stacks_in_28301Calligrapher h2, .stacks_in_28301Calligrapher h3, .stacks_in_28301Calligrapher h4, .stacks_in_28301Calligrapher h5, .stacks_in_28301Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28301targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28301Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28301Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28301Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28301Calligrapher 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_28305Calligrapher{			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_28305Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28305Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28305Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28305Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28305Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28305Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28305Calligrapher h6, .stacks_in_28305Calligrapher h5, .stacks_in_28305Calligrapher h4, .stacks_in_28305Calligrapher h3, .stacks_in_28305Calligrapher h2, .stacks_in_28305Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28305Calligrapher, .stacks_in_28305Calligrapher h1, .stacks_in_28305Calligrapher h2, .stacks_in_28305Calligrapher h3, .stacks_in_28305Calligrapher h4, .stacks_in_28305Calligrapher h5, .stacks_in_28305Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28305targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28305Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28305Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28305Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28305Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_28315overlay{	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_28315leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28315leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28315leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28315leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28315rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28315rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28315theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28315overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28315leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28315leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28315leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28315leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28315rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28315rightcolContent{		margin: auto;	}}					.stacks_in_28315posterWrapper 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_28315posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28315posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28315posterWrapper img:hover{	cursor: pointer;}.stacks_in_28315rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28315videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28315 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28316Calligrapher{			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_28316Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28316Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28316Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28316Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28316Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28316Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28316Calligrapher h6, .stacks_in_28316Calligrapher h5, .stacks_in_28316Calligrapher h4, .stacks_in_28316Calligrapher h3, .stacks_in_28316Calligrapher h2, .stacks_in_28316Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28316Calligrapher, .stacks_in_28316Calligrapher h1, .stacks_in_28316Calligrapher h2, .stacks_in_28316Calligrapher h3, .stacks_in_28316Calligrapher h4, .stacks_in_28316Calligrapher h5, .stacks_in_28316Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28316targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28316Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28316Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28316Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28316Calligrapher 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_28320Calligrapher{			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_28320Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28320Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28320Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28320Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28320Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28320Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28320Calligrapher h6, .stacks_in_28320Calligrapher h5, .stacks_in_28320Calligrapher h4, .stacks_in_28320Calligrapher h3, .stacks_in_28320Calligrapher h2, .stacks_in_28320Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28320Calligrapher, .stacks_in_28320Calligrapher h1, .stacks_in_28320Calligrapher h2, .stacks_in_28320Calligrapher h3, .stacks_in_28320Calligrapher h4, .stacks_in_28320Calligrapher h5, .stacks_in_28320Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28320targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28320Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28320Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28320Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28320Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_28330overlay{	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_28330leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_28330leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_28330leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_28330leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_28330rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_28330rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_28330theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_28330overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_28330leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_28330leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_28330leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_28330leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_28330rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_28330rightcolContent{		margin: auto;	}}					.stacks_in_28330posterWrapper 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_28330posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_28330posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_28330posterWrapper img:hover{	cursor: pointer;}.stacks_in_28330rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_28330videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_28330 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_28331Calligrapher{			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_28331Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28331Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28331Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28331Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28331Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28331Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_28331Calligrapher h6, .stacks_in_28331Calligrapher h5, .stacks_in_28331Calligrapher h4, .stacks_in_28331Calligrapher h3, .stacks_in_28331Calligrapher h2, .stacks_in_28331Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28331Calligrapher, .stacks_in_28331Calligrapher h1, .stacks_in_28331Calligrapher h2, .stacks_in_28331Calligrapher h3, .stacks_in_28331Calligrapher h4, .stacks_in_28331Calligrapher h5, .stacks_in_28331Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28331targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28331Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28331Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28331Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28331Calligrapher 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_28335Calligrapher{			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_28335Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28335Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28335Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28335Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28335Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28335Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_28335Calligrapher h6, .stacks_in_28335Calligrapher h5, .stacks_in_28335Calligrapher h4, .stacks_in_28335Calligrapher h3, .stacks_in_28335Calligrapher h2, .stacks_in_28335Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_28335Calligrapher, .stacks_in_28335Calligrapher h1, .stacks_in_28335Calligrapher h2, .stacks_in_28335Calligrapher h3, .stacks_in_28335Calligrapher h4, .stacks_in_28335Calligrapher h5, .stacks_in_28335Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_28335targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_28335Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_28335Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_28335Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_28335Calligrapher 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_27222 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

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


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

  float:left;
}

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_27429overlay{	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_27429leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27429leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27429leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27429leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27429rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27429rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27429theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27429overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27429leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27429leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27429leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27429leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27429rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27429rightcolContent{		margin: auto;	}}					.stacks_in_27429posterWrapper 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_27429posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27429posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27429posterWrapper img:hover{	cursor: pointer;}.stacks_in_27429rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27429videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27429 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27431Calligrapher{			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_27431Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27431Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27431Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27431Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27431Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27431Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27431Calligrapher h6, .stacks_in_27431Calligrapher h5, .stacks_in_27431Calligrapher h4, .stacks_in_27431Calligrapher h3, .stacks_in_27431Calligrapher h2, .stacks_in_27431Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27431Calligrapher, .stacks_in_27431Calligrapher h1, .stacks_in_27431Calligrapher h2, .stacks_in_27431Calligrapher h3, .stacks_in_27431Calligrapher h4, .stacks_in_27431Calligrapher h5, .stacks_in_27431Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27431targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27431Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27431Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27431Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27431Calligrapher 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_27433Calligrapher{			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_27433Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27433Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27433Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27433Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27433Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27433Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27433Calligrapher h6, .stacks_in_27433Calligrapher h5, .stacks_in_27433Calligrapher h4, .stacks_in_27433Calligrapher h3, .stacks_in_27433Calligrapher h2, .stacks_in_27433Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27433Calligrapher, .stacks_in_27433Calligrapher h1, .stacks_in_27433Calligrapher h2, .stacks_in_27433Calligrapher h3, .stacks_in_27433Calligrapher h4, .stacks_in_27433Calligrapher h5, .stacks_in_27433Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27433targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27433Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27433Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27433Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27433Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_27436overlay{	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_27436leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27436leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27436leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27436leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27436rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27436rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27436theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27436overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27436leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27436leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27436leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27436leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27436rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27436rightcolContent{		margin: auto;	}}					.stacks_in_27436posterWrapper 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_27436posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27436posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27436posterWrapper img:hover{	cursor: pointer;}.stacks_in_27436rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27436videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27436 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27438Calligrapher{			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_27438Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27438Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27438Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27438Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27438Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27438Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27438Calligrapher h6, .stacks_in_27438Calligrapher h5, .stacks_in_27438Calligrapher h4, .stacks_in_27438Calligrapher h3, .stacks_in_27438Calligrapher h2, .stacks_in_27438Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27438Calligrapher, .stacks_in_27438Calligrapher h1, .stacks_in_27438Calligrapher h2, .stacks_in_27438Calligrapher h3, .stacks_in_27438Calligrapher h4, .stacks_in_27438Calligrapher h5, .stacks_in_27438Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27438targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27438Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27438Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27438Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27438Calligrapher 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_27440Calligrapher{			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_27440Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27440Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27440Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27440Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27440Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27440Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27440Calligrapher h6, .stacks_in_27440Calligrapher h5, .stacks_in_27440Calligrapher h4, .stacks_in_27440Calligrapher h3, .stacks_in_27440Calligrapher h2, .stacks_in_27440Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27440Calligrapher, .stacks_in_27440Calligrapher h1, .stacks_in_27440Calligrapher h2, .stacks_in_27440Calligrapher h3, .stacks_in_27440Calligrapher h4, .stacks_in_27440Calligrapher h5, .stacks_in_27440Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27440targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27440Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27440Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27440Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27440Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_27443overlay{	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_27443leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27443leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27443leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27443leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27443rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27443rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27443theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27443overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27443leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27443leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27443leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27443leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27443rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27443rightcolContent{		margin: auto;	}}					.stacks_in_27443posterWrapper 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_27443posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27443posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27443posterWrapper img:hover{	cursor: pointer;}.stacks_in_27443rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27443videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27443 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27445Calligrapher{			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_27445Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27445Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27445Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27445Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27445Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27445Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27445Calligrapher h6, .stacks_in_27445Calligrapher h5, .stacks_in_27445Calligrapher h4, .stacks_in_27445Calligrapher h3, .stacks_in_27445Calligrapher h2, .stacks_in_27445Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27445Calligrapher, .stacks_in_27445Calligrapher h1, .stacks_in_27445Calligrapher h2, .stacks_in_27445Calligrapher h3, .stacks_in_27445Calligrapher h4, .stacks_in_27445Calligrapher h5, .stacks_in_27445Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27445targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27445Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27445Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27445Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27445Calligrapher 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_27447Calligrapher{			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_27447Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27447Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27447Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27447Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27447Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27447Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27447Calligrapher h6, .stacks_in_27447Calligrapher h5, .stacks_in_27447Calligrapher h4, .stacks_in_27447Calligrapher h3, .stacks_in_27447Calligrapher h2, .stacks_in_27447Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27447Calligrapher, .stacks_in_27447Calligrapher h1, .stacks_in_27447Calligrapher h2, .stacks_in_27447Calligrapher h3, .stacks_in_27447Calligrapher h4, .stacks_in_27447Calligrapher h5, .stacks_in_27447Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27447targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27447Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27447Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27447Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27447Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_27450overlay{	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_27450leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27450leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27450leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27450leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27450rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27450rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27450theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27450overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27450leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27450leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27450leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27450leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27450rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27450rightcolContent{		margin: auto;	}}					.stacks_in_27450posterWrapper 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_27450posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27450posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27450posterWrapper img:hover{	cursor: pointer;}.stacks_in_27450rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27450videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27450 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27452Calligrapher{			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_27452Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27452Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27452Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27452Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27452Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27452Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27452Calligrapher h6, .stacks_in_27452Calligrapher h5, .stacks_in_27452Calligrapher h4, .stacks_in_27452Calligrapher h3, .stacks_in_27452Calligrapher h2, .stacks_in_27452Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27452Calligrapher, .stacks_in_27452Calligrapher h1, .stacks_in_27452Calligrapher h2, .stacks_in_27452Calligrapher h3, .stacks_in_27452Calligrapher h4, .stacks_in_27452Calligrapher h5, .stacks_in_27452Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27452targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27452Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27452Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27452Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27452Calligrapher 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_27454Calligrapher{			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_27454Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27454Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27454Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27454Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27454Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27454Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27454Calligrapher h6, .stacks_in_27454Calligrapher h5, .stacks_in_27454Calligrapher h4, .stacks_in_27454Calligrapher h3, .stacks_in_27454Calligrapher h2, .stacks_in_27454Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27454Calligrapher, .stacks_in_27454Calligrapher h1, .stacks_in_27454Calligrapher h2, .stacks_in_27454Calligrapher h3, .stacks_in_27454Calligrapher h4, .stacks_in_27454Calligrapher h5, .stacks_in_27454Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27454targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27454Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27454Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27454Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27454Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_27254overlay{	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_27254leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27254leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27254leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27254leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27254rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27254rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27254theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27254overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27254leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27254leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27254leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27254leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27254rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27254rightcolContent{		margin: auto;	}}					.stacks_in_27254posterWrapper 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_27254posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27254posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27254posterWrapper img:hover{	cursor: pointer;}.stacks_in_27254rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27254videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27254 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27255Calligrapher{			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_27255Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27255Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27255Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27255Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27255Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27255Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27255Calligrapher h6, .stacks_in_27255Calligrapher h5, .stacks_in_27255Calligrapher h4, .stacks_in_27255Calligrapher h3, .stacks_in_27255Calligrapher h2, .stacks_in_27255Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27255Calligrapher, .stacks_in_27255Calligrapher h1, .stacks_in_27255Calligrapher h2, .stacks_in_27255Calligrapher h3, .stacks_in_27255Calligrapher h4, .stacks_in_27255Calligrapher h5, .stacks_in_27255Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27255targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27255Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27255Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27255Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27255Calligrapher 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_27259Calligrapher{			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_27259Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27259Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27259Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27259Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27259Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27259Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27259Calligrapher h6, .stacks_in_27259Calligrapher h5, .stacks_in_27259Calligrapher h4, .stacks_in_27259Calligrapher h3, .stacks_in_27259Calligrapher h2, .stacks_in_27259Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27259Calligrapher, .stacks_in_27259Calligrapher h1, .stacks_in_27259Calligrapher h2, .stacks_in_27259Calligrapher h3, .stacks_in_27259Calligrapher h4, .stacks_in_27259Calligrapher h5, .stacks_in_27259Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27259targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27259Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27259Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27259Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27259Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_27239overlay{	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_27239leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27239leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27239leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27239leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27239rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27239rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27239theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27239overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27239leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27239leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27239leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27239leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27239rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27239rightcolContent{		margin: auto;	}}					.stacks_in_27239posterWrapper 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_27239posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27239posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27239posterWrapper img:hover{	cursor: pointer;}.stacks_in_27239rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27239videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27239 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27240Calligrapher{			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_27240Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27240Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27240Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27240Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27240Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27240Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27240Calligrapher h6, .stacks_in_27240Calligrapher h5, .stacks_in_27240Calligrapher h4, .stacks_in_27240Calligrapher h3, .stacks_in_27240Calligrapher h2, .stacks_in_27240Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27240Calligrapher, .stacks_in_27240Calligrapher h1, .stacks_in_27240Calligrapher h2, .stacks_in_27240Calligrapher h3, .stacks_in_27240Calligrapher h4, .stacks_in_27240Calligrapher h5, .stacks_in_27240Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27240targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27240Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27240Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27240Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27240Calligrapher 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_27244Calligrapher{			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_27244Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27244Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27244Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27244Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27244Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27244Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27244Calligrapher h6, .stacks_in_27244Calligrapher h5, .stacks_in_27244Calligrapher h4, .stacks_in_27244Calligrapher h3, .stacks_in_27244Calligrapher h2, .stacks_in_27244Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27244Calligrapher, .stacks_in_27244Calligrapher h1, .stacks_in_27244Calligrapher h2, .stacks_in_27244Calligrapher h3, .stacks_in_27244Calligrapher h4, .stacks_in_27244Calligrapher h5, .stacks_in_27244Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27244targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27244Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27244Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27244Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27244Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_27269overlay{	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_27269leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27269leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27269leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27269leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27269rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27269rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27269theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27269overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27269leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27269leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27269leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27269leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27269rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27269rightcolContent{		margin: auto;	}}					.stacks_in_27269posterWrapper 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_27269posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27269posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27269posterWrapper img:hover{	cursor: pointer;}.stacks_in_27269rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27269videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27269 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27270Calligrapher{			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_27270Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27270Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27270Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27270Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27270Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27270Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27270Calligrapher h6, .stacks_in_27270Calligrapher h5, .stacks_in_27270Calligrapher h4, .stacks_in_27270Calligrapher h3, .stacks_in_27270Calligrapher h2, .stacks_in_27270Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27270Calligrapher, .stacks_in_27270Calligrapher h1, .stacks_in_27270Calligrapher h2, .stacks_in_27270Calligrapher h3, .stacks_in_27270Calligrapher h4, .stacks_in_27270Calligrapher h5, .stacks_in_27270Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27270targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27270Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27270Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27270Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27270Calligrapher 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_27274Calligrapher{			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_27274Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27274Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27274Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27274Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27274Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27274Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27274Calligrapher h6, .stacks_in_27274Calligrapher h5, .stacks_in_27274Calligrapher h4, .stacks_in_27274Calligrapher h3, .stacks_in_27274Calligrapher h2, .stacks_in_27274Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27274Calligrapher, .stacks_in_27274Calligrapher h1, .stacks_in_27274Calligrapher h2, .stacks_in_27274Calligrapher h3, .stacks_in_27274Calligrapher h4, .stacks_in_27274Calligrapher h5, .stacks_in_27274Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27274targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27274Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27274Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27274Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27274Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_27284overlay{	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_27284leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27284leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27284leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27284leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27284rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27284rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27284theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27284overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27284leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27284leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27284leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27284leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27284rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27284rightcolContent{		margin: auto;	}}					.stacks_in_27284posterWrapper 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_27284posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27284posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27284posterWrapper img:hover{	cursor: pointer;}.stacks_in_27284rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27284videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27284 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27285Calligrapher{			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_27285Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27285Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27285Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27285Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27285Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27285Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27285Calligrapher h6, .stacks_in_27285Calligrapher h5, .stacks_in_27285Calligrapher h4, .stacks_in_27285Calligrapher h3, .stacks_in_27285Calligrapher h2, .stacks_in_27285Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27285Calligrapher, .stacks_in_27285Calligrapher h1, .stacks_in_27285Calligrapher h2, .stacks_in_27285Calligrapher h3, .stacks_in_27285Calligrapher h4, .stacks_in_27285Calligrapher h5, .stacks_in_27285Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27285targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27285Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27285Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27285Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27285Calligrapher 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_27289Calligrapher{			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_27289Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27289Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27289Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27289Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27289Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27289Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27289Calligrapher h6, .stacks_in_27289Calligrapher h5, .stacks_in_27289Calligrapher h4, .stacks_in_27289Calligrapher h3, .stacks_in_27289Calligrapher h2, .stacks_in_27289Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27289Calligrapher, .stacks_in_27289Calligrapher h1, .stacks_in_27289Calligrapher h2, .stacks_in_27289Calligrapher h3, .stacks_in_27289Calligrapher h4, .stacks_in_27289Calligrapher h5, .stacks_in_27289Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27289targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27289Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27289Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27289Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27289Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_27314overlay{	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_27314leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27314leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27314leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27314leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27314rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27314rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27314theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27314overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27314leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27314leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27314leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27314leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27314rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27314rightcolContent{		margin: auto;	}}					.stacks_in_27314posterWrapper 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_27314posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27314posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27314posterWrapper img:hover{	cursor: pointer;}.stacks_in_27314rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27314videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27314 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27315Calligrapher{			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_27315Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27315Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27315Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27315Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27315Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27315Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27315Calligrapher h6, .stacks_in_27315Calligrapher h5, .stacks_in_27315Calligrapher h4, .stacks_in_27315Calligrapher h3, .stacks_in_27315Calligrapher h2, .stacks_in_27315Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27315Calligrapher, .stacks_in_27315Calligrapher h1, .stacks_in_27315Calligrapher h2, .stacks_in_27315Calligrapher h3, .stacks_in_27315Calligrapher h4, .stacks_in_27315Calligrapher h5, .stacks_in_27315Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27315targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27315Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27315Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27315Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27315Calligrapher 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_27319Calligrapher{			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_27319Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27319Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27319Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27319Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27319Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27319Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27319Calligrapher h6, .stacks_in_27319Calligrapher h5, .stacks_in_27319Calligrapher h4, .stacks_in_27319Calligrapher h3, .stacks_in_27319Calligrapher h2, .stacks_in_27319Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27319Calligrapher, .stacks_in_27319Calligrapher h1, .stacks_in_27319Calligrapher h2, .stacks_in_27319Calligrapher h3, .stacks_in_27319Calligrapher h4, .stacks_in_27319Calligrapher h5, .stacks_in_27319Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27319targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27319Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27319Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27319Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27319Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_27299overlay{	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_27299leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27299leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27299leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27299leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27299rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27299rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27299theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27299overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27299leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27299leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27299leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27299leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27299rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27299rightcolContent{		margin: auto;	}}					.stacks_in_27299posterWrapper 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_27299posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27299posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27299posterWrapper img:hover{	cursor: pointer;}.stacks_in_27299rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27299videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27299 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27300Calligrapher{			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_27300Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27300Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27300Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27300Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27300Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27300Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27300Calligrapher h6, .stacks_in_27300Calligrapher h5, .stacks_in_27300Calligrapher h4, .stacks_in_27300Calligrapher h3, .stacks_in_27300Calligrapher h2, .stacks_in_27300Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27300Calligrapher, .stacks_in_27300Calligrapher h1, .stacks_in_27300Calligrapher h2, .stacks_in_27300Calligrapher h3, .stacks_in_27300Calligrapher h4, .stacks_in_27300Calligrapher h5, .stacks_in_27300Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27300targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27300Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27300Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27300Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27300Calligrapher 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_27304Calligrapher{			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_27304Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27304Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27304Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27304Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27304Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27304Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27304Calligrapher h6, .stacks_in_27304Calligrapher h5, .stacks_in_27304Calligrapher h4, .stacks_in_27304Calligrapher h3, .stacks_in_27304Calligrapher h2, .stacks_in_27304Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27304Calligrapher, .stacks_in_27304Calligrapher h1, .stacks_in_27304Calligrapher h2, .stacks_in_27304Calligrapher h3, .stacks_in_27304Calligrapher h4, .stacks_in_27304Calligrapher h5, .stacks_in_27304Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27304targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27304Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27304Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27304Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27304Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_27329overlay{	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_27329leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_27329leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_27329leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_27329leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_27329rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_27329rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_27329theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_27329overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_27329leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_27329leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_27329leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_27329leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_27329rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_27329rightcolContent{		margin: auto;	}}					.stacks_in_27329posterWrapper 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_27329posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_27329posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_27329posterWrapper img:hover{	cursor: pointer;}.stacks_in_27329rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_27329videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_27329 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_27330Calligrapher{			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_27330Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27330Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27330Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27330Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27330Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27330Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_27330Calligrapher h6, .stacks_in_27330Calligrapher h5, .stacks_in_27330Calligrapher h4, .stacks_in_27330Calligrapher h3, .stacks_in_27330Calligrapher h2, .stacks_in_27330Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27330Calligrapher, .stacks_in_27330Calligrapher h1, .stacks_in_27330Calligrapher h2, .stacks_in_27330Calligrapher h3, .stacks_in_27330Calligrapher h4, .stacks_in_27330Calligrapher h5, .stacks_in_27330Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27330targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27330Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27330Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27330Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27330Calligrapher 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_27334Calligrapher{			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_27334Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27334Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27334Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27334Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27334Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27334Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_27334Calligrapher h6, .stacks_in_27334Calligrapher h5, .stacks_in_27334Calligrapher h4, .stacks_in_27334Calligrapher h3, .stacks_in_27334Calligrapher h2, .stacks_in_27334Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_27334Calligrapher, .stacks_in_27334Calligrapher h1, .stacks_in_27334Calligrapher h2, .stacks_in_27334Calligrapher h3, .stacks_in_27334Calligrapher h4, .stacks_in_27334Calligrapher h5, .stacks_in_27334Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_27334targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_27334Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_27334Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_27334Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_27334Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16085overlay{	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_16085leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16085leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16085leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16085leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16085rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16085rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16085theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16085overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16085leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16085leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16085leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16085leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16085rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16085rightcolContent{		margin: auto;	}}					.stacks_in_16085posterWrapper 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_16085posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16085posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16085posterWrapper img:hover{	cursor: pointer;}.stacks_in_16085rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16085videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16085 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16087Calligrapher{			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_16087Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16087Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16087Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16087Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16087Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16087Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16087Calligrapher h6, .stacks_in_16087Calligrapher h5, .stacks_in_16087Calligrapher h4, .stacks_in_16087Calligrapher h3, .stacks_in_16087Calligrapher h2, .stacks_in_16087Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16087Calligrapher, .stacks_in_16087Calligrapher h1, .stacks_in_16087Calligrapher h2, .stacks_in_16087Calligrapher h3, .stacks_in_16087Calligrapher h4, .stacks_in_16087Calligrapher h5, .stacks_in_16087Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16087targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16087Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16087Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16087Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16087Calligrapher 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_16091Calligrapher{			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_16091Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16091Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16091Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16091Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16091Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16091Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16091Calligrapher h6, .stacks_in_16091Calligrapher h5, .stacks_in_16091Calligrapher h4, .stacks_in_16091Calligrapher h3, .stacks_in_16091Calligrapher h2, .stacks_in_16091Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16091Calligrapher, .stacks_in_16091Calligrapher h1, .stacks_in_16091Calligrapher h2, .stacks_in_16091Calligrapher h3, .stacks_in_16091Calligrapher h4, .stacks_in_16091Calligrapher h5, .stacks_in_16091Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16091targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16091Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16091Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16091Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16091Calligrapher 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_14012 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

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


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

  float:left;
}

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16057overlay{	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_16057leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16057leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16057leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16057leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16057rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16057rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16057theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16057overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16057leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16057leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16057leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16057leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16057rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16057rightcolContent{		margin: auto;	}}					.stacks_in_16057posterWrapper 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_16057posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16057posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16057posterWrapper img:hover{	cursor: pointer;}.stacks_in_16057rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16057videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16057 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16059Calligrapher{			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_16059Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16059Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16059Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16059Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16059Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16059Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16059Calligrapher h6, .stacks_in_16059Calligrapher h5, .stacks_in_16059Calligrapher h4, .stacks_in_16059Calligrapher h3, .stacks_in_16059Calligrapher h2, .stacks_in_16059Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16059Calligrapher, .stacks_in_16059Calligrapher h1, .stacks_in_16059Calligrapher h2, .stacks_in_16059Calligrapher h3, .stacks_in_16059Calligrapher h4, .stacks_in_16059Calligrapher h5, .stacks_in_16059Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16059targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16059Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16059Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16059Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16059Calligrapher 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_16063Calligrapher{			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_16063Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16063Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16063Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16063Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16063Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16063Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16063Calligrapher h6, .stacks_in_16063Calligrapher h5, .stacks_in_16063Calligrapher h4, .stacks_in_16063Calligrapher h3, .stacks_in_16063Calligrapher h2, .stacks_in_16063Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16063Calligrapher, .stacks_in_16063Calligrapher h1, .stacks_in_16063Calligrapher h2, .stacks_in_16063Calligrapher h3, .stacks_in_16063Calligrapher h4, .stacks_in_16063Calligrapher h5, .stacks_in_16063Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16063targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16063Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16063Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16063Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16063Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16127overlay{	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_16127leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16127leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16127leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16127leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16127rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16127rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16127theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16127overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16127leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16127leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16127leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16127leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16127rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16127rightcolContent{		margin: auto;	}}					.stacks_in_16127posterWrapper 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_16127posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16127posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16127posterWrapper img:hover{	cursor: pointer;}.stacks_in_16127rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16127videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16127 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16129Calligrapher{			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_16129Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16129Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16129Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16129Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16129Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16129Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16129Calligrapher h6, .stacks_in_16129Calligrapher h5, .stacks_in_16129Calligrapher h4, .stacks_in_16129Calligrapher h3, .stacks_in_16129Calligrapher h2, .stacks_in_16129Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16129Calligrapher, .stacks_in_16129Calligrapher h1, .stacks_in_16129Calligrapher h2, .stacks_in_16129Calligrapher h3, .stacks_in_16129Calligrapher h4, .stacks_in_16129Calligrapher h5, .stacks_in_16129Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16129targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16129Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16129Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16129Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16129Calligrapher 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_16133Calligrapher{			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_16133Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16133Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16133Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16133Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16133Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16133Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16133Calligrapher h6, .stacks_in_16133Calligrapher h5, .stacks_in_16133Calligrapher h4, .stacks_in_16133Calligrapher h3, .stacks_in_16133Calligrapher h2, .stacks_in_16133Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16133Calligrapher, .stacks_in_16133Calligrapher h1, .stacks_in_16133Calligrapher h2, .stacks_in_16133Calligrapher h3, .stacks_in_16133Calligrapher h4, .stacks_in_16133Calligrapher h5, .stacks_in_16133Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16133targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16133Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16133Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16133Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16133Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16099overlay{	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_16099leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16099leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16099leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16099leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16099rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16099rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16099theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16099overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16099leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16099leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16099leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16099leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16099rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16099rightcolContent{		margin: auto;	}}					.stacks_in_16099posterWrapper 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_16099posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16099posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16099posterWrapper img:hover{	cursor: pointer;}.stacks_in_16099rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16099videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16099 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16101Calligrapher{			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_16101Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16101Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16101Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16101Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16101Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16101Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16101Calligrapher h6, .stacks_in_16101Calligrapher h5, .stacks_in_16101Calligrapher h4, .stacks_in_16101Calligrapher h3, .stacks_in_16101Calligrapher h2, .stacks_in_16101Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16101Calligrapher, .stacks_in_16101Calligrapher h1, .stacks_in_16101Calligrapher h2, .stacks_in_16101Calligrapher h3, .stacks_in_16101Calligrapher h4, .stacks_in_16101Calligrapher h5, .stacks_in_16101Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16101targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16101Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16101Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16101Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16101Calligrapher 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_16105Calligrapher{			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_16105Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16105Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16105Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16105Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16105Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16105Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16105Calligrapher h6, .stacks_in_16105Calligrapher h5, .stacks_in_16105Calligrapher h4, .stacks_in_16105Calligrapher h3, .stacks_in_16105Calligrapher h2, .stacks_in_16105Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16105Calligrapher, .stacks_in_16105Calligrapher h1, .stacks_in_16105Calligrapher h2, .stacks_in_16105Calligrapher h3, .stacks_in_16105Calligrapher h4, .stacks_in_16105Calligrapher h5, .stacks_in_16105Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16105targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16105Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16105Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16105Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16105Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16197overlay{	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_16197leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16197leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16197leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16197leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16197rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16197rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16197theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16197overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16197leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16197leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16197leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16197leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16197rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16197rightcolContent{		margin: auto;	}}					.stacks_in_16197posterWrapper 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_16197posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16197posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16197posterWrapper img:hover{	cursor: pointer;}.stacks_in_16197rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16197videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16197 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16199Calligrapher{			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_16199Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16199Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16199Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16199Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16199Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16199Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16199Calligrapher h6, .stacks_in_16199Calligrapher h5, .stacks_in_16199Calligrapher h4, .stacks_in_16199Calligrapher h3, .stacks_in_16199Calligrapher h2, .stacks_in_16199Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16199Calligrapher, .stacks_in_16199Calligrapher h1, .stacks_in_16199Calligrapher h2, .stacks_in_16199Calligrapher h3, .stacks_in_16199Calligrapher h4, .stacks_in_16199Calligrapher h5, .stacks_in_16199Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16199targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16199Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16199Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16199Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16199Calligrapher 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_16203Calligrapher{			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_16203Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16203Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16203Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16203Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16203Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16203Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16203Calligrapher h6, .stacks_in_16203Calligrapher h5, .stacks_in_16203Calligrapher h4, .stacks_in_16203Calligrapher h3, .stacks_in_16203Calligrapher h2, .stacks_in_16203Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16203Calligrapher, .stacks_in_16203Calligrapher h1, .stacks_in_16203Calligrapher h2, .stacks_in_16203Calligrapher h3, .stacks_in_16203Calligrapher h4, .stacks_in_16203Calligrapher h5, .stacks_in_16203Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16203targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16203Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16203Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16203Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16203Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16253overlay{	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_16253leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16253leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16253leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16253leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16253rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16253rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16253theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16253overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16253leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16253leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16253leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16253leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16253rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16253rightcolContent{		margin: auto;	}}					.stacks_in_16253posterWrapper 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_16253posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16253posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16253posterWrapper img:hover{	cursor: pointer;}.stacks_in_16253rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16253videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16253 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16255Calligrapher{			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_16255Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16255Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16255Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16255Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16255Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16255Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16255Calligrapher h6, .stacks_in_16255Calligrapher h5, .stacks_in_16255Calligrapher h4, .stacks_in_16255Calligrapher h3, .stacks_in_16255Calligrapher h2, .stacks_in_16255Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16255Calligrapher, .stacks_in_16255Calligrapher h1, .stacks_in_16255Calligrapher h2, .stacks_in_16255Calligrapher h3, .stacks_in_16255Calligrapher h4, .stacks_in_16255Calligrapher h5, .stacks_in_16255Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16255targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16255Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16255Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16255Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16255Calligrapher 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_16259Calligrapher{			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_16259Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16259Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16259Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16259Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16259Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16259Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16259Calligrapher h6, .stacks_in_16259Calligrapher h5, .stacks_in_16259Calligrapher h4, .stacks_in_16259Calligrapher h3, .stacks_in_16259Calligrapher h2, .stacks_in_16259Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16259Calligrapher, .stacks_in_16259Calligrapher h1, .stacks_in_16259Calligrapher h2, .stacks_in_16259Calligrapher h3, .stacks_in_16259Calligrapher h4, .stacks_in_16259Calligrapher h5, .stacks_in_16259Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16259targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16259Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16259Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16259Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16259Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16211overlay{	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_16211leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16211leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16211leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16211leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16211rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16211rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16211theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16211overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16211leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16211leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16211leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16211leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16211rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16211rightcolContent{		margin: auto;	}}					.stacks_in_16211posterWrapper 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_16211posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16211posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16211posterWrapper img:hover{	cursor: pointer;}.stacks_in_16211rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16211videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16211 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16213Calligrapher{			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_16213Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16213Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16213Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16213Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16213Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16213Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16213Calligrapher h6, .stacks_in_16213Calligrapher h5, .stacks_in_16213Calligrapher h4, .stacks_in_16213Calligrapher h3, .stacks_in_16213Calligrapher h2, .stacks_in_16213Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16213Calligrapher, .stacks_in_16213Calligrapher h1, .stacks_in_16213Calligrapher h2, .stacks_in_16213Calligrapher h3, .stacks_in_16213Calligrapher h4, .stacks_in_16213Calligrapher h5, .stacks_in_16213Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16213targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16213Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16213Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16213Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16213Calligrapher 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_16217Calligrapher{			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_16217Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16217Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16217Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16217Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16217Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16217Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16217Calligrapher h6, .stacks_in_16217Calligrapher h5, .stacks_in_16217Calligrapher h4, .stacks_in_16217Calligrapher h3, .stacks_in_16217Calligrapher h2, .stacks_in_16217Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16217Calligrapher, .stacks_in_16217Calligrapher h1, .stacks_in_16217Calligrapher h2, .stacks_in_16217Calligrapher h3, .stacks_in_16217Calligrapher h4, .stacks_in_16217Calligrapher h5, .stacks_in_16217Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16217targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16217Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16217Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16217Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16217Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_14853overlay{	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_14853leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_14853leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_14853leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_14853leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_14853rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_14853rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_14853theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_14853overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_14853leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_14853leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_14853leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_14853leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_14853rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_14853rightcolContent{		margin: auto;	}}					.stacks_in_14853posterWrapper 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_14853posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_14853posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_14853posterWrapper img:hover{	cursor: pointer;}.stacks_in_14853rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_14853videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_14853 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_14855Calligrapher{			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_14855Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_14855Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_14855Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_14855Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_14855Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_14855Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_14855Calligrapher h6, .stacks_in_14855Calligrapher h5, .stacks_in_14855Calligrapher h4, .stacks_in_14855Calligrapher h3, .stacks_in_14855Calligrapher h2, .stacks_in_14855Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_14855Calligrapher, .stacks_in_14855Calligrapher h1, .stacks_in_14855Calligrapher h2, .stacks_in_14855Calligrapher h3, .stacks_in_14855Calligrapher h4, .stacks_in_14855Calligrapher h5, .stacks_in_14855Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_14855targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_14855Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_14855Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_14855Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_14855Calligrapher 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_14859Calligrapher{			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_14859Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_14859Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_14859Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_14859Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_14859Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_14859Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_14859Calligrapher h6, .stacks_in_14859Calligrapher h5, .stacks_in_14859Calligrapher h4, .stacks_in_14859Calligrapher h3, .stacks_in_14859Calligrapher h2, .stacks_in_14859Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_14859Calligrapher, .stacks_in_14859Calligrapher h1, .stacks_in_14859Calligrapher h2, .stacks_in_14859Calligrapher h3, .stacks_in_14859Calligrapher h4, .stacks_in_14859Calligrapher h5, .stacks_in_14859Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_14859targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_14859Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_14859Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_14859Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_14859Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16268overlay{	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_16268leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16268leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16268leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16268leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16268rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16268rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16268theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16268overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16268leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16268leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16268leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16268leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16268rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16268rightcolContent{		margin: auto;	}}					.stacks_in_16268posterWrapper 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_16268posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16268posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16268posterWrapper img:hover{	cursor: pointer;}.stacks_in_16268rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16268videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16268 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16270Calligrapher{			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_16270Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16270Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16270Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16270Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16270Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16270Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16270Calligrapher h6, .stacks_in_16270Calligrapher h5, .stacks_in_16270Calligrapher h4, .stacks_in_16270Calligrapher h3, .stacks_in_16270Calligrapher h2, .stacks_in_16270Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16270Calligrapher, .stacks_in_16270Calligrapher h1, .stacks_in_16270Calligrapher h2, .stacks_in_16270Calligrapher h3, .stacks_in_16270Calligrapher h4, .stacks_in_16270Calligrapher h5, .stacks_in_16270Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16270targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16270Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16270Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16270Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16270Calligrapher 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_16274Calligrapher{			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_16274Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16274Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16274Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16274Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16274Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16274Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16274Calligrapher h6, .stacks_in_16274Calligrapher h5, .stacks_in_16274Calligrapher h4, .stacks_in_16274Calligrapher h3, .stacks_in_16274Calligrapher h2, .stacks_in_16274Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16274Calligrapher, .stacks_in_16274Calligrapher h1, .stacks_in_16274Calligrapher h2, .stacks_in_16274Calligrapher h3, .stacks_in_16274Calligrapher h4, .stacks_in_16274Calligrapher h5, .stacks_in_16274Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16274targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16274Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16274Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16274Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16274Calligrapher 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_14834 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

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


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

  float:left;
}

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16281overlay{	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_16281leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16281leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16281leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16281leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16281rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16281rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16281theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16281overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16281leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16281leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16281leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16281leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16281rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16281rightcolContent{		margin: auto;	}}					.stacks_in_16281posterWrapper 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_16281posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16281posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16281posterWrapper img:hover{	cursor: pointer;}.stacks_in_16281rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16281videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16281 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16283Calligrapher{			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_16283Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16283Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16283Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16283Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16283Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16283Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16283Calligrapher h6, .stacks_in_16283Calligrapher h5, .stacks_in_16283Calligrapher h4, .stacks_in_16283Calligrapher h3, .stacks_in_16283Calligrapher h2, .stacks_in_16283Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16283Calligrapher, .stacks_in_16283Calligrapher h1, .stacks_in_16283Calligrapher h2, .stacks_in_16283Calligrapher h3, .stacks_in_16283Calligrapher h4, .stacks_in_16283Calligrapher h5, .stacks_in_16283Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16283targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16283Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16283Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16283Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16283Calligrapher 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_16287Calligrapher{			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_16287Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16287Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16287Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16287Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16287Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16287Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16287Calligrapher h6, .stacks_in_16287Calligrapher h5, .stacks_in_16287Calligrapher h4, .stacks_in_16287Calligrapher h3, .stacks_in_16287Calligrapher h2, .stacks_in_16287Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16287Calligrapher, .stacks_in_16287Calligrapher h1, .stacks_in_16287Calligrapher h2, .stacks_in_16287Calligrapher h3, .stacks_in_16287Calligrapher h4, .stacks_in_16287Calligrapher h5, .stacks_in_16287Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16287targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16287Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16287Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16287Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16287Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16381overlay{	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_16381leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16381leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16381leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16381leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16381rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16381rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16381theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16381overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16381leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16381leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16381leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16381leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16381rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16381rightcolContent{		margin: auto;	}}					.stacks_in_16381posterWrapper 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_16381posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16381posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16381posterWrapper img:hover{	cursor: pointer;}.stacks_in_16381rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16381videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16381 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16383Calligrapher{			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_16383Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16383Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16383Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16383Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16383Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16383Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16383Calligrapher h6, .stacks_in_16383Calligrapher h5, .stacks_in_16383Calligrapher h4, .stacks_in_16383Calligrapher h3, .stacks_in_16383Calligrapher h2, .stacks_in_16383Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16383Calligrapher, .stacks_in_16383Calligrapher h1, .stacks_in_16383Calligrapher h2, .stacks_in_16383Calligrapher h3, .stacks_in_16383Calligrapher h4, .stacks_in_16383Calligrapher h5, .stacks_in_16383Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16383targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16383Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16383Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16383Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16383Calligrapher 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_16387Calligrapher{			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_16387Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16387Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16387Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16387Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16387Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16387Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16387Calligrapher h6, .stacks_in_16387Calligrapher h5, .stacks_in_16387Calligrapher h4, .stacks_in_16387Calligrapher h3, .stacks_in_16387Calligrapher h2, .stacks_in_16387Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16387Calligrapher, .stacks_in_16387Calligrapher h1, .stacks_in_16387Calligrapher h2, .stacks_in_16387Calligrapher h3, .stacks_in_16387Calligrapher h4, .stacks_in_16387Calligrapher h5, .stacks_in_16387Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16387targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16387Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16387Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16387Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16387Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16321overlay{	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_16321leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16321leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16321leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16321leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16321rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16321rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16321theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16321overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16321leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16321leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16321leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16321leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16321rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16321rightcolContent{		margin: auto;	}}					.stacks_in_16321posterWrapper 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_16321posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16321posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16321posterWrapper img:hover{	cursor: pointer;}.stacks_in_16321rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16321videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16321 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16323Calligrapher{			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_16323Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16323Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16323Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16323Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16323Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16323Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16323Calligrapher h6, .stacks_in_16323Calligrapher h5, .stacks_in_16323Calligrapher h4, .stacks_in_16323Calligrapher h3, .stacks_in_16323Calligrapher h2, .stacks_in_16323Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16323Calligrapher, .stacks_in_16323Calligrapher h1, .stacks_in_16323Calligrapher h2, .stacks_in_16323Calligrapher h3, .stacks_in_16323Calligrapher h4, .stacks_in_16323Calligrapher h5, .stacks_in_16323Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16323targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16323Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16323Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16323Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16323Calligrapher 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_16327Calligrapher{			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_16327Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16327Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16327Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16327Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16327Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16327Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16327Calligrapher h6, .stacks_in_16327Calligrapher h5, .stacks_in_16327Calligrapher h4, .stacks_in_16327Calligrapher h3, .stacks_in_16327Calligrapher h2, .stacks_in_16327Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16327Calligrapher, .stacks_in_16327Calligrapher h1, .stacks_in_16327Calligrapher h2, .stacks_in_16327Calligrapher h3, .stacks_in_16327Calligrapher h4, .stacks_in_16327Calligrapher h5, .stacks_in_16327Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16327targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16327Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16327Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16327Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16327Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_14883overlay{	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_14883leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_14883leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_14883leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_14883leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_14883rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_14883rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_14883theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_14883overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_14883leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_14883leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_14883leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_14883leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_14883rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_14883rightcolContent{		margin: auto;	}}					.stacks_in_14883posterWrapper 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_14883posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_14883posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_14883posterWrapper img:hover{	cursor: pointer;}.stacks_in_14883rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_14883videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_14883 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_14885Calligrapher{			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_14885Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_14885Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_14885Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_14885Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_14885Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_14885Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_14885Calligrapher h6, .stacks_in_14885Calligrapher h5, .stacks_in_14885Calligrapher h4, .stacks_in_14885Calligrapher h3, .stacks_in_14885Calligrapher h2, .stacks_in_14885Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_14885Calligrapher, .stacks_in_14885Calligrapher h1, .stacks_in_14885Calligrapher h2, .stacks_in_14885Calligrapher h3, .stacks_in_14885Calligrapher h4, .stacks_in_14885Calligrapher h5, .stacks_in_14885Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_14885targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_14885Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_14885Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_14885Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_14885Calligrapher 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_14889Calligrapher{			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_14889Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_14889Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_14889Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_14889Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_14889Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_14889Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_14889Calligrapher h6, .stacks_in_14889Calligrapher h5, .stacks_in_14889Calligrapher h4, .stacks_in_14889Calligrapher h3, .stacks_in_14889Calligrapher h2, .stacks_in_14889Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_14889Calligrapher, .stacks_in_14889Calligrapher h1, .stacks_in_14889Calligrapher h2, .stacks_in_14889Calligrapher h3, .stacks_in_14889Calligrapher h4, .stacks_in_14889Calligrapher h5, .stacks_in_14889Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_14889targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_14889Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_14889Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_14889Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_14889Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16438overlay{	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_16438leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16438leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16438leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16438leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16438rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16438rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16438theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16438overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16438leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16438leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16438leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16438leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16438rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16438rightcolContent{		margin: auto;	}}					.stacks_in_16438posterWrapper 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_16438posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16438posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16438posterWrapper img:hover{	cursor: pointer;}.stacks_in_16438rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16438videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16438 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16440Calligrapher{			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_16440Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16440Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16440Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16440Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16440Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16440Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16440Calligrapher h6, .stacks_in_16440Calligrapher h5, .stacks_in_16440Calligrapher h4, .stacks_in_16440Calligrapher h3, .stacks_in_16440Calligrapher h2, .stacks_in_16440Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16440Calligrapher, .stacks_in_16440Calligrapher h1, .stacks_in_16440Calligrapher h2, .stacks_in_16440Calligrapher h3, .stacks_in_16440Calligrapher h4, .stacks_in_16440Calligrapher h5, .stacks_in_16440Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16440targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16440Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16440Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16440Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16440Calligrapher 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_16444Calligrapher{			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_16444Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16444Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16444Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16444Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16444Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16444Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16444Calligrapher h6, .stacks_in_16444Calligrapher h5, .stacks_in_16444Calligrapher h4, .stacks_in_16444Calligrapher h3, .stacks_in_16444Calligrapher h2, .stacks_in_16444Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16444Calligrapher, .stacks_in_16444Calligrapher h1, .stacks_in_16444Calligrapher h2, .stacks_in_16444Calligrapher h3, .stacks_in_16444Calligrapher h4, .stacks_in_16444Calligrapher h5, .stacks_in_16444Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16444targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16444Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16444Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16444Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16444Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16409overlay{	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_16409leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16409leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16409leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16409leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16409rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16409rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16409theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16409overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16409leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16409leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16409leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16409leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16409rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16409rightcolContent{		margin: auto;	}}					.stacks_in_16409posterWrapper 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_16409posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16409posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16409posterWrapper img:hover{	cursor: pointer;}.stacks_in_16409rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16409videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16409 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16411Calligrapher{			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_16411Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16411Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16411Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16411Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16411Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16411Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16411Calligrapher h6, .stacks_in_16411Calligrapher h5, .stacks_in_16411Calligrapher h4, .stacks_in_16411Calligrapher h3, .stacks_in_16411Calligrapher h2, .stacks_in_16411Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16411Calligrapher, .stacks_in_16411Calligrapher h1, .stacks_in_16411Calligrapher h2, .stacks_in_16411Calligrapher h3, .stacks_in_16411Calligrapher h4, .stacks_in_16411Calligrapher h5, .stacks_in_16411Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16411targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16411Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16411Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16411Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16411Calligrapher 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_16415Calligrapher{			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_16415Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16415Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16415Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16415Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16415Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16415Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16415Calligrapher h6, .stacks_in_16415Calligrapher h5, .stacks_in_16415Calligrapher h4, .stacks_in_16415Calligrapher h3, .stacks_in_16415Calligrapher h2, .stacks_in_16415Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16415Calligrapher, .stacks_in_16415Calligrapher h1, .stacks_in_16415Calligrapher h2, .stacks_in_16415Calligrapher h3, .stacks_in_16415Calligrapher h4, .stacks_in_16415Calligrapher h5, .stacks_in_16415Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16415targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16415Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16415Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16415Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16415Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16451overlay{	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_16451leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16451leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16451leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16451leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16451rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16451rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16451theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16451overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16451leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16451leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16451leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16451leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16451rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16451rightcolContent{		margin: auto;	}}					.stacks_in_16451posterWrapper 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_16451posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16451posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16451posterWrapper img:hover{	cursor: pointer;}.stacks_in_16451rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16451videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16451 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16453Calligrapher{			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_16453Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16453Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16453Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16453Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16453Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16453Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16453Calligrapher h6, .stacks_in_16453Calligrapher h5, .stacks_in_16453Calligrapher h4, .stacks_in_16453Calligrapher h3, .stacks_in_16453Calligrapher h2, .stacks_in_16453Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16453Calligrapher, .stacks_in_16453Calligrapher h1, .stacks_in_16453Calligrapher h2, .stacks_in_16453Calligrapher h3, .stacks_in_16453Calligrapher h4, .stacks_in_16453Calligrapher h5, .stacks_in_16453Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16453targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16453Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16453Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16453Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16453Calligrapher 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_16457Calligrapher{			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_16457Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16457Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16457Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16457Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16457Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16457Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16457Calligrapher h6, .stacks_in_16457Calligrapher h5, .stacks_in_16457Calligrapher h4, .stacks_in_16457Calligrapher h3, .stacks_in_16457Calligrapher h2, .stacks_in_16457Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16457Calligrapher, .stacks_in_16457Calligrapher h1, .stacks_in_16457Calligrapher h2, .stacks_in_16457Calligrapher h3, .stacks_in_16457Calligrapher h4, .stacks_in_16457Calligrapher h5, .stacks_in_16457Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16457targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16457Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16457Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16457Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16457Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16507overlay{	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_16507leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16507leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16507leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16507leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16507rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16507rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16507theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16507overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16507leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16507leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16507leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16507leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16507rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16507rightcolContent{		margin: auto;	}}					.stacks_in_16507posterWrapper 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_16507posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16507posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16507posterWrapper img:hover{	cursor: pointer;}.stacks_in_16507rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16507videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16507 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16509Calligrapher{			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_16509Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16509Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16509Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16509Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16509Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16509Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16509Calligrapher h6, .stacks_in_16509Calligrapher h5, .stacks_in_16509Calligrapher h4, .stacks_in_16509Calligrapher h3, .stacks_in_16509Calligrapher h2, .stacks_in_16509Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16509Calligrapher, .stacks_in_16509Calligrapher h1, .stacks_in_16509Calligrapher h2, .stacks_in_16509Calligrapher h3, .stacks_in_16509Calligrapher h4, .stacks_in_16509Calligrapher h5, .stacks_in_16509Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16509targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16509Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16509Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16509Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16509Calligrapher 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_16513Calligrapher{			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_16513Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16513Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16513Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16513Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16513Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16513Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16513Calligrapher h6, .stacks_in_16513Calligrapher h5, .stacks_in_16513Calligrapher h4, .stacks_in_16513Calligrapher h3, .stacks_in_16513Calligrapher h2, .stacks_in_16513Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16513Calligrapher, .stacks_in_16513Calligrapher h1, .stacks_in_16513Calligrapher h2, .stacks_in_16513Calligrapher h3, .stacks_in_16513Calligrapher h4, .stacks_in_16513Calligrapher h5, .stacks_in_16513Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16513targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16513Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16513Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16513Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16513Calligrapher 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_15157 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

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


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

  float:left;
}

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16479overlay{	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_16479leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16479leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16479leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16479leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16479rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16479rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16479theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16479overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16479leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16479leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16479leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16479leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16479rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16479rightcolContent{		margin: auto;	}}					.stacks_in_16479posterWrapper 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_16479posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16479posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16479posterWrapper img:hover{	cursor: pointer;}.stacks_in_16479rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16479videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16479 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16481Calligrapher{			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_16481Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16481Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16481Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16481Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16481Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16481Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16481Calligrapher h6, .stacks_in_16481Calligrapher h5, .stacks_in_16481Calligrapher h4, .stacks_in_16481Calligrapher h3, .stacks_in_16481Calligrapher h2, .stacks_in_16481Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16481Calligrapher, .stacks_in_16481Calligrapher h1, .stacks_in_16481Calligrapher h2, .stacks_in_16481Calligrapher h3, .stacks_in_16481Calligrapher h4, .stacks_in_16481Calligrapher h5, .stacks_in_16481Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16481targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16481Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16481Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16481Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16481Calligrapher 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_16485Calligrapher{			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_16485Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16485Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16485Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16485Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16485Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16485Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16485Calligrapher h6, .stacks_in_16485Calligrapher h5, .stacks_in_16485Calligrapher h4, .stacks_in_16485Calligrapher h3, .stacks_in_16485Calligrapher h2, .stacks_in_16485Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16485Calligrapher, .stacks_in_16485Calligrapher h1, .stacks_in_16485Calligrapher h2, .stacks_in_16485Calligrapher h3, .stacks_in_16485Calligrapher h4, .stacks_in_16485Calligrapher h5, .stacks_in_16485Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16485targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16485Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16485Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16485Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16485Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16535overlay{	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_16535leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16535leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16535leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16535leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16535rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16535rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16535theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16535overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16535leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16535leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16535leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16535leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16535rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16535rightcolContent{		margin: auto;	}}					.stacks_in_16535posterWrapper 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_16535posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16535posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16535posterWrapper img:hover{	cursor: pointer;}.stacks_in_16535rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16535videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16535 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16537Calligrapher{			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_16537Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16537Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16537Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16537Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16537Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16537Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16537Calligrapher h6, .stacks_in_16537Calligrapher h5, .stacks_in_16537Calligrapher h4, .stacks_in_16537Calligrapher h3, .stacks_in_16537Calligrapher h2, .stacks_in_16537Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16537Calligrapher, .stacks_in_16537Calligrapher h1, .stacks_in_16537Calligrapher h2, .stacks_in_16537Calligrapher h3, .stacks_in_16537Calligrapher h4, .stacks_in_16537Calligrapher h5, .stacks_in_16537Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16537targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16537Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16537Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16537Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16537Calligrapher 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_16541Calligrapher{			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_16541Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16541Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16541Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16541Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16541Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16541Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16541Calligrapher h6, .stacks_in_16541Calligrapher h5, .stacks_in_16541Calligrapher h4, .stacks_in_16541Calligrapher h3, .stacks_in_16541Calligrapher h2, .stacks_in_16541Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16541Calligrapher, .stacks_in_16541Calligrapher h1, .stacks_in_16541Calligrapher h2, .stacks_in_16541Calligrapher h3, .stacks_in_16541Calligrapher h4, .stacks_in_16541Calligrapher h5, .stacks_in_16541Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16541targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16541Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16541Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16541Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16541Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16563overlay{	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_16563leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16563leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16563leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16563leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16563rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16563rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16563theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16563overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16563leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16563leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16563leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16563leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16563rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16563rightcolContent{		margin: auto;	}}					.stacks_in_16563posterWrapper 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_16563posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16563posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16563posterWrapper img:hover{	cursor: pointer;}.stacks_in_16563rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16563videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16563 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16565Calligrapher{			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_16565Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16565Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16565Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16565Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16565Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16565Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16565Calligrapher h6, .stacks_in_16565Calligrapher h5, .stacks_in_16565Calligrapher h4, .stacks_in_16565Calligrapher h3, .stacks_in_16565Calligrapher h2, .stacks_in_16565Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16565Calligrapher, .stacks_in_16565Calligrapher h1, .stacks_in_16565Calligrapher h2, .stacks_in_16565Calligrapher h3, .stacks_in_16565Calligrapher h4, .stacks_in_16565Calligrapher h5, .stacks_in_16565Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16565targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16565Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16565Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16565Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16565Calligrapher 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_16569Calligrapher{			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_16569Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16569Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16569Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16569Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16569Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16569Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16569Calligrapher h6, .stacks_in_16569Calligrapher h5, .stacks_in_16569Calligrapher h4, .stacks_in_16569Calligrapher h3, .stacks_in_16569Calligrapher h2, .stacks_in_16569Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16569Calligrapher, .stacks_in_16569Calligrapher h1, .stacks_in_16569Calligrapher h2, .stacks_in_16569Calligrapher h3, .stacks_in_16569Calligrapher h4, .stacks_in_16569Calligrapher h5, .stacks_in_16569Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16569targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16569Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16569Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16569Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16569Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16633overlay{	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_16633leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16633leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16633leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16633leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16633rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16633rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16633theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16633overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16633leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16633leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16633leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16633leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16633rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16633rightcolContent{		margin: auto;	}}					.stacks_in_16633posterWrapper 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_16633posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16633posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16633posterWrapper img:hover{	cursor: pointer;}.stacks_in_16633rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16633videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16633 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16635Calligrapher{			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_16635Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16635Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16635Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16635Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16635Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16635Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16635Calligrapher h6, .stacks_in_16635Calligrapher h5, .stacks_in_16635Calligrapher h4, .stacks_in_16635Calligrapher h3, .stacks_in_16635Calligrapher h2, .stacks_in_16635Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16635Calligrapher, .stacks_in_16635Calligrapher h1, .stacks_in_16635Calligrapher h2, .stacks_in_16635Calligrapher h3, .stacks_in_16635Calligrapher h4, .stacks_in_16635Calligrapher h5, .stacks_in_16635Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16635targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16635Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16635Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16635Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16635Calligrapher 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_16639Calligrapher{			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_16639Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16639Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16639Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16639Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16639Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16639Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16639Calligrapher h6, .stacks_in_16639Calligrapher h5, .stacks_in_16639Calligrapher h4, .stacks_in_16639Calligrapher h3, .stacks_in_16639Calligrapher h2, .stacks_in_16639Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16639Calligrapher, .stacks_in_16639Calligrapher h1, .stacks_in_16639Calligrapher h2, .stacks_in_16639Calligrapher h3, .stacks_in_16639Calligrapher h4, .stacks_in_16639Calligrapher h5, .stacks_in_16639Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16639targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16639Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16639Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16639Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16639Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16577overlay{	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_16577leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16577leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16577leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16577leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16577rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16577rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16577theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16577overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16577leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16577leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16577leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16577leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16577rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16577rightcolContent{		margin: auto;	}}					.stacks_in_16577posterWrapper 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_16577posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16577posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16577posterWrapper img:hover{	cursor: pointer;}.stacks_in_16577rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16577videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16577 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16579Calligrapher{			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_16579Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16579Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16579Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16579Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16579Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16579Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16579Calligrapher h6, .stacks_in_16579Calligrapher h5, .stacks_in_16579Calligrapher h4, .stacks_in_16579Calligrapher h3, .stacks_in_16579Calligrapher h2, .stacks_in_16579Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16579Calligrapher, .stacks_in_16579Calligrapher h1, .stacks_in_16579Calligrapher h2, .stacks_in_16579Calligrapher h3, .stacks_in_16579Calligrapher h4, .stacks_in_16579Calligrapher h5, .stacks_in_16579Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16579targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16579Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16579Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16579Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16579Calligrapher 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_16583Calligrapher{			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_16583Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16583Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16583Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16583Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16583Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16583Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16583Calligrapher h6, .stacks_in_16583Calligrapher h5, .stacks_in_16583Calligrapher h4, .stacks_in_16583Calligrapher h3, .stacks_in_16583Calligrapher h2, .stacks_in_16583Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16583Calligrapher, .stacks_in_16583Calligrapher h1, .stacks_in_16583Calligrapher h2, .stacks_in_16583Calligrapher h3, .stacks_in_16583Calligrapher h4, .stacks_in_16583Calligrapher h5, .stacks_in_16583Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16583targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16583Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16583Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16583Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16583Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16619overlay{	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_16619leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16619leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16619leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16619leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16619rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16619rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16619theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16619overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16619leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16619leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16619leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16619leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16619rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16619rightcolContent{		margin: auto;	}}					.stacks_in_16619posterWrapper 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_16619posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16619posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16619posterWrapper img:hover{	cursor: pointer;}.stacks_in_16619rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16619videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16619 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16621Calligrapher{			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_16621Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16621Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16621Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16621Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16621Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16621Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16621Calligrapher h6, .stacks_in_16621Calligrapher h5, .stacks_in_16621Calligrapher h4, .stacks_in_16621Calligrapher h3, .stacks_in_16621Calligrapher h2, .stacks_in_16621Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16621Calligrapher, .stacks_in_16621Calligrapher h1, .stacks_in_16621Calligrapher h2, .stacks_in_16621Calligrapher h3, .stacks_in_16621Calligrapher h4, .stacks_in_16621Calligrapher h5, .stacks_in_16621Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16621targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16621Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16621Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16621Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16621Calligrapher 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_16625Calligrapher{			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_16625Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16625Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16625Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16625Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16625Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16625Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16625Calligrapher h6, .stacks_in_16625Calligrapher h5, .stacks_in_16625Calligrapher h4, .stacks_in_16625Calligrapher h3, .stacks_in_16625Calligrapher h2, .stacks_in_16625Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16625Calligrapher, .stacks_in_16625Calligrapher h1, .stacks_in_16625Calligrapher h2, .stacks_in_16625Calligrapher h3, .stacks_in_16625Calligrapher h4, .stacks_in_16625Calligrapher h5, .stacks_in_16625Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16625targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16625Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16625Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16625Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16625Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16717overlay{	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_16717leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16717leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16717leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16717leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16717rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16717rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16717theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16717overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16717leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16717leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16717leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16717leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16717rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16717rightcolContent{		margin: auto;	}}					.stacks_in_16717posterWrapper 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_16717posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16717posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16717posterWrapper img:hover{	cursor: pointer;}.stacks_in_16717rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16717videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16717 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16719Calligrapher{			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_16719Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16719Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16719Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16719Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16719Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16719Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16719Calligrapher h6, .stacks_in_16719Calligrapher h5, .stacks_in_16719Calligrapher h4, .stacks_in_16719Calligrapher h3, .stacks_in_16719Calligrapher h2, .stacks_in_16719Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16719Calligrapher, .stacks_in_16719Calligrapher h1, .stacks_in_16719Calligrapher h2, .stacks_in_16719Calligrapher h3, .stacks_in_16719Calligrapher h4, .stacks_in_16719Calligrapher h5, .stacks_in_16719Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16719targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16719Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16719Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16719Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16719Calligrapher 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_16723Calligrapher{			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_16723Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16723Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16723Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16723Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16723Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16723Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16723Calligrapher h6, .stacks_in_16723Calligrapher h5, .stacks_in_16723Calligrapher h4, .stacks_in_16723Calligrapher h3, .stacks_in_16723Calligrapher h2, .stacks_in_16723Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16723Calligrapher, .stacks_in_16723Calligrapher h1, .stacks_in_16723Calligrapher h2, .stacks_in_16723Calligrapher h3, .stacks_in_16723Calligrapher h4, .stacks_in_16723Calligrapher h5, .stacks_in_16723Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16723targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16723Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16723Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16723Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16723Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16647overlay{	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_16647leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16647leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16647leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16647leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16647rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16647rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16647theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16647overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16647leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16647leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16647leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16647leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16647rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16647rightcolContent{		margin: auto;	}}					.stacks_in_16647posterWrapper 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_16647posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16647posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16647posterWrapper img:hover{	cursor: pointer;}.stacks_in_16647rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16647videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16647 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16649Calligrapher{			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_16649Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16649Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16649Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16649Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16649Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16649Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16649Calligrapher h6, .stacks_in_16649Calligrapher h5, .stacks_in_16649Calligrapher h4, .stacks_in_16649Calligrapher h3, .stacks_in_16649Calligrapher h2, .stacks_in_16649Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16649Calligrapher, .stacks_in_16649Calligrapher h1, .stacks_in_16649Calligrapher h2, .stacks_in_16649Calligrapher h3, .stacks_in_16649Calligrapher h4, .stacks_in_16649Calligrapher h5, .stacks_in_16649Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16649targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16649Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16649Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16649Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16649Calligrapher 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_16653Calligrapher{			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_16653Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16653Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16653Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16653Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16653Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16653Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16653Calligrapher h6, .stacks_in_16653Calligrapher h5, .stacks_in_16653Calligrapher h4, .stacks_in_16653Calligrapher h3, .stacks_in_16653Calligrapher h2, .stacks_in_16653Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16653Calligrapher, .stacks_in_16653Calligrapher h1, .stacks_in_16653Calligrapher h2, .stacks_in_16653Calligrapher h3, .stacks_in_16653Calligrapher h4, .stacks_in_16653Calligrapher h5, .stacks_in_16653Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16653targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16653Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16653Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16653Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16653Calligrapher 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_15480 {
  display: inline-block;
  width: 100%;
}
.RC_clear{
  display:block;
  width:100%;
}

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


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

  float:left;
}

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

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

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

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

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

}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 800px) {

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16365overlay{	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_16365leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16365leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16365leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16365leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16365rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16365rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16365theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16365overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16365leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16365leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16365leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16365leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16365rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16365rightcolContent{		margin: auto;	}}					.stacks_in_16365posterWrapper 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_16365posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16365posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16365posterWrapper img:hover{	cursor: pointer;}.stacks_in_16365rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16365videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16365 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16367Calligrapher{			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_16367Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16367Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16367Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16367Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16367Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16367Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16367Calligrapher h6, .stacks_in_16367Calligrapher h5, .stacks_in_16367Calligrapher h4, .stacks_in_16367Calligrapher h3, .stacks_in_16367Calligrapher h2, .stacks_in_16367Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16367Calligrapher, .stacks_in_16367Calligrapher h1, .stacks_in_16367Calligrapher h2, .stacks_in_16367Calligrapher h3, .stacks_in_16367Calligrapher h4, .stacks_in_16367Calligrapher h5, .stacks_in_16367Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16367targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16367Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16367Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16367Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16367Calligrapher 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_16371Calligrapher{			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_16371Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16371Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16371Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16371Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16371Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16371Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16371Calligrapher h6, .stacks_in_16371Calligrapher h5, .stacks_in_16371Calligrapher h4, .stacks_in_16371Calligrapher h3, .stacks_in_16371Calligrapher h2, .stacks_in_16371Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16371Calligrapher, .stacks_in_16371Calligrapher h1, .stacks_in_16371Calligrapher h2, .stacks_in_16371Calligrapher h3, .stacks_in_16371Calligrapher h4, .stacks_in_16371Calligrapher h5, .stacks_in_16371Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16371targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16371Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16371Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16371Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16371Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





/* Start Video Plus stack CSS code */.stacks_in_16689overlay{	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_16689leftCol{	position: absolute;	width: 70%;	height: 100%;	top:0;	left: 0;	right: 30%;	overflow: scroll;	margin-left: -70%;	transition: all 0.6s ease;}.stacks_in_16689leftcolTable{	position: relative;	display: table;	width: 100%;	height: 100%;}.stacks_in_16689leftcolCell{   display: table-cell;   text-align: center;   vertical-align: middle;}.stacks_in_16689leftcolContent{    width: 80%;    margin: auto;    text-align: left;}.stacks_in_16689rightCol{	position: absolute;	width: 30%;	background: #FFFFFF;	top:0;	right: 0;	height: 100%;	overflow: scroll;	margin-right: -30%;	transition: all 0.6s ease;}.stacks_in_16689rightcolContent{	padding: 60px 30px 50px 30px;}.stacks_in_16689theX{	display: none;	position: absolute;	width: 33px;	height: 33px;	top: 20px;	right: 20px;}@media all and (max-width: 768px) {	.stacks_in_16689overlay{		background: #FFFFFF !important;		padding-top: 70px;	}		.stacks_in_16689leftCol{		position: relative;		width: 100%;		height: auto;		background: #FFFFFF;	}		.stacks_in_16689leftcolTable{		position: relative;		display: table;		width: 100%;		height: 100%;	}		.stacks_in_16689leftcolCell{	   display: table-cell;	   text-align: center;	   vertical-align: middle;	}		.stacks_in_16689leftcolContent{	    width: 90%;	    margin: auto;	    text-align: left;	}		.stacks_in_16689rightCol{		position: relative;		width: 100%;		background: #FFFFFF;		top:0;		right: 0;		bottom: 0;		left: 0;	}		.stacks_in_16689rightcolContent{		margin: auto;	}}					.stacks_in_16689posterWrapper 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_16689posterWrapper img:hover{			opacity: 0.8;			filter: alpha(opacity=80);		}	.stacks_in_16689posterWrapper img{	max-width: 100%;	height: auto;}.stacks_in_16689posterWrapper img:hover{	cursor: pointer;}.stacks_in_16689rightcolContentInner img{	max-width: 100%;	height: auto;}.stacks_in_16689videoButton{	position: absolute;	top: 50%;	left: 50%;	width: 0px;	height: auto;	transform: translate(-50%,-50%);}/* End Video Plus stack CSS code */
#stacks_in_16689 {
	padding:  2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_16691Calligrapher{			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_16691Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16691Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16691Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16691Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16691Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16691Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: normal !important;		}		.stacks_in_16691Calligrapher h6, .stacks_in_16691Calligrapher h5, .stacks_in_16691Calligrapher h4, .stacks_in_16691Calligrapher h3, .stacks_in_16691Calligrapher h2, .stacks_in_16691Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16691Calligrapher, .stacks_in_16691Calligrapher h1, .stacks_in_16691Calligrapher h2, .stacks_in_16691Calligrapher h3, .stacks_in_16691Calligrapher h4, .stacks_in_16691Calligrapher h5, .stacks_in_16691Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16691targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16691Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16691Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16691Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16691Calligrapher 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_16695Calligrapher{			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_16695Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16695Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16695Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16695Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16695Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16695Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_16695Calligrapher h6, .stacks_in_16695Calligrapher h5, .stacks_in_16695Calligrapher h4, .stacks_in_16695Calligrapher h3, .stacks_in_16695Calligrapher h2, .stacks_in_16695Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_16695Calligrapher, .stacks_in_16695Calligrapher h1, .stacks_in_16695Calligrapher h2, .stacks_in_16695Calligrapher h3, .stacks_in_16695Calligrapher h4, .stacks_in_16695Calligrapher h5, .stacks_in_16695Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_16695targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_16695Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_16695Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_16695Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_16695Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
/* Preview and publish styling */

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

	


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





