@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license

Copyright (c) 2013 Daniel Eden

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

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

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

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

@-webkit-keyframes elxr_bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

@keyframes elxr_bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}

.elxr_bounce {
  -webkit-animation-name: elxr_bounce;
  animation-name: elxr_bounce;
}

@-webkit-keyframes elxr_flash {
  0%, 50%, 100% {
    opacity: 1;
  }

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

@keyframes elxr_flash {
  0%, 50%, 100% {
    opacity: 1;
  }

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

.elxr_flash {
  -webkit-animation-name: elxr_flash;
  animation-name: elxr_flash;
}

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

@-webkit-keyframes elxr_pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes elxr_pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.elxr_pulse {
  -webkit-animation-name: elxr_pulse;
  animation-name: elxr_pulse;
}

@-webkit-keyframes elxr_rubberBand {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes elxr_rubberBand {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  30% {
    -webkit-transform: scaleX(1.25) scaleY(0.75);
    -ms-transform: scaleX(1.25) scaleY(0.75);
    transform: scaleX(1.25) scaleY(0.75);
  }

  40% {
    -webkit-transform: scaleX(0.75) scaleY(1.25);
    -ms-transform: scaleX(0.75) scaleY(1.25);
    transform: scaleX(0.75) scaleY(1.25);
  }

  60% {
    -webkit-transform: scaleX(1.15) scaleY(0.85);
    -ms-transform: scaleX(1.15) scaleY(0.85);
    transform: scaleX(1.15) scaleY(0.85);
  }

  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.elxr_rubberBand {
  -webkit-animation-name: elxr_rubberBand;
  animation-name: elxr_rubberBand;
}

@-webkit-keyframes elxr_shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

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

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }
}

@keyframes elxr_shake {
  0%, 100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }
}

.elxr_shake {
  -webkit-animation-name: elxr_shake;
  animation-name: elxr_shake;
}

@-webkit-keyframes elxr_swing {
  20% {
    -webkit-transform: rotate(15deg);
    transform: rotate(15deg);
  }

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

  60% {
    -webkit-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes elxr_swing {
  20% {
    -webkit-transform: rotate(15deg);
    -ms-transform: rotate(15deg);
    transform: rotate(15deg);
  }

  40% {
    -webkit-transform: rotate(-10deg);
    -ms-transform: rotate(-10deg);
    transform: rotate(-10deg);
  }

  60% {
    -webkit-transform: rotate(5deg);
    -ms-transform: rotate(5deg);
    transform: rotate(5deg);
  }

  80% {
    -webkit-transform: rotate(-5deg);
    -ms-transform: rotate(-5deg);
    transform: rotate(-5deg);
  }

  100% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.elxr_swing {
  -webkit-transform-origin: top center;
  -ms-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: elxr_swing;
  animation-name: elxr_swing;
}

@-webkit-keyframes elxr_tada {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

@keyframes elxr_tada {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  10%, 20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
    -ms-transform: scale(0.9) rotate(-3deg);
    transform: scale(0.9) rotate(-3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale(1.1) rotate(3deg);
    -ms-transform: scale(1.1) rotate(3deg);
    transform: scale(1.1) rotate(3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
    -ms-transform: scale(1.1) rotate(-3deg);
    transform: scale(1.1) rotate(-3deg);
  }

  100% {
    -webkit-transform: scale(1) rotate(0);
    -ms-transform: scale(1) rotate(0);
    transform: scale(1) rotate(0);
  }
}

.elxr_tada {
  -webkit-animation-name: elxr_tada;
  animation-name: elxr_tada;
}

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

@-webkit-keyframes elxr_wobble {
  0% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    transform: translateX(0%);
  }
}

@keyframes elxr_wobble {
  0% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }

  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
    -ms-transform: translateX(-25%) rotate(-5deg);
    transform: translateX(-25%) rotate(-5deg);
  }

  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
    -ms-transform: translateX(20%) rotate(3deg);
    transform: translateX(20%) rotate(3deg);
  }

  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
    -ms-transform: translateX(-15%) rotate(-3deg);
    transform: translateX(-15%) rotate(-3deg);
  }

  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
    -ms-transform: translateX(10%) rotate(2deg);
    transform: translateX(10%) rotate(2deg);
  }

  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
    -ms-transform: translateX(-5%) rotate(-1deg);
    transform: translateX(-5%) rotate(-1deg);
  }

  100% {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
  }
}

.elxr_wobble {
  -webkit-animation-name: elxr_wobble;
  animation-name: elxr_wobble;
}

@-webkit-keyframes elxr_bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes elxr_bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    transform: scale(1.05);
  }

  70% {
    -webkit-transform: scale(.9);
    -ms-transform: scale(.9);
    transform: scale(.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

.elxr_bounceIn {
  -webkit-animation-name: elxr_bounceIn;
  animation-name: elxr_bounceIn;
}

@-webkit-keyframes elxr_bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
  }

  80% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_bounceInDown {
  -webkit-animation-name: elxr_bounceInDown;
  animation-name: elxr_bounceInDown;
}

@-webkit-keyframes elxr_bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    transform: translateX(30px);
  }

  80% {
    -webkit-transform: translateX(-10px);
    -ms-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_bounceInLeft {
  -webkit-animation-name: elxr_bounceInLeft;
  animation-name: elxr_bounceInLeft;
}

@-webkit-keyframes elxr_bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }

  80% {
    -webkit-transform: translateX(10px);
    -ms-transform: translateX(10px);
    transform: translateX(10px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_bounceInRight {
  -webkit-animation-name: elxr_bounceInRight;
  animation-name: elxr_bounceInRight;
}

@-webkit-keyframes elxr_bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }

  80% {
    -webkit-transform: translateY(10px);
    -ms-transform: translateY(10px);
    transform: translateY(10px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_bounceInUp {
  -webkit-animation-name: elxr_bounceInUp;
  animation-name: elxr_bounceInUp;
}

@-webkit-keyframes elxr_bounceOut {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }
}

@keyframes elxr_bounceOut {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  25% {
    -webkit-transform: scale(.95);
    -ms-transform: scale(.95);
    transform: scale(.95);
  }

  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }
}

.elxr_bounceOut {
  -webkit-animation-name: elxr_bounceOut;
  animation-name: elxr_bounceOut;
}

@-webkit-keyframes elxr_bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes elxr_bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.elxr_bounceOutDown {
  -webkit-animation-name: elxr_bounceOutDown;
  animation-name: elxr_bounceOutDown;
}

@-webkit-keyframes elxr_bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes elxr_bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.elxr_bounceOutLeft {
  -webkit-animation-name: elxr_bounceOutLeft;
  animation-name: elxr_bounceOutLeft;
}

@-webkit-keyframes elxr_bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes elxr_bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.elxr_bounceOutRight {
  -webkit-animation-name: elxr_bounceOutRight;
  animation-name: elxr_bounceOutRight;
}

@-webkit-keyframes elxr_bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes elxr_bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.elxr_bounceOutUp {
  -webkit-animation-name: elxr_bounceOutUp;
  animation-name: elxr_bounceOutUp;
}

@-webkit-keyframes elxr_fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes elxr_fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.elxr_fadeIn {
  -webkit-animation-name: elxr_fadeIn;
  animation-name: elxr_fadeIn;
}

@-webkit-keyframes elxr_fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_fadeInDown {
  -webkit-animation-name: elxr_fadeInDown;
  animation-name: elxr_fadeInDown;
}

@-webkit-keyframes elxr_fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_fadeInDownBig {
  -webkit-animation-name: elxr_fadeInDownBig;
  animation-name: elxr_fadeInDownBig;
}

@-webkit-keyframes elxr_fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_fadeInLeft {
  -webkit-animation-name: elxr_fadeInLeft;
  animation-name: elxr_fadeInLeft;
}

@-webkit-keyframes elxr_fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_fadeInLeftBig {
  -webkit-animation-name: elxr_fadeInLeftBig;
  animation-name: elxr_fadeInLeftBig;
}

@-webkit-keyframes elxr_fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_fadeInRight {
  -webkit-animation-name: elxr_fadeInRight;
  animation-name: elxr_fadeInRight;
}

@-webkit-keyframes elxr_fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_fadeInRightBig {
  -webkit-animation-name: elxr_fadeInRightBig;
  animation-name: elxr_fadeInRightBig;
}

@-webkit-keyframes elxr_fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_fadeInUp {
  -webkit-animation-name: elxr_fadeInUp;
  animation-name: elxr_fadeInUp;
}

@-webkit-keyframes elxr_fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_fadeInUpBig {
  -webkit-animation-name: elxr_fadeInUpBig;
  animation-name: elxr_fadeInUpBig;
}

@-webkit-keyframes elxr_fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

@keyframes elxr_fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

.elxr_fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}

@-webkit-keyframes elxr_fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}

@keyframes elxr_fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}

.elxr_fadeOutDown {
  -webkit-animation-name: elxr_fadeOutDown;
  animation-name: elxr_fadeOutDown;
}

@-webkit-keyframes elxr_fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes elxr_fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.elxr_fadeOutDownBig {
  -webkit-animation-name: elxr_fadeOutDownBig;
  animation-name: elxr_fadeOutDownBig;
}

@-webkit-keyframes elxr_fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

@keyframes elxr_fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    transform: translateX(-20px);
  }
}

.elxr_fadeOutLeft {
  -webkit-animation-name: elxr_fadeOutLeft;
  animation-name: elxr_fadeOutLeft;
}

@-webkit-keyframes elxr_fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes elxr_fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.elxr_fadeOutLeftBig {
  -webkit-animation-name: elxr_fadeOutLeftBig;
  animation-name: elxr_fadeOutLeftBig;
}

@-webkit-keyframes elxr_fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }
}

@keyframes elxr_fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
}

.elxr_fadeOutRight {
  -webkit-animation-name: elxr_fadeOutRight;
  animation-name: elxr_fadeOutRight;
}

@-webkit-keyframes elxr_fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes elxr_fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.elxr_fadeOutRightBig {
  -webkit-animation-name: elxr_fadeOutRightBig;
  animation-name: elxr_fadeOutRightBig;
}

@-webkit-keyframes elxr_fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

@keyframes elxr_fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

.elxr_fadeOutUp {
  -webkit-animation-name: elxr_fadeOutUp;
  animation-name: elxr_fadeOutUp;
}

@-webkit-keyframes elxr_fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes elxr_fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.elxr_fadeOutUpBig {
  -webkit-animation-name: elxr_fadeOutUpBig;
  animation-name: elxr_fadeOutUpBig;
}

@-webkit-keyframes elxr_flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes elxr_flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -ms-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -ms-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes elxr_flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

@keyframes elxr_flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
    -ms-transform: perspective(400px) rotateX(-10deg);
    transform: perspective(400px) rotateX(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
    -ms-transform: perspective(400px) rotateX(10deg);
    transform: perspective(400px) rotateX(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes elxr_flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
    -ms-transform: perspective(400px) rotateY(-10deg);
    transform: perspective(400px) rotateY(-10deg);
  }

  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
    -ms-transform: perspective(400px) rotateY(10deg);
    transform: perspective(400px) rotateY(10deg);
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

@keyframes elxr_flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    -ms-transform: perspective(400px) rotateX(0deg);
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    -ms-transform: perspective(400px) rotateX(90deg);
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

@keyframes elxr_flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    -ms-transform: perspective(400px) rotateY(0deg);
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    -ms-transform: perspective(400px) rotateY(90deg);
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

@keyframes elxr_lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }

  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    -ms-transform: translateX(-20%) skewX(30deg);
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    -ms-transform: translateX(0%) skewX(-15deg);
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}

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

@-webkit-keyframes elxr_lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

@keyframes elxr_lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    -ms-transform: translateX(0%) skewX(0deg);
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    -ms-transform: translateX(100%) skewX(-30deg);
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes elxr_rotateIn {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    -ms-transform: rotate(-200deg);
    transform: rotate(-200deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.elxr_rotateIn {
  -webkit-animation-name: elxr_rotateIn;
  animation-name: elxr_rotateIn;
}

@-webkit-keyframes elxr_rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.elxr_rotateInDownLeft {
  -webkit-animation-name: elxr_rotateInDownLeft;
  animation-name: elxr_rotateInDownLeft;
}

@-webkit-keyframes elxr_rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.elxr_rotateInDownRight {
  -webkit-animation-name: elxr_rotateInDownRight;
  animation-name: elxr_rotateInDownRight;
}

@-webkit-keyframes elxr_rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.elxr_rotateInUpLeft {
  -webkit-animation-name: elxr_rotateInUpLeft;
  animation-name: elxr_rotateInUpLeft;
}

@-webkit-keyframes elxr_rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

@keyframes elxr_rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }
}

.elxr_rotateInUpRight {
  -webkit-animation-name: elxr_rotateInUpRight;
  animation-name: elxr_rotateInUpRight;
}

@-webkit-keyframes elxr_rotateOut {
  0% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: center center;
    -ms-transform-origin: center center;
    transform-origin: center center;
    -webkit-transform: rotate(200deg);
    -ms-transform: rotate(200deg);
    transform: rotate(200deg);
    opacity: 0;
  }
}

.elxr_rotateOut {
  -webkit-animation-name: elxr_rotateOut;
  animation-name: elxr_rotateOut;
}

@-webkit-keyframes elxr_rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.elxr_rotateOutDownLeft {
  -webkit-animation-name: elxr_rotateOutDownLeft;
  animation-name: elxr_rotateOutDownLeft;
}

@-webkit-keyframes elxr_rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.elxr_rotateOutDownRight {
  -webkit-animation-name: elxr_rotateOutDownRight;
  animation-name: elxr_rotateOutDownRight;
}

@-webkit-keyframes elxr_rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    opacity: 0;
  }
}

.elxr_rotateOutUpLeft {
  -webkit-animation-name: elxr_rotateOutUpLeft;
  animation-name: elxr_rotateOutUpLeft;
}

@-webkit-keyframes elxr_rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

@keyframes elxr_rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
    opacity: 0;
  }
}

.elxr_rotateOutUpRight {
  -webkit-animation-name: elxr_rotateOutUpRight;
  animation-name: elxr_rotateOutUpRight;
}

@-webkit-keyframes elxr_slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_slideInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }

  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_slideInDown {
  -webkit-animation-name: elxr_slideInDown;
  animation-name: elxr_slideInDown;
}

@-webkit-keyframes elxr_slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_slideInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_slideInLeft {
  -webkit-animation-name: elxr_slideInLeft;
  animation-name: elxr_slideInLeft;
}

@-webkit-keyframes elxr_slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes elxr_slideInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }

  100% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}

.elxr_slideInRight {
  -webkit-animation-name: elxr_slideInRight;
  animation-name: elxr_slideInRight;
}

@-webkit-keyframes elxr_slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

@keyframes elxr_slideOutLeft {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
    -ms-transform: translateX(-2000px);
    transform: translateX(-2000px);
  }
}

.elxr_slideOutLeft {
  -webkit-animation-name: elxr_slideOutLeft;
  animation-name: elxr_slideOutLeft;
}

@-webkit-keyframes elxr_slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

@keyframes elxr_slideOutRight {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
    -ms-transform: translateX(2000px);
    transform: translateX(2000px);
  }
}

.elxr_slideOutRight {
  -webkit-animation-name: elxr_slideOutRight;
  animation-name: elxr_slideOutRight;
}

@-webkit-keyframes elxr_slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

@keyframes elxr_slideOutUp {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
    -ms-transform: translateY(-2000px);
    transform: translateY(-2000px);
  }
}

.elxr_slideOutUp {
  -webkit-animation-name: elxr_slideOutUp;
  animation-name: elxr_slideOutUp;
}

@-webkit-keyframes elxr_slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes elxr_slideInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

.elxr_slideInUp {
  -webkit-animation-name: elxr_slideInUp;
  animation-name: elxr_slideInUp;
}

@-webkit-keyframes elxr_slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

@keyframes elxr_slideOutDown {
  0% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
    -ms-transform: translateY(2000px);
    transform: translateY(2000px);
  }
}

.elxr_slideOutDown {
  -webkit-animation-name: elxr_slideOutDown;
  animation-name: elxr_slideOutDown;
}

@-webkit-keyframes elxr_hinge {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

  40% {
    -webkit-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

  100% {
    -webkit-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

@keyframes elxr_hinge {
  0% {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  20%, 60% {
    -webkit-transform: rotate(80deg);
    -ms-transform: rotate(80deg);
    transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  40% {
    -webkit-transform: rotate(60deg);
    -ms-transform: rotate(60deg);
    transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    -ms-transform: rotate(60deg) translateY(0);
    transform: rotate(60deg) translateY(0);
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }

  100% {
    -webkit-transform: translateY(700px);
    -ms-transform: translateY(700px);
    transform: translateY(700px);
    opacity: 0;
  }
}

.elxr_hinge {
  -webkit-animation-name: elxr_hinge;
  animation-name: elxr_hinge;
}

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

@-webkit-keyframes elxr_rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

@keyframes elxr_rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
    -ms-transform: translateX(-100%) rotate(-120deg);
    transform: translateX(-100%) rotate(-120deg);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }
}

.elxr_rollIn {
  -webkit-animation-name: elxr_rollIn;
  animation-name: elxr_rollIn;
}

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

@-webkit-keyframes elxr_rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

@keyframes elxr_rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
    -ms-transform: translateX(0px) rotate(0deg);
    transform: translateX(0px) rotate(0deg);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
    -ms-transform: translateX(100%) rotate(120deg);
    transform: translateX(100%) rotate(120deg);
  }
}

.elxr_rollOut {
  -webkit-animation-name: elxr_rollOut;
  animation-name: elxr_rollOut;
}

@-webkit-keyframes elxr_zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes elxr_zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  50% {
    opacity: 1;
  }
}

.elxr_zoomIn {
  -webkit-animation-name: elxr_zoomIn;
  animation-name: elxr_zoomIn;
}

@-webkit-keyframes elxr_zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.elxr_zoomInDown {
  -webkit-animation-name: elxr_zoomInDown;
  animation-name: elxr_zoomInDown;
}

@-webkit-keyframes elxr_zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(48px);
    -ms-transform: scale(.475) translateX(48px);
    transform: scale(.475) translateX(48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.elxr_zoomInLeft {
  -webkit-animation-name: elxr_zoomInLeft;
  animation-name: elxr_zoomInLeft;
}

@-webkit-keyframes elxr_zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-48px);
    -ms-transform: scale(.475) translateX(-48px);
    transform: scale(.475) translateX(-48px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.elxr_zoomInRight {
  -webkit-animation-name: elxr_zoomInRight;
  animation-name: elxr_zoomInRight;
}

@-webkit-keyframes elxr_zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes elxr_zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

  60% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.elxr_zoomInUp {
  -webkit-animation-name: elxr_zoomInUp;
  animation-name: elxr_zoomInUp;
}

@-webkit-keyframes elxr_zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    transform: scale(.3);
  }

  100% {
    opacity: 0;
  }
}

@keyframes elxr_zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }

  50% {
    opacity: 0;
    -webkit-transform: scale(.3);
    -ms-transform: scale(.3);
    transform: scale(.3);
  }

  100% {
    opacity: 0;
  }
}

.elxr_zoomOut {
  -webkit-animation-name: elxr_zoomOut;
  animation-name: elxr_zoomOut;
}

@-webkit-keyframes elxr_zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

@keyframes elxr_zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(-60px);
    -ms-transform: scale(.475) translateY(-60px);
    transform: scale(.475) translateY(-60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(2000px);
    -ms-transform: scale(.1) translateY(2000px);
    transform: scale(.1) translateY(2000px);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
  }
}

.elxr_zoomOutDown {
  -webkit-animation-name: elxr_zoomOutDown;
  animation-name: elxr_zoomOutDown;
}

@-webkit-keyframes elxr_zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
}

@keyframes elxr_zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(42px);
    -ms-transform: scale(.475) translateX(42px);
    transform: scale(.475) translateX(42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(-2000px);
    -ms-transform: scale(.1) translateX(-2000px);
    transform: scale(.1) translateX(-2000px);
    -webkit-transform-origin: left center;
    -ms-transform-origin: left center;
    transform-origin: left center;
  }
}

.elxr_zoomOutLeft {
  -webkit-animation-name: elxr_zoomOutLeft;
  animation-name: elxr_zoomOutLeft;
}

@-webkit-keyframes elxr_zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
}

@keyframes elxr_zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateX(-42px);
    -ms-transform: scale(.475) translateX(-42px);
    transform: scale(.475) translateX(-42px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateX(2000px);
    -ms-transform: scale(.1) translateX(2000px);
    transform: scale(.1) translateX(2000px);
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
  }
}

.elxr_zoomOutRight {
  -webkit-animation-name: elxr_zoomOutRight;
  animation-name: elxr_zoomOutRight;
}

@-webkit-keyframes elxr_zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    transform-origin: center top;
  }
}

@keyframes elxr_zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale(.475) translateY(60px);
    -ms-transform: scale(.475) translateY(60px);
    transform: scale(.475) translateY(60px);
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
  }

  100% {
    opacity: 0;
    -webkit-transform: scale(.1) translateY(-2000px);
    -ms-transform: scale(.1) translateY(-2000px);
    transform: scale(.1) translateY(-2000px);
    -webkit-transform-origin: center top;
    -ms-transform-origin: center top;
    transform-origin: center top;
  }
}

.elxr_zoomOutUp {
  -webkit-animation-name: elxr_zoomOutUp;
  animation-name: elxr_zoomOutUp;
}



@charset "UTF-8";/*!
Magic - http://minimamente.com
Licensed under the MIT license

Copyright (c) 2014 Christian Pucci

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/
.magictime {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}

.elxr_elxr_perspectiveDownRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveDownRetourn;
  -moz-animation-name: elxr_perspectiveDownRetourn;
  -ms-animation-name: elxr_perspectiveDownRetourn;
  -o-animation-name: elxr_perspectiveDownRetourn;
  animation-name: elxr_perspectiveDownRetourn;
}
.elxr_elxr_perspectiveLeftRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveLeftRetourn;
  -moz-animation-name: elxr_perspectiveLeftRetourn;
  -ms-animation-name: elxr_perspectiveLeftRetourn;
  -o-animation-name: elxr_perspectiveLeftRetourn;
  animation-name: elxr_perspectiveLeftRetourn;
}
.elxr_elxr_perspectiveRightRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveRightRetourn;
  -moz-animation-name: elxr_perspectiveRightRetourn;
  -ms-animation-name: elxr_perspectiveRightRetourn;
  -o-animation-name: elxr_perspectiveRightRetourn;
  animation-name: elxr_perspectiveRightRetourn;
}
.elxr_elxr_perspectiveUpRetourn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: elxr_perspectiveUpRetourn;
  -moz-animation-name: elxr_perspectiveUpRetourn;
  -ms-animation-name: elxr_perspectiveUpRetourn;
  -o-animation-name: elxr_perspectiveUpRetourn;
  animation-name: elxr_perspectiveUpRetourn;
}
.elxr_elxr_puffIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_puffIn;
  -moz-animation-name: elxr_puffIn;
  -ms-animation-name: elxr_puffIn;
  -o-animation-name: elxr_puffIn;
  animation-name: elxr_puffIn;
  -webkit-animation-fill-mode: none;
  -moz-animation-fill-mode: none;
  -ms-animation-fill-mode: none;
  -o-animation-fill-mode: none;
  animation-fill-mode: none;
}
.elxr_elxr_twisterInUp {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_twisterInUp;
  -moz-animation-name: elxr_twisterInUp;
  -ms-animation-name: elxr_twisterInUp;
  -o-animation-name: elxr_twisterInUp;
  animation-name: elxr_twisterInUp;
}
.elxr_elxr_vanishIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_vanishIn;
  -moz-animation-name: elxr_vanishIn;
  -ms-animation-name: elxr_vanishIn;
  -o-animation-name: elxr_vanishIn;
  animation-name: elxr_vanishIn;
}
.elxr_elxr_tinRightIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_tinRightIn;
  -moz-animation-name: elxr_tinRightIn;
  -ms-animation-name: elxr_tinRightIn;
  -o-animation-name: elxr_tinRightIn;
  animation-name: elxr_tinRightIn;
}
.elxr_elxr_tinLeftIn {
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: elxr_tinLeftIn;
  -moz-animation-name: elxr_tinLeftIn;
  -ms-animation-name: elxr_tinLeftIn;
  -o-animation-name: elxr_tinLeftIn;
  animation-name: elxr_tinLeftIn;
}


@-moz-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 100%;
    -moz-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 100%;
    -moz-transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 100%;
    -webkit-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 100%;
    -webkit-transform: perspective(800px) rotateX(0deg);
  }
}
@-o-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 100%;
    -o-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 100%;
    -o-transform: perspective(800px) rotateX(0deg);
  }
}
@-ms-keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 100%;
    -ms-transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 100%;
    -ms-transform: perspective(800px) rotateX(0deg);
  }
}
@keyframes elxr_perspectiveDownRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 100%;
    transform: perspective(800px) rotateX(-180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 100%;
    transform: perspective(800px) rotateX(0deg);
  }
}
@-moz-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateY(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateY(0deg);
  }
}
@-o-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateY(0deg);
  }
}
@-ms-keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateY(0deg);
  }
}
@keyframes elxr_perspectiveLeftRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 0;
    transform: perspective(800px) rotateY(-180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: perspective(800px) rotateY(0deg);
  }
}
@-moz-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 100% 0;
    -moz-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 100% 0;
    -moz-transform: perspective(800px) rotateY(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: perspective(800px) rotateY(0deg);
  }
}
@-o-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 100% 0;
    -o-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 100% 0;
    -o-transform: perspective(800px) rotateY(0deg);
  }
}
@-ms-keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 100% 0;
    -ms-transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 100% 0;
    -ms-transform: perspective(800px) rotateY(0deg);
  }
}
@keyframes elxr_perspectiveRightRetourn {
  0% {
    opacity: 0;
    transform-origin: 100% 0;
    transform: perspective(800px) rotateY(180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 100% 0;
    transform: perspective(800px) rotateY(0deg);
  }
}
@-moz-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: perspective(800px) rotateX(0deg);
  }
}
@-o-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: perspective(800px) rotateX(0deg);
  }
}
@-ms-keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    -ms-transform-origin: 0 0;
    -ms-transform: perspective(800px) rotateX(0deg);
  }
}
@keyframes elxr_perspectiveUpRetourn {
  0% {
    opacity: 0;
    transform-origin: 0 0;
    transform: perspective(800px) rotateX(180deg);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: perspective(800px) rotateX(0deg);
  }
}
@-webkit-keyframes elxr_puffIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(2,2);
    -webkit-filter: blur(2px);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(1,1);
    -webkit-filter: blur(0px);
  }
}
@keyframes elxr_puffIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2,2);
    filter: blur(2px);
  }

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1,1);
    filter: blur(0px);
  }
}
@-moz-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -moz-transform-origin: 100% 0;
    -moz-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -moz-transform-origin: 100% 0;
    -moz-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 0 0;
    -moz-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-webkit-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -webkit-transform-origin: 100% 0;
    -webkit-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -webkit-transform-origin: 100% 0;
    -webkit-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 0 0;
    -webkit-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-o-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    -o-transform-origin: 100% 0;
    -o-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    -o-transform-origin: 100% 0;
    -o-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 0 0;
    -o-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-ms-keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform-origin: 100% 0;
    -ms-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {;
    -ms-transform-origin: 100% 0;
    -ms-transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform-origin: 0 0;
    -ms-transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@keyframes elxr_twisterInUp {
  0% {
    opacity: 0;
    transform-origin: 100% 0;
    transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  30% {
    transform-origin: 100% 0;
    transform: scale(0, 0) rotate(360deg) translateY(100%);
  }

  100% {
    opacity: 1;
    transform-origin: 0 0;
    transform: scale(1, 1) rotate(0deg) translateY(0);
  }
}
@-moz-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-webkit-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -webkit-transform-origin: 50% 50%;
    -webkit-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-o-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    -o-transform-origin: 50% 50%;
    -o-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    -o-transform-origin: 50% 50%;
    -o-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-ms-keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform-origin: 50% 50%;
    -ms-transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform-origin: 50% 50%;
    -ms-transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@keyframes elxr_vanishIn {
  0% {
    opacity: 0;
    transform-origin: 50% 50%;
    transform: scale(2, 2);
    -webkit-filter: blur(90px);
  }

  100% {
    opacity: 1;
    transform-origin: 50% 50%;
    transform: scale(1, 1);
    -webkit-filter: blur(0px);
  }
}
@-moz-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -moz-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -moz-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -moz-transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -webkit-transform: scale(1, 1) translateX(0);
  }
}
@-o-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    -o-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -o-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -o-transform: scale(1, 1) translateX(0);
  }
}
@-ms-keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1, 1) translateX(0);
  }
}
@keyframes elxr_tinRightIn {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateX(900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
}
@-moz-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -moz-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -moz-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -moz-transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -webkit-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -webkit-transform: scale(1, 1) translateX(0);
  }
}
@-o-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    -o-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    -o-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    -o-transform: scale(1, 1) translateX(0);
  }
}
@-ms-keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform: scale(1, 1) translateX(0);
  }
}
@keyframes elxr_tinLeftIn {
  0% {
    opacity: 0;
    transform: scale(1, 1) translateX(-900%);
  }

  50%, 70%, 90% {
    opacity: 1;
    transform: scale(1.1, 1.1) translateX(0);
  }

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
}
@-webkit-keyframes animatedJackBackgroundtoTop{from{background-position:0 0}to{background-position:0% -500%}}@keyframes animatedJackBackgroundtoTop{from{background-position:0 0}to{background-position:0% -500%}}@-webkit-keyframes animatedJackBackgroundtoBottom{from{background-position:0 0}to{background-position:0% 500%}}@keyframes animatedJackBackgroundtoBottom{from{background-position:0 0}to{background-position:0% 500%}}@-webkit-keyframes animatedJackBackgroundtoRight{from{background-position:0 0}to{background-position:500% 0%}}@keyframes animatedJackBackgroundtoRight{from{background-position:0 0}to{background-position:500% 0%}}@-webkit-keyframes animatedJackBackgroundtoLeft{from{background-position:0 0}to{background-position:-500% 0%}}@keyframes animatedJackBackgroundtoLeft{from{background-position:0 0}to{background-position:-500% 0%}}@-webkit-keyframes animatedJackBackgroundtoBottomRight{from{background-position:0 0}to{background-position:500% 500%}}@keyframes animatedJackBackgroundtoBottomRight{from{background-position:0 0}to{background-position:500% 500%}}@-webkit-keyframes animatedJackBackgroundtoTopRight{from{background-position:0 0}to{background-position:500% -500%}}@keyframes animatedJackBackgroundtoTopRight{from{background-position:0 0}to{background-position:500% -500%}}@-webkit-keyframes animatedJackBackgroundtoTopLeft{from{background-position:0 0}to{background-position:-500% -500%}}@keyframes animatedJackBackgroundtoTopLeft{from{background-position:0 0}to{background-position:-500% -500%}}@-webkit-keyframes animatedJackBackgroundtoBottomLeft{from{background-position:0 0}to{background-position:-500% 500%}}@keyframes animatedJackBackgroundtoBottomLeft{from{background-position:0 0}to{background-position:-500% 500%}}.com_joeworkman_stacks_jack4_stack > .jack{margin:0;padding:0;border:0;background:none;background-color:transparent;position:relative;display:block;width:100%;-webkit-box-sizing:border-box;box-sizing:border-box}.com_joeworkman_stacks_jack4_stack > .jack.align-center{margin-left:auto !important;margin-right:auto !important}.com_joeworkman_stacks_jack4_stack > .jack.align-right{margin-left:auto !important}.com_joeworkman_stacks_jack4_stack > .jack.align-left{margin-right:auto !important}.com_joeworkman_stacks_jack4_stack > .jack.touch-device{background-attachment:scroll !important}.com_joeworkman_stacks_jack4_stack > .jack.bg-image{background-size:auto}.com_joeworkman_stacks_jack4_stack > .jack.bg-image.glass{z-index:1}.com_joeworkman_stacks_jack4_stack > .jack.bg-image.glass::after{background-size:auto;content:"";top:0;left:0;bottom:0;right:0;height:100%;position:absolute;z-index:-1}.com_joeworkman_stacks_jack4_stack > .jack.bg-image.bg-size-cover,.com_joeworkman_stacks_jack4_stack > .jack.bg-image.bg-size-cover.glass::after{background-size:cover}.com_joeworkman_stacks_jack4_stack > .jack.bg-image.bg-size-contain,.com_joeworkman_stacks_jack4_stack > .jack.bg-image.bg-size-contain.glass::after{background-size:contain}.com_joeworkman_stacks_jack4_stack > .jack.bg-image.bg-size-fill,.com_joeworkman_stacks_jack4_stack > .jack.bg-image.bg-size-fill.glass::after{background-size:100% 100%}.com_joeworkman_stacks_jack4_stack > .jack.corner-shadow::before,.com_joeworkman_stacks_jack4_stack > .jack.corner-shadow::after,.com_joeworkman_stacks_jack4_stack > .jack.peek-shadow::before,.com_joeworkman_stacks_jack4_stack > .jack.peek-shadow::after{z-index:-1;position:absolute;content:"";height:auto;background-color:transparent}.com_joeworkman_stacks_jack4_stack > .jack.corner-shadow::before,.com_joeworkman_stacks_jack4_stack > .jack.corner-shadow::after{width:50%;top:50%}.com_joeworkman_stacks_jack4_stack > .jack.scroll-x{overflow-x:auto !important;white-space:nowrap;-webkit-overflow-scrolling:touch}.com_joeworkman_stacks_jack4_stack > .jack.scroll-x > .stacks_out{display:inline-block;white-space:nowrap}.com_joeworkman_stacks_jack4_stack > .jack.scroll-y{overflow-y:auto !important;-webkit-overflow-scrolling:touch}
#stacks_in_31149{padding-left:0px;padding-right:0px;}#stacks_in_31149 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31149 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31149 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31149 > .jack.width-static{width:500px}#stacks_in_31149 > .jack.width-flexible{width:100%}#stacks_in_31149 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31149 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31149 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31149 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31149 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31149 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31149 > .jack::after{border-radius:0px}#stacks_in_31149 > .jack.border-detailed-radius,#stacks_in_31149 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31149 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31149 > .jack.bg-color{background-color:#89C5FF}#stacks_in_31149 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_31149 > .jack.bg-image:not(.glass){background-image:url(../thai_verstehen_files/bgImage-31149.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_31149 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31149 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31149 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_3_col.jpg)}#stacks_in_31149 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31149 > .jack.bg-image:not(.glass){}#stacks_in_31149 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31149 > .jack.bg-image.glass.after,#stacks_in_31149 > .glass.jack.bg-image::after{opacity:0.70;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url(../thai_verstehen_files/bgImage-31149.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_31149 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31149 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31149 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31149 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31149 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31149 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31149 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31149 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_3_col.jpg)}#stacks_in_31149 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31149 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31149 > .jack.bg-image.glass.after,#stacks_in_31149 > .glass.jack.bg-image::after{}#stacks_in_31149 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31149 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31149 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_31149 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_31149 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_31149 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31149 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31149 > .jack.peek-shadow::before,#stacks_in_31149 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_31149 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31149 > .jack{overflow:hidden;}#stacks_in_31149 > .jack.height-static{height:40px}#stacks_in_31149 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_31149 {
	margin: 25px 0px 25px 0px;
}
#stacks_in_31151{}#stacks_in_31151 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31151 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31151 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31151 > .jack.width-static{width:500px}#stacks_in_31151 > .jack.width-flexible{width:100%}#stacks_in_31151 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31151 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31151 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31151 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31151 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31151 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31151 > .jack::after{border-radius:15px}#stacks_in_31151 > .jack.border-detailed-radius,#stacks_in_31151 > .jack.border-detailed-radius::after{border-radius:15.00px 15.00px 0.00px 0.00px}#stacks_in_31151 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31151 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31151 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_31151 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31151 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31151 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31151 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31151 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31151 > .jack.bg-image:not(.glass){}#stacks_in_31151 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31151 > .jack.bg-image.glass.after,#stacks_in_31151 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31151 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31151 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31151 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31151 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31151 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31151 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31151 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31151 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31151 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31151 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31151 > .jack.bg-image.glass.after,#stacks_in_31151 > .glass.jack.bg-image::after{}#stacks_in_31151 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31151 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31151 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_31151 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31151 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31151 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31151 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31151 > .jack.peek-shadow::before,#stacks_in_31151 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_31151 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31151 > .jack{overflow:hidden;}#stacks_in_31151 > .jack.height-static{height:100px}#stacks_in_31151 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31152Calligrapher{			font-size: 120% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31152Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31152Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31152Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31152Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31152Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31152Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31152Calligrapher h6, .stacks_in_31152Calligrapher h5, .stacks_in_31152Calligrapher h4, .stacks_in_31152Calligrapher h3, .stacks_in_31152Calligrapher h2, .stacks_in_31152Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31152Calligrapher, .stacks_in_31152Calligrapher h1, .stacks_in_31152Calligrapher h2, .stacks_in_31152Calligrapher h3, .stacks_in_31152Calligrapher h4, .stacks_in_31152Calligrapher h5, .stacks_in_31152Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31152Calligrapher, .stacks_in_31152Calligrapher h1, .stacks_in_31152Calligrapher h2, .stacks_in_31152Calligrapher h3, .stacks_in_31152Calligrapher h4, .stacks_in_31152Calligrapher h5, .stacks_in_31152Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31152targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31152Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31152Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31152Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31152Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_31153x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31153x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31153x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31153 {
	margin: 25px 0px 25px 0px;
}

#stacks_in_31154 {
	font-weight: lighter;
}
#stacks_in_31234{}#stacks_in_31234 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31234 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31234 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31234 > .jack.width-static{width:500px}#stacks_in_31234 > .jack.width-flexible{width:100%}#stacks_in_31234 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31234 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31234 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31234 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31234 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31234 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31234 > .jack::after{border-radius:15px}#stacks_in_31234 > .jack.border-detailed-radius,#stacks_in_31234 > .jack.border-detailed-radius::after{border-radius:15.00px 15.00px 0.00px 0.00px}#stacks_in_31234 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31234 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31234 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_31234 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31234 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31234 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31234 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31234 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31234 > .jack.bg-image:not(.glass){}#stacks_in_31234 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31234 > .jack.bg-image.glass.after,#stacks_in_31234 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31234 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31234 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31234 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31234 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31234 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31234 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31234 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31234 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31234 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31234 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31234 > .jack.bg-image.glass.after,#stacks_in_31234 > .glass.jack.bg-image::after{}#stacks_in_31234 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31234 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31234 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_31234 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31234 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31234 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31234 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31234 > .jack.peek-shadow::before,#stacks_in_31234 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_31234 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31234 > .jack{overflow:hidden;}#stacks_in_31234 > .jack.height-static{height:100px}#stacks_in_31234 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31235Calligrapher{			font-size: 90% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31235Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31235Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31235Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31235Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31235Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31235Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31235Calligrapher h6, .stacks_in_31235Calligrapher h5, .stacks_in_31235Calligrapher h4, .stacks_in_31235Calligrapher h3, .stacks_in_31235Calligrapher h2, .stacks_in_31235Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31235Calligrapher, .stacks_in_31235Calligrapher h1, .stacks_in_31235Calligrapher h2, .stacks_in_31235Calligrapher h3, .stacks_in_31235Calligrapher h4, .stacks_in_31235Calligrapher h5, .stacks_in_31235Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31235Calligrapher, .stacks_in_31235Calligrapher h1, .stacks_in_31235Calligrapher h2, .stacks_in_31235Calligrapher h3, .stacks_in_31235Calligrapher h4, .stacks_in_31235Calligrapher h5, .stacks_in_31235Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31235targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31235Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31235Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31235Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31235Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_31229x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31229x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31229x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31229 {
	margin: 25px 0px 25px 0px;
}

#stacks_in_31230 {
	font-weight: lighter;
}
#stacks_in_31157{padding-left:0px;padding-right:0px;}#stacks_in_31157 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31157 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31157 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31157 > .jack.width-static{width:500px}#stacks_in_31157 > .jack.width-flexible{width:100%}#stacks_in_31157 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31157 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31157 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31157 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31157 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31157 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31157 > .jack::after{border-radius:0px}#stacks_in_31157 > .jack.border-detailed-radius,#stacks_in_31157 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31157 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31157 > .jack.bg-color{background-color:#89C5FF}#stacks_in_31157 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_31157 > .jack.bg-image:not(.glass){background-image:url(../thai_verstehen_files/bgImage-31157.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_31157 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31157 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31157 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_3_col.jpg)}#stacks_in_31157 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31157 > .jack.bg-image:not(.glass){}#stacks_in_31157 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31157 > .jack.bg-image.glass.after,#stacks_in_31157 > .glass.jack.bg-image::after{opacity:0.70;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url(../thai_verstehen_files/bgImage-31157.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_31157 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31157 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31157 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31157 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31157 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31157 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31157 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31157 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_3_col.jpg)}#stacks_in_31157 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31157 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31157 > .jack.bg-image.glass.after,#stacks_in_31157 > .glass.jack.bg-image::after{}#stacks_in_31157 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31157 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31157 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_31157 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_31157 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_31157 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31157 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31157 > .jack.peek-shadow::before,#stacks_in_31157 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_31157 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31157 > .jack{overflow:hidden;}#stacks_in_31157 > .jack.height-static{height:25px}#stacks_in_31157 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_31157 {
	margin: 20px 0px 20px 0px;
}
#stacks_in_3165 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_3165 .jwresp_col{float:none} #stacks_in_3165 #jwresp_col3_stacks_in_3165{float:right;width:32%}#stacks_in_3165 #jwresp_col1_stacks_in_3165,#stacks_in_3165 #jwresp_col2_stacks_in_3165{width:32%;float:left}#stacks_in_3165 #jwresp_col1_stacks_in_3165{margin-right:1%}#stacks_in_3165 #jwresp_col2_stacks_in_3165{margin-left:1%} @media screen and (max-width:770px){#stacks_in_3165 #jwresp_col1_stacks_in_3165,#stacks_in_3165 #jwresp_col2_stacks_in_3165{margin:0;margin-bottom:20px}#stacks_in_3165 #jwresp_col1_stacks_in_3165{width:49%}#stacks_in_3165 #jwresp_col2_stacks_in_3165{float:right;width:49%}#stacks_in_3165 #jwresp_col3_stacks_in_3165{float:none;clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_3165 #jwresp_col1_stacks_in_3165,#stacks_in_3165 #jwresp_col3_stacks_in_3165,#stacks_in_3165 #jwresp_col2_stacks_in_3165{float:none;width:100%;display:block}#stacks_in_3165 #jwresp_col1_stacks_in_3165,#stacks_in_3165 #jwresp_col2_stacks_in_3165{margin-bottom:20px}} 
#stacks_in_1214 *,
#stacks_in_1214 *:before,
#stacks_in_1214 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_3685{}#stacks_in_3685 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_3685 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_3685 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_3685 > .jack.width-static{width:500px}#stacks_in_3685 > .jack.width-flexible{width:100%}#stacks_in_3685 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_3685 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_3685 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_3685 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_3685 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_3685 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_3685 > .jack::after{border-radius:15px}#stacks_in_3685 > .jack.border-detailed-radius,#stacks_in_3685 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_3685 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_3685 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_3685 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_3685 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_3685 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_3685 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_3685 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_3685 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_3685 > .jack.bg-image:not(.glass){}#stacks_in_3685 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_3685 > .jack.bg-image.glass.after,#stacks_in_3685 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_3685 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_3685 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_3685 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_3685 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_3685 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_3685 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_3685 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_3685 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_3685 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_3685 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_3685 > .jack.bg-image.glass.after,#stacks_in_3685 > .glass.jack.bg-image::after{}#stacks_in_3685 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_3685 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_3685 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_3685 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_3685 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_3685 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_3685 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_3685 > .jack.peek-shadow::before,#stacks_in_3685 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_3685 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_3685 > .jack{overflow:hidden;}#stacks_in_3685 > .jack.height-static{height:650px}#stacks_in_3685 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31163Calligrapher{			font-size: 110% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31163Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31163Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31163Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31163Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31163Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31163Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31163Calligrapher h6, .stacks_in_31163Calligrapher h5, .stacks_in_31163Calligrapher h4, .stacks_in_31163Calligrapher h3, .stacks_in_31163Calligrapher h2, .stacks_in_31163Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31163Calligrapher, .stacks_in_31163Calligrapher h1, .stacks_in_31163Calligrapher h2, .stacks_in_31163Calligrapher h3, .stacks_in_31163Calligrapher h4, .stacks_in_31163Calligrapher h5, .stacks_in_31163Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31163Calligrapher, .stacks_in_31163Calligrapher h1, .stacks_in_31163Calligrapher h2, .stacks_in_31163Calligrapher h3, .stacks_in_31163Calligrapher h4, .stacks_in_31163Calligrapher h5, .stacks_in_31163Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31163targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31163Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31163Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31163Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31163Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31163 {
	margin: 15px 25px 25px 25px;
}
/* Start dooHeader X stack CSS code */.stacks_in_31165x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31165x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31165x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31165 {
	margin: 15px 0px 0px 0px;
}

#stacks_in_31164 {
	font-weight: lighter;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_31187 a:before, .link_effect1stacks_in_31187 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #532A77 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_31187 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_31187 a:hover:before, .link_effect1stacks_in_31187 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_31187 a   {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_31187 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_31187 .link_effect2stacks_in_31187 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_31187 .link_effect2stacks_in_31187 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_31187 .link_effect3stacks_in_31187 {
  	text-decoration: none;
}

#stacks_in_31187 .link_effect3stacks_in_31187 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_31187 .link_effect3stacks_in_31187 a:hover,
#stacks_in_31187 .link_effect3stacks_in_31187 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_31187 .link_effect4stacks_in_31187 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31187 .link_effect4stacks_in_31187 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31187 .link_effect4stacks_in_31187 a::before,
#stacks_in_31187 .link_effect%stacks_in_31187 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31187 .link_effect4stacks_in_31187 {
}

#stacks_in_31187 .link_effect4stacks_in_31187 a {
	font-weight:bold !important;;
}

#stacks_in_31187 .link_effect4stacks_in_31187 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_31187 .link_effect4stacks_in_31187 a:hover::before,
#stacks_in_31187 .link_effect4stacks_in_31187 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_31187 .link_effect5stacks_in_31187 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31187 .link_effect5stacks_in_31187 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31187 .link_effect5stacks_in_31187 a::before,
#stacks_in_31187 .link_effect5stacks_in_31187 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31187 .link_effect5stacks_in_31187 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_31187 .link_effect5stacks_in_31187 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_31187 .link_effect5stacks_in_31187 a:hover::before,
#stacks_in_31187 .link_effect5stacks_in_31187 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_31187 .link_effect6stacks_in_31187 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31187 .link_effect6stacks_in_31187 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31187 .link_effect6stacks_in_31187 a::before,
#stacks_in_31187 .link_effect6stacks_in_31187 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31187 .link_effect6stacks_in_31187 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_31187 .link_effect6stacks_in_31187 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_31187 .link_effect6stacks_in_31187 a:hover::before,
#stacks_in_31187 .link_effect6stacks_in_31187 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_31187 .link_effect7stacks_in_31187 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31187 .link_effect7stacks_in_31187 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31187 .link_effect7stacks_in_31187 a::before,
#stacks_in_31187 .link_effect7stacks_in_31187 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31187 .link_effect7stacks_in_31187 {
	position: relative;
}

#stacks_in_31187 .link_effect7stacks_in_31187 a {
	vertical-align: bottom;
	font-weight:bold !important;;
}


#stacks_in_31187 .link_effect7stacks_in_31187 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_31187 .link_effect7stacks_in_31187 a:hover::before,
#stacks_in_31187 .link_effect7stacks_in_31187 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_31187 .link_effect8stacks_in_31187 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31187 .link_effect8stacks_in_31187 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31187 .link_effect8stacks_in_31187 a::before,
#stacks_in_31187 .link_effect8stacks_in_31187 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_31187 .link_effect8stacks_in_31187 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_31187 .link_effect8stacks_in_31187 a:hover,
#stacks_in_31187 .link_effect8stacks_in_31187 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31187 .link_effect8stacks_in_31187 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_31187 .link_effect8stacks_in_31187 a:hover::before,
#stacks_in_31187 .link_effect8stacks_in_31187 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_31187 .link_effect9stacks_in_31187 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31187 .link_effect9stacks_in_31187 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31187 .link_effect9stacks_in_31187 a::before,
#stacks_in_31187 .link_effect9stacks_in_31187 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31187 .link_effect9stacks_in_31187 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_31187 .link_effect9stacks_in_31187 a:hover,
#stacks_in_31187 .link_effect9stacks_in_31187 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31187 .link_effect9stacks_in_31187 a::before,
#stacks_in_31187 .link_effect9stacks_in_31187 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_31187 .link_effect9stacks_in_31187 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_31187 .link_effect9stacks_in_31187 a:hover::before,
#stacks_in_31187 .link_effect9stacks_in_31187 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_31187 .link_effect9stacks_in_31187 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_31187 .link_effect10stacks_in_31187 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31187 .link_effect10stacks_in_31187 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31187 .link_effect10stacks_in_31187 a::before,
#stacks_in_31187 .link_effect10stacks_in_31187 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31187 .link_effect10stacks_in_31187 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_31187 .link_effect10stacks_in_31187 a:hover,
#stacks_in_31187 .link_effect10stacks_in_31187 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_31187 .link_effect10stacks_in_31187 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_31187 .link_effect10stacks_in_31187 a:hover::before,
#stacks_in_31187 .link_effect10stacks_in_31187 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_31187 .link_effect11stacks_in_31187 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31187 .link_effect11stacks_in_31187 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31187 .link_effect11stacks_in_31187 a::before,
#stacks_in_31187 .link_effect11stacks_in_31187 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31187 .link_effect11stacks_in_31187 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_31187 .link_effect11stacks_in_31187 a:hover,
#stacks_in_31187 .link_effect11stacks_in_31187 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31187 .link_effect11stacks_in_31187 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_31187 .link_effect11stacks_in_31187 a:hover::before,
#stacks_in_31187 .link_effect11stacks_in_31187 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_31187 .link_effect12stacks_in_31187 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31187 .link_effect12stacks_in_31187 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31187 .link_effect12stacks_in_31187 a::before,
#stacks_in_31187 .link_effect12stacks_in_31187 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31187 .link_effect12stacks_in_31187 a {
	overflow: hidden;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_31187 .link_effect12stacks_in_31187 a:hover,
#stacks_in_31187 .link_effect12stacks_in_31187 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_31187 .link_effect12stacks_in_31187 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_31187 .link_effect12stacks_in_31187 a,
#stacks_in_31187 .link_effect12stacks_in_31187 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_31187 .link_effect12stacks_in_31187 a:hover::before,
#stacks_in_31187 .link_effect12stacks_in_31187 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_31187 .link_effect13stacks_in_31187 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31187 .link_effect13stacks_in_31187 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31187 .link_effect13stacks_in_31187 a::before,
#stacks_in_31187 .link_effect13stacks_in_31187 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31187 .link_effect13stacks_in_31187 {
}

#stacks_in_31187 .link_effect13stacks_in_31187 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
}

#stacks_in_31187 .link_effect13stacks_in_31187 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../thai_verstehen_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:bold !important;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_31187 .link_effect13stacks_in_31187 a:hover::before,
#stacks_in_31187 .link_effect13stacks_in_31187 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_31187 .link_effect14stacks_in_31187 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31187 .link_effect14stacks_in_31187 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31187 .link_effect14stacks_in_31187 a::before,
#stacks_in_31187 .link_effect14stacks_in_31187 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31187 .link_effect14stacks_in_31187 a {
	padding: 0 0.25em;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_31187 .link_effect14stacks_in_31187 a:hover,
#stacks_in_31187 .link_effect14stacks_in_31187 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_31187 .link_effect14stacks_in_31187 a::before,
#stacks_in_31187 .link_effect14stacks_in_31187 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_31187 .link_effect14stacks_in_31187 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_31187 .link_effect14stacks_in_31187 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../thai_verstehen_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_31187 .link_effect14stacks_in_31187 a:hover::after,
#stacks_in_31187 .link_effect14stacks_in_31187 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_31187 .link_effect15stacks_in_31187 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31187 .link_effect15stacks_in_31187 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31187 .link_effect15stacks_in_31187 a::before,
#stacks_in_31187 .link_effect15stacks_in_31187 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31187 .link_effect15stacks_in_31187 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_31187 .link_effect15stacks_in_31187 a::before,
#stacks_in_31187 .link_effect15stacks_in_31187 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_31187 .link_effect15stacks_in_31187 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_31187 .link_effect15stacks_in_31187 a:hover::before,
#stacks_in_31187 .link_effect15stacks_in_31187 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_31187 .link_effect15stacks_in_31187 a:hover::before,
#stacks_in_31187 .link_effect15stacks_in_31187 a:focus::before,
#stacks_in_31187 .link_effect15stacks_in_31187 a:hover::after,
#stacks_in_31187 .link_effect15stacks_in_31187 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_31187 .link_effect15stacks_in_31187 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_31187 .link_effect15stacks_in_31187 a:hover::after,
#stacks_in_31187 .link_effect15stacks_in_31187 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_31187 .link_effect16stacks_in_31187 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31187 .link_effect16stacks_in_31187 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31187 .link_effect16stacks_in_31187 a::before,
#stacks_in_31187 .link_effect16stacks_in_31187 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31187 .link_effect16stacks_in_31187 a {
	padding: 0 0.35em;
	font-weight:bold !important;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_31187 .link_effect16stacks_in_31187 a:hover {
	color: #d04c3f;
}

#stacks_in_31187 .link_effect16stacks_in_31187 a::before,
#stacks_in_31187 .link_effect16stacks_in_31187 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_31187 .link_effect16stacks_in_31187 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_31187 .link_effect16stacks_in_31187 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_31187 .link_effect16stacks_in_31187 a:hover::before,
#stacks_in_31187 .link_effect16stacks_in_31187 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_31187 .link_effect17stacks_in_31187 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	text-decoration: none;
}

#stacks_in_31187 .link_effect17stacks_in_31187 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #532A77 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_31187 .link_effect17stacks_in_31187 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_31187 .link_effect18stacks_in_31187 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31187 .link_effect18stacks_in_31187 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31187 .link_effect18stacks_in_31187 a::before,
#stacks_in_31187 .link_effect18stacks_in_31187 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31187 .link_effect18stacks_in_31187 {
}

#stacks_in_31187 .link_effect18stacks_in_31187 a {
	padding: 0 ;
	color: #532A77;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_31187 .link_effect18stacks_in_31187 a::before,
#stacks_in_31187 .link_effect18stacks_in_31187 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #532A77;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_31187 .link_effect18stacks_in_31187 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_31187 .link_effect18stacks_in_31187 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_31187 .link_effect18stacks_in_31187 a:hover,
#stacks_in_31187 .link_effect18stacks_in_31187 a:focus {
	color: #fff;
}

#stacks_in_31187 .link_effect18stacks_in_31187 a:hover::before,
#stacks_in_31187 .link_effect18stacks_in_31187 a:focus::before,
#stacks_in_31187 .link_effect18stacks_in_31187 a:hover::after,
#stacks_in_31187 .link_effect18stacks_in_31187 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_31187 .link_effect19stacks_in_31187 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31187 .link_effect19stacks_in_31187 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31187 .link_effect19stacks_in_31187 a::before,
#stacks_in_31187 .link_effect19stacks_in_31187 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_31187 a {
}

.link_effect19stacks_in_31187 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_31187 a:hover::after,
.link_effect19stacks_in_31187 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_31187 .link_effect20stacks_in_31187 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31187 .link_effect20stacks_in_31187 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31187 .link_effect20stacks_in_31187 a::before,
#stacks_in_31187 .link_effect20stacks_in_31187 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_31187 a {
}

.link_effect20stacks_in_31187 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_31187 a:hover::after,
.link_effect20stacks_in_31187 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31189Calligrapher{			font-size: 110% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31189Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31189Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31189Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31189Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31189Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31189Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31189Calligrapher h6, .stacks_in_31189Calligrapher h5, .stacks_in_31189Calligrapher h4, .stacks_in_31189Calligrapher h3, .stacks_in_31189Calligrapher h2, .stacks_in_31189Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31189Calligrapher, .stacks_in_31189Calligrapher h1, .stacks_in_31189Calligrapher h2, .stacks_in_31189Calligrapher h3, .stacks_in_31189Calligrapher h4, .stacks_in_31189Calligrapher h5, .stacks_in_31189Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31189Calligrapher, .stacks_in_31189Calligrapher h1, .stacks_in_31189Calligrapher h2, .stacks_in_31189Calligrapher h3, .stacks_in_31189Calligrapher h4, .stacks_in_31189Calligrapher h5, .stacks_in_31189Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31189targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31189Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31189Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31189Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31189Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31189 {
	margin: 0px 25px 15px 25px;
}

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

#stacks_in_4273 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_1216 *,
#stacks_in_1216 *:before,
#stacks_in_1216 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_1196{}#stacks_in_1196 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_1196 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_1196 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_1196 > .jack.width-static{width:500px}#stacks_in_1196 > .jack.width-flexible{width:100%}#stacks_in_1196 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_1196 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_1196 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_1196 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_1196 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_1196 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_1196 > .jack::after{border-radius:15px}#stacks_in_1196 > .jack.border-detailed-radius,#stacks_in_1196 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_1196 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_1196 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_1196 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_1196 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_1196 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_1196 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_1196 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_1196 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_1196 > .jack.bg-image:not(.glass){}#stacks_in_1196 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_1196 > .jack.bg-image.glass.after,#stacks_in_1196 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_1196 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_1196 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_1196 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_1196 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_1196 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_1196 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_1196 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_1196 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_1196 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_1196 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_1196 > .jack.bg-image.glass.after,#stacks_in_1196 > .glass.jack.bg-image::after{}#stacks_in_1196 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_1196 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_1196 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_1196 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_1196 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_1196 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_1196 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_1196 > .jack.peek-shadow::before,#stacks_in_1196 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_1196 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_1196 > .jack{overflow:hidden;}#stacks_in_1196 > .jack.height-static{height:650px}#stacks_in_1196 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31167Calligrapher{			font-size: 110% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31167Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31167Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31167Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31167Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31167Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31167Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31167Calligrapher h6, .stacks_in_31167Calligrapher h5, .stacks_in_31167Calligrapher h4, .stacks_in_31167Calligrapher h3, .stacks_in_31167Calligrapher h2, .stacks_in_31167Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31167Calligrapher, .stacks_in_31167Calligrapher h1, .stacks_in_31167Calligrapher h2, .stacks_in_31167Calligrapher h3, .stacks_in_31167Calligrapher h4, .stacks_in_31167Calligrapher h5, .stacks_in_31167Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31167Calligrapher, .stacks_in_31167Calligrapher h1, .stacks_in_31167Calligrapher h2, .stacks_in_31167Calligrapher h3, .stacks_in_31167Calligrapher h4, .stacks_in_31167Calligrapher h5, .stacks_in_31167Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31167targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31167Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31167Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31167Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31167Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31167 {
	margin: 15px 25px 25px 25px;
}
/* Start dooHeader X stack CSS code */.stacks_in_31169x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31169x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31169x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31169 {
	margin: 15px 0px 0px 0px;
}

#stacks_in_31168 {
	font-weight: lighter;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_31201 a:before, .link_effect1stacks_in_31201 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #532A77 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_31201 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_31201 a:hover:before, .link_effect1stacks_in_31201 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_31201 a   {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_31201 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_31201 .link_effect2stacks_in_31201 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_31201 .link_effect2stacks_in_31201 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_31201 .link_effect3stacks_in_31201 {
  	text-decoration: none;
}

#stacks_in_31201 .link_effect3stacks_in_31201 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_31201 .link_effect3stacks_in_31201 a:hover,
#stacks_in_31201 .link_effect3stacks_in_31201 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_31201 .link_effect4stacks_in_31201 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31201 .link_effect4stacks_in_31201 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31201 .link_effect4stacks_in_31201 a::before,
#stacks_in_31201 .link_effect%stacks_in_31201 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31201 .link_effect4stacks_in_31201 {
}

#stacks_in_31201 .link_effect4stacks_in_31201 a {
	font-weight:bold !important;;
}

#stacks_in_31201 .link_effect4stacks_in_31201 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_31201 .link_effect4stacks_in_31201 a:hover::before,
#stacks_in_31201 .link_effect4stacks_in_31201 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_31201 .link_effect5stacks_in_31201 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31201 .link_effect5stacks_in_31201 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31201 .link_effect5stacks_in_31201 a::before,
#stacks_in_31201 .link_effect5stacks_in_31201 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31201 .link_effect5stacks_in_31201 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_31201 .link_effect5stacks_in_31201 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_31201 .link_effect5stacks_in_31201 a:hover::before,
#stacks_in_31201 .link_effect5stacks_in_31201 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_31201 .link_effect6stacks_in_31201 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31201 .link_effect6stacks_in_31201 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31201 .link_effect6stacks_in_31201 a::before,
#stacks_in_31201 .link_effect6stacks_in_31201 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31201 .link_effect6stacks_in_31201 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_31201 .link_effect6stacks_in_31201 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_31201 .link_effect6stacks_in_31201 a:hover::before,
#stacks_in_31201 .link_effect6stacks_in_31201 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_31201 .link_effect7stacks_in_31201 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31201 .link_effect7stacks_in_31201 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31201 .link_effect7stacks_in_31201 a::before,
#stacks_in_31201 .link_effect7stacks_in_31201 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31201 .link_effect7stacks_in_31201 {
	position: relative;
}

#stacks_in_31201 .link_effect7stacks_in_31201 a {
	vertical-align: bottom;
	font-weight:bold !important;;
}


#stacks_in_31201 .link_effect7stacks_in_31201 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_31201 .link_effect7stacks_in_31201 a:hover::before,
#stacks_in_31201 .link_effect7stacks_in_31201 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_31201 .link_effect8stacks_in_31201 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31201 .link_effect8stacks_in_31201 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31201 .link_effect8stacks_in_31201 a::before,
#stacks_in_31201 .link_effect8stacks_in_31201 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_31201 .link_effect8stacks_in_31201 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_31201 .link_effect8stacks_in_31201 a:hover,
#stacks_in_31201 .link_effect8stacks_in_31201 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31201 .link_effect8stacks_in_31201 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_31201 .link_effect8stacks_in_31201 a:hover::before,
#stacks_in_31201 .link_effect8stacks_in_31201 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_31201 .link_effect9stacks_in_31201 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31201 .link_effect9stacks_in_31201 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31201 .link_effect9stacks_in_31201 a::before,
#stacks_in_31201 .link_effect9stacks_in_31201 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31201 .link_effect9stacks_in_31201 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_31201 .link_effect9stacks_in_31201 a:hover,
#stacks_in_31201 .link_effect9stacks_in_31201 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31201 .link_effect9stacks_in_31201 a::before,
#stacks_in_31201 .link_effect9stacks_in_31201 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_31201 .link_effect9stacks_in_31201 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_31201 .link_effect9stacks_in_31201 a:hover::before,
#stacks_in_31201 .link_effect9stacks_in_31201 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_31201 .link_effect9stacks_in_31201 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_31201 .link_effect10stacks_in_31201 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31201 .link_effect10stacks_in_31201 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31201 .link_effect10stacks_in_31201 a::before,
#stacks_in_31201 .link_effect10stacks_in_31201 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31201 .link_effect10stacks_in_31201 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_31201 .link_effect10stacks_in_31201 a:hover,
#stacks_in_31201 .link_effect10stacks_in_31201 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_31201 .link_effect10stacks_in_31201 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_31201 .link_effect10stacks_in_31201 a:hover::before,
#stacks_in_31201 .link_effect10stacks_in_31201 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_31201 .link_effect11stacks_in_31201 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31201 .link_effect11stacks_in_31201 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31201 .link_effect11stacks_in_31201 a::before,
#stacks_in_31201 .link_effect11stacks_in_31201 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31201 .link_effect11stacks_in_31201 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_31201 .link_effect11stacks_in_31201 a:hover,
#stacks_in_31201 .link_effect11stacks_in_31201 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31201 .link_effect11stacks_in_31201 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_31201 .link_effect11stacks_in_31201 a:hover::before,
#stacks_in_31201 .link_effect11stacks_in_31201 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_31201 .link_effect12stacks_in_31201 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31201 .link_effect12stacks_in_31201 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31201 .link_effect12stacks_in_31201 a::before,
#stacks_in_31201 .link_effect12stacks_in_31201 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31201 .link_effect12stacks_in_31201 a {
	overflow: hidden;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_31201 .link_effect12stacks_in_31201 a:hover,
#stacks_in_31201 .link_effect12stacks_in_31201 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_31201 .link_effect12stacks_in_31201 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_31201 .link_effect12stacks_in_31201 a,
#stacks_in_31201 .link_effect12stacks_in_31201 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_31201 .link_effect12stacks_in_31201 a:hover::before,
#stacks_in_31201 .link_effect12stacks_in_31201 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_31201 .link_effect13stacks_in_31201 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31201 .link_effect13stacks_in_31201 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31201 .link_effect13stacks_in_31201 a::before,
#stacks_in_31201 .link_effect13stacks_in_31201 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31201 .link_effect13stacks_in_31201 {
}

#stacks_in_31201 .link_effect13stacks_in_31201 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
}

#stacks_in_31201 .link_effect13stacks_in_31201 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../thai_verstehen_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:bold !important;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_31201 .link_effect13stacks_in_31201 a:hover::before,
#stacks_in_31201 .link_effect13stacks_in_31201 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_31201 .link_effect14stacks_in_31201 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31201 .link_effect14stacks_in_31201 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31201 .link_effect14stacks_in_31201 a::before,
#stacks_in_31201 .link_effect14stacks_in_31201 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31201 .link_effect14stacks_in_31201 a {
	padding: 0 0.25em;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_31201 .link_effect14stacks_in_31201 a:hover,
#stacks_in_31201 .link_effect14stacks_in_31201 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_31201 .link_effect14stacks_in_31201 a::before,
#stacks_in_31201 .link_effect14stacks_in_31201 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_31201 .link_effect14stacks_in_31201 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_31201 .link_effect14stacks_in_31201 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../thai_verstehen_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_31201 .link_effect14stacks_in_31201 a:hover::after,
#stacks_in_31201 .link_effect14stacks_in_31201 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_31201 .link_effect15stacks_in_31201 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31201 .link_effect15stacks_in_31201 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31201 .link_effect15stacks_in_31201 a::before,
#stacks_in_31201 .link_effect15stacks_in_31201 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31201 .link_effect15stacks_in_31201 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_31201 .link_effect15stacks_in_31201 a::before,
#stacks_in_31201 .link_effect15stacks_in_31201 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_31201 .link_effect15stacks_in_31201 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_31201 .link_effect15stacks_in_31201 a:hover::before,
#stacks_in_31201 .link_effect15stacks_in_31201 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_31201 .link_effect15stacks_in_31201 a:hover::before,
#stacks_in_31201 .link_effect15stacks_in_31201 a:focus::before,
#stacks_in_31201 .link_effect15stacks_in_31201 a:hover::after,
#stacks_in_31201 .link_effect15stacks_in_31201 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_31201 .link_effect15stacks_in_31201 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_31201 .link_effect15stacks_in_31201 a:hover::after,
#stacks_in_31201 .link_effect15stacks_in_31201 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_31201 .link_effect16stacks_in_31201 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31201 .link_effect16stacks_in_31201 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31201 .link_effect16stacks_in_31201 a::before,
#stacks_in_31201 .link_effect16stacks_in_31201 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31201 .link_effect16stacks_in_31201 a {
	padding: 0 0.35em;
	font-weight:bold !important;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_31201 .link_effect16stacks_in_31201 a:hover {
	color: #d04c3f;
}

#stacks_in_31201 .link_effect16stacks_in_31201 a::before,
#stacks_in_31201 .link_effect16stacks_in_31201 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_31201 .link_effect16stacks_in_31201 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_31201 .link_effect16stacks_in_31201 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_31201 .link_effect16stacks_in_31201 a:hover::before,
#stacks_in_31201 .link_effect16stacks_in_31201 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_31201 .link_effect17stacks_in_31201 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	text-decoration: none;
}

#stacks_in_31201 .link_effect17stacks_in_31201 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #532A77 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_31201 .link_effect17stacks_in_31201 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_31201 .link_effect18stacks_in_31201 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31201 .link_effect18stacks_in_31201 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31201 .link_effect18stacks_in_31201 a::before,
#stacks_in_31201 .link_effect18stacks_in_31201 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31201 .link_effect18stacks_in_31201 {
}

#stacks_in_31201 .link_effect18stacks_in_31201 a {
	padding: 0 ;
	color: #532A77;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_31201 .link_effect18stacks_in_31201 a::before,
#stacks_in_31201 .link_effect18stacks_in_31201 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #532A77;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_31201 .link_effect18stacks_in_31201 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_31201 .link_effect18stacks_in_31201 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_31201 .link_effect18stacks_in_31201 a:hover,
#stacks_in_31201 .link_effect18stacks_in_31201 a:focus {
	color: #fff;
}

#stacks_in_31201 .link_effect18stacks_in_31201 a:hover::before,
#stacks_in_31201 .link_effect18stacks_in_31201 a:focus::before,
#stacks_in_31201 .link_effect18stacks_in_31201 a:hover::after,
#stacks_in_31201 .link_effect18stacks_in_31201 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_31201 .link_effect19stacks_in_31201 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31201 .link_effect19stacks_in_31201 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31201 .link_effect19stacks_in_31201 a::before,
#stacks_in_31201 .link_effect19stacks_in_31201 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_31201 a {
}

.link_effect19stacks_in_31201 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_31201 a:hover::after,
.link_effect19stacks_in_31201 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_31201 .link_effect20stacks_in_31201 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31201 .link_effect20stacks_in_31201 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31201 .link_effect20stacks_in_31201 a::before,
#stacks_in_31201 .link_effect20stacks_in_31201 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_31201 a {
}

.link_effect20stacks_in_31201 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_31201 a:hover::after,
.link_effect20stacks_in_31201 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31193Calligrapher{			font-size: 110% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31193Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31193Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31193Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31193Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31193Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31193Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31193Calligrapher h6, .stacks_in_31193Calligrapher h5, .stacks_in_31193Calligrapher h4, .stacks_in_31193Calligrapher h3, .stacks_in_31193Calligrapher h2, .stacks_in_31193Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31193Calligrapher, .stacks_in_31193Calligrapher h1, .stacks_in_31193Calligrapher h2, .stacks_in_31193Calligrapher h3, .stacks_in_31193Calligrapher h4, .stacks_in_31193Calligrapher h5, .stacks_in_31193Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31193Calligrapher, .stacks_in_31193Calligrapher h1, .stacks_in_31193Calligrapher h2, .stacks_in_31193Calligrapher h3, .stacks_in_31193Calligrapher h4, .stacks_in_31193Calligrapher h5, .stacks_in_31193Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31193targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31193Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31193Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31193Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31193Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31193 {
	margin: 0px 25px 15px 25px;
}

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

#stacks_in_3170 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_1236 *,
#stacks_in_1236 *:before,
#stacks_in_1236 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_1238{}#stacks_in_1238 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_1238 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_1238 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_1238 > .jack.width-static{width:500px}#stacks_in_1238 > .jack.width-flexible{width:100%}#stacks_in_1238 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_1238 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_1238 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_1238 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_1238 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_1238 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_1238 > .jack::after{border-radius:15px}#stacks_in_1238 > .jack.border-detailed-radius,#stacks_in_1238 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_1238 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_1238 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_1238 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_1238 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_1238 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_1238 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_1238 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_1238 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_1238 > .jack.bg-image:not(.glass){}#stacks_in_1238 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_1238 > .jack.bg-image.glass.after,#stacks_in_1238 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_1238 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_1238 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_1238 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_1238 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_1238 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_1238 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_1238 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_1238 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_1238 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_1238 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_1238 > .jack.bg-image.glass.after,#stacks_in_1238 > .glass.jack.bg-image::after{}#stacks_in_1238 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_1238 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_1238 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_1238 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_1238 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_1238 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_1238 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_1238 > .jack.peek-shadow::before,#stacks_in_1238 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_1238 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_1238 > .jack{overflow:hidden;}#stacks_in_1238 > .jack.height-static{height:650px}#stacks_in_1238 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31208Calligrapher{			font-size: 110% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31208Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31208Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31208Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31208Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31208Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31208Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31208Calligrapher h6, .stacks_in_31208Calligrapher h5, .stacks_in_31208Calligrapher h4, .stacks_in_31208Calligrapher h3, .stacks_in_31208Calligrapher h2, .stacks_in_31208Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31208Calligrapher, .stacks_in_31208Calligrapher h1, .stacks_in_31208Calligrapher h2, .stacks_in_31208Calligrapher h3, .stacks_in_31208Calligrapher h4, .stacks_in_31208Calligrapher h5, .stacks_in_31208Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31208Calligrapher, .stacks_in_31208Calligrapher h1, .stacks_in_31208Calligrapher h2, .stacks_in_31208Calligrapher h3, .stacks_in_31208Calligrapher h4, .stacks_in_31208Calligrapher h5, .stacks_in_31208Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31208targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31208Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31208Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31208Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31208Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31208 {
	margin: 15px 25px 25px 25px;
}
/* Start dooHeader X stack CSS code */.stacks_in_31209x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31209x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31209x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31209 {
	margin: 15px 0px 0px 0px;
}

#stacks_in_31210 {
	font-weight: lighter;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_31203 a:before, .link_effect1stacks_in_31203 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #532A77 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_31203 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_31203 a:hover:before, .link_effect1stacks_in_31203 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_31203 a   {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_31203 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_31203 .link_effect2stacks_in_31203 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_31203 .link_effect2stacks_in_31203 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_31203 .link_effect3stacks_in_31203 {
  	text-decoration: none;
}

#stacks_in_31203 .link_effect3stacks_in_31203 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_31203 .link_effect3stacks_in_31203 a:hover,
#stacks_in_31203 .link_effect3stacks_in_31203 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_31203 .link_effect4stacks_in_31203 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31203 .link_effect4stacks_in_31203 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31203 .link_effect4stacks_in_31203 a::before,
#stacks_in_31203 .link_effect%stacks_in_31203 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31203 .link_effect4stacks_in_31203 {
}

#stacks_in_31203 .link_effect4stacks_in_31203 a {
	font-weight:bold !important;;
}

#stacks_in_31203 .link_effect4stacks_in_31203 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_31203 .link_effect4stacks_in_31203 a:hover::before,
#stacks_in_31203 .link_effect4stacks_in_31203 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_31203 .link_effect5stacks_in_31203 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31203 .link_effect5stacks_in_31203 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31203 .link_effect5stacks_in_31203 a::before,
#stacks_in_31203 .link_effect5stacks_in_31203 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31203 .link_effect5stacks_in_31203 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_31203 .link_effect5stacks_in_31203 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_31203 .link_effect5stacks_in_31203 a:hover::before,
#stacks_in_31203 .link_effect5stacks_in_31203 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_31203 .link_effect6stacks_in_31203 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31203 .link_effect6stacks_in_31203 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31203 .link_effect6stacks_in_31203 a::before,
#stacks_in_31203 .link_effect6stacks_in_31203 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31203 .link_effect6stacks_in_31203 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_31203 .link_effect6stacks_in_31203 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_31203 .link_effect6stacks_in_31203 a:hover::before,
#stacks_in_31203 .link_effect6stacks_in_31203 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_31203 .link_effect7stacks_in_31203 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31203 .link_effect7stacks_in_31203 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31203 .link_effect7stacks_in_31203 a::before,
#stacks_in_31203 .link_effect7stacks_in_31203 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31203 .link_effect7stacks_in_31203 {
	position: relative;
}

#stacks_in_31203 .link_effect7stacks_in_31203 a {
	vertical-align: bottom;
	font-weight:bold !important;;
}


#stacks_in_31203 .link_effect7stacks_in_31203 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_31203 .link_effect7stacks_in_31203 a:hover::before,
#stacks_in_31203 .link_effect7stacks_in_31203 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_31203 .link_effect8stacks_in_31203 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31203 .link_effect8stacks_in_31203 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31203 .link_effect8stacks_in_31203 a::before,
#stacks_in_31203 .link_effect8stacks_in_31203 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_31203 .link_effect8stacks_in_31203 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_31203 .link_effect8stacks_in_31203 a:hover,
#stacks_in_31203 .link_effect8stacks_in_31203 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31203 .link_effect8stacks_in_31203 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_31203 .link_effect8stacks_in_31203 a:hover::before,
#stacks_in_31203 .link_effect8stacks_in_31203 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_31203 .link_effect9stacks_in_31203 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31203 .link_effect9stacks_in_31203 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31203 .link_effect9stacks_in_31203 a::before,
#stacks_in_31203 .link_effect9stacks_in_31203 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31203 .link_effect9stacks_in_31203 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_31203 .link_effect9stacks_in_31203 a:hover,
#stacks_in_31203 .link_effect9stacks_in_31203 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31203 .link_effect9stacks_in_31203 a::before,
#stacks_in_31203 .link_effect9stacks_in_31203 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_31203 .link_effect9stacks_in_31203 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_31203 .link_effect9stacks_in_31203 a:hover::before,
#stacks_in_31203 .link_effect9stacks_in_31203 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_31203 .link_effect9stacks_in_31203 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_31203 .link_effect10stacks_in_31203 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31203 .link_effect10stacks_in_31203 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31203 .link_effect10stacks_in_31203 a::before,
#stacks_in_31203 .link_effect10stacks_in_31203 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31203 .link_effect10stacks_in_31203 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_31203 .link_effect10stacks_in_31203 a:hover,
#stacks_in_31203 .link_effect10stacks_in_31203 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_31203 .link_effect10stacks_in_31203 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_31203 .link_effect10stacks_in_31203 a:hover::before,
#stacks_in_31203 .link_effect10stacks_in_31203 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_31203 .link_effect11stacks_in_31203 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31203 .link_effect11stacks_in_31203 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31203 .link_effect11stacks_in_31203 a::before,
#stacks_in_31203 .link_effect11stacks_in_31203 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31203 .link_effect11stacks_in_31203 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_31203 .link_effect11stacks_in_31203 a:hover,
#stacks_in_31203 .link_effect11stacks_in_31203 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31203 .link_effect11stacks_in_31203 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_31203 .link_effect11stacks_in_31203 a:hover::before,
#stacks_in_31203 .link_effect11stacks_in_31203 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_31203 .link_effect12stacks_in_31203 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31203 .link_effect12stacks_in_31203 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31203 .link_effect12stacks_in_31203 a::before,
#stacks_in_31203 .link_effect12stacks_in_31203 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31203 .link_effect12stacks_in_31203 a {
	overflow: hidden;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_31203 .link_effect12stacks_in_31203 a:hover,
#stacks_in_31203 .link_effect12stacks_in_31203 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_31203 .link_effect12stacks_in_31203 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_31203 .link_effect12stacks_in_31203 a,
#stacks_in_31203 .link_effect12stacks_in_31203 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_31203 .link_effect12stacks_in_31203 a:hover::before,
#stacks_in_31203 .link_effect12stacks_in_31203 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_31203 .link_effect13stacks_in_31203 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31203 .link_effect13stacks_in_31203 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31203 .link_effect13stacks_in_31203 a::before,
#stacks_in_31203 .link_effect13stacks_in_31203 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31203 .link_effect13stacks_in_31203 {
}

#stacks_in_31203 .link_effect13stacks_in_31203 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
}

#stacks_in_31203 .link_effect13stacks_in_31203 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../thai_verstehen_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:bold !important;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_31203 .link_effect13stacks_in_31203 a:hover::before,
#stacks_in_31203 .link_effect13stacks_in_31203 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_31203 .link_effect14stacks_in_31203 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31203 .link_effect14stacks_in_31203 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31203 .link_effect14stacks_in_31203 a::before,
#stacks_in_31203 .link_effect14stacks_in_31203 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31203 .link_effect14stacks_in_31203 a {
	padding: 0 0.25em;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_31203 .link_effect14stacks_in_31203 a:hover,
#stacks_in_31203 .link_effect14stacks_in_31203 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_31203 .link_effect14stacks_in_31203 a::before,
#stacks_in_31203 .link_effect14stacks_in_31203 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_31203 .link_effect14stacks_in_31203 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_31203 .link_effect14stacks_in_31203 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../thai_verstehen_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_31203 .link_effect14stacks_in_31203 a:hover::after,
#stacks_in_31203 .link_effect14stacks_in_31203 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_31203 .link_effect15stacks_in_31203 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31203 .link_effect15stacks_in_31203 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31203 .link_effect15stacks_in_31203 a::before,
#stacks_in_31203 .link_effect15stacks_in_31203 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31203 .link_effect15stacks_in_31203 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_31203 .link_effect15stacks_in_31203 a::before,
#stacks_in_31203 .link_effect15stacks_in_31203 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_31203 .link_effect15stacks_in_31203 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_31203 .link_effect15stacks_in_31203 a:hover::before,
#stacks_in_31203 .link_effect15stacks_in_31203 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_31203 .link_effect15stacks_in_31203 a:hover::before,
#stacks_in_31203 .link_effect15stacks_in_31203 a:focus::before,
#stacks_in_31203 .link_effect15stacks_in_31203 a:hover::after,
#stacks_in_31203 .link_effect15stacks_in_31203 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_31203 .link_effect15stacks_in_31203 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_31203 .link_effect15stacks_in_31203 a:hover::after,
#stacks_in_31203 .link_effect15stacks_in_31203 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_31203 .link_effect16stacks_in_31203 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31203 .link_effect16stacks_in_31203 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31203 .link_effect16stacks_in_31203 a::before,
#stacks_in_31203 .link_effect16stacks_in_31203 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31203 .link_effect16stacks_in_31203 a {
	padding: 0 0.35em;
	font-weight:bold !important;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_31203 .link_effect16stacks_in_31203 a:hover {
	color: #d04c3f;
}

#stacks_in_31203 .link_effect16stacks_in_31203 a::before,
#stacks_in_31203 .link_effect16stacks_in_31203 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_31203 .link_effect16stacks_in_31203 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_31203 .link_effect16stacks_in_31203 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_31203 .link_effect16stacks_in_31203 a:hover::before,
#stacks_in_31203 .link_effect16stacks_in_31203 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_31203 .link_effect17stacks_in_31203 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	text-decoration: none;
}

#stacks_in_31203 .link_effect17stacks_in_31203 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #532A77 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_31203 .link_effect17stacks_in_31203 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_31203 .link_effect18stacks_in_31203 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31203 .link_effect18stacks_in_31203 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31203 .link_effect18stacks_in_31203 a::before,
#stacks_in_31203 .link_effect18stacks_in_31203 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31203 .link_effect18stacks_in_31203 {
}

#stacks_in_31203 .link_effect18stacks_in_31203 a {
	padding: 0 ;
	color: #532A77;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_31203 .link_effect18stacks_in_31203 a::before,
#stacks_in_31203 .link_effect18stacks_in_31203 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #532A77;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_31203 .link_effect18stacks_in_31203 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_31203 .link_effect18stacks_in_31203 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_31203 .link_effect18stacks_in_31203 a:hover,
#stacks_in_31203 .link_effect18stacks_in_31203 a:focus {
	color: #fff;
}

#stacks_in_31203 .link_effect18stacks_in_31203 a:hover::before,
#stacks_in_31203 .link_effect18stacks_in_31203 a:focus::before,
#stacks_in_31203 .link_effect18stacks_in_31203 a:hover::after,
#stacks_in_31203 .link_effect18stacks_in_31203 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_31203 .link_effect19stacks_in_31203 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31203 .link_effect19stacks_in_31203 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31203 .link_effect19stacks_in_31203 a::before,
#stacks_in_31203 .link_effect19stacks_in_31203 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_31203 a {
}

.link_effect19stacks_in_31203 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_31203 a:hover::after,
.link_effect19stacks_in_31203 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_31203 .link_effect20stacks_in_31203 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31203 .link_effect20stacks_in_31203 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31203 .link_effect20stacks_in_31203 a::before,
#stacks_in_31203 .link_effect20stacks_in_31203 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_31203 a {
}

.link_effect20stacks_in_31203 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_31203 a:hover::after,
.link_effect20stacks_in_31203 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31197Calligrapher{			font-size: 110% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31197Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31197Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31197Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31197Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31197Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31197Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31197Calligrapher h6, .stacks_in_31197Calligrapher h5, .stacks_in_31197Calligrapher h4, .stacks_in_31197Calligrapher h3, .stacks_in_31197Calligrapher h2, .stacks_in_31197Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31197Calligrapher, .stacks_in_31197Calligrapher h1, .stacks_in_31197Calligrapher h2, .stacks_in_31197Calligrapher h3, .stacks_in_31197Calligrapher h4, .stacks_in_31197Calligrapher h5, .stacks_in_31197Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31197Calligrapher, .stacks_in_31197Calligrapher h1, .stacks_in_31197Calligrapher h2, .stacks_in_31197Calligrapher h3, .stacks_in_31197Calligrapher h4, .stacks_in_31197Calligrapher h5, .stacks_in_31197Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31197targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31197Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31197Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31197Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31197Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31197 {
	margin: 0px 25px 15px 25px;
}

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

#stacks_in_1246 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_31285{padding-left:0px;padding-right:0px;}#stacks_in_31285 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31285 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31285 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31285 > .jack.width-static{width:500px}#stacks_in_31285 > .jack.width-flexible{width:100%}#stacks_in_31285 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31285 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31285 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31285 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31285 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31285 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31285 > .jack::after{border-radius:0px}#stacks_in_31285 > .jack.border-detailed-radius,#stacks_in_31285 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31285 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31285 > .jack.bg-color{background-color:#89C5FF}#stacks_in_31285 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_31285 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31285 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31285 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31285 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31285 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31285 > .jack.bg-image:not(.glass){}#stacks_in_31285 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31285 > .jack.bg-image.glass.after,#stacks_in_31285 > .glass.jack.bg-image::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31285 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31285 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31285 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31285 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31285 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31285 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31285 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31285 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31285 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31285 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31285 > .jack.bg-image.glass.after,#stacks_in_31285 > .glass.jack.bg-image::after{}#stacks_in_31285 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31285 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31285 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_31285 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_31285 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_31285 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31285 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31285 > .jack.peek-shadow::before,#stacks_in_31285 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_31285 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31285 > .jack{overflow:visible;}#stacks_in_31285 > .jack.height-static{height:100px}#stacks_in_31285 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_31241{}#stacks_in_31241 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31241 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31241 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31241 > .jack.width-static{width:500px}#stacks_in_31241 > .jack.width-flexible{width:100%}#stacks_in_31241 > .jack.margin-detailed{margin:0.00px 0.00px 20.00px 0.00px}#stacks_in_31241 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31241 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31241 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31241 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31241 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31241 > .jack::after{border-radius:15px}#stacks_in_31241 > .jack.border-detailed-radius,#stacks_in_31241 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31241 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31241 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31241 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_31241 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31241 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31241 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31241 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31241 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31241 > .jack.bg-image:not(.glass){}#stacks_in_31241 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31241 > .jack.bg-image.glass.after,#stacks_in_31241 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31241 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31241 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31241 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31241 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31241 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31241 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31241 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31241 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31241 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31241 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31241 > .jack.bg-image.glass.after,#stacks_in_31241 > .glass.jack.bg-image::after{}#stacks_in_31241 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31241 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31241 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_31241 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31241 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31241 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31241 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31241 > .jack.peek-shadow::before,#stacks_in_31241 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_31241 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31241 > .jack{overflow:hidden;}#stacks_in_31241 > .jack.height-static{height:650px}#stacks_in_31241 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31243Calligrapher{			font-size: 85% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31243Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31243Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31243Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31243Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31243Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31243Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31243Calligrapher h6, .stacks_in_31243Calligrapher h5, .stacks_in_31243Calligrapher h4, .stacks_in_31243Calligrapher h3, .stacks_in_31243Calligrapher h2, .stacks_in_31243Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31243Calligrapher, .stacks_in_31243Calligrapher h1, .stacks_in_31243Calligrapher h2, .stacks_in_31243Calligrapher h3, .stacks_in_31243Calligrapher h4, .stacks_in_31243Calligrapher h5, .stacks_in_31243Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31243Calligrapher, .stacks_in_31243Calligrapher h1, .stacks_in_31243Calligrapher h2, .stacks_in_31243Calligrapher h3, .stacks_in_31243Calligrapher h4, .stacks_in_31243Calligrapher h5, .stacks_in_31243Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31243targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31243Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31243Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31243Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31243Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31243 {
	margin: 15px 25px 25px 25px;
}
/* Start dooHeader X stack CSS code */.stacks_in_31244x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31244x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31244x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31244 {
	margin: 15px 0px 0px 0px;
}

#stacks_in_31245 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31381Calligrapher{			font-size: 80% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31381Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31381Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31381Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31381Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31381Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31381Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31381Calligrapher h6, .stacks_in_31381Calligrapher h5, .stacks_in_31381Calligrapher h4, .stacks_in_31381Calligrapher h3, .stacks_in_31381Calligrapher h2, .stacks_in_31381Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31381Calligrapher, .stacks_in_31381Calligrapher h1, .stacks_in_31381Calligrapher h2, .stacks_in_31381Calligrapher h3, .stacks_in_31381Calligrapher h4, .stacks_in_31381Calligrapher h5, .stacks_in_31381Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31381Calligrapher, .stacks_in_31381Calligrapher h1, .stacks_in_31381Calligrapher h2, .stacks_in_31381Calligrapher h3, .stacks_in_31381Calligrapher h4, .stacks_in_31381Calligrapher h5, .stacks_in_31381Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31381targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31381Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31381Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31381Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31381Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31381 {
	margin: 0px 15px 15px 15px;
}

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

#stacks_in_31251 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_31256{}#stacks_in_31256 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31256 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31256 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31256 > .jack.width-static{width:500px}#stacks_in_31256 > .jack.width-flexible{width:100%}#stacks_in_31256 > .jack.margin-detailed{margin:0.00px 0.00px 20.00px 0.00px}#stacks_in_31256 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31256 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31256 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31256 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31256 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31256 > .jack::after{border-radius:15px}#stacks_in_31256 > .jack.border-detailed-radius,#stacks_in_31256 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31256 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31256 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31256 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_31256 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31256 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31256 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31256 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31256 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31256 > .jack.bg-image:not(.glass){}#stacks_in_31256 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31256 > .jack.bg-image.glass.after,#stacks_in_31256 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31256 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31256 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31256 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31256 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31256 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31256 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31256 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31256 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31256 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31256 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31256 > .jack.bg-image.glass.after,#stacks_in_31256 > .glass.jack.bg-image::after{}#stacks_in_31256 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31256 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31256 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_31256 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31256 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31256 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31256 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31256 > .jack.peek-shadow::before,#stacks_in_31256 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_31256 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31256 > .jack{overflow:hidden;}#stacks_in_31256 > .jack.height-static{height:650px}#stacks_in_31256 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31258Calligrapher{			font-size: 85% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31258Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31258Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31258Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31258Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31258Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31258Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31258Calligrapher h6, .stacks_in_31258Calligrapher h5, .stacks_in_31258Calligrapher h4, .stacks_in_31258Calligrapher h3, .stacks_in_31258Calligrapher h2, .stacks_in_31258Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31258Calligrapher, .stacks_in_31258Calligrapher h1, .stacks_in_31258Calligrapher h2, .stacks_in_31258Calligrapher h3, .stacks_in_31258Calligrapher h4, .stacks_in_31258Calligrapher h5, .stacks_in_31258Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31258Calligrapher, .stacks_in_31258Calligrapher h1, .stacks_in_31258Calligrapher h2, .stacks_in_31258Calligrapher h3, .stacks_in_31258Calligrapher h4, .stacks_in_31258Calligrapher h5, .stacks_in_31258Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31258targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31258Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31258Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31258Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31258Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31258 {
	margin: 15px 25px 25px 25px;
}
/* Start dooHeader X stack CSS code */.stacks_in_31259x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31259x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31259x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31259 {
	margin: 15px 0px 0px 0px;
}

#stacks_in_31260 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31385Calligrapher{			font-size: 80% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31385Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31385Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31385Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31385Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31385Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31385Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31385Calligrapher h6, .stacks_in_31385Calligrapher h5, .stacks_in_31385Calligrapher h4, .stacks_in_31385Calligrapher h3, .stacks_in_31385Calligrapher h2, .stacks_in_31385Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31385Calligrapher, .stacks_in_31385Calligrapher h1, .stacks_in_31385Calligrapher h2, .stacks_in_31385Calligrapher h3, .stacks_in_31385Calligrapher h4, .stacks_in_31385Calligrapher h5, .stacks_in_31385Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31385Calligrapher, .stacks_in_31385Calligrapher h1, .stacks_in_31385Calligrapher h2, .stacks_in_31385Calligrapher h3, .stacks_in_31385Calligrapher h4, .stacks_in_31385Calligrapher h5, .stacks_in_31385Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31385targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31385Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31385Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31385Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31385Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31385 {
	margin: 0px 15px 15px 15px;
}

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

#stacks_in_31266 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_31271{}#stacks_in_31271 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31271 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31271 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31271 > .jack.width-static{width:500px}#stacks_in_31271 > .jack.width-flexible{width:100%}#stacks_in_31271 > .jack.margin-detailed{margin:0.00px 0.00px 20.00px 0.00px}#stacks_in_31271 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31271 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31271 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31271 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31271 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31271 > .jack::after{border-radius:15px}#stacks_in_31271 > .jack.border-detailed-radius,#stacks_in_31271 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31271 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31271 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31271 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_31271 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31271 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31271 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31271 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31271 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31271 > .jack.bg-image:not(.glass){}#stacks_in_31271 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31271 > .jack.bg-image.glass.after,#stacks_in_31271 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31271 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31271 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31271 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31271 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31271 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31271 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31271 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31271 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31271 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31271 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31271 > .jack.bg-image.glass.after,#stacks_in_31271 > .glass.jack.bg-image::after{}#stacks_in_31271 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31271 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31271 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_31271 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31271 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31271 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31271 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31271 > .jack.peek-shadow::before,#stacks_in_31271 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_31271 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31271 > .jack{overflow:hidden;}#stacks_in_31271 > .jack.height-static{height:650px}#stacks_in_31271 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31273Calligrapher{			font-size: 85% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31273Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31273Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31273Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31273Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31273Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31273Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31273Calligrapher h6, .stacks_in_31273Calligrapher h5, .stacks_in_31273Calligrapher h4, .stacks_in_31273Calligrapher h3, .stacks_in_31273Calligrapher h2, .stacks_in_31273Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31273Calligrapher, .stacks_in_31273Calligrapher h1, .stacks_in_31273Calligrapher h2, .stacks_in_31273Calligrapher h3, .stacks_in_31273Calligrapher h4, .stacks_in_31273Calligrapher h5, .stacks_in_31273Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31273Calligrapher, .stacks_in_31273Calligrapher h1, .stacks_in_31273Calligrapher h2, .stacks_in_31273Calligrapher h3, .stacks_in_31273Calligrapher h4, .stacks_in_31273Calligrapher h5, .stacks_in_31273Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31273targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31273Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31273Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31273Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31273Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31273 {
	margin: 15px 25px 25px 25px;
}
/* Start dooHeader X stack CSS code */.stacks_in_31274x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31274x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31274x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31274 {
	margin: 15px 0px 0px 0px;
}

#stacks_in_31275 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31393Calligrapher{			font-size: 80% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31393Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31393Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31393Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31393Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31393Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31393Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31393Calligrapher h6, .stacks_in_31393Calligrapher h5, .stacks_in_31393Calligrapher h4, .stacks_in_31393Calligrapher h3, .stacks_in_31393Calligrapher h2, .stacks_in_31393Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31393Calligrapher, .stacks_in_31393Calligrapher h1, .stacks_in_31393Calligrapher h2, .stacks_in_31393Calligrapher h3, .stacks_in_31393Calligrapher h4, .stacks_in_31393Calligrapher h5, .stacks_in_31393Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31393Calligrapher, .stacks_in_31393Calligrapher h1, .stacks_in_31393Calligrapher h2, .stacks_in_31393Calligrapher h3, .stacks_in_31393Calligrapher h4, .stacks_in_31393Calligrapher h5, .stacks_in_31393Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31393targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31393Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31393Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31393Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31393Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31393 {
	margin: 0px 15px 15px 15px;
}

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

#stacks_in_31281 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_31205{padding-left:0px;padding-right:0px;}#stacks_in_31205 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31205 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31205 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31205 > .jack.width-static{width:500px}#stacks_in_31205 > .jack.width-flexible{width:100%}#stacks_in_31205 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31205 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31205 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31205 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31205 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31205 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31205 > .jack::after{border-radius:0px}#stacks_in_31205 > .jack.border-detailed-radius,#stacks_in_31205 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31205 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31205 > .jack.bg-color{background-color:#89C5FF}#stacks_in_31205 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_31205 > .jack.bg-image:not(.glass){background-image:url(../thai_verstehen_files/bgImage-31205.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_31205 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31205 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31205 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_3_col.jpg)}#stacks_in_31205 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31205 > .jack.bg-image:not(.glass){}#stacks_in_31205 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31205 > .jack.bg-image.glass.after,#stacks_in_31205 > .glass.jack.bg-image::after{opacity:0.70;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url(../thai_verstehen_files/bgImage-31205.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_31205 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31205 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31205 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31205 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31205 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31205 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31205 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31205 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_3_col.jpg)}#stacks_in_31205 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31205 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31205 > .jack.bg-image.glass.after,#stacks_in_31205 > .glass.jack.bg-image::after{}#stacks_in_31205 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31205 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31205 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_31205 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_31205 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_31205 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31205 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31205 > .jack.peek-shadow::before,#stacks_in_31205 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_31205 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31205 > .jack{overflow:hidden;}#stacks_in_31205 > .jack.height-static{height:50px}#stacks_in_31205 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_31205 {
	margin: 20px 0px 20px 0px;
}
#stacks_in_37998{padding-left:0px;padding-right:0px;}#stacks_in_37998 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_37998 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37998 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37998 > .jack.width-static{width:500px}#stacks_in_37998 > .jack.width-flexible{width:100%}#stacks_in_37998 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37998 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37998 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37998 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37998 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37998 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37998 > .jack::after{border-radius:0px}#stacks_in_37998 > .jack.border-detailed-radius,#stacks_in_37998 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_37998 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37998 > .jack.bg-color{background-color:#89C5FF}#stacks_in_37998 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_37998 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37998 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37998 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37998 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37998 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37998 > .jack.bg-image:not(.glass){}#stacks_in_37998 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37998 > .jack.bg-image.glass.after,#stacks_in_37998 > .glass.jack.bg-image::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37998 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37998 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37998 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37998 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37998 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37998 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37998 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37998 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37998 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37998 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37998 > .jack.bg-image.glass.after,#stacks_in_37998 > .glass.jack.bg-image::after{}#stacks_in_37998 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37998 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37998 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_37998 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_37998 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_37998 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37998 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37998 > .jack.peek-shadow::before,#stacks_in_37998 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_37998 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37998 > .jack{overflow:visible;}#stacks_in_37998 > .jack.height-static{height:100px}#stacks_in_37998 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_37999{padding-left:0px;padding-right:0px;}#stacks_in_37999 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_37999 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37999 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37999 > .jack.width-static{width:500px}#stacks_in_37999 > .jack.width-flexible{width:100%}#stacks_in_37999 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37999 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37999 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37999 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37999 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37999 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37999 > .jack::after{border-radius:0px}#stacks_in_37999 > .jack.border-detailed-radius,#stacks_in_37999 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_37999 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37999 > .jack.bg-color{background-color:#89C5FF}#stacks_in_37999 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_37999 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37999 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37999 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37999 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37999 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37999 > .jack.bg-image:not(.glass){}#stacks_in_37999 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37999 > .jack.bg-image.glass.after,#stacks_in_37999 > .glass.jack.bg-image::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37999 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37999 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37999 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37999 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37999 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37999 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37999 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37999 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37999 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37999 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37999 > .jack.bg-image.glass.after,#stacks_in_37999 > .glass.jack.bg-image::after{}#stacks_in_37999 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37999 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37999 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_37999 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_37999 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_37999 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37999 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37999 > .jack.peek-shadow::before,#stacks_in_37999 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_37999 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37999 > .jack{overflow:visible;}#stacks_in_37999 > .jack.height-static{height:100px}#stacks_in_37999 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38001{}#stacks_in_38001 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38001 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38001 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38001 > .jack.width-static{width:500px}#stacks_in_38001 > .jack.width-flexible{width:100%}#stacks_in_38001 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38001 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38001 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38001 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38001 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38001 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38001 > .jack::after{border-radius:15px}#stacks_in_38001 > .jack.border-detailed-radius,#stacks_in_38001 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 0.00px 0.00px}#stacks_in_38001 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38001 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38001 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_38001 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38001 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38001 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38001 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38001 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38001 > .jack.bg-image:not(.glass){}#stacks_in_38001 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38001 > .jack.bg-image.glass.after,#stacks_in_38001 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38001 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38001 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38001 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38001 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38001 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38001 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38001 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38001 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38001 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38001 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38001 > .jack.bg-image.glass.after,#stacks_in_38001 > .glass.jack.bg-image::after{}#stacks_in_38001 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38001 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38001 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38001 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38001 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38001 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38001 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38001 > .jack.peek-shadow::before,#stacks_in_38001 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38001 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38001 > .jack{overflow:hidden;}#stacks_in_38001 > .jack.height-static{height:100px}#stacks_in_38001 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38003Calligrapher{			font-size: 100% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38003Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38003Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38003Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38003Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38003Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38003Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38003Calligrapher h6, .stacks_in_38003Calligrapher h5, .stacks_in_38003Calligrapher h4, .stacks_in_38003Calligrapher h3, .stacks_in_38003Calligrapher h2, .stacks_in_38003Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38003Calligrapher, .stacks_in_38003Calligrapher h1, .stacks_in_38003Calligrapher h2, .stacks_in_38003Calligrapher h3, .stacks_in_38003Calligrapher h4, .stacks_in_38003Calligrapher h5, .stacks_in_38003Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_38003Calligrapher, .stacks_in_38003Calligrapher h1, .stacks_in_38003Calligrapher h2, .stacks_in_38003Calligrapher h3, .stacks_in_38003Calligrapher h4, .stacks_in_38003Calligrapher h5, .stacks_in_38003Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38003targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38003Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38003Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38003Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38003Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38003 {
	padding: 0px 15px 0px 15px;
}
/* Start dooHeader X stack CSS code */.stacks_in_38008x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_38008x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_38008x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_38009 {
	font-weight: lighter;
}
#stacks_in_38004{overflow:visible;-webkit-font-smoothing:antialiased;}#stacks_in_38004 .cycler_reel{position:relative;width:100%;overflow:hidden}#stacks_in_38004{visibility:hidden}#stacks_in_38004 .cycler_reel > div.stacks_out{width:100% !important}#stacks_in_38004 .cycler_reel > div.stacks_out:first{visibility:visible}#stacks_in_38004 .cycler_nav{cursor:pointer;z-index:101;display:block;display:none;width:50px;height:50px;position:absolute;background:url(../thai_verstehen_files/cycler-images/75x75-ChevronLight.png) 0px 0px no-repeat;background-size:100%;top:40%;}#stacks_in_38004 .cycler_nav.prev{left:0px;background-position:0px 0px}#stacks_in_38004 .cycler_nav.prev:hover{background-position:0px -50px}#stacks_in_38004 .cycler_nav.prev:active{background-position:0px -100px}#stacks_in_38004 .cycler_nav.next{right:0px;background-position:0px -150px}#stacks_in_38004 .cycler_nav.next:hover{background-position:0px -200px}#stacks_in_38004 .cycler_nav.next:active{background-position:0px -250px}
#stacks_in_38012{}#stacks_in_38012 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38012 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38012 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38012 > .jack.width-static{width:500px}#stacks_in_38012 > .jack.width-flexible{width:100%}#stacks_in_38012 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38012 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38012 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38012 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38012 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38012 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38012 > .jack::after{border-radius:15px}#stacks_in_38012 > .jack.border-detailed-radius,#stacks_in_38012 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38012 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38012 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38012 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38012 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38012 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38012 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38012 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38012 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38012 > .jack.bg-image:not(.glass){}#stacks_in_38012 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38012 > .jack.bg-image.glass.after,#stacks_in_38012 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38012 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38012 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38012 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38012 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38012 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38012 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38012 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38012 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38012 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38012 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38012 > .jack.bg-image.glass.after,#stacks_in_38012 > .glass.jack.bg-image::after{}#stacks_in_38012 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38012 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38012 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38012 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38012 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38012 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38012 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38012 > .jack.peek-shadow::before,#stacks_in_38012 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38012 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38012 > .jack{overflow:hidden;}#stacks_in_38012 > .jack.height-static{height:500px}#stacks_in_38012 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_38014 {
	height: 45.00px;
}




























@media print {
	#spacerStackstacks_in_38014 {
		display: none !important;
	}
}
#stacks_in_38015 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38015 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38015 #jwresp_col2_stacks_in_38015{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38015 #jwresp_col1_stacks_in_38015,#stacks_in_38015 #jwresp_col2_stacks_in_38015{width:100%;float:none;display:block}#stacks_in_38015 #jwresp_col1_stacks_in_38015{margin-bottom:15px}}

#stacks_in_38015 {
	padding:  20px;
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_38016 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_38016 {
		display: none !important;
	}
}
#stacks_in_38017 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38017 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38017 .fluid-image.unlimited img{width:100% !important}#stacks_in_38017 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38017 .fluid-image.align-left img{float:left}#stacks_in_38017 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38020Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38020Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38020Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38020Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38020Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38020Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38020Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38020Calligrapher h6, .stacks_in_38020Calligrapher h5, .stacks_in_38020Calligrapher h4, .stacks_in_38020Calligrapher h3, .stacks_in_38020Calligrapher h2, .stacks_in_38020Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38020Calligrapher, .stacks_in_38020Calligrapher h1, .stacks_in_38020Calligrapher h2, .stacks_in_38020Calligrapher h3, .stacks_in_38020Calligrapher h4, .stacks_in_38020Calligrapher h5, .stacks_in_38020Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38020targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38020Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38020Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38020Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38020Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38020 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_38021 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38024 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38026 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38028Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38028Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38028Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38028Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38028Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38028Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38028Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38028Calligrapher h6, .stacks_in_38028Calligrapher h5, .stacks_in_38028Calligrapher h4, .stacks_in_38028Calligrapher h3, .stacks_in_38028Calligrapher h2, .stacks_in_38028Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38028Calligrapher, .stacks_in_38028Calligrapher h1, .stacks_in_38028Calligrapher h2, .stacks_in_38028Calligrapher h3, .stacks_in_38028Calligrapher h4, .stacks_in_38028Calligrapher h5, .stacks_in_38028Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38028targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38028Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38028Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38028Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38028Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38028 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38031 {
	line-height: 2em;
}
#stacks_in_38034{}#stacks_in_38034 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38034 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38034 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38034 > .jack.width-static{width:500px}#stacks_in_38034 > .jack.width-flexible{width:100%}#stacks_in_38034 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38034 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38034 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38034 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38034 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38034 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38034 > .jack::after{border-radius:15px}#stacks_in_38034 > .jack.border-detailed-radius,#stacks_in_38034 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38034 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38034 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38034 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38034 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38034 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38034 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38034 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38034 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38034 > .jack.bg-image:not(.glass){}#stacks_in_38034 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38034 > .jack.bg-image.glass.after,#stacks_in_38034 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38034 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38034 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38034 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38034 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38034 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38034 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38034 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38034 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38034 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38034 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38034 > .jack.bg-image.glass.after,#stacks_in_38034 > .glass.jack.bg-image::after{}#stacks_in_38034 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38034 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38034 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38034 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38034 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38034 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38034 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38034 > .jack.peek-shadow::before,#stacks_in_38034 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38034 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38034 > .jack{overflow:hidden;}#stacks_in_38034 > .jack.height-static{height:500px}#stacks_in_38034 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_38035 {
	height: 45.00px;
}




























@media print {
	#spacerStackstacks_in_38035 {
		display: none !important;
	}
}
#stacks_in_38036 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38036 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38036 #jwresp_col2_stacks_in_38036{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38036 #jwresp_col1_stacks_in_38036,#stacks_in_38036 #jwresp_col2_stacks_in_38036{width:100%;float:none;display:block}#stacks_in_38036 #jwresp_col1_stacks_in_38036{margin-bottom:15px}}

#stacks_in_38036 {
	padding:  20px;
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_38037 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_38037 {
		display: none !important;
	}
}
#stacks_in_38038 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38038 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38038 .fluid-image.unlimited img{width:100% !important}#stacks_in_38038 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38038 .fluid-image.align-left img{float:left}#stacks_in_38038 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38041Calligrapher{			font-size: 110% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38041Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38041Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38041Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38041Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38041Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38041Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38041Calligrapher h6, .stacks_in_38041Calligrapher h5, .stacks_in_38041Calligrapher h4, .stacks_in_38041Calligrapher h3, .stacks_in_38041Calligrapher h2, .stacks_in_38041Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38041Calligrapher, .stacks_in_38041Calligrapher h1, .stacks_in_38041Calligrapher h2, .stacks_in_38041Calligrapher h3, .stacks_in_38041Calligrapher h4, .stacks_in_38041Calligrapher h5, .stacks_in_38041Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38041targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38041Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38041Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38041Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38041Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38041 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_38042 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38045 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38049Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38049Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38049Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38049Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38049Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38049Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38049Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38049Calligrapher h6, .stacks_in_38049Calligrapher h5, .stacks_in_38049Calligrapher h4, .stacks_in_38049Calligrapher h3, .stacks_in_38049Calligrapher h2, .stacks_in_38049Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38049Calligrapher, .stacks_in_38049Calligrapher h1, .stacks_in_38049Calligrapher h2, .stacks_in_38049Calligrapher h3, .stacks_in_38049Calligrapher h4, .stacks_in_38049Calligrapher h5, .stacks_in_38049Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38049targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38049Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38049Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38049Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38049Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38049 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38052 {
	line-height: 2em;
}
#stacks_in_38055{}#stacks_in_38055 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38055 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38055 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38055 > .jack.width-static{width:500px}#stacks_in_38055 > .jack.width-flexible{width:100%}#stacks_in_38055 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38055 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38055 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38055 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38055 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38055 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38055 > .jack::after{border-radius:15px}#stacks_in_38055 > .jack.border-detailed-radius,#stacks_in_38055 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38055 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38055 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38055 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38055 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38055 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38055 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38055 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38055 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38055 > .jack.bg-image:not(.glass){}#stacks_in_38055 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38055 > .jack.bg-image.glass.after,#stacks_in_38055 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38055 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38055 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38055 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38055 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38055 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38055 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38055 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38055 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38055 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38055 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38055 > .jack.bg-image.glass.after,#stacks_in_38055 > .glass.jack.bg-image::after{}#stacks_in_38055 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38055 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38055 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38055 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38055 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38055 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38055 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38055 > .jack.peek-shadow::before,#stacks_in_38055 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38055 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38055 > .jack{overflow:hidden;}#stacks_in_38055 > .jack.height-static{height:500px}#stacks_in_38055 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_38056 {
	height: 45.00px;
}




























@media print {
	#spacerStackstacks_in_38056 {
		display: none !important;
	}
}
#stacks_in_38057 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38057 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38057 #jwresp_col2_stacks_in_38057{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38057 #jwresp_col1_stacks_in_38057,#stacks_in_38057 #jwresp_col2_stacks_in_38057{width:100%;float:none;display:block}#stacks_in_38057 #jwresp_col1_stacks_in_38057{margin-bottom:15px}}

#stacks_in_38057 {
	padding:  20px;
}

.spacerStack {
	height: 55.00px;
}

#spacerStackstacks_in_38058 {
	height: 55.00px;
}




























@media print {
	#spacerStackstacks_in_38058 {
		display: none !important;
	}
}
#stacks_in_38059 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38059 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38059 .fluid-image.unlimited img{width:100% !important}#stacks_in_38059 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38059 .fluid-image.align-left img{float:left}#stacks_in_38059 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38062Calligrapher{			font-size: 110% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38062Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38062Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38062Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38062Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38062Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38062Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38062Calligrapher h6, .stacks_in_38062Calligrapher h5, .stacks_in_38062Calligrapher h4, .stacks_in_38062Calligrapher h3, .stacks_in_38062Calligrapher h2, .stacks_in_38062Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38062Calligrapher, .stacks_in_38062Calligrapher h1, .stacks_in_38062Calligrapher h2, .stacks_in_38062Calligrapher h3, .stacks_in_38062Calligrapher h4, .stacks_in_38062Calligrapher h5, .stacks_in_38062Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38062targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38062Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38062Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38062Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38062Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38062 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_38063 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38066 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38070Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38070Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38070Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38070Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38070Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38070Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38070Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38070Calligrapher h6, .stacks_in_38070Calligrapher h5, .stacks_in_38070Calligrapher h4, .stacks_in_38070Calligrapher h3, .stacks_in_38070Calligrapher h2, .stacks_in_38070Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38070Calligrapher, .stacks_in_38070Calligrapher h1, .stacks_in_38070Calligrapher h2, .stacks_in_38070Calligrapher h3, .stacks_in_38070Calligrapher h4, .stacks_in_38070Calligrapher h5, .stacks_in_38070Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38070targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38070Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38070Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38070Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38070Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38070 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38073 {
	line-height: 2em;
}
#stacks_in_38076{}#stacks_in_38076 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38076 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38076 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38076 > .jack.width-static{width:500px}#stacks_in_38076 > .jack.width-flexible{width:100%}#stacks_in_38076 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38076 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38076 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38076 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38076 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38076 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38076 > .jack::after{border-radius:15px}#stacks_in_38076 > .jack.border-detailed-radius,#stacks_in_38076 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38076 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38076 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38076 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38076 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38076 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38076 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38076 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38076 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38076 > .jack.bg-image:not(.glass){}#stacks_in_38076 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38076 > .jack.bg-image.glass.after,#stacks_in_38076 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38076 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38076 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38076 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38076 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38076 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38076 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38076 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38076 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38076 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38076 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38076 > .jack.bg-image.glass.after,#stacks_in_38076 > .glass.jack.bg-image::after{}#stacks_in_38076 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38076 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38076 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38076 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38076 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38076 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38076 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38076 > .jack.peek-shadow::before,#stacks_in_38076 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38076 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38076 > .jack{overflow:hidden;}#stacks_in_38076 > .jack.height-static{height:500px}#stacks_in_38076 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_38077 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_38077 {
		display: none !important;
	}
}
#stacks_in_38078 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38078 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38078 #jwresp_col2_stacks_in_38078{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38078 #jwresp_col1_stacks_in_38078,#stacks_in_38078 #jwresp_col2_stacks_in_38078{width:100%;float:none;display:block}#stacks_in_38078 #jwresp_col1_stacks_in_38078{margin-bottom:15px}}

#stacks_in_38078 {
	padding:  20px;
}
#stacks_in_38079 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38079 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38079 .fluid-image.unlimited img{width:100% !important}#stacks_in_38079 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38079 .fluid-image.align-left img{float:left}#stacks_in_38079 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_38082 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_38082 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38083Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38083Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38083Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38083Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38083Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38083Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38083Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38083Calligrapher h6, .stacks_in_38083Calligrapher h5, .stacks_in_38083Calligrapher h4, .stacks_in_38083Calligrapher h3, .stacks_in_38083Calligrapher h2, .stacks_in_38083Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38083Calligrapher, .stacks_in_38083Calligrapher h1, .stacks_in_38083Calligrapher h2, .stacks_in_38083Calligrapher h3, .stacks_in_38083Calligrapher h4, .stacks_in_38083Calligrapher h5, .stacks_in_38083Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38083targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38083Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38083Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38083Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38083Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38083 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38084 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38087 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38091Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38091Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38091Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38091Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38091Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38091Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38091Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38091Calligrapher h6, .stacks_in_38091Calligrapher h5, .stacks_in_38091Calligrapher h4, .stacks_in_38091Calligrapher h3, .stacks_in_38091Calligrapher h2, .stacks_in_38091Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38091Calligrapher, .stacks_in_38091Calligrapher h1, .stacks_in_38091Calligrapher h2, .stacks_in_38091Calligrapher h3, .stacks_in_38091Calligrapher h4, .stacks_in_38091Calligrapher h5, .stacks_in_38091Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38091targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38091Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38091Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38091Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38091Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38091 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38094 {
	line-height: 2em;
}
#stacks_in_38097{}#stacks_in_38097 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38097 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38097 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38097 > .jack.width-static{width:500px}#stacks_in_38097 > .jack.width-flexible{width:100%}#stacks_in_38097 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38097 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38097 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38097 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38097 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38097 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38097 > .jack::after{border-radius:15px}#stacks_in_38097 > .jack.border-detailed-radius,#stacks_in_38097 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38097 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38097 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38097 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38097 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38097 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38097 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38097 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38097 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38097 > .jack.bg-image:not(.glass){}#stacks_in_38097 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38097 > .jack.bg-image.glass.after,#stacks_in_38097 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38097 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38097 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38097 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38097 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38097 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38097 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38097 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38097 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38097 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38097 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38097 > .jack.bg-image.glass.after,#stacks_in_38097 > .glass.jack.bg-image::after{}#stacks_in_38097 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38097 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38097 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38097 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38097 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38097 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38097 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38097 > .jack.peek-shadow::before,#stacks_in_38097 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38097 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38097 > .jack{overflow:hidden;}#stacks_in_38097 > .jack.height-static{height:500px}#stacks_in_38097 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_38098 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_38098 {
		display: none !important;
	}
}
#stacks_in_38099 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38099 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38099 #jwresp_col2_stacks_in_38099{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38099 #jwresp_col1_stacks_in_38099,#stacks_in_38099 #jwresp_col2_stacks_in_38099{width:100%;float:none;display:block}#stacks_in_38099 #jwresp_col1_stacks_in_38099{margin-bottom:15px}}

#stacks_in_38099 {
	padding:  20px;
}
#stacks_in_38100 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38100 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38100 .fluid-image.unlimited img{width:100% !important}#stacks_in_38100 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38100 .fluid-image.align-left img{float:left}#stacks_in_38100 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38103Calligrapher{			font-size: 110% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38103Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38103Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38103Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38103Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38103Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38103Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38103Calligrapher h6, .stacks_in_38103Calligrapher h5, .stacks_in_38103Calligrapher h4, .stacks_in_38103Calligrapher h3, .stacks_in_38103Calligrapher h2, .stacks_in_38103Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38103Calligrapher, .stacks_in_38103Calligrapher h1, .stacks_in_38103Calligrapher h2, .stacks_in_38103Calligrapher h3, .stacks_in_38103Calligrapher h4, .stacks_in_38103Calligrapher h5, .stacks_in_38103Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38103targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38103Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38103Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38103Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38103Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38103 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_38104 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38107 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38109 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38111 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38115Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38115Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38115Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38115Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38115Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38115Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38115Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38115Calligrapher h6, .stacks_in_38115Calligrapher h5, .stacks_in_38115Calligrapher h4, .stacks_in_38115Calligrapher h3, .stacks_in_38115Calligrapher h2, .stacks_in_38115Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38115Calligrapher, .stacks_in_38115Calligrapher h1, .stacks_in_38115Calligrapher h2, .stacks_in_38115Calligrapher h3, .stacks_in_38115Calligrapher h4, .stacks_in_38115Calligrapher h5, .stacks_in_38115Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38115targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38115Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38115Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38115Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38115Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38115 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38118 {
	line-height: 2em;
}
#stacks_in_38121{}#stacks_in_38121 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38121 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38121 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38121 > .jack.width-static{width:500px}#stacks_in_38121 > .jack.width-flexible{width:100%}#stacks_in_38121 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38121 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38121 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38121 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38121 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38121 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38121 > .jack::after{border-radius:15px}#stacks_in_38121 > .jack.border-detailed-radius,#stacks_in_38121 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38121 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38121 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38121 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38121 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38121 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38121 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38121 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38121 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38121 > .jack.bg-image:not(.glass){}#stacks_in_38121 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38121 > .jack.bg-image.glass.after,#stacks_in_38121 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38121 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38121 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38121 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38121 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38121 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38121 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38121 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38121 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38121 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38121 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38121 > .jack.bg-image.glass.after,#stacks_in_38121 > .glass.jack.bg-image::after{}#stacks_in_38121 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38121 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38121 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38121 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38121 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38121 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38121 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38121 > .jack.peek-shadow::before,#stacks_in_38121 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38121 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38121 > .jack{overflow:hidden;}#stacks_in_38121 > .jack.height-static{height:500px}#stacks_in_38121 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_38122 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_38122 {
		display: none !important;
	}
}
#stacks_in_38123 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38123 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38123 #jwresp_col2_stacks_in_38123{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38123 #jwresp_col1_stacks_in_38123,#stacks_in_38123 #jwresp_col2_stacks_in_38123{width:100%;float:none;display:block}#stacks_in_38123 #jwresp_col1_stacks_in_38123{margin-bottom:15px}}

#stacks_in_38123 {
	padding:  20px;
}
#stacks_in_38124 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38124 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38124 .fluid-image.unlimited img{width:100% !important}#stacks_in_38124 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38124 .fluid-image.align-left img{float:left}#stacks_in_38124 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_38127 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_38127 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38128Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38128Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38128Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38128Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38128Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38128Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38128Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38128Calligrapher h6, .stacks_in_38128Calligrapher h5, .stacks_in_38128Calligrapher h4, .stacks_in_38128Calligrapher h3, .stacks_in_38128Calligrapher h2, .stacks_in_38128Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38128Calligrapher, .stacks_in_38128Calligrapher h1, .stacks_in_38128Calligrapher h2, .stacks_in_38128Calligrapher h3, .stacks_in_38128Calligrapher h4, .stacks_in_38128Calligrapher h5, .stacks_in_38128Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38128targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38128Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38128Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38128Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38128Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38128 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38129 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38132 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38136Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38136Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38136Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38136Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38136Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38136Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38136Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38136Calligrapher h6, .stacks_in_38136Calligrapher h5, .stacks_in_38136Calligrapher h4, .stacks_in_38136Calligrapher h3, .stacks_in_38136Calligrapher h2, .stacks_in_38136Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38136Calligrapher, .stacks_in_38136Calligrapher h1, .stacks_in_38136Calligrapher h2, .stacks_in_38136Calligrapher h3, .stacks_in_38136Calligrapher h4, .stacks_in_38136Calligrapher h5, .stacks_in_38136Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38136targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38136Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38136Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38136Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38136Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38136 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38139 {
	line-height: 2em;
}
#stacks_in_38142{}#stacks_in_38142 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38142 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38142 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38142 > .jack.width-static{width:500px}#stacks_in_38142 > .jack.width-flexible{width:100%}#stacks_in_38142 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38142 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38142 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38142 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38142 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38142 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38142 > .jack::after{border-radius:15px}#stacks_in_38142 > .jack.border-detailed-radius,#stacks_in_38142 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38142 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38142 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38142 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38142 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38142 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38142 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38142 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38142 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38142 > .jack.bg-image:not(.glass){}#stacks_in_38142 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38142 > .jack.bg-image.glass.after,#stacks_in_38142 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38142 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38142 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38142 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38142 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38142 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38142 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38142 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38142 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38142 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38142 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38142 > .jack.bg-image.glass.after,#stacks_in_38142 > .glass.jack.bg-image::after{}#stacks_in_38142 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38142 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38142 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38142 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38142 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38142 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38142 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38142 > .jack.peek-shadow::before,#stacks_in_38142 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38142 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38142 > .jack{overflow:hidden;}#stacks_in_38142 > .jack.height-static{height:500px}#stacks_in_38142 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_38143 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_38143 {
		display: none !important;
	}
}
#stacks_in_38144 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38144 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38144 #jwresp_col2_stacks_in_38144{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38144 #jwresp_col1_stacks_in_38144,#stacks_in_38144 #jwresp_col2_stacks_in_38144{width:100%;float:none;display:block}#stacks_in_38144 #jwresp_col1_stacks_in_38144{margin-bottom:15px}}

#stacks_in_38144 {
	padding:  20px;
}
#stacks_in_38145 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38145 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38145 .fluid-image.unlimited img{width:100% !important}#stacks_in_38145 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38145 .fluid-image.align-left img{float:left}#stacks_in_38145 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_38148 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_38148 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38149Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38149Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38149Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38149Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38149Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38149Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38149Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38149Calligrapher h6, .stacks_in_38149Calligrapher h5, .stacks_in_38149Calligrapher h4, .stacks_in_38149Calligrapher h3, .stacks_in_38149Calligrapher h2, .stacks_in_38149Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38149Calligrapher, .stacks_in_38149Calligrapher h1, .stacks_in_38149Calligrapher h2, .stacks_in_38149Calligrapher h3, .stacks_in_38149Calligrapher h4, .stacks_in_38149Calligrapher h5, .stacks_in_38149Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38149targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38149Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38149Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38149Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38149Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38149 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38150 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38153 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38157Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38157Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38157Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38157Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38157Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38157Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38157Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38157Calligrapher h6, .stacks_in_38157Calligrapher h5, .stacks_in_38157Calligrapher h4, .stacks_in_38157Calligrapher h3, .stacks_in_38157Calligrapher h2, .stacks_in_38157Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38157Calligrapher, .stacks_in_38157Calligrapher h1, .stacks_in_38157Calligrapher h2, .stacks_in_38157Calligrapher h3, .stacks_in_38157Calligrapher h4, .stacks_in_38157Calligrapher h5, .stacks_in_38157Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38157targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38157Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38157Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38157Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38157Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38157 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38160 {
	line-height: 2em;
}
#stacks_in_38163{}#stacks_in_38163 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38163 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38163 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38163 > .jack.width-static{width:500px}#stacks_in_38163 > .jack.width-flexible{width:100%}#stacks_in_38163 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38163 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38163 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38163 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38163 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38163 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38163 > .jack::after{border-radius:15px}#stacks_in_38163 > .jack.border-detailed-radius,#stacks_in_38163 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38163 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38163 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38163 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38163 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38163 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38163 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38163 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38163 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38163 > .jack.bg-image:not(.glass){}#stacks_in_38163 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38163 > .jack.bg-image.glass.after,#stacks_in_38163 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38163 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38163 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38163 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38163 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38163 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38163 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38163 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38163 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38163 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38163 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38163 > .jack.bg-image.glass.after,#stacks_in_38163 > .glass.jack.bg-image::after{}#stacks_in_38163 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38163 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38163 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38163 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38163 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38163 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38163 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38163 > .jack.peek-shadow::before,#stacks_in_38163 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38163 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38163 > .jack{overflow:hidden;}#stacks_in_38163 > .jack.height-static{height:500px}#stacks_in_38163 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 95.00px;
}

#spacerStackstacks_in_38164 {
	height: 95.00px;
}




























@media print {
	#spacerStackstacks_in_38164 {
		display: none !important;
	}
}
#stacks_in_38165 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38165 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38165 #jwresp_col2_stacks_in_38165{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38165 #jwresp_col1_stacks_in_38165,#stacks_in_38165 #jwresp_col2_stacks_in_38165{width:100%;float:none;display:block}#stacks_in_38165 #jwresp_col1_stacks_in_38165{margin-bottom:15px}}

#stacks_in_38165 {
	padding:  18px;
}
#stacks_in_38166 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38166 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38166 .fluid-image.unlimited img{width:100% !important}#stacks_in_38166 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38166 .fluid-image.align-left img{float:left}#stacks_in_38166 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38169Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38169Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38169Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38169Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38169Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38169Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38169Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38169Calligrapher h6, .stacks_in_38169Calligrapher h5, .stacks_in_38169Calligrapher h4, .stacks_in_38169Calligrapher h3, .stacks_in_38169Calligrapher h2, .stacks_in_38169Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38169Calligrapher, .stacks_in_38169Calligrapher h1, .stacks_in_38169Calligrapher h2, .stacks_in_38169Calligrapher h3, .stacks_in_38169Calligrapher h4, .stacks_in_38169Calligrapher h5, .stacks_in_38169Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38169targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38169Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38169Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38169Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38169Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38169 {
	padding: 0px 20px 0px 20px;
}

#stacks_in_38170 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38173 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38177Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38177Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38177Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38177Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38177Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38177Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38177Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38177Calligrapher h6, .stacks_in_38177Calligrapher h5, .stacks_in_38177Calligrapher h4, .stacks_in_38177Calligrapher h3, .stacks_in_38177Calligrapher h2, .stacks_in_38177Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38177Calligrapher, .stacks_in_38177Calligrapher h1, .stacks_in_38177Calligrapher h2, .stacks_in_38177Calligrapher h3, .stacks_in_38177Calligrapher h4, .stacks_in_38177Calligrapher h5, .stacks_in_38177Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38177targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38177Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38177Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38177Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38177Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38177 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38180 {
	line-height: 2em;
}
#stacks_in_38183{}#stacks_in_38183 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38183 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38183 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38183 > .jack.width-static{width:500px}#stacks_in_38183 > .jack.width-flexible{width:100%}#stacks_in_38183 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38183 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38183 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38183 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38183 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38183 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38183 > .jack::after{border-radius:15px}#stacks_in_38183 > .jack.border-detailed-radius,#stacks_in_38183 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38183 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38183 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38183 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38183 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38183 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38183 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38183 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38183 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38183 > .jack.bg-image:not(.glass){}#stacks_in_38183 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38183 > .jack.bg-image.glass.after,#stacks_in_38183 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38183 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38183 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38183 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38183 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38183 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38183 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38183 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38183 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38183 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38183 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38183 > .jack.bg-image.glass.after,#stacks_in_38183 > .glass.jack.bg-image::after{}#stacks_in_38183 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38183 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38183 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38183 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38183 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38183 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38183 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38183 > .jack.peek-shadow::before,#stacks_in_38183 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38183 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38183 > .jack{overflow:hidden;}#stacks_in_38183 > .jack.height-static{height:500px}#stacks_in_38183 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 35.00px;
}

#spacerStackstacks_in_38184 {
	height: 35.00px;
}




























@media print {
	#spacerStackstacks_in_38184 {
		display: none !important;
	}
}
#stacks_in_38185 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38185 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38185 #jwresp_col2_stacks_in_38185{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38185 #jwresp_col1_stacks_in_38185,#stacks_in_38185 #jwresp_col2_stacks_in_38185{width:100%;float:none;display:block}#stacks_in_38185 #jwresp_col1_stacks_in_38185{margin-bottom:15px}}

#stacks_in_38185 {
	padding:  20px;
}
#stacks_in_38186 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38186 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38186 .fluid-image.unlimited img{width:100% !important}#stacks_in_38186 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38186 .fluid-image.align-left img{float:left}#stacks_in_38186 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 120.00px;
}

#spacerStackstacks_in_38189 {
	height: 120.00px;
}




























@media print {
	#spacerStackstacks_in_38189 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38190Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38190Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38190Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38190Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38190Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38190Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38190Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38190Calligrapher h6, .stacks_in_38190Calligrapher h5, .stacks_in_38190Calligrapher h4, .stacks_in_38190Calligrapher h3, .stacks_in_38190Calligrapher h2, .stacks_in_38190Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38190Calligrapher, .stacks_in_38190Calligrapher h1, .stacks_in_38190Calligrapher h2, .stacks_in_38190Calligrapher h3, .stacks_in_38190Calligrapher h4, .stacks_in_38190Calligrapher h5, .stacks_in_38190Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38190targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38190Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38190Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38190Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38190Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38190 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38191 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38194 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38198Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38198Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38198Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38198Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38198Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38198Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38198Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38198Calligrapher h6, .stacks_in_38198Calligrapher h5, .stacks_in_38198Calligrapher h4, .stacks_in_38198Calligrapher h3, .stacks_in_38198Calligrapher h2, .stacks_in_38198Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38198Calligrapher, .stacks_in_38198Calligrapher h1, .stacks_in_38198Calligrapher h2, .stacks_in_38198Calligrapher h3, .stacks_in_38198Calligrapher h4, .stacks_in_38198Calligrapher h5, .stacks_in_38198Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38198targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38198Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38198Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38198Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38198Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38199 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38201 {
	line-height: 2em;
}
#stacks_in_38204{}#stacks_in_38204 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38204 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38204 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38204 > .jack.width-static{width:500px}#stacks_in_38204 > .jack.width-flexible{width:100%}#stacks_in_38204 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38204 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38204 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38204 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38204 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38204 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38204 > .jack::after{border-radius:15px}#stacks_in_38204 > .jack.border-detailed-radius,#stacks_in_38204 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38204 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38204 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38204 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38204 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38204 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38204 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38204 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38204 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38204 > .jack.bg-image:not(.glass){}#stacks_in_38204 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38204 > .jack.bg-image.glass.after,#stacks_in_38204 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38204 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38204 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38204 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38204 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38204 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38204 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38204 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38204 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38204 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38204 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38204 > .jack.bg-image.glass.after,#stacks_in_38204 > .glass.jack.bg-image::after{}#stacks_in_38204 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38204 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38204 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38204 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38204 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38204 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38204 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38204 > .jack.peek-shadow::before,#stacks_in_38204 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38204 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38204 > .jack{overflow:hidden;}#stacks_in_38204 > .jack.height-static{height:500px}#stacks_in_38204 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_38205 {
	height: 25.00px;
}




























@media print {
	#spacerStackstacks_in_38205 {
		display: none !important;
	}
}
#stacks_in_38206 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38206 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38206 #jwresp_col2_stacks_in_38206{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38206 #jwresp_col1_stacks_in_38206,#stacks_in_38206 #jwresp_col2_stacks_in_38206{width:100%;float:none;display:block}#stacks_in_38206 #jwresp_col1_stacks_in_38206{margin-bottom:15px}}

#stacks_in_38206 {
	padding:  20px;
}
#stacks_in_38207 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38207 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38207 .fluid-image.unlimited img{width:100% !important}#stacks_in_38207 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38207 .fluid-image.align-left img{float:left}#stacks_in_38207 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 70.00px;
}

#spacerStackstacks_in_38210 {
	height: 70.00px;
}




























@media print {
	#spacerStackstacks_in_38210 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38211Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38211Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38211Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38211Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38211Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38211Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38211Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38211Calligrapher h6, .stacks_in_38211Calligrapher h5, .stacks_in_38211Calligrapher h4, .stacks_in_38211Calligrapher h3, .stacks_in_38211Calligrapher h2, .stacks_in_38211Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38211Calligrapher, .stacks_in_38211Calligrapher h1, .stacks_in_38211Calligrapher h2, .stacks_in_38211Calligrapher h3, .stacks_in_38211Calligrapher h4, .stacks_in_38211Calligrapher h5, .stacks_in_38211Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38211targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38211Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38211Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38211Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38211Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38211 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38212 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38215 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38219Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38219Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38219Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38219Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38219Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38219Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38219Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38219Calligrapher h6, .stacks_in_38219Calligrapher h5, .stacks_in_38219Calligrapher h4, .stacks_in_38219Calligrapher h3, .stacks_in_38219Calligrapher h2, .stacks_in_38219Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38219Calligrapher, .stacks_in_38219Calligrapher h1, .stacks_in_38219Calligrapher h2, .stacks_in_38219Calligrapher h3, .stacks_in_38219Calligrapher h4, .stacks_in_38219Calligrapher h5, .stacks_in_38219Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38219targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38219Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38219Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38219Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38219Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38219 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38220 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38222 {
	line-height: 2em;
}
#stacks_in_38225{}#stacks_in_38225 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38225 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38225 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38225 > .jack.width-static{width:500px}#stacks_in_38225 > .jack.width-flexible{width:100%}#stacks_in_38225 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38225 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38225 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38225 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38225 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38225 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38225 > .jack::after{border-radius:15px}#stacks_in_38225 > .jack.border-detailed-radius,#stacks_in_38225 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38225 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38225 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38225 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38225 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38225 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38225 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38225 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38225 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38225 > .jack.bg-image:not(.glass){}#stacks_in_38225 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38225 > .jack.bg-image.glass.after,#stacks_in_38225 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38225 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38225 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38225 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38225 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38225 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38225 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38225 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38225 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38225 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38225 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38225 > .jack.bg-image.glass.after,#stacks_in_38225 > .glass.jack.bg-image::after{}#stacks_in_38225 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38225 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38225 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38225 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38225 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38225 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38225 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38225 > .jack.peek-shadow::before,#stacks_in_38225 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38225 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38225 > .jack{overflow:hidden;}#stacks_in_38225 > .jack.height-static{height:500px}#stacks_in_38225 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_38226 {
	height: 50.00px;
}




























@media print {
	#spacerStackstacks_in_38226 {
		display: none !important;
	}
}
#stacks_in_38227 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38227 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38227 #jwresp_col2_stacks_in_38227{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38227 #jwresp_col1_stacks_in_38227,#stacks_in_38227 #jwresp_col2_stacks_in_38227{width:100%;float:none;display:block}#stacks_in_38227 #jwresp_col1_stacks_in_38227{margin-bottom:15px}}

#stacks_in_38227 {
	padding:  20px;
}
#stacks_in_38228 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38228 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38228 .fluid-image.unlimited img{width:100% !important}#stacks_in_38228 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38228 .fluid-image.align-left img{float:left}#stacks_in_38228 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 70.00px;
}

#spacerStackstacks_in_38231 {
	height: 70.00px;
}




























@media print {
	#spacerStackstacks_in_38231 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38232Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38232Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38232Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38232Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38232Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38232Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38232Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38232Calligrapher h6, .stacks_in_38232Calligrapher h5, .stacks_in_38232Calligrapher h4, .stacks_in_38232Calligrapher h3, .stacks_in_38232Calligrapher h2, .stacks_in_38232Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38232Calligrapher, .stacks_in_38232Calligrapher h1, .stacks_in_38232Calligrapher h2, .stacks_in_38232Calligrapher h3, .stacks_in_38232Calligrapher h4, .stacks_in_38232Calligrapher h5, .stacks_in_38232Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38232targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38232Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38232Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38232Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38232Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38232 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38233 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38236 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38240Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38240Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38240Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38240Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38240Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38240Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38240Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38240Calligrapher h6, .stacks_in_38240Calligrapher h5, .stacks_in_38240Calligrapher h4, .stacks_in_38240Calligrapher h3, .stacks_in_38240Calligrapher h2, .stacks_in_38240Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38240Calligrapher, .stacks_in_38240Calligrapher h1, .stacks_in_38240Calligrapher h2, .stacks_in_38240Calligrapher h3, .stacks_in_38240Calligrapher h4, .stacks_in_38240Calligrapher h5, .stacks_in_38240Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38240targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38240Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38240Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38240Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38240Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38240 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38241 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38243 {
	line-height: 2em;
}
#stacks_in_38246{}#stacks_in_38246 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38246 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38246 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38246 > .jack.width-static{width:500px}#stacks_in_38246 > .jack.width-flexible{width:100%}#stacks_in_38246 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38246 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38246 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38246 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38246 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38246 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38246 > .jack::after{border-radius:15px}#stacks_in_38246 > .jack.border-detailed-radius,#stacks_in_38246 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38246 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38246 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38246 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38246 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38246 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38246 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38246 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38246 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38246 > .jack.bg-image:not(.glass){}#stacks_in_38246 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38246 > .jack.bg-image.glass.after,#stacks_in_38246 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38246 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38246 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38246 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38246 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38246 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38246 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38246 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38246 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38246 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38246 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38246 > .jack.bg-image.glass.after,#stacks_in_38246 > .glass.jack.bg-image::after{}#stacks_in_38246 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38246 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38246 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38246 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38246 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38246 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38246 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38246 > .jack.peek-shadow::before,#stacks_in_38246 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38246 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38246 > .jack{overflow:hidden;}#stacks_in_38246 > .jack.height-static{height:500px}#stacks_in_38246 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_38247 {
	height: 50.00px;
}




























@media print {
	#spacerStackstacks_in_38247 {
		display: none !important;
	}
}
#stacks_in_38248 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38248 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38248 #jwresp_col2_stacks_in_38248{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38248 #jwresp_col1_stacks_in_38248,#stacks_in_38248 #jwresp_col2_stacks_in_38248{width:100%;float:none;display:block}#stacks_in_38248 #jwresp_col1_stacks_in_38248{margin-bottom:15px}}

#stacks_in_38248 {
	padding:  20px;
}
#stacks_in_38249 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38249 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38249 .fluid-image.unlimited img{width:100% !important}#stacks_in_38249 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38249 .fluid-image.align-left img{float:left}#stacks_in_38249 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_38252 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_38252 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38253Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38253Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38253Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38253Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38253Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38253Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38253Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38253Calligrapher h6, .stacks_in_38253Calligrapher h5, .stacks_in_38253Calligrapher h4, .stacks_in_38253Calligrapher h3, .stacks_in_38253Calligrapher h2, .stacks_in_38253Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38253Calligrapher, .stacks_in_38253Calligrapher h1, .stacks_in_38253Calligrapher h2, .stacks_in_38253Calligrapher h3, .stacks_in_38253Calligrapher h4, .stacks_in_38253Calligrapher h5, .stacks_in_38253Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38253targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38253Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38253Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38253Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38253Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38253 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38254 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38257 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38259Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38259Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38259Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38259Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38259Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38259Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38259Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38259Calligrapher h6, .stacks_in_38259Calligrapher h5, .stacks_in_38259Calligrapher h4, .stacks_in_38259Calligrapher h3, .stacks_in_38259Calligrapher h2, .stacks_in_38259Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38259Calligrapher, .stacks_in_38259Calligrapher h1, .stacks_in_38259Calligrapher h2, .stacks_in_38259Calligrapher h3, .stacks_in_38259Calligrapher h4, .stacks_in_38259Calligrapher h5, .stacks_in_38259Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38259targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38259Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38259Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38259Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38259Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38259 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38260 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38262 {
	line-height: 2em;
}
#stacks_in_38265{}#stacks_in_38265 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38265 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38265 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38265 > .jack.width-static{width:500px}#stacks_in_38265 > .jack.width-flexible{width:100%}#stacks_in_38265 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38265 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38265 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38265 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38265 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38265 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38265 > .jack::after{border-radius:15px}#stacks_in_38265 > .jack.border-detailed-radius,#stacks_in_38265 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38265 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38265 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38265 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38265 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38265 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38265 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38265 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38265 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38265 > .jack.bg-image:not(.glass){}#stacks_in_38265 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38265 > .jack.bg-image.glass.after,#stacks_in_38265 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38265 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38265 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38265 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38265 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38265 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38265 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38265 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38265 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38265 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38265 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38265 > .jack.bg-image.glass.after,#stacks_in_38265 > .glass.jack.bg-image::after{}#stacks_in_38265 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38265 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38265 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38265 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38265 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38265 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38265 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38265 > .jack.peek-shadow::before,#stacks_in_38265 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38265 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38265 > .jack{overflow:hidden;}#stacks_in_38265 > .jack.height-static{height:500px}#stacks_in_38265 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_38266 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_38266 {
		display: none !important;
	}
}
#stacks_in_38267 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38267 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38267 #jwresp_col2_stacks_in_38267{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38267 #jwresp_col1_stacks_in_38267,#stacks_in_38267 #jwresp_col2_stacks_in_38267{width:100%;float:none;display:block}#stacks_in_38267 #jwresp_col1_stacks_in_38267{margin-bottom:15px}}

#stacks_in_38267 {
	padding:  20px;
}
#stacks_in_38268 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38268 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38268 .fluid-image.unlimited img{width:100% !important}#stacks_in_38268 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38268 .fluid-image.align-left img{float:left}#stacks_in_38268 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_38271 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_38271 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38272Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38272Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38272Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38272Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38272Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38272Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38272Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38272Calligrapher h6, .stacks_in_38272Calligrapher h5, .stacks_in_38272Calligrapher h4, .stacks_in_38272Calligrapher h3, .stacks_in_38272Calligrapher h2, .stacks_in_38272Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38272Calligrapher, .stacks_in_38272Calligrapher h1, .stacks_in_38272Calligrapher h2, .stacks_in_38272Calligrapher h3, .stacks_in_38272Calligrapher h4, .stacks_in_38272Calligrapher h5, .stacks_in_38272Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38272targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38272Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38272Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38272Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38272Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38272 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38273 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38276 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38278 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38280Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38280Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38280Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38280Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38280Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38280Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38280Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38280Calligrapher h6, .stacks_in_38280Calligrapher h5, .stacks_in_38280Calligrapher h4, .stacks_in_38280Calligrapher h3, .stacks_in_38280Calligrapher h2, .stacks_in_38280Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38280Calligrapher, .stacks_in_38280Calligrapher h1, .stacks_in_38280Calligrapher h2, .stacks_in_38280Calligrapher h3, .stacks_in_38280Calligrapher h4, .stacks_in_38280Calligrapher h5, .stacks_in_38280Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38280targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38280Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38280Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38280Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38280Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38281 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38283 {
	line-height: 2em;
}
#stacks_in_38286{}#stacks_in_38286 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38286 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38286 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38286 > .jack.width-static{width:500px}#stacks_in_38286 > .jack.width-flexible{width:100%}#stacks_in_38286 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38286 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38286 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38286 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38286 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38286 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38286 > .jack::after{border-radius:15px}#stacks_in_38286 > .jack.border-detailed-radius,#stacks_in_38286 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38286 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38286 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38286 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38286 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38286 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38286 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38286 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38286 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38286 > .jack.bg-image:not(.glass){}#stacks_in_38286 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38286 > .jack.bg-image.glass.after,#stacks_in_38286 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38286 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38286 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38286 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38286 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38286 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38286 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38286 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38286 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38286 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38286 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38286 > .jack.bg-image.glass.after,#stacks_in_38286 > .glass.jack.bg-image::after{}#stacks_in_38286 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38286 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38286 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38286 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38286 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38286 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38286 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38286 > .jack.peek-shadow::before,#stacks_in_38286 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38286 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38286 > .jack{overflow:hidden;}#stacks_in_38286 > .jack.height-static{height:500px}#stacks_in_38286 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_38287 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_38287 {
		display: none !important;
	}
}
#stacks_in_38288 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38288 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38288 #jwresp_col2_stacks_in_38288{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38288 #jwresp_col1_stacks_in_38288,#stacks_in_38288 #jwresp_col2_stacks_in_38288{width:100%;float:none;display:block}#stacks_in_38288 #jwresp_col1_stacks_in_38288{margin-bottom:15px}}

#stacks_in_38288 {
	padding:  20px;
}
#stacks_in_38289 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38289 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38289 .fluid-image.unlimited img{width:100% !important}#stacks_in_38289 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38289 .fluid-image.align-left img{float:left}#stacks_in_38289 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_38292 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_38292 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38293Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38293Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38293Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38293Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38293Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38293Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38293Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38293Calligrapher h6, .stacks_in_38293Calligrapher h5, .stacks_in_38293Calligrapher h4, .stacks_in_38293Calligrapher h3, .stacks_in_38293Calligrapher h2, .stacks_in_38293Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38293Calligrapher, .stacks_in_38293Calligrapher h1, .stacks_in_38293Calligrapher h2, .stacks_in_38293Calligrapher h3, .stacks_in_38293Calligrapher h4, .stacks_in_38293Calligrapher h5, .stacks_in_38293Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38293targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38293Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38293Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38293Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38293Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38293 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38294 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38297 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38299 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38301Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38301Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38301Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38301Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38301Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38301Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38301Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38301Calligrapher h6, .stacks_in_38301Calligrapher h5, .stacks_in_38301Calligrapher h4, .stacks_in_38301Calligrapher h3, .stacks_in_38301Calligrapher h2, .stacks_in_38301Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38301Calligrapher, .stacks_in_38301Calligrapher h1, .stacks_in_38301Calligrapher h2, .stacks_in_38301Calligrapher h3, .stacks_in_38301Calligrapher h4, .stacks_in_38301Calligrapher h5, .stacks_in_38301Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38301targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38301Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38301Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38301Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38301Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38301 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38302 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38304 {
	line-height: 2em;
}
#stacks_in_38307{}#stacks_in_38307 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38307 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38307 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38307 > .jack.width-static{width:500px}#stacks_in_38307 > .jack.width-flexible{width:100%}#stacks_in_38307 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38307 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38307 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38307 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38307 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38307 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38307 > .jack::after{border-radius:15px}#stacks_in_38307 > .jack.border-detailed-radius,#stacks_in_38307 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38307 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38307 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38307 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38307 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38307 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38307 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38307 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38307 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38307 > .jack.bg-image:not(.glass){}#stacks_in_38307 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38307 > .jack.bg-image.glass.after,#stacks_in_38307 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38307 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38307 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38307 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38307 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38307 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38307 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38307 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38307 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38307 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38307 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38307 > .jack.bg-image.glass.after,#stacks_in_38307 > .glass.jack.bg-image::after{}#stacks_in_38307 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38307 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38307 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38307 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38307 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38307 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38307 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38307 > .jack.peek-shadow::before,#stacks_in_38307 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38307 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38307 > .jack{overflow:hidden;}#stacks_in_38307 > .jack.height-static{height:500px}#stacks_in_38307 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_38308 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_38308 {
		display: none !important;
	}
}
#stacks_in_38309 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38309 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38309 #jwresp_col2_stacks_in_38309{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38309 #jwresp_col1_stacks_in_38309,#stacks_in_38309 #jwresp_col2_stacks_in_38309{width:100%;float:none;display:block}#stacks_in_38309 #jwresp_col1_stacks_in_38309{margin-bottom:15px}}

#stacks_in_38309 {
	padding:  20px;
}
#stacks_in_38310 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38310 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38310 .fluid-image.unlimited img{width:100% !important}#stacks_in_38310 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38310 .fluid-image.align-left img{float:left}#stacks_in_38310 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38313Calligrapher{			font-size: 110% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38313Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38313Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38313Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38313Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38313Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38313Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38313Calligrapher h6, .stacks_in_38313Calligrapher h5, .stacks_in_38313Calligrapher h4, .stacks_in_38313Calligrapher h3, .stacks_in_38313Calligrapher h2, .stacks_in_38313Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38313Calligrapher, .stacks_in_38313Calligrapher h1, .stacks_in_38313Calligrapher h2, .stacks_in_38313Calligrapher h3, .stacks_in_38313Calligrapher h4, .stacks_in_38313Calligrapher h5, .stacks_in_38313Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38313targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38313Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38313Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38313Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38313Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38313 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38314 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38317 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38319 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38321Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38321Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38321Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38321Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38321Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38321Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38321Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38321Calligrapher h6, .stacks_in_38321Calligrapher h5, .stacks_in_38321Calligrapher h4, .stacks_in_38321Calligrapher h3, .stacks_in_38321Calligrapher h2, .stacks_in_38321Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38321Calligrapher, .stacks_in_38321Calligrapher h1, .stacks_in_38321Calligrapher h2, .stacks_in_38321Calligrapher h3, .stacks_in_38321Calligrapher h4, .stacks_in_38321Calligrapher h5, .stacks_in_38321Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38321targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38321Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38321Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38321Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38321Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38321 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38322 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38324 {
	line-height: 2em;
}
#stacks_in_38327{}#stacks_in_38327 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38327 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38327 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38327 > .jack.width-static{width:500px}#stacks_in_38327 > .jack.width-flexible{width:100%}#stacks_in_38327 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38327 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38327 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38327 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38327 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38327 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38327 > .jack::after{border-radius:15px}#stacks_in_38327 > .jack.border-detailed-radius,#stacks_in_38327 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38327 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38327 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38327 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38327 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38327 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38327 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38327 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38327 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38327 > .jack.bg-image:not(.glass){}#stacks_in_38327 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38327 > .jack.bg-image.glass.after,#stacks_in_38327 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38327 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38327 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38327 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38327 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38327 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38327 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38327 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38327 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38327 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38327 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38327 > .jack.bg-image.glass.after,#stacks_in_38327 > .glass.jack.bg-image::after{}#stacks_in_38327 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38327 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38327 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38327 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38327 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38327 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38327 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38327 > .jack.peek-shadow::before,#stacks_in_38327 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38327 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38327 > .jack{overflow:hidden;}#stacks_in_38327 > .jack.height-static{height:500px}#stacks_in_38327 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 60.00px;
}

#spacerStackstacks_in_38328 {
	height: 60.00px;
}




























@media print {
	#spacerStackstacks_in_38328 {
		display: none !important;
	}
}
#stacks_in_38329 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38329 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38329 #jwresp_col2_stacks_in_38329{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38329 #jwresp_col1_stacks_in_38329,#stacks_in_38329 #jwresp_col2_stacks_in_38329{width:100%;float:none;display:block}#stacks_in_38329 #jwresp_col1_stacks_in_38329{margin-bottom:15px}}

#stacks_in_38329 {
	padding:  20px;
}
#stacks_in_38330 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38330 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38330 .fluid-image.unlimited img{width:100% !important}#stacks_in_38330 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38330 .fluid-image.align-left img{float:left}#stacks_in_38330 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 60.00px;
}

#spacerStackstacks_in_38333 {
	height: 60.00px;
}




























@media print {
	#spacerStackstacks_in_38333 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38334Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38334Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38334Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38334Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38334Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38334Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38334Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38334Calligrapher h6, .stacks_in_38334Calligrapher h5, .stacks_in_38334Calligrapher h4, .stacks_in_38334Calligrapher h3, .stacks_in_38334Calligrapher h2, .stacks_in_38334Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38334Calligrapher, .stacks_in_38334Calligrapher h1, .stacks_in_38334Calligrapher h2, .stacks_in_38334Calligrapher h3, .stacks_in_38334Calligrapher h4, .stacks_in_38334Calligrapher h5, .stacks_in_38334Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38334targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38334Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38334Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38334Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38334Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38334 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38335 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38338 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38340Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38340Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38340Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38340Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38340Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38340Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38340Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38340Calligrapher h6, .stacks_in_38340Calligrapher h5, .stacks_in_38340Calligrapher h4, .stacks_in_38340Calligrapher h3, .stacks_in_38340Calligrapher h2, .stacks_in_38340Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38340Calligrapher, .stacks_in_38340Calligrapher h1, .stacks_in_38340Calligrapher h2, .stacks_in_38340Calligrapher h3, .stacks_in_38340Calligrapher h4, .stacks_in_38340Calligrapher h5, .stacks_in_38340Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38340targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38340Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38340Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38340Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38340Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38340 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38341 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38343 {
	line-height: 2em;
}
#stacks_in_38346{}#stacks_in_38346 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38346 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38346 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38346 > .jack.width-static{width:500px}#stacks_in_38346 > .jack.width-flexible{width:100%}#stacks_in_38346 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38346 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38346 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38346 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38346 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38346 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38346 > .jack::after{border-radius:15px}#stacks_in_38346 > .jack.border-detailed-radius,#stacks_in_38346 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38346 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38346 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38346 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38346 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38346 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38346 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38346 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38346 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38346 > .jack.bg-image:not(.glass){}#stacks_in_38346 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38346 > .jack.bg-image.glass.after,#stacks_in_38346 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38346 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38346 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38346 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38346 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38346 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38346 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38346 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38346 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38346 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38346 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38346 > .jack.bg-image.glass.after,#stacks_in_38346 > .glass.jack.bg-image::after{}#stacks_in_38346 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38346 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38346 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38346 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38346 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38346 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38346 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38346 > .jack.peek-shadow::before,#stacks_in_38346 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38346 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38346 > .jack{overflow:hidden;}#stacks_in_38346 > .jack.height-static{height:500px}#stacks_in_38346 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_38347 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_38347 {
		display: none !important;
	}
}
#stacks_in_38348 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38348 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38348 #jwresp_col2_stacks_in_38348{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38348 #jwresp_col1_stacks_in_38348,#stacks_in_38348 #jwresp_col2_stacks_in_38348{width:100%;float:none;display:block}#stacks_in_38348 #jwresp_col1_stacks_in_38348{margin-bottom:15px}}

#stacks_in_38348 {
	padding:  20px;
}
#stacks_in_38349 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38349 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38349 .fluid-image.unlimited img{width:100% !important}#stacks_in_38349 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38349 .fluid-image.align-left img{float:left}#stacks_in_38349 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38352Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38352Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38352Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38352Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38352Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38352Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38352Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38352Calligrapher h6, .stacks_in_38352Calligrapher h5, .stacks_in_38352Calligrapher h4, .stacks_in_38352Calligrapher h3, .stacks_in_38352Calligrapher h2, .stacks_in_38352Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38352Calligrapher, .stacks_in_38352Calligrapher h1, .stacks_in_38352Calligrapher h2, .stacks_in_38352Calligrapher h3, .stacks_in_38352Calligrapher h4, .stacks_in_38352Calligrapher h5, .stacks_in_38352Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38352targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38352Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38352Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38352Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38352Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38352 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38353 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38356 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38358 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38360Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38360Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38360Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38360Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38360Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38360Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38360Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38360Calligrapher h6, .stacks_in_38360Calligrapher h5, .stacks_in_38360Calligrapher h4, .stacks_in_38360Calligrapher h3, .stacks_in_38360Calligrapher h2, .stacks_in_38360Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38360Calligrapher, .stacks_in_38360Calligrapher h1, .stacks_in_38360Calligrapher h2, .stacks_in_38360Calligrapher h3, .stacks_in_38360Calligrapher h4, .stacks_in_38360Calligrapher h5, .stacks_in_38360Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38360targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38360Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38360Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38360Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38360Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38360 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38363 {
	line-height: 2em;
}
#stacks_in_38366{}#stacks_in_38366 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38366 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38366 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38366 > .jack.width-static{width:500px}#stacks_in_38366 > .jack.width-flexible{width:100%}#stacks_in_38366 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38366 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38366 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38366 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38366 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38366 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38366 > .jack::after{border-radius:15px}#stacks_in_38366 > .jack.border-detailed-radius,#stacks_in_38366 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38366 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38366 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38366 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38366 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38366 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38366 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38366 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38366 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38366 > .jack.bg-image:not(.glass){}#stacks_in_38366 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38366 > .jack.bg-image.glass.after,#stacks_in_38366 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38366 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38366 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38366 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38366 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38366 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38366 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38366 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38366 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38366 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38366 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38366 > .jack.bg-image.glass.after,#stacks_in_38366 > .glass.jack.bg-image::after{}#stacks_in_38366 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38366 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38366 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38366 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38366 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38366 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38366 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38366 > .jack.peek-shadow::before,#stacks_in_38366 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38366 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38366 > .jack{overflow:hidden;}#stacks_in_38366 > .jack.height-static{height:500px}#stacks_in_38366 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_38367 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_38367 {
		display: none !important;
	}
}
#stacks_in_38368 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38368 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38368 #jwresp_col2_stacks_in_38368{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38368 #jwresp_col1_stacks_in_38368,#stacks_in_38368 #jwresp_col2_stacks_in_38368{width:100%;float:none;display:block}#stacks_in_38368 #jwresp_col1_stacks_in_38368{margin-bottom:15px}}

#stacks_in_38368 {
	padding:  20px;
}
#stacks_in_38369 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38369 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38369 .fluid-image.unlimited img{width:100% !important}#stacks_in_38369 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38369 .fluid-image.align-left img{float:left}#stacks_in_38369 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_38372 {
	height: 80.00px;
}




























@media print {
	#spacerStackstacks_in_38372 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38373Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38373Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38373Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38373Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38373Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38373Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38373Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38373Calligrapher h6, .stacks_in_38373Calligrapher h5, .stacks_in_38373Calligrapher h4, .stacks_in_38373Calligrapher h3, .stacks_in_38373Calligrapher h2, .stacks_in_38373Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38373Calligrapher, .stacks_in_38373Calligrapher h1, .stacks_in_38373Calligrapher h2, .stacks_in_38373Calligrapher h3, .stacks_in_38373Calligrapher h4, .stacks_in_38373Calligrapher h5, .stacks_in_38373Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38373targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38373Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38373Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38373Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38373Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38373 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38374 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38377 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38379Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38379Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38379Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38379Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38379Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38379Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38379Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38379Calligrapher h6, .stacks_in_38379Calligrapher h5, .stacks_in_38379Calligrapher h4, .stacks_in_38379Calligrapher h3, .stacks_in_38379Calligrapher h2, .stacks_in_38379Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38379Calligrapher, .stacks_in_38379Calligrapher h1, .stacks_in_38379Calligrapher h2, .stacks_in_38379Calligrapher h3, .stacks_in_38379Calligrapher h4, .stacks_in_38379Calligrapher h5, .stacks_in_38379Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38379targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38379Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38379Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38379Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38379Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38379 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38380 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38382 {
	line-height: 2em;
}
#stacks_in_38385{}#stacks_in_38385 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38385 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38385 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38385 > .jack.width-static{width:500px}#stacks_in_38385 > .jack.width-flexible{width:100%}#stacks_in_38385 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38385 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38385 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38385 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38385 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38385 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38385 > .jack::after{border-radius:15px}#stacks_in_38385 > .jack.border-detailed-radius,#stacks_in_38385 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38385 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38385 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38385 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38385 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38385 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38385 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38385 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38385 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38385 > .jack.bg-image:not(.glass){}#stacks_in_38385 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38385 > .jack.bg-image.glass.after,#stacks_in_38385 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38385 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38385 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38385 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38385 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38385 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38385 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38385 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38385 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38385 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38385 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38385 > .jack.bg-image.glass.after,#stacks_in_38385 > .glass.jack.bg-image::after{}#stacks_in_38385 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38385 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38385 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38385 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38385 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38385 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38385 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38385 > .jack.peek-shadow::before,#stacks_in_38385 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38385 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38385 > .jack{overflow:hidden;}#stacks_in_38385 > .jack.height-static{height:500px}#stacks_in_38385 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_38386 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_38386 {
		display: none !important;
	}
}
#stacks_in_38387 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38387 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38387 #jwresp_col2_stacks_in_38387{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38387 #jwresp_col1_stacks_in_38387,#stacks_in_38387 #jwresp_col2_stacks_in_38387{width:100%;float:none;display:block}#stacks_in_38387 #jwresp_col1_stacks_in_38387{margin-bottom:15px}}

#stacks_in_38387 {
	padding:  20px;
}
#stacks_in_38388 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38388 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38388 .fluid-image.unlimited img{width:100% !important}#stacks_in_38388 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38388 .fluid-image.align-left img{float:left}#stacks_in_38388 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_38391 {
	height: 80.00px;
}




























@media print {
	#spacerStackstacks_in_38391 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38392Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38392Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38392Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38392Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38392Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38392Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38392Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38392Calligrapher h6, .stacks_in_38392Calligrapher h5, .stacks_in_38392Calligrapher h4, .stacks_in_38392Calligrapher h3, .stacks_in_38392Calligrapher h2, .stacks_in_38392Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38392Calligrapher, .stacks_in_38392Calligrapher h1, .stacks_in_38392Calligrapher h2, .stacks_in_38392Calligrapher h3, .stacks_in_38392Calligrapher h4, .stacks_in_38392Calligrapher h5, .stacks_in_38392Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38392targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38392Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38392Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38392Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38392Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38392 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38393 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38396 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38398 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38400Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38400Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38400Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38400Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38400Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38400Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38400Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38400Calligrapher h6, .stacks_in_38400Calligrapher h5, .stacks_in_38400Calligrapher h4, .stacks_in_38400Calligrapher h3, .stacks_in_38400Calligrapher h2, .stacks_in_38400Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38400Calligrapher, .stacks_in_38400Calligrapher h1, .stacks_in_38400Calligrapher h2, .stacks_in_38400Calligrapher h3, .stacks_in_38400Calligrapher h4, .stacks_in_38400Calligrapher h5, .stacks_in_38400Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38400targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38400Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38400Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38400Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38400Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38400 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38401 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38403 {
	line-height: 2em;
}
#stacks_in_38406{}#stacks_in_38406 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38406 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38406 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38406 > .jack.width-static{width:500px}#stacks_in_38406 > .jack.width-flexible{width:100%}#stacks_in_38406 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38406 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38406 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38406 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38406 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38406 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38406 > .jack::after{border-radius:15px}#stacks_in_38406 > .jack.border-detailed-radius,#stacks_in_38406 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38406 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38406 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38406 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38406 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38406 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38406 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38406 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38406 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38406 > .jack.bg-image:not(.glass){}#stacks_in_38406 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38406 > .jack.bg-image.glass.after,#stacks_in_38406 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38406 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38406 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38406 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38406 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38406 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38406 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38406 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38406 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38406 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38406 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38406 > .jack.bg-image.glass.after,#stacks_in_38406 > .glass.jack.bg-image::after{}#stacks_in_38406 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38406 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38406 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38406 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38406 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38406 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38406 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38406 > .jack.peek-shadow::before,#stacks_in_38406 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38406 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38406 > .jack{overflow:hidden;}#stacks_in_38406 > .jack.height-static{height:500px}#stacks_in_38406 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_38407 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_38407 {
		display: none !important;
	}
}
#stacks_in_38408 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38408 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38408 #jwresp_col2_stacks_in_38408{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38408 #jwresp_col1_stacks_in_38408,#stacks_in_38408 #jwresp_col2_stacks_in_38408{width:100%;float:none;display:block}#stacks_in_38408 #jwresp_col1_stacks_in_38408{margin-bottom:15px}}

#stacks_in_38408 {
	padding:  20px;
}
#stacks_in_38409 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38409 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38409 .fluid-image.unlimited img{width:100% !important}#stacks_in_38409 .fluid-image.define_max img{width:100% !important;max-width:250px !important}#stacks_in_38409 .fluid-image.align-left img{float:left}#stacks_in_38409 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 120.00px;
}

#spacerStackstacks_in_38412 {
	height: 120.00px;
}




























@media print {
	#spacerStackstacks_in_38412 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38413Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38413Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38413Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38413Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38413Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38413Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38413Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38413Calligrapher h6, .stacks_in_38413Calligrapher h5, .stacks_in_38413Calligrapher h4, .stacks_in_38413Calligrapher h3, .stacks_in_38413Calligrapher h2, .stacks_in_38413Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38413Calligrapher, .stacks_in_38413Calligrapher h1, .stacks_in_38413Calligrapher h2, .stacks_in_38413Calligrapher h3, .stacks_in_38413Calligrapher h4, .stacks_in_38413Calligrapher h5, .stacks_in_38413Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38413targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38413Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38413Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38413Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38413Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38413 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38414 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38417 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38419 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38421Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38421Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38421Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38421Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38421Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38421Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38421Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38421Calligrapher h6, .stacks_in_38421Calligrapher h5, .stacks_in_38421Calligrapher h4, .stacks_in_38421Calligrapher h3, .stacks_in_38421Calligrapher h2, .stacks_in_38421Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38421Calligrapher, .stacks_in_38421Calligrapher h1, .stacks_in_38421Calligrapher h2, .stacks_in_38421Calligrapher h3, .stacks_in_38421Calligrapher h4, .stacks_in_38421Calligrapher h5, .stacks_in_38421Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38421targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38421Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38421Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38421Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38421Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38421 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38422 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38424 {
	line-height: 2em;
}
#stacks_in_38427{}#stacks_in_38427 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38427 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38427 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38427 > .jack.width-static{width:500px}#stacks_in_38427 > .jack.width-flexible{width:100%}#stacks_in_38427 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38427 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38427 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38427 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38427 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38427 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38427 > .jack::after{border-radius:15px}#stacks_in_38427 > .jack.border-detailed-radius,#stacks_in_38427 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38427 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38427 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38427 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38427 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38427 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38427 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38427 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38427 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38427 > .jack.bg-image:not(.glass){}#stacks_in_38427 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38427 > .jack.bg-image.glass.after,#stacks_in_38427 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38427 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38427 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38427 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38427 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38427 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38427 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38427 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38427 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38427 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38427 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38427 > .jack.bg-image.glass.after,#stacks_in_38427 > .glass.jack.bg-image::after{}#stacks_in_38427 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38427 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38427 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38427 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38427 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38427 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38427 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38427 > .jack.peek-shadow::before,#stacks_in_38427 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38427 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38427 > .jack{overflow:hidden;}#stacks_in_38427 > .jack.height-static{height:500px}#stacks_in_38427 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_38428 {
	height: 25.00px;
}




























@media print {
	#spacerStackstacks_in_38428 {
		display: none !important;
	}
}
#stacks_in_38429 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38429 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38429 #jwresp_col2_stacks_in_38429{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38429 #jwresp_col1_stacks_in_38429,#stacks_in_38429 #jwresp_col2_stacks_in_38429{width:100%;float:none;display:block}#stacks_in_38429 #jwresp_col1_stacks_in_38429{margin-bottom:15px}}

#stacks_in_38429 {
	padding:  20px;
}
#stacks_in_38430 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38430 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38430 .fluid-image.unlimited img{width:100% !important}#stacks_in_38430 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38430 .fluid-image.align-left img{float:left}#stacks_in_38430 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_38433 {
	height: 80.00px;
}




























@media print {
	#spacerStackstacks_in_38433 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38434Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38434Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38434Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38434Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38434Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38434Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38434Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38434Calligrapher h6, .stacks_in_38434Calligrapher h5, .stacks_in_38434Calligrapher h4, .stacks_in_38434Calligrapher h3, .stacks_in_38434Calligrapher h2, .stacks_in_38434Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38434Calligrapher, .stacks_in_38434Calligrapher h1, .stacks_in_38434Calligrapher h2, .stacks_in_38434Calligrapher h3, .stacks_in_38434Calligrapher h4, .stacks_in_38434Calligrapher h5, .stacks_in_38434Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38434targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38434Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38434Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38434Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38434Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38434 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38435 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38438 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38440 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38442Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38442Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38442Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38442Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38442Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38442Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38442Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38442Calligrapher h6, .stacks_in_38442Calligrapher h5, .stacks_in_38442Calligrapher h4, .stacks_in_38442Calligrapher h3, .stacks_in_38442Calligrapher h2, .stacks_in_38442Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38442Calligrapher, .stacks_in_38442Calligrapher h1, .stacks_in_38442Calligrapher h2, .stacks_in_38442Calligrapher h3, .stacks_in_38442Calligrapher h4, .stacks_in_38442Calligrapher h5, .stacks_in_38442Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38442targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38442Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38442Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38442Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38442Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38442 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38443 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38445 {
	line-height: 2em;
}
#stacks_in_38448{}#stacks_in_38448 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38448 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38448 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38448 > .jack.width-static{width:500px}#stacks_in_38448 > .jack.width-flexible{width:100%}#stacks_in_38448 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38448 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38448 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38448 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38448 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38448 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38448 > .jack::after{border-radius:15px}#stacks_in_38448 > .jack.border-detailed-radius,#stacks_in_38448 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38448 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38448 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38448 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38448 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38448 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38448 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38448 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38448 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38448 > .jack.bg-image:not(.glass){}#stacks_in_38448 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38448 > .jack.bg-image.glass.after,#stacks_in_38448 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38448 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38448 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38448 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38448 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38448 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38448 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38448 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38448 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38448 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38448 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38448 > .jack.bg-image.glass.after,#stacks_in_38448 > .glass.jack.bg-image::after{}#stacks_in_38448 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38448 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38448 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38448 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38448 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38448 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38448 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38448 > .jack.peek-shadow::before,#stacks_in_38448 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38448 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38448 > .jack{overflow:hidden;}#stacks_in_38448 > .jack.height-static{height:500px}#stacks_in_38448 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_38449 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_38449 {
		display: none !important;
	}
}
#stacks_in_38450 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38450 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38450 #jwresp_col2_stacks_in_38450{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38450 #jwresp_col1_stacks_in_38450,#stacks_in_38450 #jwresp_col2_stacks_in_38450{width:100%;float:none;display:block}#stacks_in_38450 #jwresp_col1_stacks_in_38450{margin-bottom:15px}}

#stacks_in_38450 {
	padding:  20px;
}
#stacks_in_38451 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38451 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38451 .fluid-image.unlimited img{width:100% !important}#stacks_in_38451 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38451 .fluid-image.align-left img{float:left}#stacks_in_38451 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38454Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38454Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38454Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38454Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38454Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38454Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38454Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38454Calligrapher h6, .stacks_in_38454Calligrapher h5, .stacks_in_38454Calligrapher h4, .stacks_in_38454Calligrapher h3, .stacks_in_38454Calligrapher h2, .stacks_in_38454Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38454Calligrapher, .stacks_in_38454Calligrapher h1, .stacks_in_38454Calligrapher h2, .stacks_in_38454Calligrapher h3, .stacks_in_38454Calligrapher h4, .stacks_in_38454Calligrapher h5, .stacks_in_38454Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38454targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38454Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38454Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38454Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38454Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38454 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38455 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38458 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38460 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38462Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38462Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38462Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38462Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38462Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38462Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38462Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38462Calligrapher h6, .stacks_in_38462Calligrapher h5, .stacks_in_38462Calligrapher h4, .stacks_in_38462Calligrapher h3, .stacks_in_38462Calligrapher h2, .stacks_in_38462Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38462Calligrapher, .stacks_in_38462Calligrapher h1, .stacks_in_38462Calligrapher h2, .stacks_in_38462Calligrapher h3, .stacks_in_38462Calligrapher h4, .stacks_in_38462Calligrapher h5, .stacks_in_38462Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38462targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38462Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38462Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38462Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38462Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38462 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38463 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38465 {
	line-height: 2em;
}
#stacks_in_38468{}#stacks_in_38468 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38468 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38468 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38468 > .jack.width-static{width:500px}#stacks_in_38468 > .jack.width-flexible{width:100%}#stacks_in_38468 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38468 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38468 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38468 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38468 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38468 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38468 > .jack::after{border-radius:15px}#stacks_in_38468 > .jack.border-detailed-radius,#stacks_in_38468 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38468 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38468 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38468 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38468 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38468 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38468 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38468 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38468 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38468 > .jack.bg-image:not(.glass){}#stacks_in_38468 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38468 > .jack.bg-image.glass.after,#stacks_in_38468 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38468 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38468 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38468 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38468 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38468 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38468 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38468 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38468 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38468 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38468 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38468 > .jack.bg-image.glass.after,#stacks_in_38468 > .glass.jack.bg-image::after{}#stacks_in_38468 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38468 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38468 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38468 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38468 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38468 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38468 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38468 > .jack.peek-shadow::before,#stacks_in_38468 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38468 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38468 > .jack{overflow:hidden;}#stacks_in_38468 > .jack.height-static{height:500px}#stacks_in_38468 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_38469 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_38469 {
		display: none !important;
	}
}
#stacks_in_38470 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_38470 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_38470 #jwresp_col2_stacks_in_38470{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_38470 #jwresp_col1_stacks_in_38470,#stacks_in_38470 #jwresp_col2_stacks_in_38470{width:100%;float:none;display:block}#stacks_in_38470 #jwresp_col1_stacks_in_38470{margin-bottom:15px}}

#stacks_in_38470 {
	padding:  20px;
}
#stacks_in_38005 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38005 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38005 .fluid-image.unlimited img{width:100% !important}#stacks_in_38005 .fluid-image.define_max img{width:100% !important;max-width:250px !important}#stacks_in_38005 .fluid-image.align-left img{float:left}#stacks_in_38005 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 130.00px;
}

#spacerStackstacks_in_38473 {
	height: 130.00px;
}




























@media print {
	#spacerStackstacks_in_38473 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38474Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38474Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38474Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38474Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38474Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38474Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38474Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38474Calligrapher h6, .stacks_in_38474Calligrapher h5, .stacks_in_38474Calligrapher h4, .stacks_in_38474Calligrapher h3, .stacks_in_38474Calligrapher h2, .stacks_in_38474Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38474Calligrapher, .stacks_in_38474Calligrapher h1, .stacks_in_38474Calligrapher h2, .stacks_in_38474Calligrapher h3, .stacks_in_38474Calligrapher h4, .stacks_in_38474Calligrapher h5, .stacks_in_38474Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38474targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38474Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38474Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38474Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38474Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38474 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38475 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38478 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38480Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38480Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38480Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38480Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38480Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38480Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38480Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38480Calligrapher h6, .stacks_in_38480Calligrapher h5, .stacks_in_38480Calligrapher h4, .stacks_in_38480Calligrapher h3, .stacks_in_38480Calligrapher h2, .stacks_in_38480Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38480Calligrapher, .stacks_in_38480Calligrapher h1, .stacks_in_38480Calligrapher h2, .stacks_in_38480Calligrapher h3, .stacks_in_38480Calligrapher h4, .stacks_in_38480Calligrapher h5, .stacks_in_38480Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38480targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38480Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38480Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38480Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38480Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38480 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38481 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38483 {
	line-height: 2em;
}
#stacks_in_38006{padding-left:0px;padding-right:0px;}#stacks_in_38006 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38006 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38006 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38006 > .jack.width-static{width:500px}#stacks_in_38006 > .jack.width-flexible{width:100%}#stacks_in_38006 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38006 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38006 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38006 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38006 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38006 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38006 > .jack::after{border-radius:0px}#stacks_in_38006 > .jack.border-detailed-radius,#stacks_in_38006 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_38006 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38006 > .jack.bg-color{background-color:#89C5FF}#stacks_in_38006 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_38006 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38006 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38006 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38006 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38006 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38006 > .jack.bg-image:not(.glass){}#stacks_in_38006 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38006 > .jack.bg-image.glass.after,#stacks_in_38006 > .glass.jack.bg-image::after{opacity:0.100;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38006 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38006 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38006 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38006 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38006 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38006 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38006 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38006 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38006 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38006 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38006 > .jack.bg-image.glass.after,#stacks_in_38006 > .glass.jack.bg-image::after{}#stacks_in_38006 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38006 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38006 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_38006 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_38006 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_38006 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38006 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38006 > .jack.peek-shadow::before,#stacks_in_38006 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_38006 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38006 > .jack{overflow:visible;}#stacks_in_38006 > .jack.height-static{height:100px}#stacks_in_38006 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38486{}#stacks_in_38486 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38486 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38486 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38486 > .jack.width-static{width:500px}#stacks_in_38486 > .jack.width-flexible{width:100%}#stacks_in_38486 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38486 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38486 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38486 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38486 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38486 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38486 > .jack::after{border-radius:15px}#stacks_in_38486 > .jack.border-detailed-radius,#stacks_in_38486 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 0.00px 0.00px}#stacks_in_38486 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38486 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38486 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_38486 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38486 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38486 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38486 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38486 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38486 > .jack.bg-image:not(.glass){}#stacks_in_38486 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38486 > .jack.bg-image.glass.after,#stacks_in_38486 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38486 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38486 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38486 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38486 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38486 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38486 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38486 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38486 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38486 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38486 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38486 > .jack.bg-image.glass.after,#stacks_in_38486 > .glass.jack.bg-image::after{}#stacks_in_38486 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38486 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38486 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38486 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38486 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38486 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38486 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38486 > .jack.peek-shadow::before,#stacks_in_38486 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38486 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38486 > .jack{overflow:hidden;}#stacks_in_38486 > .jack.height-static{height:100px}#stacks_in_38486 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38488Calligrapher{			font-size: 130% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38488Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38488Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38488Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38488Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38488Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38488Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38488Calligrapher h6, .stacks_in_38488Calligrapher h5, .stacks_in_38488Calligrapher h4, .stacks_in_38488Calligrapher h3, .stacks_in_38488Calligrapher h2, .stacks_in_38488Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38488Calligrapher, .stacks_in_38488Calligrapher h1, .stacks_in_38488Calligrapher h2, .stacks_in_38488Calligrapher h3, .stacks_in_38488Calligrapher h4, .stacks_in_38488Calligrapher h5, .stacks_in_38488Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_38488Calligrapher, .stacks_in_38488Calligrapher h1, .stacks_in_38488Calligrapher h2, .stacks_in_38488Calligrapher h3, .stacks_in_38488Calligrapher h4, .stacks_in_38488Calligrapher h5, .stacks_in_38488Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38488targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38488Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38488Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38488Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38488Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38488 {
	padding: 0px 20px 0px 20px;
}
/* Start dooHeader X stack CSS code */.stacks_in_38489x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_38489x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_38489x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_38490 {
	display:inline-block; width:100%; line-height: 0.750000em;
	font-weight: lighter;
}
#stacks_in_38875{overflow:visible;-webkit-font-smoothing:antialiased;}#stacks_in_38875 .cycler_reel{position:relative;width:100%;overflow:hidden}#stacks_in_38875{visibility:hidden}#stacks_in_38875 .cycler_reel > div.stacks_out{width:100% !important}#stacks_in_38875 .cycler_reel > div.stacks_out:first{visibility:visible}#stacks_in_38875 .cycler_nav{cursor:pointer;z-index:101;display:block;width:20px;height:20px;position:absolute;background:url(../thai_verstehen_files/cycler-images/75x75-ChevronLight.png) 0px 0px no-repeat;background-size:100%;top:30%;}#stacks_in_38875 .cycler_nav.prev{left:0px;background-position:0px 0px}#stacks_in_38875 .cycler_nav.prev:hover{background-position:0px -20px}#stacks_in_38875 .cycler_nav.prev:active{background-position:0px -40px}#stacks_in_38875 .cycler_nav.next{right:0px;background-position:0px -60px}#stacks_in_38875 .cycler_nav.next:hover{background-position:0px -80px}#stacks_in_38875 .cycler_nav.next:active{background-position:0px -100px}
#stacks_in_38876{}#stacks_in_38876 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38876 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38876 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38876 > .jack.width-static{width:500px}#stacks_in_38876 > .jack.width-flexible{width:100%}#stacks_in_38876 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38876 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38876 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38876 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38876 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38876 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38876 > .jack::after{border-radius:15px}#stacks_in_38876 > .jack.border-detailed-radius,#stacks_in_38876 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38876 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38876 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38876 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38876 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38876 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38876 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38876 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38876 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38876 > .jack.bg-image:not(.glass){}#stacks_in_38876 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38876 > .jack.bg-image.glass.after,#stacks_in_38876 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38876 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38876 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38876 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38876 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38876 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38876 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38876 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38876 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38876 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38876 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38876 > .jack.bg-image.glass.after,#stacks_in_38876 > .glass.jack.bg-image::after{}#stacks_in_38876 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38876 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38876 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38876 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38876 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38876 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38876 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38876 > .jack.peek-shadow::before,#stacks_in_38876 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38876 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38876 > .jack{overflow:hidden;}#stacks_in_38876 > .jack.height-static{height:100px}#stacks_in_38876 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38878 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38878 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38878 .fluid-image.unlimited img{width:100% !important}#stacks_in_38878 .fluid-image.define_max img{width:100% !important;max-width:400px !important}#stacks_in_38878 .fluid-image.align-left img{float:left}#stacks_in_38878 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38881Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38881Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38881Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38881Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38881Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38881Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38881Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38881Calligrapher h6, .stacks_in_38881Calligrapher h5, .stacks_in_38881Calligrapher h4, .stacks_in_38881Calligrapher h3, .stacks_in_38881Calligrapher h2, .stacks_in_38881Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38881Calligrapher, .stacks_in_38881Calligrapher h1, .stacks_in_38881Calligrapher h2, .stacks_in_38881Calligrapher h3, .stacks_in_38881Calligrapher h4, .stacks_in_38881Calligrapher h5, .stacks_in_38881Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38881targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38881Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38881Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38881Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38881Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38881 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38882 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38885 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38887 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38889Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38889Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38889Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38889Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38889Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38889Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38889Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38889Calligrapher h6, .stacks_in_38889Calligrapher h5, .stacks_in_38889Calligrapher h4, .stacks_in_38889Calligrapher h3, .stacks_in_38889Calligrapher h2, .stacks_in_38889Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38889Calligrapher, .stacks_in_38889Calligrapher h1, .stacks_in_38889Calligrapher h2, .stacks_in_38889Calligrapher h3, .stacks_in_38889Calligrapher h4, .stacks_in_38889Calligrapher h5, .stacks_in_38889Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38889targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38889Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38889Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38889Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38889Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38889 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38892 {
	line-height: 2em;
}
#stacks_in_38893{}#stacks_in_38893 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38893 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38893 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38893 > .jack.width-static{width:500px}#stacks_in_38893 > .jack.width-flexible{width:100%}#stacks_in_38893 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38893 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38893 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38893 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38893 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38893 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38893 > .jack::after{border-radius:15px}#stacks_in_38893 > .jack.border-detailed-radius,#stacks_in_38893 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38893 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38893 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38893 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38893 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38893 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38893 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38893 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38893 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38893 > .jack.bg-image:not(.glass){}#stacks_in_38893 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38893 > .jack.bg-image.glass.after,#stacks_in_38893 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38893 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38893 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38893 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38893 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38893 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38893 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38893 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38893 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38893 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38893 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38893 > .jack.bg-image.glass.after,#stacks_in_38893 > .glass.jack.bg-image::after{}#stacks_in_38893 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38893 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38893 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38893 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38893 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38893 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38893 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38893 > .jack.peek-shadow::before,#stacks_in_38893 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38893 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38893 > .jack{overflow:hidden;}#stacks_in_38893 > .jack.height-static{height:100px}#stacks_in_38893 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38894 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38894 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38894 .fluid-image.unlimited img{width:100% !important}#stacks_in_38894 .fluid-image.define_max img{width:100% !important;max-width:400px !important}#stacks_in_38894 .fluid-image.align-left img{float:left}#stacks_in_38894 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38897Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38897Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38897Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38897Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38897Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38897Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38897Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38897Calligrapher h6, .stacks_in_38897Calligrapher h5, .stacks_in_38897Calligrapher h4, .stacks_in_38897Calligrapher h3, .stacks_in_38897Calligrapher h2, .stacks_in_38897Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38897Calligrapher, .stacks_in_38897Calligrapher h1, .stacks_in_38897Calligrapher h2, .stacks_in_38897Calligrapher h3, .stacks_in_38897Calligrapher h4, .stacks_in_38897Calligrapher h5, .stacks_in_38897Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38897targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38897Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38897Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38897Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38897Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38897 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38898 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38901 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38905Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38905Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38905Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38905Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38905Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38905Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38905Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38905Calligrapher h6, .stacks_in_38905Calligrapher h5, .stacks_in_38905Calligrapher h4, .stacks_in_38905Calligrapher h3, .stacks_in_38905Calligrapher h2, .stacks_in_38905Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38905Calligrapher, .stacks_in_38905Calligrapher h1, .stacks_in_38905Calligrapher h2, .stacks_in_38905Calligrapher h3, .stacks_in_38905Calligrapher h4, .stacks_in_38905Calligrapher h5, .stacks_in_38905Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38905targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38905Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38905Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38905Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38905Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38905 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38908 {
	line-height: 2em;
}
#stacks_in_38909{}#stacks_in_38909 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38909 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38909 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38909 > .jack.width-static{width:500px}#stacks_in_38909 > .jack.width-flexible{width:100%}#stacks_in_38909 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38909 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38909 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38909 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38909 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38909 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38909 > .jack::after{border-radius:15px}#stacks_in_38909 > .jack.border-detailed-radius,#stacks_in_38909 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38909 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38909 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38909 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38909 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38909 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38909 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38909 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38909 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38909 > .jack.bg-image:not(.glass){}#stacks_in_38909 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38909 > .jack.bg-image.glass.after,#stacks_in_38909 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38909 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38909 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38909 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38909 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38909 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38909 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38909 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38909 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38909 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38909 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38909 > .jack.bg-image.glass.after,#stacks_in_38909 > .glass.jack.bg-image::after{}#stacks_in_38909 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38909 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38909 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38909 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38909 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38909 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38909 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38909 > .jack.peek-shadow::before,#stacks_in_38909 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38909 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38909 > .jack{overflow:hidden;}#stacks_in_38909 > .jack.height-static{height:100px}#stacks_in_38909 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38910 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38910 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38910 .fluid-image.unlimited img{width:100% !important}#stacks_in_38910 .fluid-image.define_max img{width:100% !important;max-width:600px !important}#stacks_in_38910 .fluid-image.align-left img{float:left}#stacks_in_38910 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38913Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38913Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38913Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38913Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38913Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38913Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38913Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38913Calligrapher h6, .stacks_in_38913Calligrapher h5, .stacks_in_38913Calligrapher h4, .stacks_in_38913Calligrapher h3, .stacks_in_38913Calligrapher h2, .stacks_in_38913Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38913Calligrapher, .stacks_in_38913Calligrapher h1, .stacks_in_38913Calligrapher h2, .stacks_in_38913Calligrapher h3, .stacks_in_38913Calligrapher h4, .stacks_in_38913Calligrapher h5, .stacks_in_38913Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38913targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38913Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38913Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38913Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38913Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38913 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38914 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38917 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38921Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38921Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38921Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38921Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38921Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38921Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38921Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38921Calligrapher h6, .stacks_in_38921Calligrapher h5, .stacks_in_38921Calligrapher h4, .stacks_in_38921Calligrapher h3, .stacks_in_38921Calligrapher h2, .stacks_in_38921Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38921Calligrapher, .stacks_in_38921Calligrapher h1, .stacks_in_38921Calligrapher h2, .stacks_in_38921Calligrapher h3, .stacks_in_38921Calligrapher h4, .stacks_in_38921Calligrapher h5, .stacks_in_38921Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38921targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38921Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38921Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38921Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38921Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38921 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38924 {
	line-height: 2em;
}
#stacks_in_38925{}#stacks_in_38925 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38925 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38925 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38925 > .jack.width-static{width:500px}#stacks_in_38925 > .jack.width-flexible{width:100%}#stacks_in_38925 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38925 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38925 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38925 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38925 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38925 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38925 > .jack::after{border-radius:15px}#stacks_in_38925 > .jack.border-detailed-radius,#stacks_in_38925 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38925 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38925 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38925 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38925 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38925 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38925 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38925 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38925 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38925 > .jack.bg-image:not(.glass){}#stacks_in_38925 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38925 > .jack.bg-image.glass.after,#stacks_in_38925 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38925 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38925 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38925 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38925 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38925 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38925 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38925 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38925 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38925 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38925 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38925 > .jack.bg-image.glass.after,#stacks_in_38925 > .glass.jack.bg-image::after{}#stacks_in_38925 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38925 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38925 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38925 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38925 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38925 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38925 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38925 > .jack.peek-shadow::before,#stacks_in_38925 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38925 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38925 > .jack{overflow:hidden;}#stacks_in_38925 > .jack.height-static{height:500px}#stacks_in_38925 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38926Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38926Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38926Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38926Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38926Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38926Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38926Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38926Calligrapher h6, .stacks_in_38926Calligrapher h5, .stacks_in_38926Calligrapher h4, .stacks_in_38926Calligrapher h3, .stacks_in_38926Calligrapher h2, .stacks_in_38926Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38926Calligrapher, .stacks_in_38926Calligrapher h1, .stacks_in_38926Calligrapher h2, .stacks_in_38926Calligrapher h3, .stacks_in_38926Calligrapher h4, .stacks_in_38926Calligrapher h5, .stacks_in_38926Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38926targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38926Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38926Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38926Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38926Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38926 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38927 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38930 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38934Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38934Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38934Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38934Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38934Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38934Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38934Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38934Calligrapher h6, .stacks_in_38934Calligrapher h5, .stacks_in_38934Calligrapher h4, .stacks_in_38934Calligrapher h3, .stacks_in_38934Calligrapher h2, .stacks_in_38934Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38934Calligrapher, .stacks_in_38934Calligrapher h1, .stacks_in_38934Calligrapher h2, .stacks_in_38934Calligrapher h3, .stacks_in_38934Calligrapher h4, .stacks_in_38934Calligrapher h5, .stacks_in_38934Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38934targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38934Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38934Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38934Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38934Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38934 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38937 {
	line-height: 2em;
}
#stacks_in_38939{}#stacks_in_38939 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38939 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38939 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38939 > .jack.width-static{width:500px}#stacks_in_38939 > .jack.width-flexible{width:100%}#stacks_in_38939 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38939 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38939 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38939 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38939 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38939 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38939 > .jack::after{border-radius:15px}#stacks_in_38939 > .jack.border-detailed-radius,#stacks_in_38939 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38939 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38939 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38939 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38939 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38939 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38939 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38939 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38939 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38939 > .jack.bg-image:not(.glass){}#stacks_in_38939 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38939 > .jack.bg-image.glass.after,#stacks_in_38939 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38939 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38939 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38939 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38939 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38939 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38939 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38939 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38939 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38939 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38939 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38939 > .jack.bg-image.glass.after,#stacks_in_38939 > .glass.jack.bg-image::after{}#stacks_in_38939 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38939 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38939 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38939 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38939 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38939 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38939 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38939 > .jack.peek-shadow::before,#stacks_in_38939 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38939 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38939 > .jack{overflow:hidden;}#stacks_in_38939 > .jack.height-static{height:100px}#stacks_in_38939 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38940 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38940 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38940 .fluid-image.unlimited img{width:100% !important}#stacks_in_38940 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38940 .fluid-image.align-left img{float:left}#stacks_in_38940 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38943Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38943Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38943Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38943Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38943Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38943Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38943Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38943Calligrapher h6, .stacks_in_38943Calligrapher h5, .stacks_in_38943Calligrapher h4, .stacks_in_38943Calligrapher h3, .stacks_in_38943Calligrapher h2, .stacks_in_38943Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38943Calligrapher, .stacks_in_38943Calligrapher h1, .stacks_in_38943Calligrapher h2, .stacks_in_38943Calligrapher h3, .stacks_in_38943Calligrapher h4, .stacks_in_38943Calligrapher h5, .stacks_in_38943Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38943targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38943Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38943Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38943Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38943Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38943 {
	margin: 30px 0px 0px 0px;
	padding: 20px 20px 0px 20px;
}

#stacks_in_38944 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38947 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38951Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38951Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38951Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38951Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38951Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38951Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38951Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38951Calligrapher h6, .stacks_in_38951Calligrapher h5, .stacks_in_38951Calligrapher h4, .stacks_in_38951Calligrapher h3, .stacks_in_38951Calligrapher h2, .stacks_in_38951Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38951Calligrapher, .stacks_in_38951Calligrapher h1, .stacks_in_38951Calligrapher h2, .stacks_in_38951Calligrapher h3, .stacks_in_38951Calligrapher h4, .stacks_in_38951Calligrapher h5, .stacks_in_38951Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38951targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38951Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38951Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38951Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38951Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38951 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38954 {
	line-height: 2em;
}
#stacks_in_38955{}#stacks_in_38955 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38955 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38955 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38955 > .jack.width-static{width:500px}#stacks_in_38955 > .jack.width-flexible{width:100%}#stacks_in_38955 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38955 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38955 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38955 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38955 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38955 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38955 > .jack::after{border-radius:15px}#stacks_in_38955 > .jack.border-detailed-radius,#stacks_in_38955 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38955 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38955 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38955 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38955 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38955 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38955 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38955 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38955 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38955 > .jack.bg-image:not(.glass){}#stacks_in_38955 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38955 > .jack.bg-image.glass.after,#stacks_in_38955 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38955 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38955 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38955 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38955 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38955 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38955 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38955 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38955 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38955 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38955 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38955 > .jack.bg-image.glass.after,#stacks_in_38955 > .glass.jack.bg-image::after{}#stacks_in_38955 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38955 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38955 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38955 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38955 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38955 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38955 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38955 > .jack.peek-shadow::before,#stacks_in_38955 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38955 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38955 > .jack{overflow:hidden;}#stacks_in_38955 > .jack.height-static{height:100px}#stacks_in_38955 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38956 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38956 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38956 .fluid-image.unlimited img{width:100% !important}#stacks_in_38956 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38956 .fluid-image.align-left img{float:left}#stacks_in_38956 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38959Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38959Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38959Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38959Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38959Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38959Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38959Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38959Calligrapher h6, .stacks_in_38959Calligrapher h5, .stacks_in_38959Calligrapher h4, .stacks_in_38959Calligrapher h3, .stacks_in_38959Calligrapher h2, .stacks_in_38959Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38959Calligrapher, .stacks_in_38959Calligrapher h1, .stacks_in_38959Calligrapher h2, .stacks_in_38959Calligrapher h3, .stacks_in_38959Calligrapher h4, .stacks_in_38959Calligrapher h5, .stacks_in_38959Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38959targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38959Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38959Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38959Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38959Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38959 {
	margin: 30px 0px 0px 0px;
	padding: 20px 20px 0px 20px;
}

#stacks_in_38960 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38963 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38965 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38967 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38971Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38971Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38971Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38971Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38971Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38971Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38971Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38971Calligrapher h6, .stacks_in_38971Calligrapher h5, .stacks_in_38971Calligrapher h4, .stacks_in_38971Calligrapher h3, .stacks_in_38971Calligrapher h2, .stacks_in_38971Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38971Calligrapher, .stacks_in_38971Calligrapher h1, .stacks_in_38971Calligrapher h2, .stacks_in_38971Calligrapher h3, .stacks_in_38971Calligrapher h4, .stacks_in_38971Calligrapher h5, .stacks_in_38971Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38971targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38971Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38971Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38971Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38971Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38971 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38974 {
	line-height: 2em;
}
#stacks_in_38975{}#stacks_in_38975 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38975 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38975 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38975 > .jack.width-static{width:500px}#stacks_in_38975 > .jack.width-flexible{width:100%}#stacks_in_38975 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38975 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38975 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38975 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38975 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38975 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38975 > .jack::after{border-radius:15px}#stacks_in_38975 > .jack.border-detailed-radius,#stacks_in_38975 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38975 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38975 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38975 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38975 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38975 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38975 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38975 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38975 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38975 > .jack.bg-image:not(.glass){}#stacks_in_38975 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38975 > .jack.bg-image.glass.after,#stacks_in_38975 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38975 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38975 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38975 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38975 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38975 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38975 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38975 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38975 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38975 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38975 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38975 > .jack.bg-image.glass.after,#stacks_in_38975 > .glass.jack.bg-image::after{}#stacks_in_38975 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38975 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38975 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38975 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38975 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38975 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38975 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38975 > .jack.peek-shadow::before,#stacks_in_38975 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38975 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38975 > .jack{overflow:hidden;}#stacks_in_38975 > .jack.height-static{height:100px}#stacks_in_38975 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38976 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38976 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38976 .fluid-image.unlimited img{width:100% !important}#stacks_in_38976 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38976 .fluid-image.align-left img{float:left}#stacks_in_38976 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38979Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38979Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38979Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38979Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38979Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38979Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38979Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38979Calligrapher h6, .stacks_in_38979Calligrapher h5, .stacks_in_38979Calligrapher h4, .stacks_in_38979Calligrapher h3, .stacks_in_38979Calligrapher h2, .stacks_in_38979Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38979Calligrapher, .stacks_in_38979Calligrapher h1, .stacks_in_38979Calligrapher h2, .stacks_in_38979Calligrapher h3, .stacks_in_38979Calligrapher h4, .stacks_in_38979Calligrapher h5, .stacks_in_38979Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38979targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38979Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38979Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38979Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38979Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38979 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38980 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38983 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38987Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38987Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38987Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38987Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38987Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38987Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38987Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38987Calligrapher h6, .stacks_in_38987Calligrapher h5, .stacks_in_38987Calligrapher h4, .stacks_in_38987Calligrapher h3, .stacks_in_38987Calligrapher h2, .stacks_in_38987Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38987Calligrapher, .stacks_in_38987Calligrapher h1, .stacks_in_38987Calligrapher h2, .stacks_in_38987Calligrapher h3, .stacks_in_38987Calligrapher h4, .stacks_in_38987Calligrapher h5, .stacks_in_38987Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38987targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38987Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38987Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38987Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38987Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38987 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38990 {
	line-height: 2em;
}
#stacks_in_38991{}#stacks_in_38991 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_38991 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38991 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38991 > .jack.width-static{width:500px}#stacks_in_38991 > .jack.width-flexible{width:100%}#stacks_in_38991 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38991 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38991 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38991 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38991 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38991 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38991 > .jack::after{border-radius:15px}#stacks_in_38991 > .jack.border-detailed-radius,#stacks_in_38991 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38991 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38991 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38991 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38991 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38991 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38991 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38991 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38991 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38991 > .jack.bg-image:not(.glass){}#stacks_in_38991 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38991 > .jack.bg-image.glass.after,#stacks_in_38991 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38991 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38991 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38991 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38991 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38991 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38991 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38991 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38991 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38991 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38991 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38991 > .jack.bg-image.glass.after,#stacks_in_38991 > .glass.jack.bg-image::after{}#stacks_in_38991 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38991 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38991 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38991 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38991 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38991 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38991 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38991 > .jack.peek-shadow::before,#stacks_in_38991 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38991 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38991 > .jack{overflow:hidden;}#stacks_in_38991 > .jack.height-static{height:100px}#stacks_in_38991 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38992 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38992 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38992 .fluid-image.unlimited img{width:100% !important}#stacks_in_38992 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38992 .fluid-image.align-left img{float:left}#stacks_in_38992 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38995Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_38995Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38995Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38995Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38995Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38995Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38995Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38995Calligrapher h6, .stacks_in_38995Calligrapher h5, .stacks_in_38995Calligrapher h4, .stacks_in_38995Calligrapher h3, .stacks_in_38995Calligrapher h2, .stacks_in_38995Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38995Calligrapher, .stacks_in_38995Calligrapher h1, .stacks_in_38995Calligrapher h2, .stacks_in_38995Calligrapher h3, .stacks_in_38995Calligrapher h4, .stacks_in_38995Calligrapher h5, .stacks_in_38995Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38995targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38995Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38995Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38995Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38995Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38995 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38996 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38999 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39003Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39003Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39003Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39003Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39003Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39003Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39003Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39003Calligrapher h6, .stacks_in_39003Calligrapher h5, .stacks_in_39003Calligrapher h4, .stacks_in_39003Calligrapher h3, .stacks_in_39003Calligrapher h2, .stacks_in_39003Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39003Calligrapher, .stacks_in_39003Calligrapher h1, .stacks_in_39003Calligrapher h2, .stacks_in_39003Calligrapher h3, .stacks_in_39003Calligrapher h4, .stacks_in_39003Calligrapher h5, .stacks_in_39003Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39003targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39003Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39003Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39003Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39003Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39003 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39006 {
	line-height: 2em;
}
#stacks_in_39007{}#stacks_in_39007 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39007 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39007 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39007 > .jack.width-static{width:500px}#stacks_in_39007 > .jack.width-flexible{width:100%}#stacks_in_39007 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39007 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39007 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39007 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39007 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39007 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39007 > .jack::after{border-radius:15px}#stacks_in_39007 > .jack.border-detailed-radius,#stacks_in_39007 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39007 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39007 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39007 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39007 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39007 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39007 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39007 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39007 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39007 > .jack.bg-image:not(.glass){}#stacks_in_39007 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39007 > .jack.bg-image.glass.after,#stacks_in_39007 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39007 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39007 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39007 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39007 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39007 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39007 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39007 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39007 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39007 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39007 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39007 > .jack.bg-image.glass.after,#stacks_in_39007 > .glass.jack.bg-image::after{}#stacks_in_39007 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39007 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39007 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39007 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39007 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39007 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39007 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39007 > .jack.peek-shadow::before,#stacks_in_39007 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39007 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39007 > .jack{overflow:hidden;}#stacks_in_39007 > .jack.height-static{height:100px}#stacks_in_39007 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39008 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39008 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39008 .fluid-image.unlimited img{width:100% !important}#stacks_in_39008 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39008 .fluid-image.align-left img{float:left}#stacks_in_39008 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39011Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39011Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39011Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39011Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39011Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39011Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39011Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39011Calligrapher h6, .stacks_in_39011Calligrapher h5, .stacks_in_39011Calligrapher h4, .stacks_in_39011Calligrapher h3, .stacks_in_39011Calligrapher h2, .stacks_in_39011Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39011Calligrapher, .stacks_in_39011Calligrapher h1, .stacks_in_39011Calligrapher h2, .stacks_in_39011Calligrapher h3, .stacks_in_39011Calligrapher h4, .stacks_in_39011Calligrapher h5, .stacks_in_39011Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39011targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39011Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39011Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39011Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39011Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39011 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39012 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39015 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39019Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39019Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39019Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39019Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39019Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39019Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39019Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39019Calligrapher h6, .stacks_in_39019Calligrapher h5, .stacks_in_39019Calligrapher h4, .stacks_in_39019Calligrapher h3, .stacks_in_39019Calligrapher h2, .stacks_in_39019Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39019Calligrapher, .stacks_in_39019Calligrapher h1, .stacks_in_39019Calligrapher h2, .stacks_in_39019Calligrapher h3, .stacks_in_39019Calligrapher h4, .stacks_in_39019Calligrapher h5, .stacks_in_39019Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39019targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39019Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39019Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39019Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39019Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39019 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39022 {
	line-height: 2em;
}
#stacks_in_39023{}#stacks_in_39023 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39023 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39023 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39023 > .jack.width-static{width:500px}#stacks_in_39023 > .jack.width-flexible{width:100%}#stacks_in_39023 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39023 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39023 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39023 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39023 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39023 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39023 > .jack::after{border-radius:15px}#stacks_in_39023 > .jack.border-detailed-radius,#stacks_in_39023 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39023 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39023 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39023 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39023 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39023 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39023 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39023 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39023 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39023 > .jack.bg-image:not(.glass){}#stacks_in_39023 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39023 > .jack.bg-image.glass.after,#stacks_in_39023 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39023 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39023 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39023 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39023 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39023 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39023 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39023 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39023 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39023 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39023 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39023 > .jack.bg-image.glass.after,#stacks_in_39023 > .glass.jack.bg-image::after{}#stacks_in_39023 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39023 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39023 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39023 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39023 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39023 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39023 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39023 > .jack.peek-shadow::before,#stacks_in_39023 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39023 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39023 > .jack{overflow:hidden;}#stacks_in_39023 > .jack.height-static{height:100px}#stacks_in_39023 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39024 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39024 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39024 .fluid-image.unlimited img{width:100% !important}#stacks_in_39024 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39024 .fluid-image.align-left img{float:left}#stacks_in_39024 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39027Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39027Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39027Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39027Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39027Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39027Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39027Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39027Calligrapher h6, .stacks_in_39027Calligrapher h5, .stacks_in_39027Calligrapher h4, .stacks_in_39027Calligrapher h3, .stacks_in_39027Calligrapher h2, .stacks_in_39027Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39027Calligrapher, .stacks_in_39027Calligrapher h1, .stacks_in_39027Calligrapher h2, .stacks_in_39027Calligrapher h3, .stacks_in_39027Calligrapher h4, .stacks_in_39027Calligrapher h5, .stacks_in_39027Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39027targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39027Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39027Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39027Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39027Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39027 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39028 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39031 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39035Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39035Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39035Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39035Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39035Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39035Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39035Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39035Calligrapher h6, .stacks_in_39035Calligrapher h5, .stacks_in_39035Calligrapher h4, .stacks_in_39035Calligrapher h3, .stacks_in_39035Calligrapher h2, .stacks_in_39035Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39035Calligrapher, .stacks_in_39035Calligrapher h1, .stacks_in_39035Calligrapher h2, .stacks_in_39035Calligrapher h3, .stacks_in_39035Calligrapher h4, .stacks_in_39035Calligrapher h5, .stacks_in_39035Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39035targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39035Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39035Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39035Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39035Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39035 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39036 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39038 {
	line-height: 2em;
}
#stacks_in_39039{}#stacks_in_39039 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39039 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39039 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39039 > .jack.width-static{width:500px}#stacks_in_39039 > .jack.width-flexible{width:100%}#stacks_in_39039 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39039 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39039 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39039 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39039 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39039 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39039 > .jack::after{border-radius:15px}#stacks_in_39039 > .jack.border-detailed-radius,#stacks_in_39039 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39039 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39039 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39039 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39039 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39039 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39039 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39039 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39039 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39039 > .jack.bg-image:not(.glass){}#stacks_in_39039 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39039 > .jack.bg-image.glass.after,#stacks_in_39039 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39039 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39039 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39039 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39039 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39039 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39039 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39039 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39039 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39039 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39039 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39039 > .jack.bg-image.glass.after,#stacks_in_39039 > .glass.jack.bg-image::after{}#stacks_in_39039 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39039 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39039 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39039 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39039 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39039 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39039 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39039 > .jack.peek-shadow::before,#stacks_in_39039 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39039 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39039 > .jack{overflow:hidden;}#stacks_in_39039 > .jack.height-static{height:100px}#stacks_in_39039 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39040 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39040 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39040 .fluid-image.unlimited img{width:100% !important}#stacks_in_39040 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39040 .fluid-image.align-left img{float:left}#stacks_in_39040 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39043Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39043Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39043Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39043Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39043Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39043Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39043Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39043Calligrapher h6, .stacks_in_39043Calligrapher h5, .stacks_in_39043Calligrapher h4, .stacks_in_39043Calligrapher h3, .stacks_in_39043Calligrapher h2, .stacks_in_39043Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39043Calligrapher, .stacks_in_39043Calligrapher h1, .stacks_in_39043Calligrapher h2, .stacks_in_39043Calligrapher h3, .stacks_in_39043Calligrapher h4, .stacks_in_39043Calligrapher h5, .stacks_in_39043Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39043targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39043Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39043Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39043Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39043Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39043 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39044 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39047 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39051Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39051Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39051Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39051Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39051Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39051Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39051Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39051Calligrapher h6, .stacks_in_39051Calligrapher h5, .stacks_in_39051Calligrapher h4, .stacks_in_39051Calligrapher h3, .stacks_in_39051Calligrapher h2, .stacks_in_39051Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39051Calligrapher, .stacks_in_39051Calligrapher h1, .stacks_in_39051Calligrapher h2, .stacks_in_39051Calligrapher h3, .stacks_in_39051Calligrapher h4, .stacks_in_39051Calligrapher h5, .stacks_in_39051Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39051targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39051Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39051Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39051Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39051Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39051 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39052 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39054 {
	line-height: 2em;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_39055 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_39055 {
		display: none !important;
	}
}
#stacks_in_39056{}#stacks_in_39056 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39056 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39056 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39056 > .jack.width-static{width:500px}#stacks_in_39056 > .jack.width-flexible{width:100%}#stacks_in_39056 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39056 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39056 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39056 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39056 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39056 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39056 > .jack::after{border-radius:15px}#stacks_in_39056 > .jack.border-detailed-radius,#stacks_in_39056 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39056 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39056 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39056 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39056 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39056 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39056 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39056 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39056 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39056 > .jack.bg-image:not(.glass){}#stacks_in_39056 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39056 > .jack.bg-image.glass.after,#stacks_in_39056 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39056 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39056 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39056 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39056 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39056 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39056 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39056 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39056 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39056 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39056 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39056 > .jack.bg-image.glass.after,#stacks_in_39056 > .glass.jack.bg-image::after{}#stacks_in_39056 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39056 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39056 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39056 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39056 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39056 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39056 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39056 > .jack.peek-shadow::before,#stacks_in_39056 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39056 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39056 > .jack{overflow:hidden;}#stacks_in_39056 > .jack.height-static{height:100px}#stacks_in_39056 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39057 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39057 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39057 .fluid-image.unlimited img{width:100% !important}#stacks_in_39057 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39057 .fluid-image.align-left img{float:left}#stacks_in_39057 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39060Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39060Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39060Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39060Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39060Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39060Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39060Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39060Calligrapher h6, .stacks_in_39060Calligrapher h5, .stacks_in_39060Calligrapher h4, .stacks_in_39060Calligrapher h3, .stacks_in_39060Calligrapher h2, .stacks_in_39060Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39060Calligrapher, .stacks_in_39060Calligrapher h1, .stacks_in_39060Calligrapher h2, .stacks_in_39060Calligrapher h3, .stacks_in_39060Calligrapher h4, .stacks_in_39060Calligrapher h5, .stacks_in_39060Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39060targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39060Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39060Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39060Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39060Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39060 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39061 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39064 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39068Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39068Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39068Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39068Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39068Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39068Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39068Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39068Calligrapher h6, .stacks_in_39068Calligrapher h5, .stacks_in_39068Calligrapher h4, .stacks_in_39068Calligrapher h3, .stacks_in_39068Calligrapher h2, .stacks_in_39068Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39068Calligrapher, .stacks_in_39068Calligrapher h1, .stacks_in_39068Calligrapher h2, .stacks_in_39068Calligrapher h3, .stacks_in_39068Calligrapher h4, .stacks_in_39068Calligrapher h5, .stacks_in_39068Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39068targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39068Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39068Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39068Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39068Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39068 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39069 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39071 {
	line-height: 2em;
}
#stacks_in_39072{}#stacks_in_39072 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39072 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39072 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39072 > .jack.width-static{width:500px}#stacks_in_39072 > .jack.width-flexible{width:100%}#stacks_in_39072 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39072 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39072 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39072 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39072 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39072 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39072 > .jack::after{border-radius:15px}#stacks_in_39072 > .jack.border-detailed-radius,#stacks_in_39072 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39072 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39072 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39072 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39072 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39072 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39072 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39072 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39072 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39072 > .jack.bg-image:not(.glass){}#stacks_in_39072 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39072 > .jack.bg-image.glass.after,#stacks_in_39072 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39072 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39072 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39072 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39072 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39072 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39072 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39072 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39072 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39072 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39072 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39072 > .jack.bg-image.glass.after,#stacks_in_39072 > .glass.jack.bg-image::after{}#stacks_in_39072 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39072 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39072 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39072 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39072 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39072 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39072 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39072 > .jack.peek-shadow::before,#stacks_in_39072 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39072 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39072 > .jack{overflow:hidden;}#stacks_in_39072 > .jack.height-static{height:100px}#stacks_in_39072 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39073 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39073 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39073 .fluid-image.unlimited img{width:100% !important}#stacks_in_39073 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39073 .fluid-image.align-left img{float:left}#stacks_in_39073 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39076Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39076Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39076Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39076Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39076Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39076Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39076Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39076Calligrapher h6, .stacks_in_39076Calligrapher h5, .stacks_in_39076Calligrapher h4, .stacks_in_39076Calligrapher h3, .stacks_in_39076Calligrapher h2, .stacks_in_39076Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39076Calligrapher, .stacks_in_39076Calligrapher h1, .stacks_in_39076Calligrapher h2, .stacks_in_39076Calligrapher h3, .stacks_in_39076Calligrapher h4, .stacks_in_39076Calligrapher h5, .stacks_in_39076Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39076targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39076Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39076Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39076Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39076Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39076 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39077 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39080 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39082Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39082Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39082Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39082Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39082Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39082Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39082Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39082Calligrapher h6, .stacks_in_39082Calligrapher h5, .stacks_in_39082Calligrapher h4, .stacks_in_39082Calligrapher h3, .stacks_in_39082Calligrapher h2, .stacks_in_39082Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39082Calligrapher, .stacks_in_39082Calligrapher h1, .stacks_in_39082Calligrapher h2, .stacks_in_39082Calligrapher h3, .stacks_in_39082Calligrapher h4, .stacks_in_39082Calligrapher h5, .stacks_in_39082Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39082targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39082Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39082Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39082Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39082Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39082 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39083 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39085 {
	line-height: 2em;
}
#stacks_in_39086{}#stacks_in_39086 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39086 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39086 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39086 > .jack.width-static{width:500px}#stacks_in_39086 > .jack.width-flexible{width:100%}#stacks_in_39086 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39086 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39086 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39086 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39086 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39086 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39086 > .jack::after{border-radius:15px}#stacks_in_39086 > .jack.border-detailed-radius,#stacks_in_39086 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39086 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39086 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39086 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39086 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39086 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39086 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39086 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39086 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39086 > .jack.bg-image:not(.glass){}#stacks_in_39086 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39086 > .jack.bg-image.glass.after,#stacks_in_39086 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39086 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39086 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39086 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39086 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39086 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39086 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39086 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39086 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39086 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39086 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39086 > .jack.bg-image.glass.after,#stacks_in_39086 > .glass.jack.bg-image::after{}#stacks_in_39086 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39086 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39086 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39086 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39086 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39086 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39086 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39086 > .jack.peek-shadow::before,#stacks_in_39086 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39086 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39086 > .jack{overflow:hidden;}#stacks_in_39086 > .jack.height-static{height:100px}#stacks_in_39086 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39087 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39087 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39087 .fluid-image.unlimited img{width:100% !important}#stacks_in_39087 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39087 .fluid-image.align-left img{float:left}#stacks_in_39087 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39090Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39090Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39090Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39090Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39090Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39090Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39090Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39090Calligrapher h6, .stacks_in_39090Calligrapher h5, .stacks_in_39090Calligrapher h4, .stacks_in_39090Calligrapher h3, .stacks_in_39090Calligrapher h2, .stacks_in_39090Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39090Calligrapher, .stacks_in_39090Calligrapher h1, .stacks_in_39090Calligrapher h2, .stacks_in_39090Calligrapher h3, .stacks_in_39090Calligrapher h4, .stacks_in_39090Calligrapher h5, .stacks_in_39090Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39090targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39090Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39090Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39090Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39090Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39090 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39091 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39094 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39096 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39098Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39098Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39098Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39098Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39098Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39098Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39098Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39098Calligrapher h6, .stacks_in_39098Calligrapher h5, .stacks_in_39098Calligrapher h4, .stacks_in_39098Calligrapher h3, .stacks_in_39098Calligrapher h2, .stacks_in_39098Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39098Calligrapher, .stacks_in_39098Calligrapher h1, .stacks_in_39098Calligrapher h2, .stacks_in_39098Calligrapher h3, .stacks_in_39098Calligrapher h4, .stacks_in_39098Calligrapher h5, .stacks_in_39098Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39098targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39098Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39098Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39098Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39098Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39098 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39099 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39101 {
	line-height: 2em;
}
#stacks_in_39102{}#stacks_in_39102 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39102 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39102 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39102 > .jack.width-static{width:500px}#stacks_in_39102 > .jack.width-flexible{width:100%}#stacks_in_39102 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39102 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39102 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39102 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39102 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39102 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39102 > .jack::after{border-radius:15px}#stacks_in_39102 > .jack.border-detailed-radius,#stacks_in_39102 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39102 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39102 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39102 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39102 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39102 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39102 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39102 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39102 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39102 > .jack.bg-image:not(.glass){}#stacks_in_39102 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39102 > .jack.bg-image.glass.after,#stacks_in_39102 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39102 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39102 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39102 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39102 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39102 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39102 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39102 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39102 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39102 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39102 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39102 > .jack.bg-image.glass.after,#stacks_in_39102 > .glass.jack.bg-image::after{}#stacks_in_39102 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39102 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39102 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39102 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39102 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39102 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39102 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39102 > .jack.peek-shadow::before,#stacks_in_39102 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39102 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39102 > .jack{overflow:hidden;}#stacks_in_39102 > .jack.height-static{height:100px}#stacks_in_39102 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39103 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39103 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39103 .fluid-image.unlimited img{width:100% !important}#stacks_in_39103 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39103 .fluid-image.align-left img{float:left}#stacks_in_39103 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39106Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39106Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39106Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39106Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39106Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39106Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39106Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39106Calligrapher h6, .stacks_in_39106Calligrapher h5, .stacks_in_39106Calligrapher h4, .stacks_in_39106Calligrapher h3, .stacks_in_39106Calligrapher h2, .stacks_in_39106Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39106Calligrapher, .stacks_in_39106Calligrapher h1, .stacks_in_39106Calligrapher h2, .stacks_in_39106Calligrapher h3, .stacks_in_39106Calligrapher h4, .stacks_in_39106Calligrapher h5, .stacks_in_39106Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39106targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39106Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39106Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39106Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39106Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39106 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39107 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39110 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39112 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39114Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39114Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39114Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39114Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39114Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39114Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39114Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39114Calligrapher h6, .stacks_in_39114Calligrapher h5, .stacks_in_39114Calligrapher h4, .stacks_in_39114Calligrapher h3, .stacks_in_39114Calligrapher h2, .stacks_in_39114Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39114Calligrapher, .stacks_in_39114Calligrapher h1, .stacks_in_39114Calligrapher h2, .stacks_in_39114Calligrapher h3, .stacks_in_39114Calligrapher h4, .stacks_in_39114Calligrapher h5, .stacks_in_39114Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39114targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39114Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39114Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39114Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39114Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39114 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39115 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39117 {
	line-height: 2em;
}
#stacks_in_39118{}#stacks_in_39118 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39118 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39118 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39118 > .jack.width-static{width:500px}#stacks_in_39118 > .jack.width-flexible{width:100%}#stacks_in_39118 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39118 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39118 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39118 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39118 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39118 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39118 > .jack::after{border-radius:15px}#stacks_in_39118 > .jack.border-detailed-radius,#stacks_in_39118 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39118 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39118 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39118 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39118 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39118 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39118 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39118 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39118 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39118 > .jack.bg-image:not(.glass){}#stacks_in_39118 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39118 > .jack.bg-image.glass.after,#stacks_in_39118 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39118 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39118 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39118 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39118 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39118 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39118 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39118 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39118 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39118 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39118 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39118 > .jack.bg-image.glass.after,#stacks_in_39118 > .glass.jack.bg-image::after{}#stacks_in_39118 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39118 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39118 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39118 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39118 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39118 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39118 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39118 > .jack.peek-shadow::before,#stacks_in_39118 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39118 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39118 > .jack{overflow:hidden;}#stacks_in_39118 > .jack.height-static{height:100px}#stacks_in_39118 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39119 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39119 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39119 .fluid-image.unlimited img{width:100% !important}#stacks_in_39119 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39119 .fluid-image.align-left img{float:left}#stacks_in_39119 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39122Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39122Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39122Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39122Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39122Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39122Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39122Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39122Calligrapher h6, .stacks_in_39122Calligrapher h5, .stacks_in_39122Calligrapher h4, .stacks_in_39122Calligrapher h3, .stacks_in_39122Calligrapher h2, .stacks_in_39122Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39122Calligrapher, .stacks_in_39122Calligrapher h1, .stacks_in_39122Calligrapher h2, .stacks_in_39122Calligrapher h3, .stacks_in_39122Calligrapher h4, .stacks_in_39122Calligrapher h5, .stacks_in_39122Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39122targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39122Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39122Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39122Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39122Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39122 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39123 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39126 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39128 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39130Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39130Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39130Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39130Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39130Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39130Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39130Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39130Calligrapher h6, .stacks_in_39130Calligrapher h5, .stacks_in_39130Calligrapher h4, .stacks_in_39130Calligrapher h3, .stacks_in_39130Calligrapher h2, .stacks_in_39130Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39130Calligrapher, .stacks_in_39130Calligrapher h1, .stacks_in_39130Calligrapher h2, .stacks_in_39130Calligrapher h3, .stacks_in_39130Calligrapher h4, .stacks_in_39130Calligrapher h5, .stacks_in_39130Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39130targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39130Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39130Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39130Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39130Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39130 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39131 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39133 {
	line-height: 2em;
}
#stacks_in_39134{}#stacks_in_39134 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39134 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39134 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39134 > .jack.width-static{width:500px}#stacks_in_39134 > .jack.width-flexible{width:100%}#stacks_in_39134 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39134 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39134 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39134 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39134 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39134 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39134 > .jack::after{border-radius:15px}#stacks_in_39134 > .jack.border-detailed-radius,#stacks_in_39134 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39134 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39134 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39134 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39134 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39134 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39134 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39134 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39134 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39134 > .jack.bg-image:not(.glass){}#stacks_in_39134 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39134 > .jack.bg-image.glass.after,#stacks_in_39134 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39134 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39134 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39134 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39134 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39134 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39134 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39134 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39134 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39134 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39134 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39134 > .jack.bg-image.glass.after,#stacks_in_39134 > .glass.jack.bg-image::after{}#stacks_in_39134 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39134 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39134 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39134 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39134 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39134 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39134 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39134 > .jack.peek-shadow::before,#stacks_in_39134 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39134 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39134 > .jack{overflow:hidden;}#stacks_in_39134 > .jack.height-static{height:100px}#stacks_in_39134 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39135 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39135 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39135 .fluid-image.unlimited img{width:100% !important}#stacks_in_39135 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39135 .fluid-image.align-left img{float:left}#stacks_in_39135 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39138Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39138Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39138Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39138Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39138Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39138Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39138Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39138Calligrapher h6, .stacks_in_39138Calligrapher h5, .stacks_in_39138Calligrapher h4, .stacks_in_39138Calligrapher h3, .stacks_in_39138Calligrapher h2, .stacks_in_39138Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39138Calligrapher, .stacks_in_39138Calligrapher h1, .stacks_in_39138Calligrapher h2, .stacks_in_39138Calligrapher h3, .stacks_in_39138Calligrapher h4, .stacks_in_39138Calligrapher h5, .stacks_in_39138Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39138targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39138Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39138Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39138Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39138Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39138 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39139 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39142 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39144Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39144Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39144Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39144Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39144Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39144Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39144Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39144Calligrapher h6, .stacks_in_39144Calligrapher h5, .stacks_in_39144Calligrapher h4, .stacks_in_39144Calligrapher h3, .stacks_in_39144Calligrapher h2, .stacks_in_39144Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39144Calligrapher, .stacks_in_39144Calligrapher h1, .stacks_in_39144Calligrapher h2, .stacks_in_39144Calligrapher h3, .stacks_in_39144Calligrapher h4, .stacks_in_39144Calligrapher h5, .stacks_in_39144Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39144targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39144Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39144Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39144Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39144Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39144 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39145 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39147 {
	line-height: 2em;
}
#stacks_in_39148{}#stacks_in_39148 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39148 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39148 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39148 > .jack.width-static{width:500px}#stacks_in_39148 > .jack.width-flexible{width:100%}#stacks_in_39148 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39148 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39148 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39148 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39148 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39148 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39148 > .jack::after{border-radius:15px}#stacks_in_39148 > .jack.border-detailed-radius,#stacks_in_39148 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39148 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39148 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39148 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39148 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39148 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39148 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39148 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39148 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39148 > .jack.bg-image:not(.glass){}#stacks_in_39148 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39148 > .jack.bg-image.glass.after,#stacks_in_39148 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39148 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39148 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39148 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39148 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39148 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39148 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39148 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39148 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39148 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39148 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39148 > .jack.bg-image.glass.after,#stacks_in_39148 > .glass.jack.bg-image::after{}#stacks_in_39148 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39148 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39148 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39148 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39148 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39148 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39148 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39148 > .jack.peek-shadow::before,#stacks_in_39148 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39148 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39148 > .jack{overflow:hidden;}#stacks_in_39148 > .jack.height-static{height:100px}#stacks_in_39148 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39149 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39149 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39149 .fluid-image.unlimited img{width:100% !important}#stacks_in_39149 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39149 .fluid-image.align-left img{float:left}#stacks_in_39149 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39152Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39152Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39152Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39152Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39152Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39152Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39152Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39152Calligrapher h6, .stacks_in_39152Calligrapher h5, .stacks_in_39152Calligrapher h4, .stacks_in_39152Calligrapher h3, .stacks_in_39152Calligrapher h2, .stacks_in_39152Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39152Calligrapher, .stacks_in_39152Calligrapher h1, .stacks_in_39152Calligrapher h2, .stacks_in_39152Calligrapher h3, .stacks_in_39152Calligrapher h4, .stacks_in_39152Calligrapher h5, .stacks_in_39152Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39152targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39152Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39152Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39152Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39152Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39152 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39153 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39156 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39158 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39160Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39160Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39160Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39160Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39160Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39160Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39160Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39160Calligrapher h6, .stacks_in_39160Calligrapher h5, .stacks_in_39160Calligrapher h4, .stacks_in_39160Calligrapher h3, .stacks_in_39160Calligrapher h2, .stacks_in_39160Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39160Calligrapher, .stacks_in_39160Calligrapher h1, .stacks_in_39160Calligrapher h2, .stacks_in_39160Calligrapher h3, .stacks_in_39160Calligrapher h4, .stacks_in_39160Calligrapher h5, .stacks_in_39160Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39160targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39160Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39160Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39160Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39160Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39160 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39161 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39163 {
	line-height: 2em;
}
#stacks_in_39164{}#stacks_in_39164 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39164 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39164 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39164 > .jack.width-static{width:500px}#stacks_in_39164 > .jack.width-flexible{width:100%}#stacks_in_39164 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39164 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39164 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39164 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39164 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39164 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39164 > .jack::after{border-radius:15px}#stacks_in_39164 > .jack.border-detailed-radius,#stacks_in_39164 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39164 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39164 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39164 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39164 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39164 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39164 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39164 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39164 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39164 > .jack.bg-image:not(.glass){}#stacks_in_39164 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39164 > .jack.bg-image.glass.after,#stacks_in_39164 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39164 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39164 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39164 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39164 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39164 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39164 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39164 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39164 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39164 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39164 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39164 > .jack.bg-image.glass.after,#stacks_in_39164 > .glass.jack.bg-image::after{}#stacks_in_39164 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39164 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39164 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39164 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39164 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39164 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39164 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39164 > .jack.peek-shadow::before,#stacks_in_39164 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39164 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39164 > .jack{overflow:hidden;}#stacks_in_39164 > .jack.height-static{height:100px}#stacks_in_39164 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39165 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39165 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39165 .fluid-image.unlimited img{width:100% !important}#stacks_in_39165 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39165 .fluid-image.align-left img{float:left}#stacks_in_39165 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39168Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39168Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39168Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39168Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39168Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39168Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39168Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39168Calligrapher h6, .stacks_in_39168Calligrapher h5, .stacks_in_39168Calligrapher h4, .stacks_in_39168Calligrapher h3, .stacks_in_39168Calligrapher h2, .stacks_in_39168Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39168Calligrapher, .stacks_in_39168Calligrapher h1, .stacks_in_39168Calligrapher h2, .stacks_in_39168Calligrapher h3, .stacks_in_39168Calligrapher h4, .stacks_in_39168Calligrapher h5, .stacks_in_39168Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39168targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39168Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39168Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39168Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39168Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39168 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39169 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39172 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39174Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39174Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39174Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39174Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39174Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39174Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39174Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39174Calligrapher h6, .stacks_in_39174Calligrapher h5, .stacks_in_39174Calligrapher h4, .stacks_in_39174Calligrapher h3, .stacks_in_39174Calligrapher h2, .stacks_in_39174Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39174Calligrapher, .stacks_in_39174Calligrapher h1, .stacks_in_39174Calligrapher h2, .stacks_in_39174Calligrapher h3, .stacks_in_39174Calligrapher h4, .stacks_in_39174Calligrapher h5, .stacks_in_39174Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39174targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39174Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39174Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39174Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39174Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39174 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39175 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39177 {
	line-height: 2em;
}
#stacks_in_39178{}#stacks_in_39178 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39178 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39178 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39178 > .jack.width-static{width:500px}#stacks_in_39178 > .jack.width-flexible{width:100%}#stacks_in_39178 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39178 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39178 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39178 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39178 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39178 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39178 > .jack::after{border-radius:15px}#stacks_in_39178 > .jack.border-detailed-radius,#stacks_in_39178 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39178 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39178 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39178 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39178 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39178 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39178 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39178 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39178 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39178 > .jack.bg-image:not(.glass){}#stacks_in_39178 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39178 > .jack.bg-image.glass.after,#stacks_in_39178 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39178 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39178 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39178 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39178 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39178 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39178 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39178 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39178 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39178 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39178 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39178 > .jack.bg-image.glass.after,#stacks_in_39178 > .glass.jack.bg-image::after{}#stacks_in_39178 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39178 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39178 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39178 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39178 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39178 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39178 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39178 > .jack.peek-shadow::before,#stacks_in_39178 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39178 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39178 > .jack{overflow:hidden;}#stacks_in_39178 > .jack.height-static{height:100px}#stacks_in_39178 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39179 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39179 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39179 .fluid-image.unlimited img{width:100% !important}#stacks_in_39179 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39179 .fluid-image.align-left img{float:left}#stacks_in_39179 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39182Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39182Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39182Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39182Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39182Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39182Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39182Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39182Calligrapher h6, .stacks_in_39182Calligrapher h5, .stacks_in_39182Calligrapher h4, .stacks_in_39182Calligrapher h3, .stacks_in_39182Calligrapher h2, .stacks_in_39182Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39182Calligrapher, .stacks_in_39182Calligrapher h1, .stacks_in_39182Calligrapher h2, .stacks_in_39182Calligrapher h3, .stacks_in_39182Calligrapher h4, .stacks_in_39182Calligrapher h5, .stacks_in_39182Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39182targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39182Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39182Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39182Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39182Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39182 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39183 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39186 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39188 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39190Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39190Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39190Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39190Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39190Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39190Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39190Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39190Calligrapher h6, .stacks_in_39190Calligrapher h5, .stacks_in_39190Calligrapher h4, .stacks_in_39190Calligrapher h3, .stacks_in_39190Calligrapher h2, .stacks_in_39190Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39190Calligrapher, .stacks_in_39190Calligrapher h1, .stacks_in_39190Calligrapher h2, .stacks_in_39190Calligrapher h3, .stacks_in_39190Calligrapher h4, .stacks_in_39190Calligrapher h5, .stacks_in_39190Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39190targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39190Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39190Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39190Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39190Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39190 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39191 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39193 {
	line-height: 2em;
}
#stacks_in_39194{}#stacks_in_39194 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39194 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39194 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39194 > .jack.width-static{width:500px}#stacks_in_39194 > .jack.width-flexible{width:100%}#stacks_in_39194 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39194 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39194 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39194 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39194 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39194 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39194 > .jack::after{border-radius:15px}#stacks_in_39194 > .jack.border-detailed-radius,#stacks_in_39194 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39194 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39194 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39194 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39194 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39194 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39194 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39194 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39194 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39194 > .jack.bg-image:not(.glass){}#stacks_in_39194 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39194 > .jack.bg-image.glass.after,#stacks_in_39194 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39194 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39194 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39194 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39194 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39194 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39194 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39194 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39194 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39194 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39194 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39194 > .jack.bg-image.glass.after,#stacks_in_39194 > .glass.jack.bg-image::after{}#stacks_in_39194 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39194 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39194 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39194 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39194 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39194 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39194 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39194 > .jack.peek-shadow::before,#stacks_in_39194 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39194 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39194 > .jack{overflow:hidden;}#stacks_in_39194 > .jack.height-static{height:100px}#stacks_in_39194 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39195 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39195 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39195 .fluid-image.unlimited img{width:100% !important}#stacks_in_39195 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39195 .fluid-image.align-left img{float:left}#stacks_in_39195 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39198Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39198Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39198Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39198Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39198Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39198Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39198Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39198Calligrapher h6, .stacks_in_39198Calligrapher h5, .stacks_in_39198Calligrapher h4, .stacks_in_39198Calligrapher h3, .stacks_in_39198Calligrapher h2, .stacks_in_39198Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39198Calligrapher, .stacks_in_39198Calligrapher h1, .stacks_in_39198Calligrapher h2, .stacks_in_39198Calligrapher h3, .stacks_in_39198Calligrapher h4, .stacks_in_39198Calligrapher h5, .stacks_in_39198Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39198targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39198Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39198Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39198Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39198Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39198 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39199 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39202 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39204 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39206Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39206Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39206Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39206Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39206Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39206Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39206Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39206Calligrapher h6, .stacks_in_39206Calligrapher h5, .stacks_in_39206Calligrapher h4, .stacks_in_39206Calligrapher h3, .stacks_in_39206Calligrapher h2, .stacks_in_39206Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39206Calligrapher, .stacks_in_39206Calligrapher h1, .stacks_in_39206Calligrapher h2, .stacks_in_39206Calligrapher h3, .stacks_in_39206Calligrapher h4, .stacks_in_39206Calligrapher h5, .stacks_in_39206Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39206targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39206Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39206Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39206Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39206Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39206 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39207 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39209 {
	line-height: 2em;
}
#stacks_in_39210{}#stacks_in_39210 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39210 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39210 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39210 > .jack.width-static{width:500px}#stacks_in_39210 > .jack.width-flexible{width:100%}#stacks_in_39210 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39210 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39210 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39210 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39210 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39210 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39210 > .jack::after{border-radius:15px}#stacks_in_39210 > .jack.border-detailed-radius,#stacks_in_39210 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39210 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39210 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39210 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39210 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39210 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39210 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39210 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39210 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39210 > .jack.bg-image:not(.glass){}#stacks_in_39210 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39210 > .jack.bg-image.glass.after,#stacks_in_39210 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39210 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39210 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39210 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39210 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39210 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39210 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39210 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39210 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39210 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39210 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39210 > .jack.bg-image.glass.after,#stacks_in_39210 > .glass.jack.bg-image::after{}#stacks_in_39210 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39210 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39210 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39210 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39210 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39210 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39210 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39210 > .jack.peek-shadow::before,#stacks_in_39210 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39210 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39210 > .jack{overflow:hidden;}#stacks_in_39210 > .jack.height-static{height:100px}#stacks_in_39210 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39211 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39211 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39211 .fluid-image.unlimited img{width:100% !important}#stacks_in_39211 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39211 .fluid-image.align-left img{float:left}#stacks_in_39211 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39214Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39214Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39214Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39214Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39214Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39214Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39214Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39214Calligrapher h6, .stacks_in_39214Calligrapher h5, .stacks_in_39214Calligrapher h4, .stacks_in_39214Calligrapher h3, .stacks_in_39214Calligrapher h2, .stacks_in_39214Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39214Calligrapher, .stacks_in_39214Calligrapher h1, .stacks_in_39214Calligrapher h2, .stacks_in_39214Calligrapher h3, .stacks_in_39214Calligrapher h4, .stacks_in_39214Calligrapher h5, .stacks_in_39214Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39214targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39214Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39214Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39214Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39214Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39214 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39215 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39218 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39220 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39222Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39222Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39222Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39222Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39222Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39222Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39222Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39222Calligrapher h6, .stacks_in_39222Calligrapher h5, .stacks_in_39222Calligrapher h4, .stacks_in_39222Calligrapher h3, .stacks_in_39222Calligrapher h2, .stacks_in_39222Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39222Calligrapher, .stacks_in_39222Calligrapher h1, .stacks_in_39222Calligrapher h2, .stacks_in_39222Calligrapher h3, .stacks_in_39222Calligrapher h4, .stacks_in_39222Calligrapher h5, .stacks_in_39222Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39222targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39222Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39222Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39222Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39222Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39222 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39223 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39225 {
	line-height: 2em;
}
#stacks_in_39226{}#stacks_in_39226 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39226 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39226 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39226 > .jack.width-static{width:500px}#stacks_in_39226 > .jack.width-flexible{width:100%}#stacks_in_39226 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39226 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39226 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39226 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39226 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39226 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39226 > .jack::after{border-radius:15px}#stacks_in_39226 > .jack.border-detailed-radius,#stacks_in_39226 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39226 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39226 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39226 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39226 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39226 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39226 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39226 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39226 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39226 > .jack.bg-image:not(.glass){}#stacks_in_39226 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39226 > .jack.bg-image.glass.after,#stacks_in_39226 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39226 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39226 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39226 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39226 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39226 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39226 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39226 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39226 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39226 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39226 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39226 > .jack.bg-image.glass.after,#stacks_in_39226 > .glass.jack.bg-image::after{}#stacks_in_39226 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39226 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39226 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39226 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39226 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39226 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39226 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39226 > .jack.peek-shadow::before,#stacks_in_39226 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39226 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39226 > .jack{overflow:hidden;}#stacks_in_39226 > .jack.height-static{height:100px}#stacks_in_39226 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39227 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39227 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39227 .fluid-image.unlimited img{width:100% !important}#stacks_in_39227 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_39227 .fluid-image.align-left img{float:left}#stacks_in_39227 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39230Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39230Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39230Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39230Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39230Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39230Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39230Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39230Calligrapher h6, .stacks_in_39230Calligrapher h5, .stacks_in_39230Calligrapher h4, .stacks_in_39230Calligrapher h3, .stacks_in_39230Calligrapher h2, .stacks_in_39230Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39230Calligrapher, .stacks_in_39230Calligrapher h1, .stacks_in_39230Calligrapher h2, .stacks_in_39230Calligrapher h3, .stacks_in_39230Calligrapher h4, .stacks_in_39230Calligrapher h5, .stacks_in_39230Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39230targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39230Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39230Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39230Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39230Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39230 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39231 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39234 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39236 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39238Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39238Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39238Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39238Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39238Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39238Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39238Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39238Calligrapher h6, .stacks_in_39238Calligrapher h5, .stacks_in_39238Calligrapher h4, .stacks_in_39238Calligrapher h3, .stacks_in_39238Calligrapher h2, .stacks_in_39238Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39238Calligrapher, .stacks_in_39238Calligrapher h1, .stacks_in_39238Calligrapher h2, .stacks_in_39238Calligrapher h3, .stacks_in_39238Calligrapher h4, .stacks_in_39238Calligrapher h5, .stacks_in_39238Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39238targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39238Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39238Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39238Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39238Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39238 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_39239 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39241 {
	line-height: 2em;
}
#stacks_in_39242{}#stacks_in_39242 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_39242 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_39242 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_39242 > .jack.width-static{width:500px}#stacks_in_39242 > .jack.width-flexible{width:100%}#stacks_in_39242 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_39242 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39242 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_39242 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_39242 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_39242 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_39242 > .jack::after{border-radius:15px}#stacks_in_39242 > .jack.border-detailed-radius,#stacks_in_39242 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_39242 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_39242 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_39242 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_39242 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39242 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_39242 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_39242 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_39242 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39242 > .jack.bg-image:not(.glass){}#stacks_in_39242 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_39242 > .jack.bg-image.glass.after,#stacks_in_39242 > .glass.jack.bg-image::after{opacity:0.30;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_39242 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_39242 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_39242 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_39242 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_39242 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_39242 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_39242 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39242 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_39242 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_39242 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_39242 > .jack.bg-image.glass.after,#stacks_in_39242 > .glass.jack.bg-image::after{}#stacks_in_39242 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_39242 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_39242 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_39242 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39242 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_39242 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_39242 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_39242 > .jack.peek-shadow::before,#stacks_in_39242 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_39242 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_39242 > .jack{overflow:hidden;}#stacks_in_39242 > .jack.height-static{height:100px}#stacks_in_39242 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_39243 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_39243 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_39243 .fluid-image.unlimited img{width:100% !important}#stacks_in_39243 .fluid-image.define_max img{width:100% !important;max-width:300px !important}#stacks_in_39243 .fluid-image.align-left img{float:left}#stacks_in_39243 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39246Calligrapher{			font-size: 100% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39246Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39246Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39246Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39246Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39246Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39246Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39246Calligrapher h6, .stacks_in_39246Calligrapher h5, .stacks_in_39246Calligrapher h4, .stacks_in_39246Calligrapher h3, .stacks_in_39246Calligrapher h2, .stacks_in_39246Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39246Calligrapher, .stacks_in_39246Calligrapher h1, .stacks_in_39246Calligrapher h2, .stacks_in_39246Calligrapher h3, .stacks_in_39246Calligrapher h4, .stacks_in_39246Calligrapher h5, .stacks_in_39246Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39246targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39246Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39246Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39246Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39246Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39246 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_39247 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_39250 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39252Calligrapher{			font-size: 90% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_39252Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39252Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39252Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39252Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39252Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39252Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39252Calligrapher h6, .stacks_in_39252Calligrapher h5, .stacks_in_39252Calligrapher h4, .stacks_in_39252Calligrapher h3, .stacks_in_39252Calligrapher h2, .stacks_in_39252Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39252Calligrapher, .stacks_in_39252Calligrapher h1, .stacks_in_39252Calligrapher h2, .stacks_in_39252Calligrapher h3, .stacks_in_39252Calligrapher h4, .stacks_in_39252Calligrapher h5, .stacks_in_39252Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39252targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39252Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39252Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39252Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39252Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39252 {
	padding: 0px 20px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39253Calligrapher{			line-height: normal !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39253Calligrapher, .stacks_in_39253Calligrapher h1, .stacks_in_39253Calligrapher h2, .stacks_in_39253Calligrapher h3, .stacks_in_39253Calligrapher h4, .stacks_in_39253Calligrapher h5, .stacks_in_39253Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39253targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- *//* End Calligrapher stack CSS code */
#stacks_in_39254 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_39256 {
	line-height: 2em;
}
#stacks_in_31433{padding-left:0px;padding-right:0px;}#stacks_in_31433 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31433 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31433 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31433 > .jack.width-static{width:500px}#stacks_in_31433 > .jack.width-flexible{width:100%}#stacks_in_31433 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31433 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31433 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31433 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31433 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31433 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31433 > .jack::after{border-radius:0px}#stacks_in_31433 > .jack.border-detailed-radius,#stacks_in_31433 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31433 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31433 > .jack.bg-color{background-color:#89C5FF}#stacks_in_31433 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_31433 > .jack.bg-image:not(.glass){background-image:url(../thai_verstehen_files/bgImage-31433.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_31433 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31433 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31433 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_3_col.jpg)}#stacks_in_31433 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31433 > .jack.bg-image:not(.glass){}#stacks_in_31433 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31433 > .jack.bg-image.glass.after,#stacks_in_31433 > .glass.jack.bg-image::after{opacity:0.70;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url(../thai_verstehen_files/bgImage-31433.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_31433 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31433 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31433 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31433 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31433 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31433 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31433 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31433 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_3_col.jpg)}#stacks_in_31433 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31433 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31433 > .jack.bg-image.glass.after,#stacks_in_31433 > .glass.jack.bg-image::after{}#stacks_in_31433 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31433 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31433 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_31433 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_31433 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_31433 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31433 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31433 > .jack.peek-shadow::before,#stacks_in_31433 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_31433 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31433 > .jack{overflow:hidden;}#stacks_in_31433 > .jack.height-static{height:20px}#stacks_in_31433 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_1359 *,
#stacks_in_1359 *:before,
#stacks_in_1359 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}

#stacks_in_1359 {
	margin: 0px 0px 20px 0px;
}
#stacks_in_31303{}#stacks_in_31303 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31303 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31303 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31303 > .jack.width-static{width:500px}#stacks_in_31303 > .jack.width-flexible{width:100%}#stacks_in_31303 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31303 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31303 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31303 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31303 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31303 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31303 > .jack::after{border-radius:15px}#stacks_in_31303 > .jack.border-detailed-radius,#stacks_in_31303 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31303 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31303 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31303 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_31303 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31303 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31303 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31303 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31303 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31303 > .jack.bg-image:not(.glass){}#stacks_in_31303 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31303 > .jack.bg-image.glass.after,#stacks_in_31303 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31303 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31303 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31303 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31303 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31303 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31303 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31303 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31303 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31303 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31303 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31303 > .jack.bg-image.glass.after,#stacks_in_31303 > .glass.jack.bg-image::after{}#stacks_in_31303 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31303 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31303 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_31303 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31303 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31303 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31303 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31303 > .jack.peek-shadow::before,#stacks_in_31303 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_31303 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31303 > .jack{overflow:hidden;}#stacks_in_31303 > .jack.height-static{height:650px}#stacks_in_31303 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31213Calligrapher{			font-size: 110% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31213Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31213Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31213Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31213Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31213Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31213Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31213Calligrapher h6, .stacks_in_31213Calligrapher h5, .stacks_in_31213Calligrapher h4, .stacks_in_31213Calligrapher h3, .stacks_in_31213Calligrapher h2, .stacks_in_31213Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31213Calligrapher, .stacks_in_31213Calligrapher h1, .stacks_in_31213Calligrapher h2, .stacks_in_31213Calligrapher h3, .stacks_in_31213Calligrapher h4, .stacks_in_31213Calligrapher h5, .stacks_in_31213Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31213Calligrapher, .stacks_in_31213Calligrapher h1, .stacks_in_31213Calligrapher h2, .stacks_in_31213Calligrapher h3, .stacks_in_31213Calligrapher h4, .stacks_in_31213Calligrapher h5, .stacks_in_31213Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31213targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31213Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31213Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31213Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31213Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31213 {
	margin: 15px 25px 25px 25px;
}
/* Start dooHeader X stack CSS code */.stacks_in_31216x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31216x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31216x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31216 {
	margin: 15px 0px 0px 0px;
}

#stacks_in_31217 {
	font-weight: lighter;
}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_31214 a:before, .link_effect1stacks_in_31214 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #532A77 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_31214 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_31214 a:hover:before, .link_effect1stacks_in_31214 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_31214 a   {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_31214 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_31214 .link_effect2stacks_in_31214 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_31214 .link_effect2stacks_in_31214 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_31214 .link_effect3stacks_in_31214 {
  	text-decoration: none;
}

#stacks_in_31214 .link_effect3stacks_in_31214 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_31214 .link_effect3stacks_in_31214 a:hover,
#stacks_in_31214 .link_effect3stacks_in_31214 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_31214 .link_effect4stacks_in_31214 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31214 .link_effect4stacks_in_31214 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31214 .link_effect4stacks_in_31214 a::before,
#stacks_in_31214 .link_effect%stacks_in_31214 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31214 .link_effect4stacks_in_31214 {
}

#stacks_in_31214 .link_effect4stacks_in_31214 a {
	font-weight:bold !important;;
}

#stacks_in_31214 .link_effect4stacks_in_31214 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_31214 .link_effect4stacks_in_31214 a:hover::before,
#stacks_in_31214 .link_effect4stacks_in_31214 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_31214 .link_effect5stacks_in_31214 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31214 .link_effect5stacks_in_31214 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31214 .link_effect5stacks_in_31214 a::before,
#stacks_in_31214 .link_effect5stacks_in_31214 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31214 .link_effect5stacks_in_31214 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_31214 .link_effect5stacks_in_31214 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_31214 .link_effect5stacks_in_31214 a:hover::before,
#stacks_in_31214 .link_effect5stacks_in_31214 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_31214 .link_effect6stacks_in_31214 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31214 .link_effect6stacks_in_31214 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31214 .link_effect6stacks_in_31214 a::before,
#stacks_in_31214 .link_effect6stacks_in_31214 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31214 .link_effect6stacks_in_31214 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_31214 .link_effect6stacks_in_31214 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_31214 .link_effect6stacks_in_31214 a:hover::before,
#stacks_in_31214 .link_effect6stacks_in_31214 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_31214 .link_effect7stacks_in_31214 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31214 .link_effect7stacks_in_31214 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31214 .link_effect7stacks_in_31214 a::before,
#stacks_in_31214 .link_effect7stacks_in_31214 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31214 .link_effect7stacks_in_31214 {
	position: relative;
}

#stacks_in_31214 .link_effect7stacks_in_31214 a {
	vertical-align: bottom;
	font-weight:bold !important;;
}


#stacks_in_31214 .link_effect7stacks_in_31214 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_31214 .link_effect7stacks_in_31214 a:hover::before,
#stacks_in_31214 .link_effect7stacks_in_31214 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_31214 .link_effect8stacks_in_31214 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31214 .link_effect8stacks_in_31214 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31214 .link_effect8stacks_in_31214 a::before,
#stacks_in_31214 .link_effect8stacks_in_31214 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_31214 .link_effect8stacks_in_31214 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_31214 .link_effect8stacks_in_31214 a:hover,
#stacks_in_31214 .link_effect8stacks_in_31214 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31214 .link_effect8stacks_in_31214 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_31214 .link_effect8stacks_in_31214 a:hover::before,
#stacks_in_31214 .link_effect8stacks_in_31214 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_31214 .link_effect9stacks_in_31214 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31214 .link_effect9stacks_in_31214 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31214 .link_effect9stacks_in_31214 a::before,
#stacks_in_31214 .link_effect9stacks_in_31214 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31214 .link_effect9stacks_in_31214 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_31214 .link_effect9stacks_in_31214 a:hover,
#stacks_in_31214 .link_effect9stacks_in_31214 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31214 .link_effect9stacks_in_31214 a::before,
#stacks_in_31214 .link_effect9stacks_in_31214 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_31214 .link_effect9stacks_in_31214 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_31214 .link_effect9stacks_in_31214 a:hover::before,
#stacks_in_31214 .link_effect9stacks_in_31214 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_31214 .link_effect9stacks_in_31214 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_31214 .link_effect10stacks_in_31214 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31214 .link_effect10stacks_in_31214 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31214 .link_effect10stacks_in_31214 a::before,
#stacks_in_31214 .link_effect10stacks_in_31214 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31214 .link_effect10stacks_in_31214 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_31214 .link_effect10stacks_in_31214 a:hover,
#stacks_in_31214 .link_effect10stacks_in_31214 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_31214 .link_effect10stacks_in_31214 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_31214 .link_effect10stacks_in_31214 a:hover::before,
#stacks_in_31214 .link_effect10stacks_in_31214 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_31214 .link_effect11stacks_in_31214 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31214 .link_effect11stacks_in_31214 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31214 .link_effect11stacks_in_31214 a::before,
#stacks_in_31214 .link_effect11stacks_in_31214 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31214 .link_effect11stacks_in_31214 a {
	font-weight:bold !important;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_31214 .link_effect11stacks_in_31214 a:hover,
#stacks_in_31214 .link_effect11stacks_in_31214 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31214 .link_effect11stacks_in_31214 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_31214 .link_effect11stacks_in_31214 a:hover::before,
#stacks_in_31214 .link_effect11stacks_in_31214 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_31214 .link_effect12stacks_in_31214 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31214 .link_effect12stacks_in_31214 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31214 .link_effect12stacks_in_31214 a::before,
#stacks_in_31214 .link_effect12stacks_in_31214 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31214 .link_effect12stacks_in_31214 a {
	overflow: hidden;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_31214 .link_effect12stacks_in_31214 a:hover,
#stacks_in_31214 .link_effect12stacks_in_31214 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_31214 .link_effect12stacks_in_31214 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_31214 .link_effect12stacks_in_31214 a,
#stacks_in_31214 .link_effect12stacks_in_31214 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_31214 .link_effect12stacks_in_31214 a:hover::before,
#stacks_in_31214 .link_effect12stacks_in_31214 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_31214 .link_effect13stacks_in_31214 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31214 .link_effect13stacks_in_31214 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31214 .link_effect13stacks_in_31214 a::before,
#stacks_in_31214 .link_effect13stacks_in_31214 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31214 .link_effect13stacks_in_31214 {
}

#stacks_in_31214 .link_effect13stacks_in_31214 a {
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
}

#stacks_in_31214 .link_effect13stacks_in_31214 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../thai_verstehen_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:bold !important;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_31214 .link_effect13stacks_in_31214 a:hover::before,
#stacks_in_31214 .link_effect13stacks_in_31214 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_31214 .link_effect14stacks_in_31214 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31214 .link_effect14stacks_in_31214 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31214 .link_effect14stacks_in_31214 a::before,
#stacks_in_31214 .link_effect14stacks_in_31214 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31214 .link_effect14stacks_in_31214 a {
	padding: 0 0.25em;
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_31214 .link_effect14stacks_in_31214 a:hover,
#stacks_in_31214 .link_effect14stacks_in_31214 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_31214 .link_effect14stacks_in_31214 a::before,
#stacks_in_31214 .link_effect14stacks_in_31214 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_31214 .link_effect14stacks_in_31214 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_31214 .link_effect14stacks_in_31214 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../thai_verstehen_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_31214 .link_effect14stacks_in_31214 a:hover::after,
#stacks_in_31214 .link_effect14stacks_in_31214 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_31214 .link_effect15stacks_in_31214 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31214 .link_effect15stacks_in_31214 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31214 .link_effect15stacks_in_31214 a::before,
#stacks_in_31214 .link_effect15stacks_in_31214 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31214 .link_effect15stacks_in_31214 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_31214 .link_effect15stacks_in_31214 a::before,
#stacks_in_31214 .link_effect15stacks_in_31214 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_31214 .link_effect15stacks_in_31214 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_31214 .link_effect15stacks_in_31214 a:hover::before,
#stacks_in_31214 .link_effect15stacks_in_31214 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_31214 .link_effect15stacks_in_31214 a:hover::before,
#stacks_in_31214 .link_effect15stacks_in_31214 a:focus::before,
#stacks_in_31214 .link_effect15stacks_in_31214 a:hover::after,
#stacks_in_31214 .link_effect15stacks_in_31214 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_31214 .link_effect15stacks_in_31214 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_31214 .link_effect15stacks_in_31214 a:hover::after,
#stacks_in_31214 .link_effect15stacks_in_31214 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_31214 .link_effect16stacks_in_31214 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31214 .link_effect16stacks_in_31214 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31214 .link_effect16stacks_in_31214 a::before,
#stacks_in_31214 .link_effect16stacks_in_31214 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31214 .link_effect16stacks_in_31214 a {
	padding: 0 0.35em;
	font-weight:bold !important;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_31214 .link_effect16stacks_in_31214 a:hover {
	color: #d04c3f;
}

#stacks_in_31214 .link_effect16stacks_in_31214 a::before,
#stacks_in_31214 .link_effect16stacks_in_31214 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_31214 .link_effect16stacks_in_31214 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_31214 .link_effect16stacks_in_31214 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_31214 .link_effect16stacks_in_31214 a:hover::before,
#stacks_in_31214 .link_effect16stacks_in_31214 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_31214 .link_effect17stacks_in_31214 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
  	text-decoration: none;
}

#stacks_in_31214 .link_effect17stacks_in_31214 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #532A77 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_31214 .link_effect17stacks_in_31214 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_31214 .link_effect18stacks_in_31214 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31214 .link_effect18stacks_in_31214 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31214 .link_effect18stacks_in_31214 a::before,
#stacks_in_31214 .link_effect18stacks_in_31214 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31214 .link_effect18stacks_in_31214 {
}

#stacks_in_31214 .link_effect18stacks_in_31214 a {
	padding: 0 ;
	color: #532A77;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_31214 .link_effect18stacks_in_31214 a::before,
#stacks_in_31214 .link_effect18stacks_in_31214 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #532A77;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_31214 .link_effect18stacks_in_31214 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_31214 .link_effect18stacks_in_31214 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_31214 .link_effect18stacks_in_31214 a:hover,
#stacks_in_31214 .link_effect18stacks_in_31214 a:focus {
	color: #fff;
}

#stacks_in_31214 .link_effect18stacks_in_31214 a:hover::before,
#stacks_in_31214 .link_effect18stacks_in_31214 a:focus::before,
#stacks_in_31214 .link_effect18stacks_in_31214 a:hover::after,
#stacks_in_31214 .link_effect18stacks_in_31214 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_31214 .link_effect19stacks_in_31214 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31214 .link_effect19stacks_in_31214 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31214 .link_effect19stacks_in_31214 a::before,
#stacks_in_31214 .link_effect19stacks_in_31214 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_31214 a {
}

.link_effect19stacks_in_31214 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_31214 a:hover::after,
.link_effect19stacks_in_31214 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_31214 .link_effect20stacks_in_31214 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31214 .link_effect20stacks_in_31214 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #532A77 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31214 .link_effect20stacks_in_31214 a::before,
#stacks_in_31214 .link_effect20stacks_in_31214 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_31214 a {
}

.link_effect20stacks_in_31214 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_31214 a:hover::after,
.link_effect20stacks_in_31214 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}

































/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31219Calligrapher{			font-size: 110% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31219Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31219Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31219Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31219Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31219Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31219Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31219Calligrapher h6, .stacks_in_31219Calligrapher h5, .stacks_in_31219Calligrapher h4, .stacks_in_31219Calligrapher h3, .stacks_in_31219Calligrapher h2, .stacks_in_31219Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31219Calligrapher, .stacks_in_31219Calligrapher h1, .stacks_in_31219Calligrapher h2, .stacks_in_31219Calligrapher h3, .stacks_in_31219Calligrapher h4, .stacks_in_31219Calligrapher h5, .stacks_in_31219Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31219Calligrapher, .stacks_in_31219Calligrapher h1, .stacks_in_31219Calligrapher h2, .stacks_in_31219Calligrapher h3, .stacks_in_31219Calligrapher h4, .stacks_in_31219Calligrapher h5, .stacks_in_31219Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31219targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31219Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31219Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31219Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31219Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31219 {
	margin: 0px 25px 15px 25px;
}

#stacks_in_31223 {
	margin:  15px;
	padding:  5px;
}

#stacks_in_31224 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

#stacks_in_31225 {
	margin:  15px;
	padding:  5px;
}

#stacks_in_31226 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_31401{}#stacks_in_31401 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:15px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31401 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31401 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31401 > .jack.width-static{width:500px}#stacks_in_31401 > .jack.width-flexible{width:100%}#stacks_in_31401 > .jack.margin-detailed{margin:20.00px 0.00px 0.00px 0.00px}#stacks_in_31401 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31401 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31401 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31401 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31401 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31401 > .jack::after{border-radius:15px}#stacks_in_31401 > .jack.border-detailed-radius,#stacks_in_31401 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31401 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31401 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31401 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_31401 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31401 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31401 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31401 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31401 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31401 > .jack.bg-image:not(.glass){}#stacks_in_31401 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31401 > .jack.bg-image.glass.after,#stacks_in_31401 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31401 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31401 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31401 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31401 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31401 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31401 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31401 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31401 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31401 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31401 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31401 > .jack.bg-image.glass.after,#stacks_in_31401 > .glass.jack.bg-image::after{}#stacks_in_31401 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31401 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31401 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_31401 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31401 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31401 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31401 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31401 > .jack.peek-shadow::before,#stacks_in_31401 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_31401 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31401 > .jack{overflow:hidden;}#stacks_in_31401 > .jack.height-static{height:650px}#stacks_in_31401 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31403Calligrapher{			font-size: 85% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31403Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31403Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31403Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31403Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31403Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31403Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31403Calligrapher h6, .stacks_in_31403Calligrapher h5, .stacks_in_31403Calligrapher h4, .stacks_in_31403Calligrapher h3, .stacks_in_31403Calligrapher h2, .stacks_in_31403Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31403Calligrapher, .stacks_in_31403Calligrapher h1, .stacks_in_31403Calligrapher h2, .stacks_in_31403Calligrapher h3, .stacks_in_31403Calligrapher h4, .stacks_in_31403Calligrapher h5, .stacks_in_31403Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31403Calligrapher, .stacks_in_31403Calligrapher h1, .stacks_in_31403Calligrapher h2, .stacks_in_31403Calligrapher h3, .stacks_in_31403Calligrapher h4, .stacks_in_31403Calligrapher h5, .stacks_in_31403Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31403targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31403Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31403Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31403Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31403Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31403 {
	margin: 15px 25px 25px 25px;
}
/* Start dooHeader X stack CSS code */.stacks_in_31404x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31404x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31404x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31404 {
	margin: 15px 0px 0px 0px;
}

#stacks_in_31405 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31425Calligrapher{			font-size: 80% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31425Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31425Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31425Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31425Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31425Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31425Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31425Calligrapher h6, .stacks_in_31425Calligrapher h5, .stacks_in_31425Calligrapher h4, .stacks_in_31425Calligrapher h3, .stacks_in_31425Calligrapher h2, .stacks_in_31425Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31425Calligrapher, .stacks_in_31425Calligrapher h1, .stacks_in_31425Calligrapher h2, .stacks_in_31425Calligrapher h3, .stacks_in_31425Calligrapher h4, .stacks_in_31425Calligrapher h5, .stacks_in_31425Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31425Calligrapher, .stacks_in_31425Calligrapher h1, .stacks_in_31425Calligrapher h2, .stacks_in_31425Calligrapher h3, .stacks_in_31425Calligrapher h4, .stacks_in_31425Calligrapher h5, .stacks_in_31425Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31425targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31425Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31425Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31425Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31425Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31425 {
	margin: 0px 15px 15px 15px;
}

#stacks_in_31429 {
	margin: 15px 15px 10px 15px;
	padding:  5px;
}

#stacks_in_31430 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

#stacks_in_31431 {
	margin: 5px 15px 15px 15px;
	padding:  5px;
}

#stacks_in_31432 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_31313{padding-right:0.00px;padding-left:0.00px;}#stacks_in_31313 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:0px;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31313 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31313 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31313 > .jack.width-static{width:500px}#stacks_in_31313 > .jack.width-flexible{width:100%}#stacks_in_31313 > .jack.margin-detailed{margin:25.00px 0.00px 10.00px 0.00px}#stacks_in_31313 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31313 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31313 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31313 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31313 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31313 > .jack::after{border-radius:0px}#stacks_in_31313 > .jack.border-detailed-radius,#stacks_in_31313 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31313 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31313 > .jack.bg-color{background-color:#89C5FF}#stacks_in_31313 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_31313 > .jack.bg-image:not(.glass){background-image:url(../thai_verstehen_files/bgImage-31313.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_31313 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31313 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31313 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_3_col.jpg)}#stacks_in_31313 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31313 > .jack.bg-image:not(.glass){}#stacks_in_31313 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31313 > .jack.bg-image.glass.after,#stacks_in_31313 > .glass.jack.bg-image::after{opacity:0.70;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url(../thai_verstehen_files/bgImage-31313.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_31313 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31313 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31313 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31313 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31313 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31313 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31313 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31313 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_3_col.jpg)}#stacks_in_31313 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31313 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31313 > .jack.bg-image.glass.after,#stacks_in_31313 > .glass.jack.bg-image::after{}#stacks_in_31313 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31313 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31313 > .jack.drop-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50)}#stacks_in_31313 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_31313 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50);box-shadow:0px 10px 6px -6px rgba(0,0,0,0.50),inset 0px 0px 6px 2px rgba(0,0,0,0.50)}#stacks_in_31313 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31313 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31313 > .jack.peek-shadow::before,#stacks_in_31313 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:0%;bottom:0%;left:5px;right:5px;border-radius:100px / 10px}#stacks_in_31313 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31313 > .jack{overflow:hidden;}#stacks_in_31313 > .jack.height-static{height:30px}#stacks_in_31313 > .jack.height-minmax{min-height:100px;max-height:800px}
