.com_bigwhiteduck_stacks_headerpro_stack .text-center{text-align:center}.com_bigwhiteduck_stacks_headerpro_stack .text-left{text-align:left}.com_bigwhiteduck_stacks_headerpro_stack .text-right{text-align:right}.com_bigwhiteduck_stacks_headerpro_stack .text-justify{text-align:justify}.com_bigwhiteduck_stacks_headerpro_stack .text-inherit{text-align:inherit}
a.block-link{display:block;text-decoration:none !important;padding:0;margin:0;color:inherit}a.block-link:link,a.block-link:visited,a.block-link:hover,a.block-link:active{color:inherit}
.cookie-jar{display:none;z-index:9999;position:fixed;bottom:0;width:100%}.cookie-jar.cookie-jar-top{bottom:auto;top:0}.cookie-jar-buttons > div{width:49.5%;display:inline-block}
.target-wrapper{position:relative}.target-show-on-hover{opacity:0;transition:opacity 750ms ease}.target-show-on-hover:hover{opacity:1}.target{position:absolute;width:100%;height:auto}.target.width-auto{width:auto}.target.height-fill,.target.height-fixed,.target.height-flexible{display:flex;align-items:center}.target.height-fill{height:100%}.target[class*="float-"],.target[class*="shift-"]{position:relative}.target[class*="pin-"],.target.relative-browser{position:fixed}.target.float-right{float:right}.target.float-left{float:left}.target.vcenter[class*="relative-"]{top:50%;transform:translateY(-50%)}.target.hcenter[class*="relative-"]{left:50%;transform:translateX(-50%)}.target.hcenter.vcenter[class*="relative-"]{transform:translateX(-50%) translateY(-50%)}.target.shift-up,.target.shift-down{margin-left:auto;margin-right:auto}.target.target-center{top:50%;left:50%;transform:translateX(-50%) translateY(-50%)}.target.pin-top{top:0}.target.pin-bottom{bottom:0}.target.pin-left{left:0}.target.pin-right{right:0}.target.target-disable{position:relative !important;float:none !important;height:auto !important;left:auto !important;top:auto !important;bottom:auto !important;right:auto !important;transform:none !important;width:100% !important}@media only screen and (min-width:40em){.target.target-mobile-only{position:relative !important;float:none !important;height:auto !important;left:auto !important;top:auto !important;bottom:auto !important;right:auto !important;transform:none !important;width:100% !important}}@media only screen and (max-width:39.9375em){.target.target-disable-mobile{position:relative !important;float:none !important;height:auto !important;left:auto !important;top:auto !important;bottom:auto !important;right:auto !important;transform:none !important;width:100% !important}}@media only screen and (max-width:62.5em){.target.target-desktop-only{position:relative !important;float:none !important;height:auto !important;left:auto !important;top:auto !important;bottom:auto !important;right:auto !important;transform:none !important;width:100% !important}}

@font-face {
    font-family: 'FlatButtonLato';
    src: url('../files/font/lato-light-webfont.eot');
    src: url('../files/font/lato-light-webfont.eot?#iefix') format('embedded-opentype'),
         url('../files/font/lato-light-webfont.woff') format('woff'),
         url('../files/font/lato-light-webfont.ttf') format('truetype'),
         url('../files/font/lato-light-webfont.svg#latolight') format('svg');
    font-weight: 100;
    font-style: normal;
}


@font-face {
    font-family: 'FlatButtonOpenSans';
    src: url('../files/font/opensans-regular-webfont.eot');
    src: url('../files/font/opensans-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../files/font/opensans-regular-webfont.woff') format('woff'),
         url('../files/font/opensans-regular-webfont.ttf') format('truetype'),
         url('../files/font/opensans-regular-webfont.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;

}


@font-face {
    font-family: 'FlatButtonNoto';
    src: url('../files/font/notoserif-regular-webfont.eot');
    src: url('../files/font/notoserif-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('../files/font/notoserif-regular-webfont.woff') format('woff'),
         url('../files/font/notoserif-regular-webfont.ttf') format('truetype'),
         url('../files/font/notoserif-regular-webfont.svg#noto_serifregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

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

#stacks_in_0 {
	-moz-border-radius:  2px;
	-webkit-border-radius:  2px;
	border-radius:  2px;
}

#stacks_in_220129 {
	display:inline-block; width:100%; line-height: 1.610000em;
	font-size: 110%;
}

#stacks_in_220130 {
	display:inline-block; width:100%; line-height: 1.610000em;
	font-size: 110%;
}
#cookiejar_stacks_in_220128_1{padding:10px;background-color:rgba(254, 228, 165, 1.00)}
/*  Archetypon Parallaxis Columns  */
.pcColumnsWrapper{
	width: 100%;
	overflow: auto;
}
.pcColumns_stacks_in_220128_24{ 
	width: 25%;
     float: right; 
    margin: 0;
}

#pcColumn2_stacks_in_220128_24{
	width: 75%;	
	 float: left; 
}

@media only screen and (max-width: 600px) {
	#pcColumn1_stacks_in_220128_24, #pcColumn2_stacks_in_220128_24{
		width: 100%;
		margin: 0;
		float: none;
		display: block;
		margin-bottom: 0;
	}
	
	#pcColumn1_stacks_in_220128_24{
		padding-bottom: 20px;
	}
}
/* end */



#stacks_in_220128_9 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_220128_9 a,
#stacks_in_220128_9 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 50px;
  line-height: 50px;
  text-decoration: none;
    
    border-width: 1px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  

}


#stacks_in_220128_9 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_220128_9 a i,
#stacks_in_220128_9 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 50px;
  height: 50px;
  line-height: 50px;

  
    float: left;
    
      
      border-right: 1px solid rgba(0, 84, 123, 1.00);
      
    
  

  

  
}









  /* Gradient Color Mode */
  #stacks_in_220128_9 a,
  #stacks_in_220128_9 a:visited {
    background: rgba(128, 90, 63, 1.00);
    background: -moz-linear-gradient(top,  rgba(128, 90, 63, 1.00) 0%, rgba(128, 90, 63, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(128, 90, 63, 1.00) 0%,rgba(128, 90, 63, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(128, 90, 63, 1.00) 0%,rgba(128, 90, 63, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_220128_9 a:hover,
  #stacks_in_220128_9 a:active {
    background: rgba(95, 72, 53, 1.00);
    background: -moz-linear-gradient(top,  rgba(95, 72, 53, 1.00) 0%, rgba(128, 90, 63, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(95, 72, 53, 1.00) 0%,rgba(128, 90, 63, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(95, 72, 53, 1.00) 0%,rgba(128, 90, 63, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_220128_9 a i,
  #stacks_in_220128_9 a:visited i {
    background: rgba(230, 214, 123, 1.00);
    background: -moz-linear-gradient(top,  rgba(230, 214, 123, 1.00) 0%, rgba(177, 151, 97, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(230, 214, 123, 1.00) 0%,rgba(177, 151, 97, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(230, 214, 123, 1.00) 0%,rgba(177, 151, 97, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_220128_9 a:hover i,
  #stacks_in_220128_9 a:active i {
    background: rgba(210, 179, 113, 1.00);
    background: -moz-linear-gradient(top,  rgba(210, 179, 113, 1.00) 0%, rgba(177, 151, 97, 1.00) 100%);
    background: -webkit-linear-gradient(top,  rgba(210, 179, 113, 1.00) 0%,rgba(177, 151, 97, 1.00) 100%);
    background: linear-gradient(to bottom,  rgba(210, 179, 113, 1.00) 0%,rgba(177, 151, 97, 1.00) 100%);

    color: rgba(255, 255, 255, 1.00);
  }










  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_220128_9 a,
    #stacks_in_220128_9 a:visited {
      width: 100%;
    }
  }

  





#stacks_in_220128_9 {
	padding: 50px 10px 5px 0px;
}
/* LinkPlus stack v1.1.4 */#stacks_in_220128_3 a:link {			color: #C11829 !important;		}#stacks_in_220128_3 a:visited {	color: #C1C670 !important;	}#stacks_in_220128_3 a:hover,#stacks_in_220128_3 a:focus  {	color: #9C6900 !important;	}#stacks_in_220128_3 a:active  {	color: #C1C670 !important;		}#stacks_in_220128_3 a:link span,#stacks_in_220128_3 .com_marathia_stacks_downloadlinkicon_stack a:link:before, /* for DLI */#stacks_in_220128_3 .com_marathia_stacks_downloadlinkicon_stack a:link:after /* for DLI */ {	color: #C1314B !important;	text-decoration: none !important;	cursor: pointer;}#stacks_in_220128_3 a:visited span,#stacks_in_220128_3 .com_marathia_stacks_downloadlinkicon_stack a:visited:before, /* for DLI */#stacks_in_220128_3 .com_marathia_stacks_downloadlinkicon_stack a:visited:after /* for DLI */ {	color: #C1C670 !important;}#stacks_in_220128_3 a:hover span,#stacks_in_220128_3 a:focus span,#stacks_in_220128_3 .com_marathia_stacks_downloadlinkicon_stack a:hover:before, /* for DLI */#stacks_in_220128_3 .com_marathia_stacks_downloadlinkicon_stack a:focus:before, /* for DLI */#stacks_in_220128_3 .com_marathia_stacks_downloadlinkicon_stack a:hover:after, /* for DLI */#stacks_in_220128_3 .com_marathia_stacks_downloadlinkicon_stack a:focus:after /* for DLI */ {	color: #9C6900 !important;}#stacks_in_220128_3 a:active span,#stacks_in_220128_3 .com_marathia_stacks_downloadlinkicon_stack a:active:before, /* for DLI */#stacks_in_220128_3 .com_marathia_stacks_downloadlinkicon_stack a:active:after /* for DLI */ {	color: #C11E25 !important;}/* @group internal link icon *//* @end *//* @group external link icon *//* @end *//* @group email link icon */#stacks_in_220128_3 a[href^="mailto"] span:after {								content: "";}/* @end *//* End of LinkPlus stack */
#stacks_in_220128_4 {
	margin: 20px 20px 0px 20px;
}

#stacks_in_220128_5 {
	display:inline-block; width:100%; line-height: 1.610000em;
	font-size: 110%;
}
/* LinkPlus stack v1.1.4 */#stacks_in_220128_12 a:link {			color: #C11829 !important;		}#stacks_in_220128_12 a:visited {	color: #C1C670 !important;	}#stacks_in_220128_12 a:hover,#stacks_in_220128_12 a:focus  {	color: #9C6900 !important;	}#stacks_in_220128_12 a:active  {	color: #C1C670 !important;		}#stacks_in_220128_12 a:link span,#stacks_in_220128_12 .com_marathia_stacks_downloadlinkicon_stack a:link:before, /* for DLI */#stacks_in_220128_12 .com_marathia_stacks_downloadlinkicon_stack a:link:after /* for DLI */ {	color: #A00000 !important;	text-decoration: none !important;	cursor: pointer;}#stacks_in_220128_12 a:visited span,#stacks_in_220128_12 .com_marathia_stacks_downloadlinkicon_stack a:visited:before, /* for DLI */#stacks_in_220128_12 .com_marathia_stacks_downloadlinkicon_stack a:visited:after /* for DLI */ {	color: #A00000 !important;}#stacks_in_220128_12 a:hover span,#stacks_in_220128_12 a:focus span,#stacks_in_220128_12 .com_marathia_stacks_downloadlinkicon_stack a:hover:before, /* for DLI */#stacks_in_220128_12 .com_marathia_stacks_downloadlinkicon_stack a:focus:before, /* for DLI */#stacks_in_220128_12 .com_marathia_stacks_downloadlinkicon_stack a:hover:after, /* for DLI */#stacks_in_220128_12 .com_marathia_stacks_downloadlinkicon_stack a:focus:after /* for DLI */ {	color: #000000 !important;}#stacks_in_220128_12 a:active span,#stacks_in_220128_12 .com_marathia_stacks_downloadlinkicon_stack a:active:before, /* for DLI */#stacks_in_220128_12 .com_marathia_stacks_downloadlinkicon_stack a:active:after /* for DLI */ {	color: #C11E25 !important;}/* @group internal link icon *//* @end *//* @group external link icon *//* @end *//* @group email link icon */#stacks_in_220128_12 a[href^="mailto"] span:after {								content: "";}/* @end *//* End of LinkPlus stack */
#stacks_in_220128_13 {
	margin: 0px 20px 15px 20px;
}

#stacks_in_220128_14 {
	display:inline-block; width:100%; line-height: 1.610000em;
	font-size: 110%;
}

#stacks_in_220128_18 {
	margin: 20px 0px 0px 70px;
}

#stacks_in_220128_19 {
	display:inline-block; width:100%; line-height: 1.370000em;
	font-size: 110%;
}
/*
 * SuperFlex v1.4
 * Nick Cates Design
 */



.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus  {outline: none;}

body .slides,
body .flex-control-nav,
body .flex-direction-nav {margin: 0; padding: 0; list-style: none;} 

.flexslider {width: 100%; margin: 0; padding: 0;}

.flexslider .slides > li {display: none; -webkit-backface-visibility: hidden;}

.flexslider .slides img {max-width: 100%; display: block; width: 100%; height: auto;padding:0;margin:0;}

.slides:after {content: "."; display: block; clear: both; visibility: hidden; line-height: 0; height: 0;}
html[xmlns] .slides {display: block;}
* html .slides {height: 1%;}

.no-js .slides > li:first-child {display: block;}

.flexslider {background: transparent; zoom: 1; position: relative;z-index: 50;}

.flexslider .slides {zoom: 1;}
body .flexslider ul.slides, body .flexslider li { padding: 0; margin: 0;list-style: none; line-height: 0;}
.flexslider .slides > li {position: relative;}

.flex-container {zoom: 1; position: relative;}

body .flex-caption { 
height:50px; 
background:none; 
-ms-filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000);
filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#4C000000,endColorstr=#4C000000); 
zoom: 1; 
text-align: left; 
width: 100%; 
display: block; 
text-indent: 3%;
position: absolute; 
left: 0; 
bottom: 0; 
background: rgba(0,0,0,.5); 
color: #fff;
text-shadow: 0 -1px 0 rgba(0,0,0,.3); 
font-size: 14px; 
line-height: 3.6em;
}

.flex-direction-nav{opacity: 0;}
.flex-direction-nav{padding: 0 !important;}
.flex-direction-nav li a {width: 52px; height: 52px; margin: -13px 0 0; display: block; background: url('../files/bg_direction_nav.png') no-repeat 0 0; position: absolute; top: 50%; cursor: pointer; text-indent: -9999px;}
.flex-direction-nav li .flex-next {background-position: -52px 0; right: 0;}
.flex-direction-nav li .flex-prev {left: 0;}
.flex-direction-nav li .disabled {opacity: .3; filter:alpha(opacity=30); cursor: default;}

.flex-control-nav {position: absolute; line-height: 3.6em; font-size: 14px; text-align: center; bottom:0; opacity:0;width:100%;z-index:100;}
.alignRight {text-align: right; right: 15px;width:auto;}

.flex-control-nav li {position: relative; top: 4px; margin: 0 0 0 7px !important; display: inline-block; zoom: 1; *display: inline;}
.flex-control-nav li:first-child {margin: 0;}
.flex-control-nav li a { top: 5px; width: 20px; height: 20px;display: block; background: url('../files/bg_control_nav.png') no-repeat 0 0; cursor: pointer; text-indent: -9999px;}
.flex-control-nav li a:hover {background-position: 0 -20px;}
.flex-control-nav li a.flex-active {background-position: 0 -40px; cursor: default;}

.flex-control-nav,.flex-direction-nav{-webkit-transition: opacity 500ms; -moz-transition: opacity 500ms; -ms-transition: opacity 500ms; -o-transition: opacity 500ms; transition: opacity 500ms;}
.flexslider:hover .flex-control-nav,.flexslider:hover .flex-direction-nav{opacity: 1 !important;}
 

.flex-viewport,
.flex-viewport ul.slides, 
.flex-viewport ul.slides li,
.flex-viewport ul.slides li img{
    border-radius: 3px;
}

#stacks_in_23 .flex-caption{border-radius: 0 0 4px 4px;}

@media all and (max-width: 600px){
    .flex-caption{visibility: hidden;}
}

@media all and (max-width: 320px){
    .flex-direction-nav{visibility: hidden;}
}

@media	only screen and (-webkit-min-device-pixel-ratio: 1.3),
	only screen and (-o-min-device-pixel-ratio: 13/10),
	only screen and (min-resolution: 120dpi)
	{
    .flex-control-nav li a {
    	background-image: url('../files/bg_control_nav_2x.png') !important; 
    	background-size: 20px 60px;
    }
    .flex-direction-nav li a {
    	background: url('../files/bg_direction_nav_2x.png') no-repeat 0 0;
    	background-size: 104px 52px;
    }
}










/* Edit Mode UI  */


#stacks_in_86915{visibility:hidden}
/*WRAPPER*/
#stacks_in_86922 .responder_wrapper * {
margin-left: auto; margin-right:auto;
/*CustomCSS*/
}

#stacks_in_86922 .responder_wrapper {
margin-left: auto; margin-right:auto; 
/*CustomCSS*/
}

#stacks_in_86922 .responder_wrapper img {

margin-left: auto; margin-right:auto;
float:none;
/*CustomCSS*/
}




/*PC*/
#stacks_in_86922 .responder_a {

  visibility: visible; height: auto;  
/*CustomCSS*/
}
#stacks_in_86922 .responder_a img {
/*CustomCSS*/
}

#stacks_in_86922 .responder_b {

 visibility: hidden; height: 0px; 

}
#stacks_in_86922 .responder_b img {

}

#stacks_in_86922 .responder_c {

 visibility: hidden; height: 0px; 

}
#stacks_in_86922 .responder_c img {

}	

/*TABLET*/
@media only screen and (max-width: 780px) {
#stacks_in_86922 .responder_a {visibility: hidden; height: 0px;}
#stacks_in_86922 .responder_c {visibility: hidden; height: 0px;}

#stacks_in_86922 .responder_b {
	 visibility: visible; height: auto; 
	/*CustomCSS*/
}
#stacks_in_86922 .responder_b img {
	/*CustomCSS*/
}
}

/*SMARTPHONE*/
@media only screen and (max-width: 480px) {
#stacks_in_86922 .responder_a {visibility: hidden; height: 0px;}
#stacks_in_86922 .responder_b {visibility: hidden; height: 0px;}

#stacks_in_86922 .responder_c {
	 visibility: visible; height: auto; 
	/*CustomCSS*/
}
#stacks_in_86922 .responder_c img {
	/*CustomCSS*/
}
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_86939Calligrapher{			font-size: 130% !important;			color: #FFFFFF !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.0em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_86939Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_86939Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_86939Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_86939Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_86939Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_86939Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_86939Calligrapher h6, .stacks_in_86939Calligrapher h5, .stacks_in_86939Calligrapher h4, .stacks_in_86939Calligrapher h3, .stacks_in_86939Calligrapher h2, .stacks_in_86939Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_86939Calligrapher, .stacks_in_86939Calligrapher h1, .stacks_in_86939Calligrapher h2, .stacks_in_86939Calligrapher h3, .stacks_in_86939Calligrapher h4, .stacks_in_86939Calligrapher h5, .stacks_in_86939Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_86939targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_86939Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_86939Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_86939Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_86939Calligrapher 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_86935Calligrapher{			font-size: 50% !important;			color: #FFFFFF !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.0em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_86935Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_86935Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_86935Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_86935Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_86935Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_86935Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_86935Calligrapher h6, .stacks_in_86935Calligrapher h5, .stacks_in_86935Calligrapher h4, .stacks_in_86935Calligrapher h3, .stacks_in_86935Calligrapher h2, .stacks_in_86935Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_86935Calligrapher, .stacks_in_86935Calligrapher h1, .stacks_in_86935Calligrapher h2, .stacks_in_86935Calligrapher h3, .stacks_in_86935Calligrapher h4, .stacks_in_86935Calligrapher h5, .stacks_in_86935Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_86935targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_86935Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_86935Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_86935Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_86935Calligrapher 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_218562Calligrapher{			font-size: 50% !important;			color: #FFFFFF !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.0em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_218562Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_218562Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_218562Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_218562Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_218562Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_218562Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_218562Calligrapher h6, .stacks_in_218562Calligrapher h5, .stacks_in_218562Calligrapher h4, .stacks_in_218562Calligrapher h3, .stacks_in_218562Calligrapher h2, .stacks_in_218562Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_218562Calligrapher, .stacks_in_218562Calligrapher h1, .stacks_in_218562Calligrapher h2, .stacks_in_218562Calligrapher h3, .stacks_in_218562Calligrapher h4, .stacks_in_218562Calligrapher h5, .stacks_in_218562Calligrapher h6{	font-family: "Open Sans" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_218562targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_218562Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_218562Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_218562Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_218562Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */
#stacks_in_218562 {
	margin: 0px 0px 0px 10px;
}

#stacks_in_218564 {
	margin: 0px 0px 0px 100px;
}

#stacks_in_218565 {
	font-size: 50%;
}
#stacks_in_219018 .aContainer {
 

}#stacks_in_220188 h2,#stacks_in_220188 .hTxt:not(.segment) div{font-size:1.00rem}@media all and (max-width:640px){#stacks_in_220188 h2,#stacks_in_220188 .hTxt:not(.segment) div{font-size:0.95rem}}#stacks_in_220188 h2,#stacks_in_220188 div{color:rgba(34, 34, 34, 1.00)}#stacks_in_220188 h2 a,#stacks_in_220188 div a{color:rgba(34, 34, 34, 1.00)}#stacks_in_220188 h2 a:hover,#stacks_in_220188 div a:hover{color:rgba(25, 25, 25, 1.00)}#stacks_in_220188 small,#stacks_in_220188 small div{color:rgba(111, 111, 111, 1.00)}


#stacks_in_220188 {
	margin: 0px 0px 30px 0px;
}
#stacks_in_220189 .flexgridwrap
{
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	padding-left: 0px !important;
	padding-right: 0px !important;
	/* Custom CSS ; */
}

#stacks_in_220189 .flexgridtable a
{
 
}
#stacks_in_220189 .flexgridtable a:hover
{
 
}


#stacks_in_220189 .flexgridtable
{
	display: table;
	margin-bottom: 0px !important;
	border-collapse: collapse !important;
	border: none;
 
    margin-left:auto; 
    margin-right:auto;
	 

 
	background: url() repeat 0px 0px;
 

 


	-moz-box-shadow:  0 0 0px #333333;
	-webkit-box-shadow:  0 0 0px #333333;
	box-shadow:  0 0 0px #333333;



 



-webkit-transition: background nos ease-in-out;
-moz-transition: background s ease-in-out;
-ms-transition: background s ease-in-out;
-o-transition: background s ease-in-out;
transition: background s ease-in-out;

 
}

#stacks_in_220189 .flexgridtable:hover
{
 
	-moz-box-shadow:  0 0 0px #333333;
	-webkit-box-shadow:  0 0 0px #333333;
	box-shadow:  0 0 0px #333333;
 
}

#stacks_in_220189 .flexgridtr
{
	vertical-align: top;
	display:  block;
	padding: 0px;
}

#stacks_in_220189 .flexgridtable:hover
{
 
/*Nothing happens here*/
 
}

#stacks_in_220189 .flexgridtd1:hover
{
 
/*Nothing happens here*/

}
#stacks_in_220189 .flexgridtd2:hover
{
 
/*Nothing happens here*/

}
#stacks_in_220189 .flexgridtd3:hover
{
 
/*Nothing happens here*/

}
#stacks_in_220189 .flexgridtd4:hover
{
 
/*Nothing happens here*/

}
#stacks_in_220189 .flexgridtd5:hover
{
 
/*Nothing happens here*/

}
#stacks_in_220189 .flexgridtd6:hover
{
 
/*Nothing happens here*/

}
#stacks_in_220189 .flexgridtd7:hover
{
 
/*Nothing happens here*/

}
#stacks_in_220189 .flexgridtd8:hover
{
 
/*Nothing happens here*/

}
#stacks_in_220189 .flexgridtd9:hover
{
 
/*Nothing happens here*/

}
#stacks_in_220189 .flexgridtd10:hover
{
 
/*Nothing happens here*/

}

#stacks_in_220189 .flexgridtd1
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;


 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 



 



-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_220189 .y1 /*defligra stacks*/
{
	display: block;
 	
	width: 250px;


 	
	padding: 0px;

	
 
	height: auto;
	overflow: visible;
 
}

#stacks_in_220189 .flexgridtd2
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_220189 .y2 /*defligra stacks*/
{
	display: block;
 	
	width: 250px;


 	
	padding: 0px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_220189 .flexgridtd3
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_220189 .y3 /*defligra stacks*/
{
	display: block;
 	
	width: 182px;


 	
	padding: 0px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_220189 .flexgridtd4
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_220189 .y4 /*defligra stacks*/
{
	display: block;
 	
	width: 195px;


 	
	padding: 0px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_220189 .flexgridtd5
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_220189 .y5 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;


 	
	padding: 0px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_220189 .flexgridtd6
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_220189 .y6 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;


 	
	padding: 0px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_220189 .flexgridtd7
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_220189 .y7 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;


 	
	padding: 0px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_220189 .flexgridtd8
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_220189 .y8 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;

 
  	
	padding: 0px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_220189 .flexgridtd9
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_220189 .y9 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;

 
 	
	padding: 0px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_220189 .flexgridtd10
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

 
	border-right:  0px solid #333333;
 



 



-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}
#stacks_in_220189 .y10 /*defligra stacks*/
{
	display: block;
 	
	width: 250px;


 	
	padding: 0px;

 
	height: auto;
	overflow: visible;
 
}


@media screen and (max-width: 800px) {
#stacks_in_220189 .flexgridtable {
	overflow: auto !important;
	display:block;
	padding: 0px !mportant;
}

	#stacks_in_220189 .flexgridtable::-webkit-scrollbar {
	-webkit-apperance: none !important;
	width: 14px;
	height: 14px;
	background-color: #FFFFFF;
}
	#stacks_in_220189 .flexgridtable::-webkit-scrollbar-thumb {
	
	border: 3px solid #FFFFFF;
	background-color: #000000;
}
}










#stacks_in_220196 .stacks_in_220196-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_220196 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_220196 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 3px;
	-webkit-border-bottom-left-radius: 3px;
	-moz-border-radius-topleft: 3px;
	-moz-border-radius-bottomleft: 3px;
	border-top-left-radius: 3px;
	border-bottom-left-radius: 3px;
	float: left;
	
	  width: 54px;
	
}

#stacks_in_220196 .stacks_in_220196-button,
#stacks_in_220196 .button_icon {
	
		height: 54px;
		line-height: 54px;
	
}


	#stacks_in_220196 {
		text-align: center;
	}




	#stacks_in_220196 .stacks_in_220196-button {
		width: 250px;
	}






#stacks_in_220196 a.stacks_in_220196-button, #stacks_in_220196 a.stacks_in_220196-button:visited, #stacks_in_220196 a.stacks_in_220196-button:hover, #stacks_in_220196 a.stacks_in_220196-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_220196 .stacks_in_220196-button {
		
			background-color: #FEEFDE;
		
	}

	#stacks_in_220196 a.stacks_in_220196-button, #stacks_in_220196 a.stacks_in_220196-button:visited {
		
			color: #000000 !important;
			
	}

	#stacks_in_220196 a.stacks_in_220196-button:hover, #stacks_in_220196 a.stacks_in_220196-button:active {
		
			text-decoration: none;
			color: #000000 !important;
			background-color: #FFFFF2;
		
	}

	
	#stacks_in_220196 .button_icon {
		
			background-color: #1FAC8D;
		
	}

	#stacks_in_220196 a.stacks_in_220196-button:hover .button_icon, #stacks_in_220196 a.stacks_in_220196-button:active .button_icon {
		
			background-color: #33C0A1;
				
	}
	



#stacks_in_220196 {
	margin:  10px;
}
#stacks_in_220198 .stacks_in_220198-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_220198 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_220198 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	float: left;
	
	  width: 54px;
	
}

#stacks_in_220198 .stacks_in_220198-button,
#stacks_in_220198 .button_icon {
	
		height: 54px;
		line-height: 54px;
	
}


	#stacks_in_220198 {
		text-align: center;
	}




	#stacks_in_220198 .stacks_in_220198-button {
		width: 250px;
	}






#stacks_in_220198 a.stacks_in_220198-button, #stacks_in_220198 a.stacks_in_220198-button:visited, #stacks_in_220198 a.stacks_in_220198-button:hover, #stacks_in_220198 a.stacks_in_220198-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_220198 .stacks_in_220198-button {
		
			background-color: #FEEFDE;
		
	}

	#stacks_in_220198 a.stacks_in_220198-button, #stacks_in_220198 a.stacks_in_220198-button:visited {
		
			color: #000000 !important;
			
	}

	#stacks_in_220198 a.stacks_in_220198-button:hover, #stacks_in_220198 a.stacks_in_220198-button:active {
		
			text-decoration: none;
			color: #000000 !important;
			background-color: #FFFFF2;
		
	}

	
	#stacks_in_220198 .button_icon {
		
			background-color: #1FAC8D;
		
	}

	#stacks_in_220198 a.stacks_in_220198-button:hover .button_icon, #stacks_in_220198 a.stacks_in_220198-button:active .button_icon {
		
			background-color: #33C0A1;
				
	}
	



#stacks_in_220198 {
	margin:  10px;
}
#stacks_in_220200 .stacks_in_220200-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_220200 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_220200 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	float: left;
	
	  width: 54px;
	
}

#stacks_in_220200 .stacks_in_220200-button,
#stacks_in_220200 .button_icon {
	
		height: 54px;
		line-height: 54px;
	
}


	#stacks_in_220200 {
		text-align: center;
	}




	#stacks_in_220200 .stacks_in_220200-button {
		width: 250px;
	}






#stacks_in_220200 a.stacks_in_220200-button, #stacks_in_220200 a.stacks_in_220200-button:visited, #stacks_in_220200 a.stacks_in_220200-button:hover, #stacks_in_220200 a.stacks_in_220200-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_220200 .stacks_in_220200-button {
		
			background-color: #FEEFDE;
		
	}

	#stacks_in_220200 a.stacks_in_220200-button, #stacks_in_220200 a.stacks_in_220200-button:visited {
		
			color: #000000 !important;
			
	}

	#stacks_in_220200 a.stacks_in_220200-button:hover, #stacks_in_220200 a.stacks_in_220200-button:active {
		
			text-decoration: none;
			color: #000000 !important;
			background-color: #FFFFF2;
		
	}

	
	#stacks_in_220200 .button_icon {
		
			background-color: #1FAC8D;
		
	}

	#stacks_in_220200 a.stacks_in_220200-button:hover .button_icon, #stacks_in_220200 a.stacks_in_220200-button:active .button_icon {
		
			background-color: #33C0A1;
				
	}
	



#stacks_in_220200 {
	margin:  10px;
}
#stacks_in_220190 .flexgridwrap
{
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	padding-left: 0px !important;
	padding-right: 0px !important;
	/* Custom CSS ; */
}

#stacks_in_220190 .flexgridtable a
{
 
}
#stacks_in_220190 .flexgridtable a:hover
{
 
}


#stacks_in_220190 .flexgridtable
{
	display: table;
	margin-bottom: 0px !important;
	border-collapse: collapse !important;
	border: none;
 
    margin-left:auto; 
    margin-right:auto;
	 

 
	background: url() repeat 0px 0px;
 

 


	-moz-box-shadow:  0 0 0px #333333;
	-webkit-box-shadow:  0 0 0px #333333;
	box-shadow:  0 0 0px #333333;



 



-webkit-transition: background nos ease-in-out;
-moz-transition: background s ease-in-out;
-ms-transition: background s ease-in-out;
-o-transition: background s ease-in-out;
transition: background s ease-in-out;

 
}

#stacks_in_220190 .flexgridtable:hover
{
 
	-moz-box-shadow:  0 0 0px #333333;
	-webkit-box-shadow:  0 0 0px #333333;
	box-shadow:  0 0 0px #333333;
 
}

#stacks_in_220190 .flexgridtr
{
	vertical-align: top;
	display:  block;
	padding: 0px;
}

#stacks_in_220190 .flexgridtable:hover
{
 
/*Nothing happens here*/
 
}

#stacks_in_220190 .flexgridtd1:hover
{
 
/*Nothing happens here*/

}
#stacks_in_220190 .flexgridtd2:hover
{
 
/*Nothing happens here*/

}
#stacks_in_220190 .flexgridtd3:hover
{
 
/*Nothing happens here*/

}
#stacks_in_220190 .flexgridtd4:hover
{
 
/*Nothing happens here*/

}
#stacks_in_220190 .flexgridtd5:hover
{
 
/*Nothing happens here*/

}
#stacks_in_220190 .flexgridtd6:hover
{
 
/*Nothing happens here*/

}
#stacks_in_220190 .flexgridtd7:hover
{
 
/*Nothing happens here*/

}
#stacks_in_220190 .flexgridtd8:hover
{
 
/*Nothing happens here*/

}
#stacks_in_220190 .flexgridtd9:hover
{
 
/*Nothing happens here*/

}
#stacks_in_220190 .flexgridtd10:hover
{
 
/*Nothing happens here*/

}

#stacks_in_220190 .flexgridtd1
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;


 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 



 



-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_220190 .y1 /*defligra stacks*/
{
	display: block;
 	
	width: 250px;


 
	padding: 0px 0px 0px 0px;

	
 
	height: auto;
	overflow: visible;
 
}

#stacks_in_220190 .flexgridtd2
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_220190 .y2 /*defligra stacks*/
{
	display: block;
 	
	width: 222px;


 
	padding: 0px 0px 0px 0px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_220190 .flexgridtd3
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_220190 .y3 /*defligra stacks*/
{
	display: block;
 	
	width: 182px;


 
	padding: 0px 0px 0px 0px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_220190 .flexgridtd4
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_220190 .y4 /*defligra stacks*/
{
	display: block;
 	
	width: 195px;


 
	padding: 0px 0px 0px 0px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_220190 .flexgridtd5
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_220190 .y5 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;


 
	padding: 0px 0px 0px 0px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_220190 .flexgridtd6
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_220190 .y6 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;


 
	padding: 0px 0px 0px 0px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_220190 .flexgridtd7
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_220190 .y7 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;


 
	padding: 0px 0px 0px 0px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_220190 .flexgridtd8
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_220190 .y8 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;

 
  
	padding: 0px 0px 0px 0px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_220190 .flexgridtd9
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_220190 .y9 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;

 
 
	padding: 0px 0px 0px 0px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_220190 .flexgridtd10
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

 
	border-right:  0px solid #333333;
 



 



-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}
#stacks_in_220190 .y10 /*defligra stacks*/
{
	display: block;
 	
	width: 250px;


 
	padding: 0px 0px 0px 0px;

 
	height: auto;
	overflow: visible;
 
}


@media screen and (max-width: 800px) {
#stacks_in_220190 .flexgridtable {
	overflow: auto !important;
	display:block;
	padding: 0px !mportant;
}

	#stacks_in_220190 .flexgridtable::-webkit-scrollbar {
	-webkit-apperance: none !important;
	width: 14px;
	height: 14px;
	background-color: #FFFFFF;
}
	#stacks_in_220190 .flexgridtable::-webkit-scrollbar-thumb {
	
	border: 3px solid #FFFFFF;
	background-color: #000000;
}
}










#stacks_in_220202 .stacks_in_220202-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_220202 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_220202 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	float: left;
	
	  width: 54px;
	
}

#stacks_in_220202 .stacks_in_220202-button,
#stacks_in_220202 .button_icon {
	
		height: 54px;
		line-height: 54px;
	
}


	#stacks_in_220202 {
		text-align: center;
	}




	#stacks_in_220202 .stacks_in_220202-button {
		width: 250px;
	}






#stacks_in_220202 a.stacks_in_220202-button, #stacks_in_220202 a.stacks_in_220202-button:visited, #stacks_in_220202 a.stacks_in_220202-button:hover, #stacks_in_220202 a.stacks_in_220202-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_220202 .stacks_in_220202-button {
		
			background-color: #FEEFDE;
		
	}

	#stacks_in_220202 a.stacks_in_220202-button, #stacks_in_220202 a.stacks_in_220202-button:visited {
		
			color: #000000 !important;
			
	}

	#stacks_in_220202 a.stacks_in_220202-button:hover, #stacks_in_220202 a.stacks_in_220202-button:active {
		
			text-decoration: none;
			color: #000000 !important;
			background-color: #FFFFF2;
		
	}

	
	#stacks_in_220202 .button_icon {
		
			background-color: #1FAC8D;
		
	}

	#stacks_in_220202 a.stacks_in_220202-button:hover .button_icon, #stacks_in_220202 a.stacks_in_220202-button:active .button_icon {
		
			background-color: #33C0A1;
				
	}
	



#stacks_in_220202 {
	margin:  10px;
}
#stacks_in_220204 .stacks_in_220204-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: FlatButtonLato, sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_220204 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_220204 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 4px;
	-webkit-border-bottom-left-radius: 4px;
	-moz-border-radius-topleft: 4px;
	-moz-border-radius-bottomleft: 4px;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
	float: left;
	
	  width: 54px;
	
}

#stacks_in_220204 .stacks_in_220204-button,
#stacks_in_220204 .button_icon {
	
		height: 54px;
		line-height: 54px;
	
}


	#stacks_in_220204 {
		text-align: center;
	}




	#stacks_in_220204 .stacks_in_220204-button {
		width: 250px;
	}






#stacks_in_220204 a.stacks_in_220204-button, #stacks_in_220204 a.stacks_in_220204-button:visited, #stacks_in_220204 a.stacks_in_220204-button:hover, #stacks_in_220204 a.stacks_in_220204-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_220204 .stacks_in_220204-button {
		
			background-color: #FEEFDE;
		
	}

	#stacks_in_220204 a.stacks_in_220204-button, #stacks_in_220204 a.stacks_in_220204-button:visited {
		
			color: #000000 !important;
			
	}

	#stacks_in_220204 a.stacks_in_220204-button:hover, #stacks_in_220204 a.stacks_in_220204-button:active {
		
			text-decoration: none;
			color: #000000 !important;
			background-color: #FFFFF2;
		
	}

	
	#stacks_in_220204 .button_icon {
		
			background-color: #1FAC8D;
		
	}

	#stacks_in_220204 a.stacks_in_220204-button:hover .button_icon, #stacks_in_220204 a.stacks_in_220204-button:active .button_icon {
		
			background-color: #33C0A1;
				
	}
	



#stacks_in_220204 {
	margin:  10px;
}
@media all {
	
	
	
	
	h1,
	h2,
	
	
	
	
	#uniqueElement, .classElement,
	#fontStackstacks_in_220191 {
		font-family: 'Sanchez', serif;
		font-weight: 200;
		font-style: normal;
		font-size: 112%;
		line-height: 153%;
		letter-spacing: 0px;
		direction: ltr;
	}

	#fontStackstacks_in_220191 {
		color: rgba(255, 255, 255, 1.00);
	}
}
/* Smart3columns2 stack v2.4.2 */#stacks_in_220206 .s3c_stacks_in_220206_cw {	display: table;	table-layout: fixed;	width: 100%;}#stacks_in_220206 .s3c_stacks_in_220206_cw, #stacks_in_220206 .s3c_stacks_in_220206_cw * {	-webkit-box-sizing: border-box;	   -moz-box-sizing: border-box;	        box-sizing: border-box;}/*#stacks_in_220206 .s3c_stacks_in_220206_cw div[class^="s3c_stacks_in_220206_col"] {*/#stacks_in_220206 .s3c_stacks_in_220206_cw [class^="s3c_stacks_in_220206_col"] {	display: table-cell;	overflow: hidden;	background-clip: padding-box;}#stacks_in_220206 .s3c_stacks_in_220206_col1 {						width: 410px;	vertical-align: middle;  	  	border-radius: 0px;		}#stacks_in_220206 .s3c_stacks_in_220206_col2 {						vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_220206 .s3c_stacks_in_220206_col3 {		width: 410px;		vertical-align: top;   	  	border-radius: 0px;		}#stacks_in_220206 .s3c_stacks_in_220206_cw .s3c_stacks_in_220206_spacer {	display: table-cell;	width: 3%;}/*@media only screen and (max-width: 981px) {*/@media only screen and (max-width: 981px) {			#stacks_in_220206 .s3c_stacks_in_220206_cw {		/*display: block;*/		table-layout: auto;		display: flex;		flex-direction: column;	}		/*#stacks_in_220206 .s3c_stacks_in_220206_cw div[class^="s3c_stacks_in_220206_col"] {*/	#stacks_in_220206 .s3c_stacks_in_220206_cw [class^="s3c_stacks_in_220206_col"] {		display: block;		width: 100%;	}			#stacks_in_220206 .s3c_stacks_in_220206_cw .s3c_stacks_in_220206_spacer {		display: block;		height: 4px;		width: 100%;	}			#stacks_in_220206 .s3c_stacks_in_220206_col1 {		order: 1;	}		#stacks_in_220206 .s3c_stacks_in_220206_col2 {		order: 3;	}		#stacks_in_220206 .s3c_stacks_in_220206_col3 {		order: 5;	}		#stacks_in_220206 .s3c_stacks_in_220206_spacer:nth-of-type(3n-2) {		order: 2;	}		#stacks_in_220206 .s3c_stacks_in_220206_spacer:nth-of-type(3n-1) {		order: 4;	}							 /* 13F */	#stacks_in_220206 .s3c_stacks_in_220206_cw .s3c_stacks_in_220206_col1 {							}	#stacks_in_220206 .s3c_stacks_in_220206_cw .s3c_stacks_in_220206_col3 {							}	#stacks_in_220206 .s3c_stacks_in_220206_cw .s3c_stacks_in_220206_spacer {		overflow: hidden;	}		}/* End of Smart3columns2 stack */
#stacks_in_220206 {
	margin: 30px 0px 40px 0px;
}

#stacks_in_220214 {
	margin: 18px 0px 0px 0px;
}

#stacks_in_220216 {
	font-size: 130%;
}

#stacks_in_220211 {
	margin: 27px 0px 0px 0px;
}

#stacks_in_220208 {
	margin: 38px 0px 0px 0px;
}

#stacks_in_220210 {
	font-size: 130%;
}

#stacks_in_220255 {
	font-size: 130%;
}

#stacks_in_220146 {
	margin:  15px;
}
   #stacks_in_219341>.bwd-shear-container.eq-height>.shear-wrapper{margin-top:0!important}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner .top-edge,#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner .bot-edge{z-index:1}#stacks_in_219341{z-index:1;overflow:visible}#stacks_in_219341>.shear-mag{position:absolute;top:0rem}#stacks_in_219341>.bwd-shear-container>.section-layer{position:absolute;top:0;left:0;right:0;bottom:0;width:100%;height:100%;margin:0;padding:0;z-index:-1}#stacks_in_219341>.bwd-shear-container>.section-layer::after{position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%;content:"";background-color:rgba(0, 0, 0, 0.00)}#stacks_in_219341>.bwd-shear-container>.section-layer.scale-image img{max-height:100%}#stacks_in_219341>.bwd-shear-container>.section-layer.scale-content *{max-height:100%}#stacks_in_219341>.bwd-shear-container>.section-layer .layer-content{height:100%;opacity:1.0}#stacks_in_219341 .shear-inner>.inner-content>.content-wrapper.fill-content{height:100%}@media screen and (min-width: 0 ) and (min-height: 0 ){#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner.full-height{overflow:hidden}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner.full-height>.inner-content.v-center{padding-top:0!important;padding-bottom:0!important}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner.full-height>.inner-content.v-center>.content-wrapper{-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%)}}#stacks_in_219341>.bwd-shear-container.top-margin-none{margin-top:0!important}#stacks_in_219341>.bwd-shear-container.top-margin-prop{margin-top:0.00%}#stacks_in_219341>.bwd-shear-container.top-margin-rem{margin-top:0.00rem}#stacks_in_219341>.bwd-shear-container.bot-margin-none{margin-bottom:0!important}#stacks_in_219341>.bwd-shear-container.bot-margin-prop{margin-bottom:0.00%}#stacks_in_219341>.bwd-shear-container.bot-margin-rem{margin-bottom:0.00rem}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner::after{margin-top:0.00%}#stacks_in_219341>.bwd-shear-container.eq-height{margin-top:0!important}  #stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge{top:0}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge{bottom:0}
#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge,#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge{margin-top:0.00%;min-width:100%;position:absolute;-webkit-transform:skew(0deg,0deg);-moz-transform:skew(0deg,0deg);-ms-transform:skew(0deg,0deg);-o-transform:skew(0deg,0deg);transform:skew(0deg,0deg)}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge::before,#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge::after,#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge::before,#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge::after{position:absolute;content:'';z-index:-1}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-arrow:after,#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-arrow:after{background:0;width:0;height:0;opacity:1.0}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-arrow.color-auto:after{border-color:transparent transparent rgba(251, 212, 167, 1.00) transparent}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-arrow.color-manual:after{border-color:transparent transparent #699DFF transparent}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-arrow:after{-webkit-transform:skew(0deg);-moz-transform:skew(0deg);-ms-transform:skew(0deg);-o-transform:skew(0deg);transform:skew(0deg);border-style:solid;border-width:0 7.00vw 7.00vw 7.00vw}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-shape.color-auto:after{background:rgba(251, 212, 167, 1.00)}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-shape.color-manual:after{background-color:#699DFF}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-shape:after{width:7.00vw;height:3.50vw;opacity:1.0;background-color:rgba(251, 212, 167, 1.00);display:none;display:block}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-arrow.color-auto:after{border-color:rgba(251, 212, 167, 1.00) transparent transparent transparent}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-arrow.color-manual:after{border-color:#699DFF transparent transparent transparent}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-arrow:after{-webkit-transform:skew(0deg);-moz-transform:skew(0deg);-ms-transform:skew(0deg);-o-transform:skew(0deg);transform:skew(0deg);border-style:solid;border-width:4.00vw 4.00vw 0 4.00vw}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-shape.color-auto:after{background-color:rgba(251, 212, 167, 1.00)}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-shape.color-manual:after{background-color:#699DFF}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-shape:after{width:4.00vw;height:2.00vw;opacity:1.0;display:block}  #stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.inner-content.percentPad{padding-top:2.00%;padding-bottom:2.00%}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.inner-content.percentSidePad{padding-left:0.00%;padding-right:0.00%}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.inner-content.remPad{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.inner-content.remSidePad{padding-left:0.00rem;padding-right:0.00rem} #stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner::after{position:absolute;top:0;height:100%;left:0;width:100%;content:"";-webkit-transform:skew(0deg,0deg);-moz-transform:skew(0deg,0deg);-ms-transform:skew(0deg,0deg);-o-transform:skew(0deg,0deg);transform:skew(0deg,0deg);z-index:-1;opacity:1.0;border-width: 0px ;border-style:solid;border-color:rgba(0, 0, 0, 1.00);border-radius: 0px ;box-shadow: none }
#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner.bg-none:after{background:transparent}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner.bg-color::after{background-color:rgba(251, 212, 167, 1.00)} 
   #stacks_in_219341>.bwd-shear-container.top-margin-auto{margin-top:calc(7.00vw + 0%)}#stacks_in_219341>.bwd-shear-container.top-margin-auto.topCon-con-none{margin-top:0%}#stacks_in_219341>.bwd-shear-container.bot-margin-auto{margin-bottom:calc(4.00vw + 0%)}#stacks_in_219341>.bwd-shear-container.top-margin-auto.botCon-con-none{margin-bottom:0%}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.inner-content.autoPad{padding-bottom:0%;padding-top:0%}   #stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-arrow::after{left:calc(50.00% - 7.00vw);top:calc(2.00px - 7.00vw)}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-arrow::after{left:calc(50.00% - 4.00vw);bottom:calc(2.00px - 4.00vw)}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-shape::after{left:calc(50.00% - 3.50vw);top:calc(2.00px - 3.50vw);border-radius:calc(7.00vw * 1.00) calc(7.00vw * 1.00) 0 0}#stacks_in_219341>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-shape::after{left:calc(50.00% - 2.00vw);bottom:calc(2.00px - 2.00vw);border-radius:0 0 calc(4.00vw * 50.00) calc(4.00vw * 50.00)}

#stacks_in_219341 {
	margin: 10px 37px 20px 33px;
}
/* LinkPlus stack v1.1.4 */#stacks_in_219342 a:link {			color: #EEEE00 !important;		}#stacks_in_219342 a:visited {	color: #508B19 !important;	}#stacks_in_219342 a:hover,#stacks_in_219342 a:focus  {	color: #0000FF !important;	}#stacks_in_219342 a:active  {	color: #00EEEE !important;		}#stacks_in_219342 a:link span,#stacks_in_219342 .com_marathia_stacks_downloadlinkicon_stack a:link:before, /* for DLI */#stacks_in_219342 .com_marathia_stacks_downloadlinkicon_stack a:link:after /* for DLI */ {	color: #79010E !important;	text-decoration: none !important;	cursor: pointer;}#stacks_in_219342 a:visited span,#stacks_in_219342 .com_marathia_stacks_downloadlinkicon_stack a:visited:before, /* for DLI */#stacks_in_219342 .com_marathia_stacks_downloadlinkicon_stack a:visited:after /* for DLI */ {	color: #551A8B !important;}#stacks_in_219342 a:hover span,#stacks_in_219342 a:focus span,#stacks_in_219342 .com_marathia_stacks_downloadlinkicon_stack a:hover:before, /* for DLI */#stacks_in_219342 .com_marathia_stacks_downloadlinkicon_stack a:focus:before, /* for DLI */#stacks_in_219342 .com_marathia_stacks_downloadlinkicon_stack a:hover:after, /* for DLI */#stacks_in_219342 .com_marathia_stacks_downloadlinkicon_stack a:focus:after /* for DLI */ {	color: #A3040F !important;}#stacks_in_219342 a:active span,#stacks_in_219342 .com_marathia_stacks_downloadlinkicon_stack a:active:before, /* for DLI */#stacks_in_219342 .com_marathia_stacks_downloadlinkicon_stack a:active:after /* for DLI */ {	color: #EA574A !important;}/* @group internal link icon *//* @end *//* @group external link icon *//* @end *//* @group email link icon */#stacks_in_219342 a[href^="mailto"] span:after {								content: "";}/* @end *//* End of LinkPlus stack *//* Start Gradient stack CSS code */

#stacks_in_219343{
	/* fix for other stacks tramping over us */
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
	transform:scale(1);
}



	
		#stacks_in_219343::before{
			content:"";
			top:0;
			left:0;
			bottom:0;
			right:0;
			position:absolute;
			
			opacity:1;
			
			/* Old browsers */
			background: rgba(249, 230, 206, 1.00);
			/* FF3.6+ */
			background: -moz-linear-gradient(top,  rgba(249, 230, 206, 1.00) 0%,   rgba(251, 212, 167, 1.00) 100%);
			/* Chrome,Safari4+ */
			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(249, 230, 206, 1.00)),   color-stop(100%,rgba(251, 212, 167, 1.00)));
			/* Chrome10+,Safari5.1+ */
			background: -webkit-linear-gradient(top,  rgba(249, 230, 206, 1.00) 0%,rgba(251, 212, 167, 1.00) 100%);
			/* Opera 11.10+ */
			background: -o-linear-gradient(top,  rgba(249, 230, 206, 1.00) 0%,rgba(251, 212, 167, 1.00) 100%);
			/* IE10+ */
			background: -ms-linear-gradient(top,  rgba(249, 230, 206, 1.00) 0%,rgba(251, 212, 167, 1.00) 100%);
			/* W3C */
			background: linear-gradient(to bottom,  rgba(249, 230, 206, 1.00) 0%,rgba(251, 212, 167, 1.00) 100%);
			/* IE6-9 */
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(249, 230, 206, 1.00)', endColorstr='rgba(251, 212, 167, 1.00)',GradientType=0 );
		}
	
	
	
	
	
	
	
	
	
	
	






/* End Gradient stack CSS code */
#stacks_in_219343 {
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
}
#stacks_in_219344>.s3_row {
	margin: 0 -33px;
}

#stacks_in_219344>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_219344>.s3_row>.s3_column_right {
	width: 50.000000%;
}




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










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



}



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


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


}






#stacks_in_219344 {
	margin: 60px 40px 60px 60px;
}

#stacks_in_219346 {
	display:inline-block; width:100%; line-height: 1.530000em;
	letter-spacing: 1px;
	font-size: 108%;
}

#stacks_in_219349 {
	display:inline-block; width:100%; line-height: 1.530000em;
	letter-spacing: 1px;
	font-size: 108%;
}

/* Preview and publish styling */

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

	


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








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





#stacks_in_220287 .sweet_button_wrapper {
	text-align:center;

	
		height:36px;
	
}

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

	

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

#stacks_in_220287 .sweet_button {
	cursor: pointer;
	display:inline-block;
	margin:0;
	padding:0px 35px;
	text-decoration:none;
	text-align:center;
	color:rgba(0, 0, 0, 1.00);
	border-style:solid;
	border-width:0px;
	border-color:rgba(0, 0, 0, 1.00);
	border-radius:0px;
	background:rgba(147, 180, 232, 1.00);
}
#stacks_in_220287 .sweet_button:visited {
	color:rgba(0, 0, 0, 1.00);
}

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








#stacks_in_220287 .sweet_button:hover {
	color:rgba(0, 0, 0, 1.00);
	background: rgba(167, 200, 252, 1.00);
}
#stacks_in_220287 .sweet_button:active{
	background: rgba(127, 160, 212, 1.00);
}
#stacks_in_220287 .sweet_button.clicked {
	background: rgba(38, 113, 45, 1.00);
	border-color:rgba(0, 0, 0, 1.00);
}
#stacks_in_220287 .sweet_button.clicked:hover {
	background: rgba(58, 133, 65, 1.00);
	border-color:rgba(153, 153, 153, 1.00);
}
#stacks_in_220287 .sweet_button.clicked:active{
	background: rgba(18, 93, 25, 1.00);
}








#stacks_in_220287 {
	margin: 50px 0px 30px 0px;
}

#stacks_in_219355 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	margin: 40px 32px 20px 32px;
}
#stacks_in_219109 .aContainer {
 

}
#stacks_in_219889 { display: none; }
@media screen and (min-width:760px) and (max-width:1023px) { #stacks_in_219889 { display: block; } }#stacks_in_219890 .flexgridwrap
{
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	padding-left: 0px !important;
	padding-right: 0px !important;
	/* Custom CSS ; */
}

#stacks_in_219890 .flexgridtable a
{
 
}
#stacks_in_219890 .flexgridtable a:hover
{
 
}


#stacks_in_219890 .flexgridtable
{
	display: table;
	margin-bottom: 0px !important;
	border-collapse: collapse !important;
	border: none;
 
    margin-left:auto; 
    margin-right:auto;
	 

 
	background: url() repeat 0px 0px;
 

 


	-moz-box-shadow:  0 0 0px #333333;
	-webkit-box-shadow:  0 0 0px #333333;
	box-shadow:  0 0 0px #333333;



 



-webkit-transition: background nos ease-in-out;
-moz-transition: background s ease-in-out;
-ms-transition: background s ease-in-out;
-o-transition: background s ease-in-out;
transition: background s ease-in-out;

 
}

#stacks_in_219890 .flexgridtable:hover
{
 
	-moz-box-shadow:  0 0 0px #333333;
	-webkit-box-shadow:  0 0 0px #333333;
	box-shadow:  0 0 0px #333333;
 
}

#stacks_in_219890 .flexgridtr
{
	vertical-align: top;
	display:  block;
	padding: 0px;
}

#stacks_in_219890 .flexgridtable:hover
{
 
/*Nothing happens here*/
 
}

#stacks_in_219890 .flexgridtd1:hover
{
 
/*Nothing happens here*/

}
#stacks_in_219890 .flexgridtd2:hover
{
 
/*Nothing happens here*/

}
#stacks_in_219890 .flexgridtd3:hover
{
 
/*Nothing happens here*/

}
#stacks_in_219890 .flexgridtd4:hover
{
 
/*Nothing happens here*/

}
#stacks_in_219890 .flexgridtd5:hover
{
 
/*Nothing happens here*/

}
#stacks_in_219890 .flexgridtd6:hover
{
 
/*Nothing happens here*/

}
#stacks_in_219890 .flexgridtd7:hover
{
 
/*Nothing happens here*/

}
#stacks_in_219890 .flexgridtd8:hover
{
 
/*Nothing happens here*/

}
#stacks_in_219890 .flexgridtd9:hover
{
 
/*Nothing happens here*/

}
#stacks_in_219890 .flexgridtd10:hover
{
 
/*Nothing happens here*/

}

#stacks_in_219890 .flexgridtd1
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;


 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 



 



-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_219890 .y1 /*defligra stacks*/
{
	display: block;
 
	width: auto;


 	
	padding: 20px;

	
 
	height: auto;
	overflow: visible;
 
}

#stacks_in_219890 .flexgridtd2
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_219890 .y2 /*defligra stacks*/
{
	display: block;
 
	width: auto;


 	
	padding: 20px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_219890 .flexgridtd3
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_219890 .y3 /*defligra stacks*/
{
	display: block;
 	
	width: 182px;


 	
	padding: 20px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_219890 .flexgridtd4
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_219890 .y4 /*defligra stacks*/
{
	display: block;
 	
	width: 195px;


 	
	padding: 20px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_219890 .flexgridtd5
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_219890 .y5 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;


 	
	padding: 20px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_219890 .flexgridtd6
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_219890 .y6 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;


 	
	padding: 20px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_219890 .flexgridtd7
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_219890 .y7 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;


 	
	padding: 20px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_219890 .flexgridtd8
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_219890 .y8 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;

 
  	
	padding: 20px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_219890 .flexgridtd9
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_219890 .y9 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;

 
 	
	padding: 20px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_219890 .flexgridtd10
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

 
	border-right:  0px solid #333333;
 



 



-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}
#stacks_in_219890 .y10 /*defligra stacks*/
{
	display: block;
 
	width: auto;


 	
	padding: 20px;

 
	height: auto;
	overflow: visible;
 
}


@media screen and (max-width: 800px) {
#stacks_in_219890 .flexgridtable {
	overflow: auto !important;
	display:block;
	padding: 20px !mportant;
}

	#stacks_in_219890 .flexgridtable::-webkit-scrollbar {
	-webkit-apperance: none !important;
	width: 14px;
	height: 14px;
	background-color: #FFFFFF;
}
	#stacks_in_219890 .flexgridtable::-webkit-scrollbar-thumb {
	
	border: 3px solid #FFFFFF;
	background-color: #000000;
}
}










#stacks_in_219891 .flat_button_2_alignment {
  font-size: 17px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_219891 a,
#stacks_in_219891 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 56px;
  line-height: 56px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  

}


#stacks_in_219891 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_219891 a i,
#stacks_in_219891 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 56px;
  height: 56px;
  line-height: 56px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_219891 a,
  #stacks_in_219891 a:visited {
    background-color: rgba(254, 239, 222, 1.00);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_219891 a:hover,
  #stacks_in_219891 a:active {
    background-color: rgba(254, 239, 222, 1.00);
    color: rgba(121, 1, 14, 1.00) !important;
  }

  #stacks_in_219891 a i,
  #stacks_in_219891 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_219891 a:hover i,
  #stacks_in_219891 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }












  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_219891 a,
    #stacks_in_219891 a:visited {
      width: 100%;
    }
  }

  




#stacks_in_219893 .flat_button_2_alignment {
  font-size: 17px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_219893 a,
#stacks_in_219893 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 56px;
  line-height: 56px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  

}


#stacks_in_219893 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_219893 a i,
#stacks_in_219893 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 56px;
  height: 56px;
  line-height: 56px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_219893 a,
  #stacks_in_219893 a:visited {
    background-color: rgba(254, 239, 222, 1.00);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_219893 a:hover,
  #stacks_in_219893 a:active {
    background-color: rgba(254, 239, 222, 1.00);
    color: rgba(121, 1, 14, 1.00) !important;
  }

  #stacks_in_219893 a i,
  #stacks_in_219893 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_219893 a:hover i,
  #stacks_in_219893 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }












  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_219893 a,
    #stacks_in_219893 a:visited {
      width: 100%;
    }
  }

  




#stacks_in_219895 .flat_button_2_alignment {
  font-size: 17px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_219895 a,
#stacks_in_219895 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 56px;
  line-height: 56px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  

}


#stacks_in_219895 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_219895 a i,
#stacks_in_219895 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 56px;
  height: 56px;
  line-height: 56px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_219895 a,
  #stacks_in_219895 a:visited {
    background-color: rgba(254, 239, 222, 1.00);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_219895 a:hover,
  #stacks_in_219895 a:active {
    background-color: rgba(254, 239, 222, 1.00);
    color: rgba(121, 1, 14, 1.00) !important;
  }

  #stacks_in_219895 a i,
  #stacks_in_219895 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_219895 a:hover i,
  #stacks_in_219895 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }












  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_219895 a,
    #stacks_in_219895 a:visited {
      width: 100%;
    }
  }

  




#stacks_in_219897 .flexgridwrap
{
	padding-top: 0px !important;
	padding-bottom: 0px !important;
	padding-left: 0px !important;
	padding-right: 0px !important;
	/* Custom CSS ; */
}

#stacks_in_219897 .flexgridtable a
{
 
}
#stacks_in_219897 .flexgridtable a:hover
{
 
}


#stacks_in_219897 .flexgridtable
{
	display: table;
	margin-bottom: 0px !important;
	border-collapse: collapse !important;
	border: none;
 
    margin-left:auto; 
    margin-right:auto;
	 

 
	background: url() repeat 0px 0px;
 

 


	-moz-box-shadow:  0 0 0px #333333;
	-webkit-box-shadow:  0 0 0px #333333;
	box-shadow:  0 0 0px #333333;



 



-webkit-transition: background nos ease-in-out;
-moz-transition: background s ease-in-out;
-ms-transition: background s ease-in-out;
-o-transition: background s ease-in-out;
transition: background s ease-in-out;

 
}

#stacks_in_219897 .flexgridtable:hover
{
 
	-moz-box-shadow:  0 0 0px #333333;
	-webkit-box-shadow:  0 0 0px #333333;
	box-shadow:  0 0 0px #333333;
 
}

#stacks_in_219897 .flexgridtr
{
	vertical-align: top;
	display:  block;
	padding: 0px;
}

#stacks_in_219897 .flexgridtable:hover
{
 
/*Nothing happens here*/
 
}

#stacks_in_219897 .flexgridtd1:hover
{
 
/*Nothing happens here*/

}
#stacks_in_219897 .flexgridtd2:hover
{
 
/*Nothing happens here*/

}
#stacks_in_219897 .flexgridtd3:hover
{
 
/*Nothing happens here*/

}
#stacks_in_219897 .flexgridtd4:hover
{
 
/*Nothing happens here*/

}
#stacks_in_219897 .flexgridtd5:hover
{
 
/*Nothing happens here*/

}
#stacks_in_219897 .flexgridtd6:hover
{
 
/*Nothing happens here*/

}
#stacks_in_219897 .flexgridtd7:hover
{
 
/*Nothing happens here*/

}
#stacks_in_219897 .flexgridtd8:hover
{
 
/*Nothing happens here*/

}
#stacks_in_219897 .flexgridtd9:hover
{
 
/*Nothing happens here*/

}
#stacks_in_219897 .flexgridtd10:hover
{
 
/*Nothing happens here*/

}

#stacks_in_219897 .flexgridtd1
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;


 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 



 



-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_219897 .y1 /*defligra stacks*/
{
	display: block;
 
	width: auto;


 	
	padding: 20px;

	
 
	height: auto;
	overflow: visible;
 
}

#stacks_in_219897 .flexgridtd2
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_219897 .y2 /*defligra stacks*/
{
	display: block;
 	
	width: 222px;


 	
	padding: 20px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_219897 .flexgridtd3
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_219897 .y3 /*defligra stacks*/
{
	display: block;
 	
	width: 182px;


 	
	padding: 20px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_219897 .flexgridtd4
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_219897 .y4 /*defligra stacks*/
{
	display: block;
 	
	width: 195px;


 	
	padding: 20px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_219897 .flexgridtd5
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_219897 .y5 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;


 	
	padding: 20px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_219897 .flexgridtd6
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_219897 .y6 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;


 	
	padding: 20px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_219897 .flexgridtd7
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_219897 .y7 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;


 	
	padding: 20px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_219897 .flexgridtd8
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_219897 .y8 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;

 
  	
	padding: 20px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_219897 .flexgridtd9
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}

#stacks_in_219897 .y9 /*defligra stacks*/
{
	display: block;
 	
	width: 100px;

 
 	
	padding: 20px;

 
	height: auto;
	overflow: visible;
 
}
#stacks_in_219897 .flexgridtd10
{
	display: table-cell;
	margin-bottom: 0px !important;
	vertical-align: top;
 
	background: url() repeat 0px 0px;
 
/*transition fix firefox/safari/chrome*/


 
	border-top: 0px solid #333333;
 

 
	border-bottom: 0px solid #333333;
 

 
	border-left: 0px solid #333333;
 

 
	border-right: 0px solid #333333;
 

 
	border-right:  0px solid #333333;
 



 



-webkit-transition: background nos ease-in-out;
-moz-transition: background nos ease-in-out;
-ms-transition: background nos ease-in-out;
-o-transition: background nos ease-in-out;
transition: background nos ease-in-out;
}
#stacks_in_219897 .y10 /*defligra stacks*/
{
	display: block;
 
	width: auto;


 	
	padding: 20px;

 
	height: auto;
	overflow: visible;
 
}











#stacks_in_219898 .flat_button_2_alignment {
  font-size: 17px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_219898 a,
#stacks_in_219898 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 56px;
  line-height: 56px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  

}


#stacks_in_219898 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_219898 a i,
#stacks_in_219898 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 56px;
  height: 56px;
  line-height: 56px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_219898 a,
  #stacks_in_219898 a:visited {
    background-color: rgba(254, 239, 222, 1.00);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_219898 a:hover,
  #stacks_in_219898 a:active {
    background-color: rgba(254, 239, 222, 1.00);
    color: rgba(121, 1, 14, 1.00) !important;
  }

  #stacks_in_219898 a i,
  #stacks_in_219898 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_219898 a:hover i,
  #stacks_in_219898 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }












  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_219898 a,
    #stacks_in_219898 a:visited {
      width: 100%;
    }
  }

  




#stacks_in_219900 .flat_button_2_alignment {
  font-size: 17px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_219900 a,
#stacks_in_219900 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 56px;
  line-height: 56px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  

}


#stacks_in_219900 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_219900 a i,
#stacks_in_219900 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 56px;
  height: 56px;
  line-height: 56px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_219900 a,
  #stacks_in_219900 a:visited {
    background-color: rgba(254, 239, 222, 1.00);
    color: rgba(0, 0, 0, 1.00) !important;
  }

  #stacks_in_219900 a:hover,
  #stacks_in_219900 a:active {
    background-color: rgba(254, 239, 222, 1.00);
    color: rgba(121, 1, 14, 1.00) !important;
  }

  #stacks_in_219900 a i,
  #stacks_in_219900 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_219900 a:hover i,
  #stacks_in_219900 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }












  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_219900 a,
    #stacks_in_219900 a:visited {
      width: 100%;
    }
  }

  




@media all {
	
	
	
	
	h1,
	h2,
	
	
	
	
	#uniqueElement, .classElement,
	#fontStackstacks_in_219902 {
		font-family: 'Sanchez', serif;
		font-weight: 200;
		font-style: normal;
		font-size: 112%;
		line-height: 153%;
		letter-spacing: 0px;
		direction: ltr;
	}

	#fontStackstacks_in_219902 {
		color: rgba(255, 255, 255, 1.00);
	}
}
#stacks_in_219903 .y1
{
	display: block;
	overflow: hidden;
	width: 300px;
	height: auto;
}
#stacks_in_219903 .y2
{
	display: block;
	overflow: hidden;
	width: 35px;
	height: auto;
}
#stacks_in_219903 .y3
{
	display: block;
	overflow: hidden;
	width: 450px;
	height: auto;
}

#stacks_in_219903 .wraparoundme
{
	background-image:url();
}

#stacks_in_219903 .wraparoundme
{
	display: block;
	overflow: hidden;
	: #999999;

    zoom: 1;
    filter: alpha(opacity=6);
    opacity: 16;

	-moz-box-shadow: 0 0 0px #000000;
	-webkit-box-shadow: 0 0 0px #000000;
	box-shadow: 0 0 0px #000000;

	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;

	padding: 6px;
	margin: 0px;
}

#stacks_in_219903 .wraparoundme:hover
{
	-moz-box-shadow: 0 0 0px #000000;
	-webkit-box-shadow: 0 0 0px #000000;
	box-shadow: 0 0 0px #000000;
}

#stacks_in_219903 .headerslice
{
	width: 0;height: 0;display: none;
}

#stacks_in_219903 .footerslice
{
	width: 0;height: 0;display: none;
}

#stacks_in_219903 .trhighclass
{
	background-image:url();
}

#stacks_in_219903 .tdhighclass
{
	-moz-box-shadow: 0 0 0px #000000;
	-webkit-box-shadow: 0 0 0px #000000;
	box-shadow: 0 0 0px #000000;

	-webkit-border-radius: 0px;
	-moz-border-radius: 0px;
	border-radius: 0px;
	/*margin: px;*/
}

#stacks_in_219903 .tdhighclass:hover
{
	-moz-box-shadow: 0 0 0px #000000;
	-webkit-box-shadow: 0 0 0px #000000;
	box-shadow: 0 0 0px #000000;
}

#stacks_in_219903 {
	margin: 45px 0px 40px 0px;
}

#stacks_in_219905 {
	margin: 7px 16px 0px 5px;
}

#stacks_in_219906 {
	display:inline-block; width:100%; line-height: 1.110000em;
	letter-spacing: 1px;
	font-size: 97%;
}

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

#stacks_in_219911 {
	margin: 7px 15px 0px 15px;
}

#stacks_in_219912 {
	display:inline-block; width:100%; line-height: 1.110000em;
	letter-spacing: 1px;
	font-size: 97%;
}

#stacks_in_220148 {
	margin: 0px 15px 10px 0px;
}
   #stacks_in_219916>.bwd-shear-container.eq-height>.shear-wrapper{margin-top:0!important}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner .top-edge,#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner .bot-edge{z-index:1}#stacks_in_219916{z-index:1;overflow:visible}#stacks_in_219916>.shear-mag{position:absolute;top:0rem}#stacks_in_219916>.bwd-shear-container>.section-layer{position:absolute;top:0;left:0;right:0;bottom:0;width:100%;height:100%;margin:0;padding:0;z-index:-1}#stacks_in_219916>.bwd-shear-container>.section-layer::after{position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%;content:"";background-color:rgba(0, 0, 0, 0.00)}#stacks_in_219916>.bwd-shear-container>.section-layer.scale-image img{max-height:100%}#stacks_in_219916>.bwd-shear-container>.section-layer.scale-content *{max-height:100%}#stacks_in_219916>.bwd-shear-container>.section-layer .layer-content{height:100%;opacity:1.0}#stacks_in_219916 .shear-inner>.inner-content>.content-wrapper.fill-content{height:100%}@media screen and (min-width: 0 ) and (min-height: 0 ){#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner.full-height{overflow:hidden}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner.full-height>.inner-content.v-center{padding-top:0!important;padding-bottom:0!important}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner.full-height>.inner-content.v-center>.content-wrapper{-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%)}}#stacks_in_219916>.bwd-shear-container.top-margin-none{margin-top:0!important}#stacks_in_219916>.bwd-shear-container.top-margin-prop{margin-top:0.00%}#stacks_in_219916>.bwd-shear-container.top-margin-rem{margin-top:0.00rem}#stacks_in_219916>.bwd-shear-container.bot-margin-none{margin-bottom:0!important}#stacks_in_219916>.bwd-shear-container.bot-margin-prop{margin-bottom:0.00%}#stacks_in_219916>.bwd-shear-container.bot-margin-rem{margin-bottom:0.00rem}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner::after{margin-top:0.00%}#stacks_in_219916>.bwd-shear-container.eq-height{margin-top:0!important}  #stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge{top:0}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge{bottom:0}
#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge,#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge{margin-top:0.00%;min-width:100%;position:absolute;-webkit-transform:skew(0deg,0deg);-moz-transform:skew(0deg,0deg);-ms-transform:skew(0deg,0deg);-o-transform:skew(0deg,0deg);transform:skew(0deg,0deg)}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge::before,#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge::after,#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge::before,#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge::after{position:absolute;content:'';z-index:-1}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-arrow:after,#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-arrow:after{background:0;width:0;height:0;opacity:1.0}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-arrow.color-auto:after{border-color:transparent transparent rgba(251, 212, 167, 1.00) transparent}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-arrow.color-manual:after{border-color:transparent transparent #699DFF transparent}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-arrow:after{-webkit-transform:skew(0deg);-moz-transform:skew(0deg);-ms-transform:skew(0deg);-o-transform:skew(0deg);transform:skew(0deg);border-style:solid;border-width:0 7.00vw 7.00vw 7.00vw}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-shape.color-auto:after{background:rgba(251, 212, 167, 1.00)}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-shape.color-manual:after{background-color:#699DFF}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-shape:after{width:7.00vw;height:3.50vw;opacity:1.0;background-color:rgba(251, 212, 167, 1.00);display:none;display:block}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-arrow.color-auto:after{border-color:rgba(251, 212, 167, 1.00) transparent transparent transparent}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-arrow.color-manual:after{border-color:#699DFF transparent transparent transparent}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-arrow:after{-webkit-transform:skew(0deg);-moz-transform:skew(0deg);-ms-transform:skew(0deg);-o-transform:skew(0deg);transform:skew(0deg);border-style:solid;border-width:4.00vw 4.00vw 0 4.00vw}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-shape.color-auto:after{background-color:rgba(251, 212, 167, 1.00)}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-shape.color-manual:after{background-color:#699DFF}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-shape:after{width:4.00vw;height:2.00vw;opacity:1.0;display:block}  #stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.inner-content.percentPad{padding-top:2.00%;padding-bottom:2.00%}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.inner-content.percentSidePad{padding-left:0.00%;padding-right:0.00%}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.inner-content.remPad{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.inner-content.remSidePad{padding-left:0.00rem;padding-right:0.00rem} #stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner::after{position:absolute;top:0;height:100%;left:0;width:100%;content:"";-webkit-transform:skew(0deg,0deg);-moz-transform:skew(0deg,0deg);-ms-transform:skew(0deg,0deg);-o-transform:skew(0deg,0deg);transform:skew(0deg,0deg);z-index:-1;opacity:1.0;border-width: 0px ;border-style:solid;border-color:rgba(0, 0, 0, 1.00);border-radius: 0px ;box-shadow: none }
#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner.bg-none:after{background:transparent}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner.bg-color::after{background-color:rgba(251, 212, 167, 1.00)} 
   #stacks_in_219916>.bwd-shear-container.top-margin-auto{margin-top:calc(7.00vw + 0%)}#stacks_in_219916>.bwd-shear-container.top-margin-auto.topCon-con-none{margin-top:0%}#stacks_in_219916>.bwd-shear-container.bot-margin-auto{margin-bottom:calc(4.00vw + 0%)}#stacks_in_219916>.bwd-shear-container.top-margin-auto.botCon-con-none{margin-bottom:0%}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.inner-content.autoPad{padding-bottom:0%;padding-top:0%}   #stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-arrow::after{left:calc(50.00% - 7.00vw);top:calc(2.00px - 7.00vw)}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-arrow::after{left:calc(50.00% - 4.00vw);bottom:calc(2.00px - 4.00vw)}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-shape::after{left:calc(50.00% - 3.50vw);top:calc(2.00px - 3.50vw);border-radius:calc(7.00vw * 1.00) calc(7.00vw * 1.00) 0 0}#stacks_in_219916>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-shape::after{left:calc(50.00% - 2.00vw);bottom:calc(2.00px - 2.00vw);border-radius:0 0 calc(4.00vw * 50.00) calc(4.00vw * 50.00)}

#stacks_in_219916 {
	margin: 10px 33px 20px 33px;
}
/* LinkPlus stack v1.1.4 */#stacks_in_219917 a:link {			color: #EEEE00 !important;		}#stacks_in_219917 a:visited {	color: #508B19 !important;	}#stacks_in_219917 a:hover,#stacks_in_219917 a:focus  {	color: #0000FF !important;	}#stacks_in_219917 a:active  {	color: #00EEEE !important;		}#stacks_in_219917 a:link span,#stacks_in_219917 .com_marathia_stacks_downloadlinkicon_stack a:link:before, /* for DLI */#stacks_in_219917 .com_marathia_stacks_downloadlinkicon_stack a:link:after /* for DLI */ {	color: #79010E !important;	text-decoration: none !important;	cursor: pointer;}#stacks_in_219917 a:visited span,#stacks_in_219917 .com_marathia_stacks_downloadlinkicon_stack a:visited:before, /* for DLI */#stacks_in_219917 .com_marathia_stacks_downloadlinkicon_stack a:visited:after /* for DLI */ {	color: #551A8B !important;}#stacks_in_219917 a:hover span,#stacks_in_219917 a:focus span,#stacks_in_219917 .com_marathia_stacks_downloadlinkicon_stack a:hover:before, /* for DLI */#stacks_in_219917 .com_marathia_stacks_downloadlinkicon_stack a:focus:before, /* for DLI */#stacks_in_219917 .com_marathia_stacks_downloadlinkicon_stack a:hover:after, /* for DLI */#stacks_in_219917 .com_marathia_stacks_downloadlinkicon_stack a:focus:after /* for DLI */ {	color: #A3040F !important;}#stacks_in_219917 a:active span,#stacks_in_219917 .com_marathia_stacks_downloadlinkicon_stack a:active:before, /* for DLI */#stacks_in_219917 .com_marathia_stacks_downloadlinkicon_stack a:active:after /* for DLI */ {	color: #EA574A !important;}/* @group internal link icon *//* @end *//* @group external link icon *//* @end *//* @group email link icon */#stacks_in_219917 a[href^="mailto"] span:after {								content: "";}/* @end *//* End of LinkPlus stack *//* Start Gradient stack CSS code */

#stacks_in_219918{
	/* fix for other stacks tramping over us */
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
	transform:scale(1);
}



	
		#stacks_in_219918::before{
			content:"";
			top:0;
			left:0;
			bottom:0;
			right:0;
			position:absolute;
			
			opacity:1;
			
			/* Old browsers */
			background: rgba(249, 230, 206, 1.00);
			/* FF3.6+ */
			background: -moz-linear-gradient(top,  rgba(249, 230, 206, 1.00) 0%,   rgba(251, 212, 167, 1.00) 100%);
			/* Chrome,Safari4+ */
			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(249, 230, 206, 1.00)),   color-stop(100%,rgba(251, 212, 167, 1.00)));
			/* Chrome10+,Safari5.1+ */
			background: -webkit-linear-gradient(top,  rgba(249, 230, 206, 1.00) 0%,rgba(251, 212, 167, 1.00) 100%);
			/* Opera 11.10+ */
			background: -o-linear-gradient(top,  rgba(249, 230, 206, 1.00) 0%,rgba(251, 212, 167, 1.00) 100%);
			/* IE10+ */
			background: -ms-linear-gradient(top,  rgba(249, 230, 206, 1.00) 0%,rgba(251, 212, 167, 1.00) 100%);
			/* W3C */
			background: linear-gradient(to bottom,  rgba(249, 230, 206, 1.00) 0%,rgba(251, 212, 167, 1.00) 100%);
			/* IE6-9 */
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(249, 230, 206, 1.00)', endColorstr='rgba(251, 212, 167, 1.00)',GradientType=0 );
		}
	
	
	
	
	
	
	
	
	
	
	






/* End Gradient stack CSS code */
#stacks_in_219918 {
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
}
#stacks_in_219919>.s3_row {
	margin: 0 -33px;
}

#stacks_in_219919>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_219919>.s3_row>.s3_column_right {
	width: 50.000000%;
}




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










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



}



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


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


}






#stacks_in_219919 {
	margin: 40px 40px 30px 40px;
}

#stacks_in_219920 {
	margin: 25px 0px 0px 0px;
}

#stacks_in_219921 {
	display:inline-block; width:100%; line-height: 1.530000em;
	letter-spacing: 1px;
	font-size: 102%;
}

#stacks_in_219923 {
	margin: 25px 0px 0px 0px;
}

#stacks_in_219924 {
	display:inline-block; width:100%; line-height: 1.530000em;
	letter-spacing: 1px;
	font-size: 102%;
}
#stacks_in_220177 .stacks_in_220177-button {
	text-shadow: none;
	border: none;
	outline: none;
	word-wrap: normal;
	white-space: nowrap;
	overflow: hidden;
	position: relative;
	font-family: "FlatButtonLato", sans-serif;
	font-size: 17px !important;
	-webkit-border-radius: 2px;
	-moz-border-radius: 2px;
	border-radius: 2px;
	display: inline-block;
	-webkit-font-smoothing: subpixel-antialiased;
	text-rendering: optimizeLegibility;
	text-align: center;
}

#stacks_in_220177 .button_text {
	padding: 0 20px 0 20px;
	display: inline-block;
}

#stacks_in_220177 .button_icon {
	display: inline-block;
	font-size: 17px !important;
	
	-webkit-border-top-left-radius: 2px;
	-webkit-border-bottom-left-radius: 2px;
	-moz-border-radius-topleft: 2px;
	-moz-border-radius-bottomleft: 2px;
	border-top-left-radius: 2px;
	border-bottom-left-radius: 2px;
	float: left;
	
	  width: 54px;
	
}

#stacks_in_220177 .stacks_in_220177-button,
#stacks_in_220177 .button_icon {
	
		height: 54px;
		line-height: 54px;
	
}


	#stacks_in_220177 {
		text-align: center;
	}









#stacks_in_220177 a.stacks_in_220177-button, #stacks_in_220177 a.stacks_in_220177-button:visited, #stacks_in_220177 a.stacks_in_220177-button:hover, #stacks_in_220177 a.stacks_in_220177-button:active {
	text-decoration: none;
}


/* Color picker options */
	
	#stacks_in_220177 .stacks_in_220177-button {
		
			background-color: #D9E4FF;
		
	}

	#stacks_in_220177 a.stacks_in_220177-button, #stacks_in_220177 a.stacks_in_220177-button:visited {
		
			color: #000000 !important;
			
	}

	#stacks_in_220177 a.stacks_in_220177-button:hover, #stacks_in_220177 a.stacks_in_220177-button:active {
		
			text-decoration: none;
			color: #000000 !important;
			background-color: #EDF8FF;
		
	}

	
	#stacks_in_220177 .button_icon {
		
			background-color: #1FAC8D;
		
	}

	#stacks_in_220177 a.stacks_in_220177-button:hover .button_icon, #stacks_in_220177 a.stacks_in_220177-button:active .button_icon {
		
			background-color: #33C0A1;
				
	}
	



#stacks_in_220177 {
	margin: 40px 0px 20px 0px;
}

#stacks_in_219929 {
	margin: 35px 33px 10px 33px;
}
#stacks_in_219112 .aContainer {
 

}
#stacks_in_219377 { display: none; }
@media screen and (min-width:300px) and (max-width:759px) { #stacks_in_219377 { display: block; } }/* LinkPlus stack v1.1.4 */#stacks_in_219778 a:link {			color: #EEEE00 !important;		}#stacks_in_219778 a:visited {	color: #508B19 !important;	}#stacks_in_219778 a:hover,#stacks_in_219778 a:focus  {	color: #0000FF !important;	}#stacks_in_219778 a:active  {	color: #00EEEE !important;		}#stacks_in_219778 a:link span,#stacks_in_219778 .com_marathia_stacks_downloadlinkicon_stack a:link:before, /* for DLI */#stacks_in_219778 .com_marathia_stacks_downloadlinkicon_stack a:link:after /* for DLI */ {	color: #000000 !important;	text-decoration: none !important;	cursor: pointer;}#stacks_in_219778 a:visited span,#stacks_in_219778 .com_marathia_stacks_downloadlinkicon_stack a:visited:before, /* for DLI */#stacks_in_219778 .com_marathia_stacks_downloadlinkicon_stack a:visited:after /* for DLI */ {	color: #595959 !important;}#stacks_in_219778 a:hover span,#stacks_in_219778 a:focus span,#stacks_in_219778 .com_marathia_stacks_downloadlinkicon_stack a:hover:before, /* for DLI */#stacks_in_219778 .com_marathia_stacks_downloadlinkicon_stack a:focus:before, /* for DLI */#stacks_in_219778 .com_marathia_stacks_downloadlinkicon_stack a:hover:after, /* for DLI */#stacks_in_219778 .com_marathia_stacks_downloadlinkicon_stack a:focus:after /* for DLI */ {	color: #79010E !important;}#stacks_in_219778 a:active span,#stacks_in_219778 .com_marathia_stacks_downloadlinkicon_stack a:active:before, /* for DLI */#stacks_in_219778 .com_marathia_stacks_downloadlinkicon_stack a:active:after /* for DLI */ {	color: #000000 !important;}/* @group internal link icon *//* @end *//* @group external link icon *//* @end *//* @group email link icon */#stacks_in_219778 a[href^="mailto"] span:after {								content: "";}/* @end *//* End of LinkPlus stack */
#stacks_in_219778 {
	margin: 0px 0px 40px 0px;
}

#stacks_in_219714 {
	background-color: rgba(254, 239, 222, 1.00);
	margin: 30px 15px 10px 15px;
}

#stacks_in_219715 {
	display:inline-block; width:100%; line-height: 1.090000em;
}

#stacks_in_219757 {
	background-color: rgba(254, 239, 222, 1.00);
	margin: 0px 15px 10px 15px;
}

#stacks_in_219758 {
	display:inline-block; width:100%; line-height: 1.090000em;
}

#stacks_in_219755 {
	background-color: rgba(254, 239, 222, 1.00);
	margin: 0px 15px 10px 15px;
}

#stacks_in_219756 {
	display:inline-block; width:100%; line-height: 1.090000em;
}

#stacks_in_219753 {
	background-color: rgba(254, 239, 222, 1.00);
	margin: 0px 15px 10px 15px;
}

#stacks_in_219754 {
	display:inline-block; width:100%; line-height: 1.090000em;
}

#stacks_in_219751 {
	background-color: rgba(254, 239, 222, 1.00);
	margin: 0px 15px 0px 15px;
}

#stacks_in_219752 {
	display:inline-block; width:100%; line-height: 1.090000em;
}
.target.stacks_in_220138{    margin:0px;}.target.stacks_in_220138{}.target.stacks_in_220138.width-fill{width:calc(100% - 0px)}.target.stacks_in_220138.width-flexible{width:100%}.target.stacks_in_220138.width-fixed{width:250px}.target.stacks_in_220138.height-fill{height:calc(100% - 0px)}.target.stacks_in_220138.height-flexible{height:100%}.target.stacks_in_220138.height-fixed{height:250px}.target.stacks_in_220138[class*="relative-"].top-pt{top:46%}.target.stacks_in_220138[class*="relative-"].top-px{top:46px}.target.stacks_in_220138[class*="relative-"].bottom-pt{bottom:46%}.target.stacks_in_220138[class*="relative-"].bottom-px{bottom:46px}.target.stacks_in_220138[class*="relative-"].right-pt{right:20%}.target.stacks_in_220138[class*="relative-"].right-px{right:20px}.target.stacks_in_220138[class*="relative-"].left-pt{left:20%}.target.stacks_in_220138[class*="relative-"].left-px{left:20px}.target.stacks_in_220138.shift-up{margin-top:-0px}.target.stacks_in_220138.shift-down{margin-bottom:-0px}.target.stacks_in_220138.shift-left{right:0px}.target.stacks_in_220138.shift-right{left:0px}.target.stacks_in_220138.pin-top,.target.stacks_in_220138.pin-bottom{left:0px}.target.stacks_in_220138.pin-left,.target.stacks_in_220138.pin-right{top:0px}
   #stacks_in_219128>.bwd-shear-container.eq-height>.shear-wrapper{margin-top:0!important}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner .top-edge,#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner .bot-edge{z-index:1}#stacks_in_219128{z-index:1;overflow:visible}#stacks_in_219128>.shear-mag{position:absolute;top:0rem}#stacks_in_219128>.bwd-shear-container>.section-layer{position:absolute;top:0;left:0;right:0;bottom:0;width:100%;height:100%;margin:0;padding:0;z-index:-1}#stacks_in_219128>.bwd-shear-container>.section-layer::after{position:absolute;top:0;bottom:0;left:0;right:0;width:100%;height:100%;content:"";background-color:rgba(0, 0, 0, 0.00)}#stacks_in_219128>.bwd-shear-container>.section-layer.scale-image img{max-height:100%}#stacks_in_219128>.bwd-shear-container>.section-layer.scale-content *{max-height:100%}#stacks_in_219128>.bwd-shear-container>.section-layer .layer-content{height:100%;opacity:1.0}#stacks_in_219128 .shear-inner>.inner-content>.content-wrapper.fill-content{height:100%}@media screen and (min-width: 0 ) and (min-height: 0 ){#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner.full-height{overflow:hidden}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner.full-height>.inner-content.v-center{padding-top:0!important;padding-bottom:0!important}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner.full-height>.inner-content.v-center>.content-wrapper{-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-ms-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%)}}#stacks_in_219128>.bwd-shear-container.top-margin-none{margin-top:0!important}#stacks_in_219128>.bwd-shear-container.top-margin-prop{margin-top:0.00%}#stacks_in_219128>.bwd-shear-container.top-margin-rem{margin-top:0.00rem}#stacks_in_219128>.bwd-shear-container.bot-margin-none{margin-bottom:0!important}#stacks_in_219128>.bwd-shear-container.bot-margin-prop{margin-bottom:0.00%}#stacks_in_219128>.bwd-shear-container.bot-margin-rem{margin-bottom:0.00rem}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner::after{margin-top:0.00%}#stacks_in_219128>.bwd-shear-container.eq-height{margin-top:0!important}  #stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge{top:0}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge{bottom:0}
#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge,#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge{margin-top:0.00%;min-width:100%;position:absolute;-webkit-transform:skew(0deg,0deg);-moz-transform:skew(0deg,0deg);-ms-transform:skew(0deg,0deg);-o-transform:skew(0deg,0deg);transform:skew(0deg,0deg)}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge::before,#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge::after,#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge::before,#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge::after{position:absolute;content:'';z-index:-1}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-arrow:after,#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-arrow:after{background:0;width:0;height:0;opacity:1.0}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-arrow.color-auto:after{border-color:transparent transparent rgba(251, 212, 167, 1.00) transparent}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-arrow.color-manual:after{border-color:transparent transparent #699DFF transparent}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-arrow:after{-webkit-transform:skew(0deg);-moz-transform:skew(0deg);-ms-transform:skew(0deg);-o-transform:skew(0deg);transform:skew(0deg);border-style:solid;border-width:0 7.00vw 7.00vw 7.00vw}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-shape.color-auto:after{background:rgba(251, 212, 167, 1.00)}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-shape.color-manual:after{background-color:#699DFF}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-shape:after{width:7.00vw;height:3.50vw;opacity:1.0;background-color:rgba(251, 212, 167, 1.00);display:none;display:block}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-arrow.color-auto:after{border-color:rgba(251, 212, 167, 1.00) transparent transparent transparent}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-arrow.color-manual:after{border-color:#699DFF transparent transparent transparent}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-arrow:after{-webkit-transform:skew(0deg);-moz-transform:skew(0deg);-ms-transform:skew(0deg);-o-transform:skew(0deg);transform:skew(0deg);border-style:solid;border-width:4.00vw 4.00vw 0 4.00vw}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-shape.color-auto:after{background-color:rgba(251, 212, 167, 1.00)}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-shape.color-manual:after{background-color:#699DFF}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-shape:after{width:4.00vw;height:2.00vw;opacity:1.0;display:block}  #stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.inner-content.percentPad{padding-top:2.00%;padding-bottom:2.00%}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.inner-content.percentSidePad{padding-left:0.00%;padding-right:0.00%}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.inner-content.remPad{padding-top:0.00rem;padding-bottom:0.00rem}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.inner-content.remSidePad{padding-left:0.00rem;padding-right:0.00rem} #stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner::after{position:absolute;top:0;height:100%;left:0;width:100%;content:"";-webkit-transform:skew(0deg,0deg);-moz-transform:skew(0deg,0deg);-ms-transform:skew(0deg,0deg);-o-transform:skew(0deg,0deg);transform:skew(0deg,0deg);z-index:-1;opacity:1.0;border-width: 0px ;border-style:solid;border-color:rgba(0, 0, 0, 1.00);border-radius: 0px ;box-shadow: none }
#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner.bg-none:after{background:transparent}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner.bg-color::after{background-color:rgba(251, 212, 167, 1.00)} 
   #stacks_in_219128>.bwd-shear-container.top-margin-auto{margin-top:calc(7.00vw + 0%)}#stacks_in_219128>.bwd-shear-container.top-margin-auto.topCon-con-none{margin-top:0%}#stacks_in_219128>.bwd-shear-container.bot-margin-auto{margin-bottom:calc(4.00vw + 0%)}#stacks_in_219128>.bwd-shear-container.top-margin-auto.botCon-con-none{margin-bottom:0%}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.inner-content.autoPad{padding-bottom:0%;padding-top:0%}   #stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-arrow::after{left:calc(50.00% - 7.00vw);top:calc(2.00px - 7.00vw)}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-arrow::after{left:calc(50.00% - 4.00vw);bottom:calc(2.00px - 4.00vw)}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.top-edge.con-shape::after{left:calc(50.00% - 3.50vw);top:calc(2.00px - 3.50vw);border-radius:calc(7.00vw * 1.00) calc(7.00vw * 1.00) 0 0}#stacks_in_219128>.bwd-shear-container>.shear-wrapper>.shear-inner>.bot-edge.con-shape::after{left:calc(50.00% - 2.00vw);bottom:calc(2.00px - 2.00vw);border-radius:0 0 calc(4.00vw * 50.00) calc(4.00vw * 50.00)}

#stacks_in_219128 {
	margin: 10px 15px 20px 15px;
}
/* Start Gradient stack CSS code */

#stacks_in_219129{
	/* fix for other stacks tramping over us */
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
	transform:scale(1);
}



	
		#stacks_in_219129::before{
			content:"";
			top:0;
			left:0;
			bottom:0;
			right:0;
			position:absolute;
			
			opacity:1;
			
			/* Old browsers */
			background: rgba(249, 230, 206, 1.00);
			/* FF3.6+ */
			background: -moz-linear-gradient(top,  rgba(249, 230, 206, 1.00) 0%,   rgba(251, 212, 167, 1.00) 100%);
			/* Chrome,Safari4+ */
			background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(249, 230, 206, 1.00)),   color-stop(100%,rgba(251, 212, 167, 1.00)));
			/* Chrome10+,Safari5.1+ */
			background: -webkit-linear-gradient(top,  rgba(249, 230, 206, 1.00) 0%,rgba(251, 212, 167, 1.00) 100%);
			/* Opera 11.10+ */
			background: -o-linear-gradient(top,  rgba(249, 230, 206, 1.00) 0%,rgba(251, 212, 167, 1.00) 100%);
			/* IE10+ */
			background: -ms-linear-gradient(top,  rgba(249, 230, 206, 1.00) 0%,rgba(251, 212, 167, 1.00) 100%);
			/* W3C */
			background: linear-gradient(to bottom,  rgba(249, 230, 206, 1.00) 0%,rgba(251, 212, 167, 1.00) 100%);
			/* IE6-9 */
			filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='rgba(249, 230, 206, 1.00)', endColorstr='rgba(251, 212, 167, 1.00)',GradientType=0 );
		}
	
	
	
	
	
	
	
	
	
	
	






/* End Gradient stack CSS code */
#stacks_in_219129 {
	-moz-border-radius:  3px;
	-webkit-border-radius:  3px;
	border-radius:  3px;
}
/* LinkPlus stack v1.1.4 */#stacks_in_219167 a:link {			color: #EEEE00 !important;		}#stacks_in_219167 a:visited {	color: #508B19 !important;	}#stacks_in_219167 a:hover,#stacks_in_219167 a:focus  {	color: #0000FF !important;	}#stacks_in_219167 a:active  {	color: #00EEEE !important;		}#stacks_in_219167 a:link span,#stacks_in_219167 .com_marathia_stacks_downloadlinkicon_stack a:link:before, /* for DLI */#stacks_in_219167 .com_marathia_stacks_downloadlinkicon_stack a:link:after /* for DLI */ {	color: #8D030B !important;	text-decoration: none !important;	cursor: pointer;}#stacks_in_219167 a:visited span,#stacks_in_219167 .com_marathia_stacks_downloadlinkicon_stack a:visited:before, /* for DLI */#stacks_in_219167 .com_marathia_stacks_downloadlinkicon_stack a:visited:after /* for DLI */ {	color: #551A8B !important;}#stacks_in_219167 a:hover span,#stacks_in_219167 a:focus span,#stacks_in_219167 .com_marathia_stacks_downloadlinkicon_stack a:hover:before, /* for DLI */#stacks_in_219167 .com_marathia_stacks_downloadlinkicon_stack a:focus:before, /* for DLI */#stacks_in_219167 .com_marathia_stacks_downloadlinkicon_stack a:hover:after, /* for DLI */#stacks_in_219167 .com_marathia_stacks_downloadlinkicon_stack a:focus:after /* for DLI */ {	color: #977253 !important;}#stacks_in_219167 a:active span,#stacks_in_219167 .com_marathia_stacks_downloadlinkicon_stack a:active:before, /* for DLI */#stacks_in_219167 .com_marathia_stacks_downloadlinkicon_stack a:active:after /* for DLI */ {	color: #EE0000 !important;}/* @group internal link icon *//* @end *//* @group external link icon *//* @end *//* @group email link icon */#stacks_in_219167 a[href^="mailto"] span:after {								content: "";}/* @end *//* End of LinkPlus stack */
#stacks_in_219131 {
	margin: 45px 0px 45px 0px;
}

#stacks_in_219132 {
	display:inline-block; width:100%; line-height: 1.530000em;
	letter-spacing: 1px;
	font-size: 98%;
}

	.footerzero{
		position: relative;
		left: 0;
		bottom: 0;
		width: 100%;
		background: #977253;
		
		z-index: 99999;
		opacity:0;
	}
	
	
		.footerzero{
			height: auto;
		} 
	
	
	.show{opacity: 1;}
	.hide{opacity: 0;}
	
	.fzSlideIn{
		bottom: 0;
		opacity: 1;
		-webkit-transition-duration: 0.50s;
		   -moz-transition-duration: 0.50s;
			    transition-duration: 0.50s;
	}
	
	.fzSlideOut{
		bottom: -100px;
		opacity: 0;
		-webkit-transition-duration: 0.50s;
		   -moz-transition-duration: 0.50s;
			    transition-duration: 0.50s;
	}

#stacks_in_219152 {
	background-color: rgba(115, 90, 69, 1.00);
	padding: 50px 20px 0px 20px;
}

#stacks_in_219153 {
	display:inline-block; width:100%; line-height: 0.250000em;
	letter-spacing: 1px;
	font-size: 170%;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_219156Calligrapher{			font-size: 100% !important;			color: #FFFFFF !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.0em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_219156Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_219156Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_219156Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_219156Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_219156Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_219156Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_219156Calligrapher h6, .stacks_in_219156Calligrapher h5, .stacks_in_219156Calligrapher h4, .stacks_in_219156Calligrapher h3, .stacks_in_219156Calligrapher h2, .stacks_in_219156Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_219156Calligrapher, .stacks_in_219156Calligrapher h1, .stacks_in_219156Calligrapher h2, .stacks_in_219156Calligrapher h3, .stacks_in_219156Calligrapher h4, .stacks_in_219156Calligrapher h5, .stacks_in_219156Calligrapher h6{	font-family: "Crimson Text" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_219156targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_219156Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_219156Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_219156Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_219156Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code *//* LinkPlus stack v1.1.4 */#stacks_in_220305 a:link {			color: #FFCC66 !important;		}#stacks_in_220305 a:visited {	color: #FFCC66 !important;	}#stacks_in_220305 a:hover,#stacks_in_220305 a:focus  {	color: #FFCC66 !important;	}#stacks_in_220305 a:active  {	color: #FFCC66 !important;		}#stacks_in_220305 a:link span,#stacks_in_220305 .com_marathia_stacks_downloadlinkicon_stack a:link:before, /* for DLI */#stacks_in_220305 .com_marathia_stacks_downloadlinkicon_stack a:link:after /* for DLI */ {	color: #FFCC66 !important;	text-decoration: none !important;	cursor: pointer;}#stacks_in_220305 a:visited span,#stacks_in_220305 .com_marathia_stacks_downloadlinkicon_stack a:visited:before, /* for DLI */#stacks_in_220305 .com_marathia_stacks_downloadlinkicon_stack a:visited:after /* for DLI */ {	color: #FFCC66 !important;}#stacks_in_220305 a:hover span,#stacks_in_220305 a:focus span,#stacks_in_220305 .com_marathia_stacks_downloadlinkicon_stack a:hover:before, /* for DLI */#stacks_in_220305 .com_marathia_stacks_downloadlinkicon_stack a:focus:before, /* for DLI */#stacks_in_220305 .com_marathia_stacks_downloadlinkicon_stack a:hover:after, /* for DLI */#stacks_in_220305 .com_marathia_stacks_downloadlinkicon_stack a:focus:after /* for DLI */ {	color: #FFCC66 !important;}#stacks_in_220305 a:active span,#stacks_in_220305 .com_marathia_stacks_downloadlinkicon_stack a:active:before, /* for DLI */#stacks_in_220305 .com_marathia_stacks_downloadlinkicon_stack a:active:after /* for DLI */ {	color: #FFCC66 !important;}/* @group internal link icon *//* @end *//* @group external link icon *//* @end *//* @group email link icon */#stacks_in_220305 a[href^="mailto"] span:after {								content: "";}/* @end *//* End of LinkPlus stack */
#stacks_in_219154 {
	background-color: rgba(115, 90, 69, 1.00);
	padding: 0px 20px 40px 20px;
}

#stacks_in_219155 {
	display:inline-block; width:100%; line-height: 1.700000em;
	letter-spacing: 1px;
	font-size: 165%;
}

#stacks_in_220302 {
	background-color: rgba(207, 224, 253, 1.00);
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	padding: 20px 0px 0px 0px;
}

#stacks_in_220304 {
	font-size: 109%;
}
