@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_29001{padding-left:0px;padding-right:0px;}#stacks_in_29001 > .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_29001 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_29001 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_29001 > .jack.width-static{width:500px}#stacks_in_29001 > .jack.width-flexible{width:100%}#stacks_in_29001 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_29001 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_29001 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_29001 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_29001 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_29001 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_29001 > .jack::after{border-radius:0px}#stacks_in_29001 > .jack.border-detailed-radius,#stacks_in_29001 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_29001 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_29001 > .jack.bg-color{background-color:#89C5FF}#stacks_in_29001 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_29001 > .jack.bg-image:not(.glass){background-image:url(../thai_lernen_files/bgImage-29001.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_29001 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_29001 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_29001 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_3_col.jpg)}#stacks_in_29001 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_29001 > .jack.bg-image:not(.glass){background-image:url(../thai_lernen_files/bgImageLarge-29001.jpg);}#stacks_in_29001 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_29001 > .jack.bg-image.glass.after,#stacks_in_29001 > .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_lernen_files/bgImage-29001.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_29001 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_29001 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_29001 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_29001 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_29001 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_29001 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_29001 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_29001 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_3_col.jpg)}#stacks_in_29001 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_29001 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_29001 > .jack.bg-image.glass.after,#stacks_in_29001 > .glass.jack.bg-image::after{background-image:url(../thai_lernen_files/bgImageLarge-29001.jpg);}#stacks_in_29001 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_29001 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_29001 > .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_29001 > .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_29001 > .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_29001 > .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_29001 > .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_29001 > .jack.peek-shadow::before,#stacks_in_29001 > .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_29001 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_29001 > .jack{overflow:hidden;}#stacks_in_29001 > .jack.height-static{height:90px}#stacks_in_29001 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_29001 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_6774{}#stacks_in_6774 > .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_6774 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_6774 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_6774 > .jack.width-static{width:500px}#stacks_in_6774 > .jack.width-flexible{width:100%}#stacks_in_6774 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_6774 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_6774 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_6774 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_6774 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_6774 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_6774 > .jack::after{border-radius:15px}#stacks_in_6774 > .jack.border-detailed-radius,#stacks_in_6774 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_6774 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_6774 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_6774 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_6774 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_6774 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_6774 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_6774 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_6774 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_6774 > .jack.bg-image:not(.glass){}#stacks_in_6774 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_6774 > .jack.bg-image.glass.after,#stacks_in_6774 > .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_6774 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_6774 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_6774 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_6774 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_6774 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_6774 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_6774 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_6774 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_6774 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_6774 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_6774 > .jack.bg-image.glass.after,#stacks_in_6774 > .glass.jack.bg-image::after{}#stacks_in_6774 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_6774 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_6774 > .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_6774 > .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_6774 > .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_6774 > .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_6774 > .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_6774 > .jack.peek-shadow::before,#stacks_in_6774 > .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_6774 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_6774 > .jack{overflow:hidden;}#stacks_in_6774 > .jack.height-static{height:100px}#stacks_in_6774 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_29976Calligrapher{			font-size: 200% !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_29976Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29976Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29976Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29976Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29976Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29976Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29976Calligrapher h6, .stacks_in_29976Calligrapher h5, .stacks_in_29976Calligrapher h4, .stacks_in_29976Calligrapher h3, .stacks_in_29976Calligrapher h2, .stacks_in_29976Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_29976Calligrapher, .stacks_in_29976Calligrapher h1, .stacks_in_29976Calligrapher h2, .stacks_in_29976Calligrapher h3, .stacks_in_29976Calligrapher h4, .stacks_in_29976Calligrapher h5, .stacks_in_29976Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_29976Calligrapher, .stacks_in_29976Calligrapher h1, .stacks_in_29976Calligrapher h2, .stacks_in_29976Calligrapher h3, .stacks_in_29976Calligrapher h4, .stacks_in_29976Calligrapher h5, .stacks_in_29976Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_29976targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_29976Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_29976Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_29976Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_29976Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_29978x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_29978x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_29978x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_29978 {
	margin: 40px 0px 10px 0px;
}

#stacks_in_29979 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_29977Calligrapher{			font-size: 250% !important;			color: #40006C !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_29977Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29977Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29977Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29977Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29977Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29977Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29977Calligrapher h6, .stacks_in_29977Calligrapher h5, .stacks_in_29977Calligrapher h4, .stacks_in_29977Calligrapher h3, .stacks_in_29977Calligrapher h2, .stacks_in_29977Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_29977Calligrapher, .stacks_in_29977Calligrapher h1, .stacks_in_29977Calligrapher h2, .stacks_in_29977Calligrapher h3, .stacks_in_29977Calligrapher h4, .stacks_in_29977Calligrapher h5, .stacks_in_29977Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_29977Calligrapher, .stacks_in_29977Calligrapher h1, .stacks_in_29977Calligrapher h2, .stacks_in_29977Calligrapher h3, .stacks_in_29977Calligrapher h4, .stacks_in_29977Calligrapher h5, .stacks_in_29977Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_29977targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_29977Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_29977Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_29977Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_29977Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_29977 {
	margin: 0px 0px 20px 0px;
}
#stacks_in_30973{}#stacks_in_30973 > .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_30973 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_30973 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_30973 > .jack.width-static{width:500px}#stacks_in_30973 > .jack.width-flexible{width:100%}#stacks_in_30973 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_30973 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30973 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_30973 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_30973 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_30973 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_30973 > .jack::after{border-radius:15px}#stacks_in_30973 > .jack.border-detailed-radius,#stacks_in_30973 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_30973 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_30973 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_30973 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_30973 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_30973 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_30973 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_30973 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_30973 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30973 > .jack.bg-image:not(.glass){}#stacks_in_30973 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_30973 > .jack.bg-image.glass.after,#stacks_in_30973 > .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_30973 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_30973 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30973 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_30973 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_30973 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_30973 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_30973 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30973 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_30973 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_30973 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30973 > .jack.bg-image.glass.after,#stacks_in_30973 > .glass.jack.bg-image::after{}#stacks_in_30973 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30973 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_30973 > .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_30973 > .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_30973 > .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_30973 > .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_30973 > .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_30973 > .jack.peek-shadow::before,#stacks_in_30973 > .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_30973 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_30973 > .jack{overflow:hidden;}#stacks_in_30973 > .jack.height-static{height:100px}#stacks_in_30973 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_30973 {
	margin: 0px 0px 20px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_30974Calligrapher{			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_30974Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30974Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30974Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30974Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30974Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30974Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30974Calligrapher h6, .stacks_in_30974Calligrapher h5, .stacks_in_30974Calligrapher h4, .stacks_in_30974Calligrapher h3, .stacks_in_30974Calligrapher h2, .stacks_in_30974Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_30974Calligrapher, .stacks_in_30974Calligrapher h1, .stacks_in_30974Calligrapher h2, .stacks_in_30974Calligrapher h3, .stacks_in_30974Calligrapher h4, .stacks_in_30974Calligrapher h5, .stacks_in_30974Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_30974Calligrapher, .stacks_in_30974Calligrapher h1, .stacks_in_30974Calligrapher h2, .stacks_in_30974Calligrapher h3, .stacks_in_30974Calligrapher h4, .stacks_in_30974Calligrapher h5, .stacks_in_30974Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_30974targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_30974Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_30974Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_30974Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_30974Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_30975x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_30975x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_30975x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_30975 {
	margin: 20px 0px 20px 0px;
}

#stacks_in_30976 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_39770Calligrapher{			font-size: 120% !important;			color: #40006C !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_39770Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39770Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39770Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39770Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39770Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39770Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_39770Calligrapher h6, .stacks_in_39770Calligrapher h5, .stacks_in_39770Calligrapher h4, .stacks_in_39770Calligrapher h3, .stacks_in_39770Calligrapher h2, .stacks_in_39770Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_39770Calligrapher, .stacks_in_39770Calligrapher h1, .stacks_in_39770Calligrapher h2, .stacks_in_39770Calligrapher h3, .stacks_in_39770Calligrapher h4, .stacks_in_39770Calligrapher h5, .stacks_in_39770Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_39770Calligrapher, .stacks_in_39770Calligrapher h1, .stacks_in_39770Calligrapher h2, .stacks_in_39770Calligrapher h3, .stacks_in_39770Calligrapher h4, .stacks_in_39770Calligrapher h5, .stacks_in_39770Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_39770targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_39770Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_39770Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_39770Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_39770Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_39770 {
	margin: 0px 0px 20px 0px;
}
#stacks_in_5625 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_5625 .jwresp_col{float:none} #stacks_in_5625 #jwresp_col3_stacks_in_5625{float:right;width:32%}#stacks_in_5625 #jwresp_col1_stacks_in_5625,#stacks_in_5625 #jwresp_col2_stacks_in_5625{width:32%;float:left}#stacks_in_5625 #jwresp_col1_stacks_in_5625{margin-right:1%}#stacks_in_5625 #jwresp_col2_stacks_in_5625{margin-left:1%} @media screen and (max-width:770px){#stacks_in_5625 #jwresp_col1_stacks_in_5625,#stacks_in_5625 #jwresp_col2_stacks_in_5625{margin:0;margin-bottom:20px}#stacks_in_5625 #jwresp_col1_stacks_in_5625{width:49%}#stacks_in_5625 #jwresp_col2_stacks_in_5625{float:right;width:49%}#stacks_in_5625 #jwresp_col3_stacks_in_5625{float:none;clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_5625 #jwresp_col1_stacks_in_5625,#stacks_in_5625 #jwresp_col3_stacks_in_5625,#stacks_in_5625 #jwresp_col2_stacks_in_5625{float:none;width:100%;display:block}#stacks_in_5625 #jwresp_col1_stacks_in_5625,#stacks_in_5625 #jwresp_col2_stacks_in_5625{margin-bottom:20px}} 

#stacks_in_5625 {
	margin: 15px 0px 0px 0px;
}
#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:460px}#stacks_in_3685 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_29984Calligrapher{			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_29984Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29984Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29984Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29984Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29984Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29984Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29984Calligrapher h6, .stacks_in_29984Calligrapher h5, .stacks_in_29984Calligrapher h4, .stacks_in_29984Calligrapher h3, .stacks_in_29984Calligrapher h2, .stacks_in_29984Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_29984Calligrapher, .stacks_in_29984Calligrapher h1, .stacks_in_29984Calligrapher h2, .stacks_in_29984Calligrapher h3, .stacks_in_29984Calligrapher h4, .stacks_in_29984Calligrapher h5, .stacks_in_29984Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_29984Calligrapher, .stacks_in_29984Calligrapher h1, .stacks_in_29984Calligrapher h2, .stacks_in_29984Calligrapher h3, .stacks_in_29984Calligrapher h4, .stacks_in_29984Calligrapher h5, .stacks_in_29984Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_29984targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_29984Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_29984Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_29984Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_29984Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_29984 {
	margin: 25px 0px 0px 0px;
}
/* Start dooHeader X stack CSS code */.stacks_in_29985x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_29985x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_29985x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_29985 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_29986 {
	font-weight: lighter;
}
#stacks_in_1208 *,
#stacks_in_1208 *:before,
#stacks_in_1208 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_30006Calligrapher{			font-size: 100% !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_30006Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30006Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30006Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30006Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30006Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30006Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30006Calligrapher h6, .stacks_in_30006Calligrapher h5, .stacks_in_30006Calligrapher h4, .stacks_in_30006Calligrapher h3, .stacks_in_30006Calligrapher h2, .stacks_in_30006Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_30006Calligrapher, .stacks_in_30006Calligrapher h1, .stacks_in_30006Calligrapher h2, .stacks_in_30006Calligrapher h3, .stacks_in_30006Calligrapher h4, .stacks_in_30006Calligrapher h5, .stacks_in_30006Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_30006Calligrapher, .stacks_in_30006Calligrapher h1, .stacks_in_30006Calligrapher h2, .stacks_in_30006Calligrapher h3, .stacks_in_30006Calligrapher h4, .stacks_in_30006Calligrapher h5, .stacks_in_30006Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_30006targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_30006Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_30006Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_30006Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_30006Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_30006 {
	margin: 10px 15px 15px 15px;
}

#stacks_in_7770 {
	margin:  3px;
	padding: 0px 10px 5px 10px;
}

#stacks_in_7771 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31085Calligrapher{			font-size: 100% !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_31085Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31085Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31085Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31085Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31085Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31085Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31085Calligrapher h6, .stacks_in_31085Calligrapher h5, .stacks_in_31085Calligrapher h4, .stacks_in_31085Calligrapher h3, .stacks_in_31085Calligrapher h2, .stacks_in_31085Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31085Calligrapher, .stacks_in_31085Calligrapher h1, .stacks_in_31085Calligrapher h2, .stacks_in_31085Calligrapher h3, .stacks_in_31085Calligrapher h4, .stacks_in_31085Calligrapher h5, .stacks_in_31085Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31085Calligrapher, .stacks_in_31085Calligrapher h1, .stacks_in_31085Calligrapher h2, .stacks_in_31085Calligrapher h3, .stacks_in_31085Calligrapher h4, .stacks_in_31085Calligrapher h5, .stacks_in_31085Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31085targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31085Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31085Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31085Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31085Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31085 {
	margin: 20px 15px 15px 15px;
}

#stacks_in_31086 {
	margin:  3px;
	padding: 0px 10px 5px 10px;
}

#stacks_in_31088 {
	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:460px}#stacks_in_1196 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_29988Calligrapher{			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_29988Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29988Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29988Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29988Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29988Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29988Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29988Calligrapher h6, .stacks_in_29988Calligrapher h5, .stacks_in_29988Calligrapher h4, .stacks_in_29988Calligrapher h3, .stacks_in_29988Calligrapher h2, .stacks_in_29988Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_29988Calligrapher, .stacks_in_29988Calligrapher h1, .stacks_in_29988Calligrapher h2, .stacks_in_29988Calligrapher h3, .stacks_in_29988Calligrapher h4, .stacks_in_29988Calligrapher h5, .stacks_in_29988Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_29988Calligrapher, .stacks_in_29988Calligrapher h1, .stacks_in_29988Calligrapher h2, .stacks_in_29988Calligrapher h3, .stacks_in_29988Calligrapher h4, .stacks_in_29988Calligrapher h5, .stacks_in_29988Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_29988targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_29988Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_29988Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_29988Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_29988Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_29988 {
	margin: 25px 0px 0px 0px;
}
/* Start dooHeader X stack CSS code */.stacks_in_29989x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_29989x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_29989x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_29989 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_29990 {
	font-weight: lighter;
}
#stacks_in_1212 *,
#stacks_in_1212 *:before,
#stacks_in_1212 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/* LinkThing by RapidWeaver Central  */



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

.link_effect1stacks_in_4801 a:before, .link_effect1stacks_in_4801 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_4801 a:after {
  right: 50%;
  left: auto;
}

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

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

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



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

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

#stacks_in_4801 .link_effect2stacks_in_4801 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

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

#stacks_in_4801 .link_effect3stacks_in_4801 {
  	text-decoration: none;
}

#stacks_in_4801 .link_effect3stacks_in_4801 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_4801 .link_effect3stacks_in_4801 a:hover,
#stacks_in_4801 .link_effect3stacks_in_4801 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



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

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

#stacks_in_4801 .link_effect4stacks_in_4801 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_4801 .link_effect4stacks_in_4801 a::before,
#stacks_in_4801 .link_effect%stacks_in_4801 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_4801 .link_effect4stacks_in_4801 {
}

#stacks_in_4801 .link_effect4stacks_in_4801 a {
	font-weight:bold !important;;
}

#stacks_in_4801 .link_effect4stacks_in_4801 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_4801 .link_effect4stacks_in_4801 a:hover::before,
#stacks_in_4801 .link_effect4stacks_in_4801 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




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


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

#stacks_in_4801 .link_effect5stacks_in_4801 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_4801 .link_effect5stacks_in_4801 a::before,
#stacks_in_4801 .link_effect5stacks_in_4801 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_4801 .link_effect5stacks_in_4801 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_4801 .link_effect5stacks_in_4801 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_4801 .link_effect5stacks_in_4801 a:hover::before,
#stacks_in_4801 .link_effect5stacks_in_4801 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





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

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

#stacks_in_4801 .link_effect6stacks_in_4801 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_4801 .link_effect6stacks_in_4801 a::before,
#stacks_in_4801 .link_effect6stacks_in_4801 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_4801 .link_effect6stacks_in_4801 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_4801 .link_effect6stacks_in_4801 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_4801 .link_effect6stacks_in_4801 a:hover::before,
#stacks_in_4801 .link_effect6stacks_in_4801 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




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

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

#stacks_in_4801 .link_effect7stacks_in_4801 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_4801 .link_effect7stacks_in_4801 a::before,
#stacks_in_4801 .link_effect7stacks_in_4801 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_4801 .link_effect7stacks_in_4801 {
	position: relative;
}

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


#stacks_in_4801 .link_effect7stacks_in_4801 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_4801 .link_effect7stacks_in_4801 a:hover::before,
#stacks_in_4801 .link_effect7stacks_in_4801 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





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

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

#stacks_in_4801 .link_effect8stacks_in_4801 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_4801 .link_effect8stacks_in_4801 a::before,
#stacks_in_4801 .link_effect8stacks_in_4801 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



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

#stacks_in_4801 .link_effect8stacks_in_4801 a:hover,
#stacks_in_4801 .link_effect8stacks_in_4801 a:focus {
	color: #DA4453 !important;
}

#stacks_in_4801 .link_effect8stacks_in_4801 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_4801 .link_effect8stacks_in_4801 a:hover::before,
#stacks_in_4801 .link_effect8stacks_in_4801 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_4801 .link_effect9stacks_in_4801 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_4801 .link_effect9stacks_in_4801 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_4801 .link_effect9stacks_in_4801 a::before,
#stacks_in_4801 .link_effect9stacks_in_4801 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_4801 .link_effect9stacks_in_4801 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_4801 .link_effect9stacks_in_4801 a:hover,
#stacks_in_4801 .link_effect9stacks_in_4801 a:focus {
	color: #DA4453 !important;
}

#stacks_in_4801 .link_effect9stacks_in_4801 a::before,
#stacks_in_4801 .link_effect9stacks_in_4801 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_4801 .link_effect9stacks_in_4801 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_4801 .link_effect9stacks_in_4801 a:hover::before,
#stacks_in_4801 .link_effect9stacks_in_4801 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_4801 .link_effect9stacks_in_4801 a::after {
	border-bottom: 2px solid  #DA4453;
}



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

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

#stacks_in_4801 .link_effect10stacks_in_4801 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_4801 .link_effect10stacks_in_4801 a::before,
#stacks_in_4801 .link_effect10stacks_in_4801 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

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

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

#stacks_in_4801 .link_effect10stacks_in_4801 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_4801 .link_effect10stacks_in_4801 a:hover::before,
#stacks_in_4801 .link_effect10stacks_in_4801 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



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

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

#stacks_in_4801 .link_effect11stacks_in_4801 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_4801 .link_effect11stacks_in_4801 a::before,
#stacks_in_4801 .link_effect11stacks_in_4801 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


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

#stacks_in_4801 .link_effect11stacks_in_4801 a:hover,
#stacks_in_4801 .link_effect11stacks_in_4801 a:focus {
	color: #DA4453 !important;
}

#stacks_in_4801 .link_effect11stacks_in_4801 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_4801 .link_effect11stacks_in_4801 a:hover::before,
#stacks_in_4801 .link_effect11stacks_in_4801 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




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

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

#stacks_in_4801 .link_effect12stacks_in_4801 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_4801 .link_effect12stacks_in_4801 a::before,
#stacks_in_4801 .link_effect12stacks_in_4801 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

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

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

#stacks_in_4801 .link_effect12stacks_in_4801 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_4801 .link_effect12stacks_in_4801 a,
#stacks_in_4801 .link_effect12stacks_in_4801 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_4801 .link_effect12stacks_in_4801 a:hover::before,
#stacks_in_4801 .link_effect12stacks_in_4801 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


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

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

#stacks_in_4801 .link_effect13stacks_in_4801 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_4801 .link_effect13stacks_in_4801 a::before,
#stacks_in_4801 .link_effect13stacks_in_4801 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_4801 .link_effect13stacks_in_4801 {
}

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

#stacks_in_4801 .link_effect13stacks_in_4801 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_lernen_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_4801 .link_effect13stacks_in_4801 a:hover::before,
#stacks_in_4801 .link_effect13stacks_in_4801 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_4801 .link_effect14stacks_in_4801 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_4801 .link_effect14stacks_in_4801 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_4801 .link_effect14stacks_in_4801 a::before,
#stacks_in_4801 .link_effect14stacks_in_4801 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_4801 .link_effect14stacks_in_4801 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_4801 .link_effect14stacks_in_4801 a:hover,
#stacks_in_4801 .link_effect14stacks_in_4801 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

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

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

#stacks_in_4801 .link_effect14stacks_in_4801 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../thai_lernen_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_4801 .link_effect14stacks_in_4801 a:hover::after,
#stacks_in_4801 .link_effect14stacks_in_4801 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


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

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

#stacks_in_4801 .link_effect15stacks_in_4801 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_4801 .link_effect15stacks_in_4801 a::before,
#stacks_in_4801 .link_effect15stacks_in_4801 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_4801 .link_effect15stacks_in_4801 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_4801 .link_effect15stacks_in_4801 a::before,
#stacks_in_4801 .link_effect15stacks_in_4801 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_4801 .link_effect15stacks_in_4801 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_4801 .link_effect15stacks_in_4801 a:hover::before,
#stacks_in_4801 .link_effect15stacks_in_4801 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

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

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

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



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

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

#stacks_in_4801 .link_effect16stacks_in_4801 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_4801 .link_effect16stacks_in_4801 a::before,
#stacks_in_4801 .link_effect16stacks_in_4801 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

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

#stacks_in_4801 .link_effect16stacks_in_4801 a:hover {
	color: #d04c3f;
}

#stacks_in_4801 .link_effect16stacks_in_4801 a::before,
#stacks_in_4801 .link_effect16stacks_in_4801 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_4801 .link_effect16stacks_in_4801 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

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

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



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

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

#stacks_in_4801 .link_effect17stacks_in_4801 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_4801 .link_effect17stacks_in_4801 a:hover:after {
  	width: 0;
}


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

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

#stacks_in_4801 .link_effect18stacks_in_4801 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_4801 .link_effect18stacks_in_4801 a::before,
#stacks_in_4801 .link_effect18stacks_in_4801 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_4801 .link_effect18stacks_in_4801 {
}

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

#stacks_in_4801 .link_effect18stacks_in_4801 a::before,
#stacks_in_4801 .link_effect18stacks_in_4801 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_4801 .link_effect18stacks_in_4801 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

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

#stacks_in_4801 .link_effect18stacks_in_4801 a:hover,
#stacks_in_4801 .link_effect18stacks_in_4801 a:focus {
	color: #fff;
}

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





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


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

#stacks_in_4801 .link_effect19stacks_in_4801 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_4801 .link_effect19stacks_in_4801 a::before,
#stacks_in_4801 .link_effect19stacks_in_4801 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_4801 a {
}

.link_effect19stacks_in_4801 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_4801 a:hover::after,
.link_effect19stacks_in_4801 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



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

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

#stacks_in_4801 .link_effect20stacks_in_4801 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_4801 .link_effect20stacks_in_4801 a::before,
#stacks_in_4801 .link_effect20stacks_in_4801 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_4801 a {
}

.link_effect20stacks_in_4801 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_4801 a:hover::after,
.link_effect20stacks_in_4801 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_30020Calligrapher{			font-size: 100% !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_30020Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30020Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30020Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30020Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30020Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30020Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30020Calligrapher h6, .stacks_in_30020Calligrapher h5, .stacks_in_30020Calligrapher h4, .stacks_in_30020Calligrapher h3, .stacks_in_30020Calligrapher h2, .stacks_in_30020Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_30020Calligrapher, .stacks_in_30020Calligrapher h1, .stacks_in_30020Calligrapher h2, .stacks_in_30020Calligrapher h3, .stacks_in_30020Calligrapher h4, .stacks_in_30020Calligrapher h5, .stacks_in_30020Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_30020Calligrapher, .stacks_in_30020Calligrapher h1, .stacks_in_30020Calligrapher h2, .stacks_in_30020Calligrapher h3, .stacks_in_30020Calligrapher h4, .stacks_in_30020Calligrapher h5, .stacks_in_30020Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_30020targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_30020Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_30020Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_30020Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_30020Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_30020 {
	margin: 0px 15px 15px 15px;
}

#stacks_in_7778 {
	margin:  3px;
	padding: 0px 10px 5px 10px;
}

#stacks_in_7779 {
	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:460px}#stacks_in_1238 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_29992Calligrapher{			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_29992Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29992Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29992Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29992Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29992Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29992Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29992Calligrapher h6, .stacks_in_29992Calligrapher h5, .stacks_in_29992Calligrapher h4, .stacks_in_29992Calligrapher h3, .stacks_in_29992Calligrapher h2, .stacks_in_29992Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_29992Calligrapher, .stacks_in_29992Calligrapher h1, .stacks_in_29992Calligrapher h2, .stacks_in_29992Calligrapher h3, .stacks_in_29992Calligrapher h4, .stacks_in_29992Calligrapher h5, .stacks_in_29992Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_29992Calligrapher, .stacks_in_29992Calligrapher h1, .stacks_in_29992Calligrapher h2, .stacks_in_29992Calligrapher h3, .stacks_in_29992Calligrapher h4, .stacks_in_29992Calligrapher h5, .stacks_in_29992Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_29992targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_29992Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_29992Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_29992Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_29992Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_29992 {
	margin: 25px 0px 0px 0px;
}
/* Start dooHeader X stack CSS code */.stacks_in_29993x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_29993x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_29993x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_29993 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_29994 {
	font-weight: lighter;
}
#stacks_in_1243 *,
#stacks_in_1243 *:before,
#stacks_in_1243 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/* LinkThing by RapidWeaver Central  */



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

.link_effect1stacks_in_4803 a:before, .link_effect1stacks_in_4803 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_4803 a:after {
  right: 50%;
  left: auto;
}

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

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

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



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

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

#stacks_in_4803 .link_effect2stacks_in_4803 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

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

#stacks_in_4803 .link_effect3stacks_in_4803 {
  	text-decoration: none;
}

#stacks_in_4803 .link_effect3stacks_in_4803 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_4803 .link_effect3stacks_in_4803 a:hover,
#stacks_in_4803 .link_effect3stacks_in_4803 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



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

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

#stacks_in_4803 .link_effect4stacks_in_4803 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_4803 .link_effect4stacks_in_4803 a::before,
#stacks_in_4803 .link_effect%stacks_in_4803 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_4803 .link_effect4stacks_in_4803 {
}

#stacks_in_4803 .link_effect4stacks_in_4803 a {
	font-weight:bold !important;;
}

#stacks_in_4803 .link_effect4stacks_in_4803 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_4803 .link_effect4stacks_in_4803 a:hover::before,
#stacks_in_4803 .link_effect4stacks_in_4803 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




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


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

#stacks_in_4803 .link_effect5stacks_in_4803 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_4803 .link_effect5stacks_in_4803 a::before,
#stacks_in_4803 .link_effect5stacks_in_4803 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_4803 .link_effect5stacks_in_4803 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_4803 .link_effect5stacks_in_4803 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_4803 .link_effect5stacks_in_4803 a:hover::before,
#stacks_in_4803 .link_effect5stacks_in_4803 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





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

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

#stacks_in_4803 .link_effect6stacks_in_4803 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_4803 .link_effect6stacks_in_4803 a::before,
#stacks_in_4803 .link_effect6stacks_in_4803 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_4803 .link_effect6stacks_in_4803 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_4803 .link_effect6stacks_in_4803 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_4803 .link_effect6stacks_in_4803 a:hover::before,
#stacks_in_4803 .link_effect6stacks_in_4803 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




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

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

#stacks_in_4803 .link_effect7stacks_in_4803 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_4803 .link_effect7stacks_in_4803 a::before,
#stacks_in_4803 .link_effect7stacks_in_4803 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_4803 .link_effect7stacks_in_4803 {
	position: relative;
}

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


#stacks_in_4803 .link_effect7stacks_in_4803 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_4803 .link_effect7stacks_in_4803 a:hover::before,
#stacks_in_4803 .link_effect7stacks_in_4803 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





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

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

#stacks_in_4803 .link_effect8stacks_in_4803 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_4803 .link_effect8stacks_in_4803 a::before,
#stacks_in_4803 .link_effect8stacks_in_4803 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



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

#stacks_in_4803 .link_effect8stacks_in_4803 a:hover,
#stacks_in_4803 .link_effect8stacks_in_4803 a:focus {
	color: #DA4453 !important;
}

#stacks_in_4803 .link_effect8stacks_in_4803 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_4803 .link_effect8stacks_in_4803 a:hover::before,
#stacks_in_4803 .link_effect8stacks_in_4803 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_4803 .link_effect9stacks_in_4803 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_4803 .link_effect9stacks_in_4803 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_4803 .link_effect9stacks_in_4803 a::before,
#stacks_in_4803 .link_effect9stacks_in_4803 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_4803 .link_effect9stacks_in_4803 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_4803 .link_effect9stacks_in_4803 a:hover,
#stacks_in_4803 .link_effect9stacks_in_4803 a:focus {
	color: #DA4453 !important;
}

#stacks_in_4803 .link_effect9stacks_in_4803 a::before,
#stacks_in_4803 .link_effect9stacks_in_4803 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_4803 .link_effect9stacks_in_4803 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_4803 .link_effect9stacks_in_4803 a:hover::before,
#stacks_in_4803 .link_effect9stacks_in_4803 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_4803 .link_effect9stacks_in_4803 a::after {
	border-bottom: 2px solid  #DA4453;
}



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

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

#stacks_in_4803 .link_effect10stacks_in_4803 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_4803 .link_effect10stacks_in_4803 a::before,
#stacks_in_4803 .link_effect10stacks_in_4803 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

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

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

#stacks_in_4803 .link_effect10stacks_in_4803 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_4803 .link_effect10stacks_in_4803 a:hover::before,
#stacks_in_4803 .link_effect10stacks_in_4803 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



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

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

#stacks_in_4803 .link_effect11stacks_in_4803 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_4803 .link_effect11stacks_in_4803 a::before,
#stacks_in_4803 .link_effect11stacks_in_4803 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


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

#stacks_in_4803 .link_effect11stacks_in_4803 a:hover,
#stacks_in_4803 .link_effect11stacks_in_4803 a:focus {
	color: #DA4453 !important;
}

#stacks_in_4803 .link_effect11stacks_in_4803 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_4803 .link_effect11stacks_in_4803 a:hover::before,
#stacks_in_4803 .link_effect11stacks_in_4803 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




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

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

#stacks_in_4803 .link_effect12stacks_in_4803 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_4803 .link_effect12stacks_in_4803 a::before,
#stacks_in_4803 .link_effect12stacks_in_4803 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

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

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

#stacks_in_4803 .link_effect12stacks_in_4803 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_4803 .link_effect12stacks_in_4803 a,
#stacks_in_4803 .link_effect12stacks_in_4803 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_4803 .link_effect12stacks_in_4803 a:hover::before,
#stacks_in_4803 .link_effect12stacks_in_4803 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


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

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

#stacks_in_4803 .link_effect13stacks_in_4803 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_4803 .link_effect13stacks_in_4803 a::before,
#stacks_in_4803 .link_effect13stacks_in_4803 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_4803 .link_effect13stacks_in_4803 {
}

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

#stacks_in_4803 .link_effect13stacks_in_4803 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_lernen_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_4803 .link_effect13stacks_in_4803 a:hover::before,
#stacks_in_4803 .link_effect13stacks_in_4803 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_4803 .link_effect14stacks_in_4803 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_4803 .link_effect14stacks_in_4803 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_4803 .link_effect14stacks_in_4803 a::before,
#stacks_in_4803 .link_effect14stacks_in_4803 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_4803 .link_effect14stacks_in_4803 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_4803 .link_effect14stacks_in_4803 a:hover,
#stacks_in_4803 .link_effect14stacks_in_4803 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

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

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

#stacks_in_4803 .link_effect14stacks_in_4803 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../thai_lernen_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_4803 .link_effect14stacks_in_4803 a:hover::after,
#stacks_in_4803 .link_effect14stacks_in_4803 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


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

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

#stacks_in_4803 .link_effect15stacks_in_4803 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_4803 .link_effect15stacks_in_4803 a::before,
#stacks_in_4803 .link_effect15stacks_in_4803 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_4803 .link_effect15stacks_in_4803 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_4803 .link_effect15stacks_in_4803 a::before,
#stacks_in_4803 .link_effect15stacks_in_4803 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_4803 .link_effect15stacks_in_4803 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_4803 .link_effect15stacks_in_4803 a:hover::before,
#stacks_in_4803 .link_effect15stacks_in_4803 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

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

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

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



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

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

#stacks_in_4803 .link_effect16stacks_in_4803 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_4803 .link_effect16stacks_in_4803 a::before,
#stacks_in_4803 .link_effect16stacks_in_4803 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

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

#stacks_in_4803 .link_effect16stacks_in_4803 a:hover {
	color: #d04c3f;
}

#stacks_in_4803 .link_effect16stacks_in_4803 a::before,
#stacks_in_4803 .link_effect16stacks_in_4803 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_4803 .link_effect16stacks_in_4803 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

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

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



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

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

#stacks_in_4803 .link_effect17stacks_in_4803 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_4803 .link_effect17stacks_in_4803 a:hover:after {
  	width: 0;
}


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

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

#stacks_in_4803 .link_effect18stacks_in_4803 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_4803 .link_effect18stacks_in_4803 a::before,
#stacks_in_4803 .link_effect18stacks_in_4803 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_4803 .link_effect18stacks_in_4803 {
}

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

#stacks_in_4803 .link_effect18stacks_in_4803 a::before,
#stacks_in_4803 .link_effect18stacks_in_4803 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_4803 .link_effect18stacks_in_4803 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

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

#stacks_in_4803 .link_effect18stacks_in_4803 a:hover,
#stacks_in_4803 .link_effect18stacks_in_4803 a:focus {
	color: #fff;
}

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





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


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

#stacks_in_4803 .link_effect19stacks_in_4803 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_4803 .link_effect19stacks_in_4803 a::before,
#stacks_in_4803 .link_effect19stacks_in_4803 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_4803 a {
}

.link_effect19stacks_in_4803 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_4803 a:hover::after,
.link_effect19stacks_in_4803 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



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

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

#stacks_in_4803 .link_effect20stacks_in_4803 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_4803 .link_effect20stacks_in_4803 a::before,
#stacks_in_4803 .link_effect20stacks_in_4803 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_4803 a {
}

.link_effect20stacks_in_4803 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_4803 a:hover::after,
.link_effect20stacks_in_4803 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_30022Calligrapher{			font-size: 100% !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_30022Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30022Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30022Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30022Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30022Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30022Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30022Calligrapher h6, .stacks_in_30022Calligrapher h5, .stacks_in_30022Calligrapher h4, .stacks_in_30022Calligrapher h3, .stacks_in_30022Calligrapher h2, .stacks_in_30022Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_30022Calligrapher, .stacks_in_30022Calligrapher h1, .stacks_in_30022Calligrapher h2, .stacks_in_30022Calligrapher h3, .stacks_in_30022Calligrapher h4, .stacks_in_30022Calligrapher h5, .stacks_in_30022Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_30022Calligrapher, .stacks_in_30022Calligrapher h1, .stacks_in_30022Calligrapher h2, .stacks_in_30022Calligrapher h3, .stacks_in_30022Calligrapher h4, .stacks_in_30022Calligrapher h5, .stacks_in_30022Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_30022targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_30022Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_30022Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_30022Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_30022Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_30022 {
	margin: 0px 15px 15px 15px;
}

#stacks_in_7786 {
	margin:  5px;
	padding: 0px 10px 5px 10px;
}

#stacks_in_7787 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_31036{padding-left:0px;padding-right:0px;}#stacks_in_31036 > .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_31036 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31036 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31036 > .jack.width-static{width:500px}#stacks_in_31036 > .jack.width-flexible{width:100%}#stacks_in_31036 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31036 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31036 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31036 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31036 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31036 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31036 > .jack::after{border-radius:0px}#stacks_in_31036 > .jack.border-detailed-radius,#stacks_in_31036 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31036 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31036 > .jack.bg-color{background-color:#89C5FF}#stacks_in_31036 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_31036 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31036 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31036 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31036 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31036 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31036 > .jack.bg-image:not(.glass){}#stacks_in_31036 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31036 > .jack.bg-image.glass.after,#stacks_in_31036 > .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_31036 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31036 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31036 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31036 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31036 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31036 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31036 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31036 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31036 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31036 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31036 > .jack.bg-image.glass.after,#stacks_in_31036 > .glass.jack.bg-image::after{}#stacks_in_31036 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31036 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31036 > .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_31036 > .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_31036 > .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_31036 > .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_31036 > .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_31036 > .jack.peek-shadow::before,#stacks_in_31036 > .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_31036 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31036 > .jack{overflow:visible;}#stacks_in_31036 > .jack.height-static{height:100px}#stacks_in_31036 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_30986{}#stacks_in_30986 > .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_30986 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_30986 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_30986 > .jack.width-static{width:500px}#stacks_in_30986 > .jack.width-flexible{width:100%}#stacks_in_30986 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_30986 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30986 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_30986 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_30986 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_30986 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_30986 > .jack::after{border-radius:15px}#stacks_in_30986 > .jack.border-detailed-radius,#stacks_in_30986 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_30986 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_30986 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_30986 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_30986 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_30986 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_30986 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_30986 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_30986 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30986 > .jack.bg-image:not(.glass){}#stacks_in_30986 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_30986 > .jack.bg-image.glass.after,#stacks_in_30986 > .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_30986 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_30986 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30986 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_30986 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_30986 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_30986 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_30986 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30986 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_30986 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_30986 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30986 > .jack.bg-image.glass.after,#stacks_in_30986 > .glass.jack.bg-image::after{}#stacks_in_30986 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30986 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_30986 > .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_30986 > .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_30986 > .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_30986 > .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_30986 > .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_30986 > .jack.peek-shadow::before,#stacks_in_30986 > .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_30986 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_30986 > .jack{overflow:hidden;}#stacks_in_30986 > .jack.height-static{height:100px}#stacks_in_30986 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_30989Calligrapher{			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_30989Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30989Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30989Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30989Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30989Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30989Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30989Calligrapher h6, .stacks_in_30989Calligrapher h5, .stacks_in_30989Calligrapher h4, .stacks_in_30989Calligrapher h3, .stacks_in_30989Calligrapher h2, .stacks_in_30989Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_30989Calligrapher, .stacks_in_30989Calligrapher h1, .stacks_in_30989Calligrapher h2, .stacks_in_30989Calligrapher h3, .stacks_in_30989Calligrapher h4, .stacks_in_30989Calligrapher h5, .stacks_in_30989Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_30989Calligrapher, .stacks_in_30989Calligrapher h1, .stacks_in_30989Calligrapher h2, .stacks_in_30989Calligrapher h3, .stacks_in_30989Calligrapher h4, .stacks_in_30989Calligrapher h5, .stacks_in_30989Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_30989targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_30989Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_30989Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_30989Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_30989Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_30989 {
	margin: 25px 0px 0px 0px;
}
/* Start dooHeader X stack CSS code */.stacks_in_30990x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_30990x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_30990x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_30990 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_30991 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_30994Calligrapher{			font-size: 90% !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_30994Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30994Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30994Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30994Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30994Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30994Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30994Calligrapher h6, .stacks_in_30994Calligrapher h5, .stacks_in_30994Calligrapher h4, .stacks_in_30994Calligrapher h3, .stacks_in_30994Calligrapher h2, .stacks_in_30994Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_30994Calligrapher, .stacks_in_30994Calligrapher h1, .stacks_in_30994Calligrapher h2, .stacks_in_30994Calligrapher h3, .stacks_in_30994Calligrapher h4, .stacks_in_30994Calligrapher h5, .stacks_in_30994Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_30994Calligrapher, .stacks_in_30994Calligrapher h1, .stacks_in_30994Calligrapher h2, .stacks_in_30994Calligrapher h3, .stacks_in_30994Calligrapher h4, .stacks_in_30994Calligrapher h5, .stacks_in_30994Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_30994targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_30994Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_30994Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_30994Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_30994Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_30994 {
	margin: 0px 15px 15px 15px;
}

#stacks_in_30995 {
	margin:  3px;
	padding: 0px 10px 5px 10px;
}

#stacks_in_30997 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_31002{}#stacks_in_31002 > .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_31002 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31002 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31002 > .jack.width-static{width:500px}#stacks_in_31002 > .jack.width-flexible{width:100%}#stacks_in_31002 > .jack.margin-detailed{margin:10.00px 0.00px 0.00px 0.00px}#stacks_in_31002 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31002 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31002 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31002 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31002 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31002 > .jack::after{border-radius:15px}#stacks_in_31002 > .jack.border-detailed-radius,#stacks_in_31002 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31002 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31002 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31002 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_31002 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31002 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31002 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31002 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31002 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31002 > .jack.bg-image:not(.glass){}#stacks_in_31002 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31002 > .jack.bg-image.glass.after,#stacks_in_31002 > .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_31002 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31002 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31002 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31002 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31002 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31002 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31002 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31002 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31002 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31002 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31002 > .jack.bg-image.glass.after,#stacks_in_31002 > .glass.jack.bg-image::after{}#stacks_in_31002 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31002 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31002 > .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_31002 > .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_31002 > .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_31002 > .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_31002 > .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_31002 > .jack.peek-shadow::before,#stacks_in_31002 > .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_31002 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31002 > .jack{overflow:hidden;}#stacks_in_31002 > .jack.height-static{height:100px}#stacks_in_31002 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31005Calligrapher{			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_31005Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31005Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31005Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31005Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31005Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31005Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31005Calligrapher h6, .stacks_in_31005Calligrapher h5, .stacks_in_31005Calligrapher h4, .stacks_in_31005Calligrapher h3, .stacks_in_31005Calligrapher h2, .stacks_in_31005Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31005Calligrapher, .stacks_in_31005Calligrapher h1, .stacks_in_31005Calligrapher h2, .stacks_in_31005Calligrapher h3, .stacks_in_31005Calligrapher h4, .stacks_in_31005Calligrapher h5, .stacks_in_31005Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31005Calligrapher, .stacks_in_31005Calligrapher h1, .stacks_in_31005Calligrapher h2, .stacks_in_31005Calligrapher h3, .stacks_in_31005Calligrapher h4, .stacks_in_31005Calligrapher h5, .stacks_in_31005Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31005targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31005Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31005Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31005Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31005Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31005 {
	margin: 25px 0px 0px 0px;
}
/* Start dooHeader X stack CSS code */.stacks_in_31022x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31022x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31022x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31022 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_31023 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31009Calligrapher{			font-size: 90% !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_31009Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31009Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31009Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31009Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31009Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31009Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31009Calligrapher h6, .stacks_in_31009Calligrapher h5, .stacks_in_31009Calligrapher h4, .stacks_in_31009Calligrapher h3, .stacks_in_31009Calligrapher h2, .stacks_in_31009Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31009Calligrapher, .stacks_in_31009Calligrapher h1, .stacks_in_31009Calligrapher h2, .stacks_in_31009Calligrapher h3, .stacks_in_31009Calligrapher h4, .stacks_in_31009Calligrapher h5, .stacks_in_31009Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31009Calligrapher, .stacks_in_31009Calligrapher h1, .stacks_in_31009Calligrapher h2, .stacks_in_31009Calligrapher h3, .stacks_in_31009Calligrapher h4, .stacks_in_31009Calligrapher h5, .stacks_in_31009Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31009targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31009Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31009Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31009Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31009Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31009 {
	margin: 0px 15px 15px 15px;
}

#stacks_in_31025 {
	margin:  3px;
	padding: 0px 10px 5px 10px;
}

#stacks_in_31027 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_31014{}#stacks_in_31014 > .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_31014 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31014 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31014 > .jack.width-static{width:500px}#stacks_in_31014 > .jack.width-flexible{width:100%}#stacks_in_31014 > .jack.margin-detailed{margin:10.00px 0.00px 0.00px 0.00px}#stacks_in_31014 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31014 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31014 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31014 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31014 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31014 > .jack::after{border-radius:15px}#stacks_in_31014 > .jack.border-detailed-radius,#stacks_in_31014 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31014 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31014 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31014 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_31014 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31014 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31014 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31014 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31014 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31014 > .jack.bg-image:not(.glass){}#stacks_in_31014 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31014 > .jack.bg-image.glass.after,#stacks_in_31014 > .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_31014 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31014 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31014 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31014 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31014 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31014 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31014 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31014 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31014 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31014 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31014 > .jack.bg-image.glass.after,#stacks_in_31014 > .glass.jack.bg-image::after{}#stacks_in_31014 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31014 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31014 > .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_31014 > .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_31014 > .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_31014 > .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_31014 > .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_31014 > .jack.peek-shadow::before,#stacks_in_31014 > .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_31014 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31014 > .jack{overflow:hidden;}#stacks_in_31014 > .jack.height-static{height:100px}#stacks_in_31014 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31016Calligrapher{			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_31016Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31016Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31016Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31016Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31016Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31016Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31016Calligrapher h6, .stacks_in_31016Calligrapher h5, .stacks_in_31016Calligrapher h4, .stacks_in_31016Calligrapher h3, .stacks_in_31016Calligrapher h2, .stacks_in_31016Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31016Calligrapher, .stacks_in_31016Calligrapher h1, .stacks_in_31016Calligrapher h2, .stacks_in_31016Calligrapher h3, .stacks_in_31016Calligrapher h4, .stacks_in_31016Calligrapher h5, .stacks_in_31016Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31016Calligrapher, .stacks_in_31016Calligrapher h1, .stacks_in_31016Calligrapher h2, .stacks_in_31016Calligrapher h3, .stacks_in_31016Calligrapher h4, .stacks_in_31016Calligrapher h5, .stacks_in_31016Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31016targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31016Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31016Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31016Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31016Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31016 {
	margin: 25px 0px 0px 0px;
}
/* Start dooHeader X stack CSS code */.stacks_in_31030x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31030x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31030x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31030 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_31031 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31019Calligrapher{			font-size: 100% !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_31019Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31019Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31019Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31019Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31019Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31019Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31019Calligrapher h6, .stacks_in_31019Calligrapher h5, .stacks_in_31019Calligrapher h4, .stacks_in_31019Calligrapher h3, .stacks_in_31019Calligrapher h2, .stacks_in_31019Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31019Calligrapher, .stacks_in_31019Calligrapher h1, .stacks_in_31019Calligrapher h2, .stacks_in_31019Calligrapher h3, .stacks_in_31019Calligrapher h4, .stacks_in_31019Calligrapher h5, .stacks_in_31019Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31019Calligrapher, .stacks_in_31019Calligrapher h1, .stacks_in_31019Calligrapher h2, .stacks_in_31019Calligrapher h3, .stacks_in_31019Calligrapher h4, .stacks_in_31019Calligrapher h5, .stacks_in_31019Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31019targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31019Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31019Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31019Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31019Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31019 {
	margin: 0px 15px 15px 15px;
}

#stacks_in_31033 {
	margin:  5px;
	padding: 0px 10px 5px 10px;
}

#stacks_in_30984 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_29004{padding-left:0px;padding-right:0px;}#stacks_in_29004 > .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_29004 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_29004 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_29004 > .jack.width-static{width:500px}#stacks_in_29004 > .jack.width-flexible{width:100%}#stacks_in_29004 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_29004 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_29004 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_29004 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_29004 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_29004 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_29004 > .jack::after{border-radius:0px}#stacks_in_29004 > .jack.border-detailed-radius,#stacks_in_29004 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_29004 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_29004 > .jack.bg-color{background-color:#89C5FF}#stacks_in_29004 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_29004 > .jack.bg-image:not(.glass){background-image:url(../thai_lernen_files/bgImage-29004.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_29004 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_29004 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_29004 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_3_col.jpg)}#stacks_in_29004 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_29004 > .jack.bg-image:not(.glass){background-image:url(../thai_lernen_files/bgImageLarge-29004.jpg);}#stacks_in_29004 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_29004 > .jack.bg-image.glass.after,#stacks_in_29004 > .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_lernen_files/bgImage-29004.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_29004 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_29004 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_29004 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_29004 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_29004 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_29004 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_29004 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_29004 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_3_col.jpg)}#stacks_in_29004 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_29004 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_29004 > .jack.bg-image.glass.after,#stacks_in_29004 > .glass.jack.bg-image::after{background-image:url(../thai_lernen_files/bgImageLarge-29004.jpg);}#stacks_in_29004 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_29004 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_29004 > .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_29004 > .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_29004 > .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_29004 > .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_29004 > .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_29004 > .jack.peek-shadow::before,#stacks_in_29004 > .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_29004 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_29004 > .jack{overflow:hidden;}#stacks_in_29004 > .jack.height-static{height:40px}#stacks_in_29004 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_29004 {
	margin: 10px 0px 0px 0px;
}
#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: 10px 0px 0px 0px;
}
#stacks_in_1361{}#stacks_in_1361 > .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_1361 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_1361 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_1361 > .jack.width-static{width:500px}#stacks_in_1361 > .jack.width-flexible{width:100%}#stacks_in_1361 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_1361 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_1361 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_1361 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_1361 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_1361 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_1361 > .jack::after{border-radius:15px}#stacks_in_1361 > .jack.border-detailed-radius,#stacks_in_1361 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_1361 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_1361 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_1361 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_1361 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_1361 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_1361 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_1361 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_1361 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_1361 > .jack.bg-image:not(.glass){}#stacks_in_1361 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_1361 > .jack.bg-image.glass.after,#stacks_in_1361 > .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_1361 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_1361 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_1361 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_1361 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_1361 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_1361 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_1361 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_1361 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_1361 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_1361 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_1361 > .jack.bg-image.glass.after,#stacks_in_1361 > .glass.jack.bg-image::after{}#stacks_in_1361 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_1361 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_1361 > .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_1361 > .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_1361 > .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_1361 > .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_1361 > .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_1361 > .jack.peek-shadow::before,#stacks_in_1361 > .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_1361 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_1361 > .jack{overflow:hidden;}#stacks_in_1361 > .jack.height-static{height:100px}#stacks_in_1361 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_29998Calligrapher{			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_29998Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29998Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29998Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29998Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29998Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29998Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_29998Calligrapher h6, .stacks_in_29998Calligrapher h5, .stacks_in_29998Calligrapher h4, .stacks_in_29998Calligrapher h3, .stacks_in_29998Calligrapher h2, .stacks_in_29998Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_29998Calligrapher, .stacks_in_29998Calligrapher h1, .stacks_in_29998Calligrapher h2, .stacks_in_29998Calligrapher h3, .stacks_in_29998Calligrapher h4, .stacks_in_29998Calligrapher h5, .stacks_in_29998Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_29998Calligrapher, .stacks_in_29998Calligrapher h1, .stacks_in_29998Calligrapher h2, .stacks_in_29998Calligrapher h3, .stacks_in_29998Calligrapher h4, .stacks_in_29998Calligrapher h5, .stacks_in_29998Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_29998targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_29998Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_29998Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_29998Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_29998Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_29999x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_29999x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_29999x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_30000 {
	font-weight: lighter;
}
#stacks_in_1366 *,
#stacks_in_1366 *:before,
#stacks_in_1366 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/* LinkThing by RapidWeaver Central  */



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

.link_effect1stacks_in_4805 a:before, .link_effect1stacks_in_4805 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_4805 a:after {
  right: 50%;
  left: auto;
}

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

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

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



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

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

#stacks_in_4805 .link_effect2stacks_in_4805 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

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

#stacks_in_4805 .link_effect3stacks_in_4805 {
  	text-decoration: none;
}

#stacks_in_4805 .link_effect3stacks_in_4805 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_4805 .link_effect3stacks_in_4805 a:hover,
#stacks_in_4805 .link_effect3stacks_in_4805 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



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

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

#stacks_in_4805 .link_effect4stacks_in_4805 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_4805 .link_effect4stacks_in_4805 a::before,
#stacks_in_4805 .link_effect%stacks_in_4805 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_4805 .link_effect4stacks_in_4805 {
}

#stacks_in_4805 .link_effect4stacks_in_4805 a {
	font-weight:bold !important;;
}

#stacks_in_4805 .link_effect4stacks_in_4805 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_4805 .link_effect4stacks_in_4805 a:hover::before,
#stacks_in_4805 .link_effect4stacks_in_4805 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




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


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

#stacks_in_4805 .link_effect5stacks_in_4805 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_4805 .link_effect5stacks_in_4805 a::before,
#stacks_in_4805 .link_effect5stacks_in_4805 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_4805 .link_effect5stacks_in_4805 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_4805 .link_effect5stacks_in_4805 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_4805 .link_effect5stacks_in_4805 a:hover::before,
#stacks_in_4805 .link_effect5stacks_in_4805 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





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

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

#stacks_in_4805 .link_effect6stacks_in_4805 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_4805 .link_effect6stacks_in_4805 a::before,
#stacks_in_4805 .link_effect6stacks_in_4805 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_4805 .link_effect6stacks_in_4805 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_4805 .link_effect6stacks_in_4805 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_4805 .link_effect6stacks_in_4805 a:hover::before,
#stacks_in_4805 .link_effect6stacks_in_4805 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




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

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

#stacks_in_4805 .link_effect7stacks_in_4805 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_4805 .link_effect7stacks_in_4805 a::before,
#stacks_in_4805 .link_effect7stacks_in_4805 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_4805 .link_effect7stacks_in_4805 {
	position: relative;
}

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


#stacks_in_4805 .link_effect7stacks_in_4805 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_4805 .link_effect7stacks_in_4805 a:hover::before,
#stacks_in_4805 .link_effect7stacks_in_4805 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





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

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

#stacks_in_4805 .link_effect8stacks_in_4805 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_4805 .link_effect8stacks_in_4805 a::before,
#stacks_in_4805 .link_effect8stacks_in_4805 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



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

#stacks_in_4805 .link_effect8stacks_in_4805 a:hover,
#stacks_in_4805 .link_effect8stacks_in_4805 a:focus {
	color: #DA4453 !important;
}

#stacks_in_4805 .link_effect8stacks_in_4805 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_4805 .link_effect8stacks_in_4805 a:hover::before,
#stacks_in_4805 .link_effect8stacks_in_4805 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_4805 .link_effect9stacks_in_4805 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_4805 .link_effect9stacks_in_4805 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_4805 .link_effect9stacks_in_4805 a::before,
#stacks_in_4805 .link_effect9stacks_in_4805 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_4805 .link_effect9stacks_in_4805 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_4805 .link_effect9stacks_in_4805 a:hover,
#stacks_in_4805 .link_effect9stacks_in_4805 a:focus {
	color: #DA4453 !important;
}

#stacks_in_4805 .link_effect9stacks_in_4805 a::before,
#stacks_in_4805 .link_effect9stacks_in_4805 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_4805 .link_effect9stacks_in_4805 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_4805 .link_effect9stacks_in_4805 a:hover::before,
#stacks_in_4805 .link_effect9stacks_in_4805 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_4805 .link_effect9stacks_in_4805 a::after {
	border-bottom: 2px solid  #DA4453;
}



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

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

#stacks_in_4805 .link_effect10stacks_in_4805 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_4805 .link_effect10stacks_in_4805 a::before,
#stacks_in_4805 .link_effect10stacks_in_4805 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

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

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

#stacks_in_4805 .link_effect10stacks_in_4805 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_4805 .link_effect10stacks_in_4805 a:hover::before,
#stacks_in_4805 .link_effect10stacks_in_4805 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



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

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

#stacks_in_4805 .link_effect11stacks_in_4805 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_4805 .link_effect11stacks_in_4805 a::before,
#stacks_in_4805 .link_effect11stacks_in_4805 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


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

#stacks_in_4805 .link_effect11stacks_in_4805 a:hover,
#stacks_in_4805 .link_effect11stacks_in_4805 a:focus {
	color: #DA4453 !important;
}

#stacks_in_4805 .link_effect11stacks_in_4805 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_4805 .link_effect11stacks_in_4805 a:hover::before,
#stacks_in_4805 .link_effect11stacks_in_4805 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




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

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

#stacks_in_4805 .link_effect12stacks_in_4805 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_4805 .link_effect12stacks_in_4805 a::before,
#stacks_in_4805 .link_effect12stacks_in_4805 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

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

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

#stacks_in_4805 .link_effect12stacks_in_4805 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_4805 .link_effect12stacks_in_4805 a,
#stacks_in_4805 .link_effect12stacks_in_4805 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_4805 .link_effect12stacks_in_4805 a:hover::before,
#stacks_in_4805 .link_effect12stacks_in_4805 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


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

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

#stacks_in_4805 .link_effect13stacks_in_4805 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_4805 .link_effect13stacks_in_4805 a::before,
#stacks_in_4805 .link_effect13stacks_in_4805 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_4805 .link_effect13stacks_in_4805 {
}

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

#stacks_in_4805 .link_effect13stacks_in_4805 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_lernen_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_4805 .link_effect13stacks_in_4805 a:hover::before,
#stacks_in_4805 .link_effect13stacks_in_4805 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_4805 .link_effect14stacks_in_4805 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_4805 .link_effect14stacks_in_4805 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_4805 .link_effect14stacks_in_4805 a::before,
#stacks_in_4805 .link_effect14stacks_in_4805 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_4805 .link_effect14stacks_in_4805 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_4805 .link_effect14stacks_in_4805 a:hover,
#stacks_in_4805 .link_effect14stacks_in_4805 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

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

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

#stacks_in_4805 .link_effect14stacks_in_4805 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../thai_lernen_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_4805 .link_effect14stacks_in_4805 a:hover::after,
#stacks_in_4805 .link_effect14stacks_in_4805 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


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

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

#stacks_in_4805 .link_effect15stacks_in_4805 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_4805 .link_effect15stacks_in_4805 a::before,
#stacks_in_4805 .link_effect15stacks_in_4805 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_4805 .link_effect15stacks_in_4805 a {
	overflow: hidden;
	font-weight:bold !important;;
}

#stacks_in_4805 .link_effect15stacks_in_4805 a::before,
#stacks_in_4805 .link_effect15stacks_in_4805 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_4805 .link_effect15stacks_in_4805 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_4805 .link_effect15stacks_in_4805 a:hover::before,
#stacks_in_4805 .link_effect15stacks_in_4805 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

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

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

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



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

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

#stacks_in_4805 .link_effect16stacks_in_4805 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_4805 .link_effect16stacks_in_4805 a::before,
#stacks_in_4805 .link_effect16stacks_in_4805 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

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

#stacks_in_4805 .link_effect16stacks_in_4805 a:hover {
	color: #d04c3f;
}

#stacks_in_4805 .link_effect16stacks_in_4805 a::before,
#stacks_in_4805 .link_effect16stacks_in_4805 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_4805 .link_effect16stacks_in_4805 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

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

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



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

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

#stacks_in_4805 .link_effect17stacks_in_4805 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_4805 .link_effect17stacks_in_4805 a:hover:after {
  	width: 0;
}


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

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

#stacks_in_4805 .link_effect18stacks_in_4805 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_4805 .link_effect18stacks_in_4805 a::before,
#stacks_in_4805 .link_effect18stacks_in_4805 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_4805 .link_effect18stacks_in_4805 {
}

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

#stacks_in_4805 .link_effect18stacks_in_4805 a::before,
#stacks_in_4805 .link_effect18stacks_in_4805 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_4805 .link_effect18stacks_in_4805 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

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

#stacks_in_4805 .link_effect18stacks_in_4805 a:hover,
#stacks_in_4805 .link_effect18stacks_in_4805 a:focus {
	color: #fff;
}

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





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


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

#stacks_in_4805 .link_effect19stacks_in_4805 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_4805 .link_effect19stacks_in_4805 a::before,
#stacks_in_4805 .link_effect19stacks_in_4805 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_4805 a {
}

.link_effect19stacks_in_4805 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_4805 a:hover::after,
.link_effect19stacks_in_4805 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



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

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

#stacks_in_4805 .link_effect20stacks_in_4805 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_4805 .link_effect20stacks_in_4805 a::before,
#stacks_in_4805 .link_effect20stacks_in_4805 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_4805 a {
}

.link_effect20stacks_in_4805 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_4805 a:hover::after,
.link_effect20stacks_in_4805 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_30026Calligrapher{			font-size: 120% !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_30026Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30026Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30026Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30026Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30026Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30026Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_30026Calligrapher h6, .stacks_in_30026Calligrapher h5, .stacks_in_30026Calligrapher h4, .stacks_in_30026Calligrapher h3, .stacks_in_30026Calligrapher h2, .stacks_in_30026Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_30026Calligrapher, .stacks_in_30026Calligrapher h1, .stacks_in_30026Calligrapher h2, .stacks_in_30026Calligrapher h3, .stacks_in_30026Calligrapher h4, .stacks_in_30026Calligrapher h5, .stacks_in_30026Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_30026Calligrapher, .stacks_in_30026Calligrapher h1, .stacks_in_30026Calligrapher h2, .stacks_in_30026Calligrapher h3, .stacks_in_30026Calligrapher h4, .stacks_in_30026Calligrapher h5, .stacks_in_30026Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_30026targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_30026Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_30026Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_30026Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_30026Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_30026 {
	margin: 0px 15px 15px 15px;
}

#stacks_in_1368 {
	margin:  20px;
	padding: 0px 10px 5px 10px;
}

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



.wow {
	visibility: hidden;
}

#stacks_in_30032 {
	margin: 0px 15px 10px 15px;
}
#stacks_in_30033{}#stacks_in_30033 > .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_30033 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_30033 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_30033 > .jack.width-static{width:500px}#stacks_in_30033 > .jack.width-flexible{width:100%}#stacks_in_30033 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_30033 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30033 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_30033 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_30033 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_30033 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_30033 > .jack::after{border-radius:15px}#stacks_in_30033 > .jack.border-detailed-radius,#stacks_in_30033 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_30033 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_30033 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_30033 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_30033 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_30033 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_30033 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_30033 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_30033 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30033 > .jack.bg-image:not(.glass){}#stacks_in_30033 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_30033 > .jack.bg-image.glass.after,#stacks_in_30033 > .glass.jack.bg-image::after{opacity:0.40;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_30033 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_30033 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30033 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_30033 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_30033 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_30033 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_30033 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30033 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_30033 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_30033 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30033 > .jack.bg-image.glass.after,#stacks_in_30033 > .glass.jack.bg-image::after{}#stacks_in_30033 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30033 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_30033 > .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_30033 > .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_30033 > .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_30033 > .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_30033 > .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_30033 > .jack.peek-shadow::before,#stacks_in_30033 > .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_30033 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_30033 > .jack{overflow:hidden;}#stacks_in_30033 > .jack.height-static{height:100px}#stacks_in_30033 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_30043 .jwresp_wrapper{width:100%;overflow:auto;position:relative}#stacks_in_30043 .jwresp_col{overflow:hidden;margin:0 0%; width:20%; float:none}#stacks_in_30043 #jwresp_col1_stacks_in_30043,#stacks_in_30043 #jwresp_col2_stacks_in_30043{float:left}#stacks_in_30043 #jwresp_col4_stacks_in_30043,#stacks_in_30043 #jwresp_col5_stacks_in_30043{float:right}#stacks_in_30043 #jwresp_col1_stacks_in_30043{margin-left:0}#stacks_in_30043 #jwresp_col5_stacks_in_30043{margin-right:0}#stacks_in_30043 #jwresp_col3_stacks_in_30043{margin:0 auto;float:none}#stacks_in_30043 .jwresp_clear{display:none} @media screen and (max-width:1030px){#stacks_in_30043 .jwresp_clear{display:block;clear:both;height:0}#stacks_in_30043 #jwresp_col1_stacks_in_30043,#stacks_in_30043 #jwresp_col2_stacks_in_30043,#stacks_in_30043 #jwresp_col3_stacks_in_30043,#stacks_in_30043 #jwresp_col4_stacks_in_30043{margin:0}#stacks_in_30043 #jwresp_col5_stacks_in_30043{position:relative;margin:0 auto;float:none;width:34%}#stacks_in_30043 #jwresp_col1_stacks_in_30043,#stacks_in_30043 #jwresp_col2_stacks_in_30043{width:33%}#stacks_in_30043 #jwresp_col1_stacks_in_30043,#stacks_in_30043 #jwresp_col4_stacks_in_30043{float:left}#stacks_in_30043 #jwresp_col2_stacks_in_30043,#stacks_in_30043 #jwresp_col3_stacks_in_30043{float:right}#stacks_in_30043 #jwresp_col4_stacks_in_30043,#stacks_in_30043 #jwresp_col3_stacks_in_30043{width:50%;margin-top:15px}}  @media screen and (max-width:500px){#stacks_in_30043 #jwresp_col1_stacks_in_30043,#stacks_in_30043 #jwresp_col2_stacks_in_30043,#stacks_in_30043 #jwresp_col3_stacks_in_30043,#stacks_in_30043 #jwresp_col4_stacks_in_30043,#stacks_in_30043 #jwresp_col5_stacks_in_30043{width:100%;display:block;margin:0}#stacks_in_30043 #jwresp_col1_stacks_in_30043,#stacks_in_30043 #jwresp_col2_stacks_in_30043,#stacks_in_30043 #jwresp_col4_stacks_in_30043,#stacks_in_30043 #jwresp_col5_stacks_in_30043{margin-bottom:15px}}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_30037 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_30037 .borderbuttonthing, #stacks_in_30037 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_30037 .borderbuttonthing:hover {
	background: #4211A2;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_30037 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_30049 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_30049 .borderbuttonthing, #stacks_in_30049 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_30049 .borderbuttonthing:hover {
	background: #4211A2;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_30049 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_30052 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_30052 .borderbuttonthing, #stacks_in_30052 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_30052 .borderbuttonthing:hover {
	background: #4211A2;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_30052 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_30051 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_30051 .borderbuttonthing, #stacks_in_30051 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_30051 .borderbuttonthing:hover {
	background: #4211A2;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_30051 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_30050 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_30050 .borderbuttonthing, #stacks_in_30050 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_30050 .borderbuttonthing:hover {
	background: #4211A2;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_30050 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_31039{}#stacks_in_31039 > .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_31039 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31039 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31039 > .jack.width-static{width:500px}#stacks_in_31039 > .jack.width-flexible{width:100%}#stacks_in_31039 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31039 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31039 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31039 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31039 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31039 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31039 > .jack::after{border-radius:15px}#stacks_in_31039 > .jack.border-detailed-radius,#stacks_in_31039 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31039 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31039 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31039 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_31039 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31039 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31039 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31039 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31039 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31039 > .jack.bg-image:not(.glass){}#stacks_in_31039 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31039 > .jack.bg-image.glass.after,#stacks_in_31039 > .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_31039 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31039 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31039 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31039 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31039 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31039 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31039 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31039 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31039 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31039 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31039 > .jack.bg-image.glass.after,#stacks_in_31039 > .glass.jack.bg-image::after{}#stacks_in_31039 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31039 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31039 > .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_31039 > .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_31039 > .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_31039 > .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_31039 > .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_31039 > .jack.peek-shadow::before,#stacks_in_31039 > .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_31039 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31039 > .jack{overflow:hidden;}#stacks_in_31039 > .jack.height-static{height:100px}#stacks_in_31039 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_31039 {
	margin: 25px 0px 25px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31069Calligrapher{			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_31069Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31069Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31069Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31069Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31069Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31069Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31069Calligrapher h6, .stacks_in_31069Calligrapher h5, .stacks_in_31069Calligrapher h4, .stacks_in_31069Calligrapher h3, .stacks_in_31069Calligrapher h2, .stacks_in_31069Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31069Calligrapher, .stacks_in_31069Calligrapher h1, .stacks_in_31069Calligrapher h2, .stacks_in_31069Calligrapher h3, .stacks_in_31069Calligrapher h4, .stacks_in_31069Calligrapher h5, .stacks_in_31069Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31069Calligrapher, .stacks_in_31069Calligrapher h1, .stacks_in_31069Calligrapher h2, .stacks_in_31069Calligrapher h3, .stacks_in_31069Calligrapher h4, .stacks_in_31069Calligrapher h5, .stacks_in_31069Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31069targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31069Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31069Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31069Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31069Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31069 {
	margin: 25px 0px 0px 0px;
}
/* Start dooHeader X stack CSS code */.stacks_in_31070x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31070x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31070x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31070 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_31071 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31047Calligrapher{			font-size: 90% !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_31047Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31047Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31047Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31047Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31047Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31047Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31047Calligrapher h6, .stacks_in_31047Calligrapher h5, .stacks_in_31047Calligrapher h4, .stacks_in_31047Calligrapher h3, .stacks_in_31047Calligrapher h2, .stacks_in_31047Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31047Calligrapher, .stacks_in_31047Calligrapher h1, .stacks_in_31047Calligrapher h2, .stacks_in_31047Calligrapher h3, .stacks_in_31047Calligrapher h4, .stacks_in_31047Calligrapher h5, .stacks_in_31047Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31047Calligrapher, .stacks_in_31047Calligrapher h1, .stacks_in_31047Calligrapher h2, .stacks_in_31047Calligrapher h3, .stacks_in_31047Calligrapher h4, .stacks_in_31047Calligrapher h5, .stacks_in_31047Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31047targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31047Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31047Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31047Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31047Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31047 {
	margin: 0px 15px 15px 15px;
}

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

#stacks_in_31050 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_31054{}#stacks_in_31054 > .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_31054 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31054 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31054 > .jack.width-static{width:500px}#stacks_in_31054 > .jack.width-flexible{width:100%}#stacks_in_31054 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31054 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31054 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31054 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31054 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31054 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31054 > .jack::after{border-radius:15px}#stacks_in_31054 > .jack.border-detailed-radius,#stacks_in_31054 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_31054 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31054 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31054 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_31054 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31054 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31054 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31054 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31054 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31054 > .jack.bg-image:not(.glass){}#stacks_in_31054 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31054 > .jack.bg-image.glass.after,#stacks_in_31054 > .glass.jack.bg-image::after{opacity:0.40;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_31054 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31054 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31054 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31054 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31054 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31054 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31054 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31054 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31054 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31054 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31054 > .jack.bg-image.glass.after,#stacks_in_31054 > .glass.jack.bg-image::after{}#stacks_in_31054 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31054 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31054 > .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_31054 > .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_31054 > .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_31054 > .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_31054 > .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_31054 > .jack.peek-shadow::before,#stacks_in_31054 > .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_31054 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31054 > .jack{overflow:hidden;}#stacks_in_31054 > .jack.height-static{height:100px}#stacks_in_31054 > .jack.height-minmax{min-height:100px;max-height:800px}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31057 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31057 .borderbuttonthing, #stacks_in_31057 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_31057 .borderbuttonthing:hover {
	background: #4211A2;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_31057 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_31057 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31059 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31059 .borderbuttonthing, #stacks_in_31059 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_31059 .borderbuttonthing:hover {
	background: #4211A2;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_31059 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_31059 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31065 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31065 .borderbuttonthing, #stacks_in_31065 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_31065 .borderbuttonthing:hover {
	background: #4211A2;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_31065 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_31065 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31063 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31063 .borderbuttonthing, #stacks_in_31063 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_31063 .borderbuttonthing:hover {
	background: #4211A2;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_31063 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_31063 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31061 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31061 .borderbuttonthing, #stacks_in_31061 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_31061 .borderbuttonthing:hover {
	background: #4211A2;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_31061 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_31061 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_29007{padding-right:0.00px;padding-left:0.00px;}#stacks_in_29007 > .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_29007 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_29007 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_29007 > .jack.width-static{width:500px}#stacks_in_29007 > .jack.width-flexible{width:100%}#stacks_in_29007 > .jack.margin-detailed{margin:10.00px 0.00px 10.00px 0.00px}#stacks_in_29007 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_29007 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_29007 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_29007 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_29007 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_29007 > .jack::after{border-radius:0px}#stacks_in_29007 > .jack.border-detailed-radius,#stacks_in_29007 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_29007 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_29007 > .jack.bg-color{background-color:#89C5FF}#stacks_in_29007 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_29007 > .jack.bg-image:not(.glass){background-image:url(../thai_lernen_files/bgImage-29007.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_29007 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_29007 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_29007 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_3_col.jpg)}#stacks_in_29007 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_29007 > .jack.bg-image:not(.glass){background-image:url(../thai_lernen_files/bgImageLarge-29007.jpg);}#stacks_in_29007 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_29007 > .jack.bg-image.glass.after,#stacks_in_29007 > .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_lernen_files/bgImage-29007.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_29007 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_29007 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_29007 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_29007 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_29007 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_29007 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_29007 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_29007 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_3_col.jpg)}#stacks_in_29007 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_29007 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_29007 > .jack.bg-image.glass.after,#stacks_in_29007 > .glass.jack.bg-image::after{background-image:url(../thai_lernen_files/bgImageLarge-29007.jpg);}#stacks_in_29007 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_29007 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_29007 > .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_29007 > .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_29007 > .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_29007 > .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_29007 > .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_29007 > .jack.peek-shadow::before,#stacks_in_29007 > .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_29007 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_29007 > .jack{overflow:hidden;}#stacks_in_29007 > .jack.height-static{height:40px}#stacks_in_29007 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_29007 {
	margin:  10px;
}
#stacks_in_40651{padding-left:0px;padding-right:0px;}#stacks_in_40651 > .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_40651 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40651 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40651 > .jack.width-static{width:500px}#stacks_in_40651 > .jack.width-flexible{width:100%}#stacks_in_40651 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40651 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40651 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40651 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40651 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40651 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40651 > .jack::after{border-radius:0px}#stacks_in_40651 > .jack.border-detailed-radius,#stacks_in_40651 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_40651 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40651 > .jack.bg-color{background-color:#89C5FF}#stacks_in_40651 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_40651 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40651 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40651 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40651 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40651 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40651 > .jack.bg-image:not(.glass){}#stacks_in_40651 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40651 > .jack.bg-image.glass.after,#stacks_in_40651 > .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_40651 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40651 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40651 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40651 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40651 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40651 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40651 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40651 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40651 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40651 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40651 > .jack.bg-image.glass.after,#stacks_in_40651 > .glass.jack.bg-image::after{}#stacks_in_40651 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40651 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40651 > .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_40651 > .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_40651 > .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_40651 > .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_40651 > .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_40651 > .jack.peek-shadow::before,#stacks_in_40651 > .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_40651 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40651 > .jack{overflow:visible;}#stacks_in_40651 > .jack.height-static{height:100px}#stacks_in_40651 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40652{padding-left:0px;padding-right:0px;}#stacks_in_40652 > .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_40652 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40652 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40652 > .jack.width-static{width:500px}#stacks_in_40652 > .jack.width-flexible{width:100%}#stacks_in_40652 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40652 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40652 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40652 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40652 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40652 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40652 > .jack::after{border-radius:0px}#stacks_in_40652 > .jack.border-detailed-radius,#stacks_in_40652 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_40652 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40652 > .jack.bg-color{background-color:#89C5FF}#stacks_in_40652 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_40652 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40652 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40652 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40652 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40652 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40652 > .jack.bg-image:not(.glass){}#stacks_in_40652 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40652 > .jack.bg-image.glass.after,#stacks_in_40652 > .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_40652 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40652 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40652 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40652 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40652 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40652 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40652 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40652 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40652 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40652 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40652 > .jack.bg-image.glass.after,#stacks_in_40652 > .glass.jack.bg-image::after{}#stacks_in_40652 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40652 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40652 > .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_40652 > .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_40652 > .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_40652 > .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_40652 > .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_40652 > .jack.peek-shadow::before,#stacks_in_40652 > .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_40652 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40652 > .jack{overflow:visible;}#stacks_in_40652 > .jack.height-static{height:100px}#stacks_in_40652 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_40654{}#stacks_in_40654 > .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_40654 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40654 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40654 > .jack.width-static{width:500px}#stacks_in_40654 > .jack.width-flexible{width:100%}#stacks_in_40654 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40654 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40654 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40654 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40654 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40654 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40654 > .jack::after{border-radius:15px}#stacks_in_40654 > .jack.border-detailed-radius,#stacks_in_40654 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 0.00px 0.00px}#stacks_in_40654 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40654 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40654 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_40654 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40654 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40654 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40654 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40654 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40654 > .jack.bg-image:not(.glass){}#stacks_in_40654 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40654 > .jack.bg-image.glass.after,#stacks_in_40654 > .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_40654 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40654 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40654 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40654 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40654 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40654 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40654 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40654 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40654 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40654 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40654 > .jack.bg-image.glass.after,#stacks_in_40654 > .glass.jack.bg-image::after{}#stacks_in_40654 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40654 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40654 > .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_40654 > .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_40654 > .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_40654 > .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_40654 > .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_40654 > .jack.peek-shadow::before,#stacks_in_40654 > .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_40654 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40654 > .jack{overflow:hidden;}#stacks_in_40654 > .jack.height-static{height:100px}#stacks_in_40654 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40656Calligrapher{			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_40656Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40656Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40656Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40656Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40656Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40656Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40656Calligrapher h6, .stacks_in_40656Calligrapher h5, .stacks_in_40656Calligrapher h4, .stacks_in_40656Calligrapher h3, .stacks_in_40656Calligrapher h2, .stacks_in_40656Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40656Calligrapher, .stacks_in_40656Calligrapher h1, .stacks_in_40656Calligrapher h2, .stacks_in_40656Calligrapher h3, .stacks_in_40656Calligrapher h4, .stacks_in_40656Calligrapher h5, .stacks_in_40656Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_40656Calligrapher, .stacks_in_40656Calligrapher h1, .stacks_in_40656Calligrapher h2, .stacks_in_40656Calligrapher h3, .stacks_in_40656Calligrapher h4, .stacks_in_40656Calligrapher h5, .stacks_in_40656Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40656targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40656Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40656Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40656Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40656Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40656 {
	padding: 0px 15px 0px 15px;
}
/* Start dooHeader X stack CSS code */.stacks_in_40661x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_40661x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_40661x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_40662 {
	font-weight: lighter;
}
#stacks_in_40657{overflow:visible;-webkit-font-smoothing:antialiased;}#stacks_in_40657 .cycler_reel{position:relative;width:100%;overflow:hidden}#stacks_in_40657{visibility:hidden}#stacks_in_40657 .cycler_reel > div.stacks_out{width:100% !important}#stacks_in_40657 .cycler_reel > div.stacks_out:first{visibility:visible}#stacks_in_40657 .cycler_nav{cursor:pointer;z-index:101;display:block;display:none;width:50px;height:50px;position:absolute;background:url(../thai_lernen_files/cycler-images/75x75-ChevronLight.png) 0px 0px no-repeat;background-size:100%;top:40%;}#stacks_in_40657 .cycler_nav.prev{left:0px;background-position:0px 0px}#stacks_in_40657 .cycler_nav.prev:hover{background-position:0px -50px}#stacks_in_40657 .cycler_nav.prev:active{background-position:0px -100px}#stacks_in_40657 .cycler_nav.next{right:0px;background-position:0px -150px}#stacks_in_40657 .cycler_nav.next:hover{background-position:0px -200px}#stacks_in_40657 .cycler_nav.next:active{background-position:0px -250px}
#stacks_in_40665{}#stacks_in_40665 > .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_40665 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40665 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40665 > .jack.width-static{width:500px}#stacks_in_40665 > .jack.width-flexible{width:100%}#stacks_in_40665 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40665 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40665 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40665 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40665 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40665 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40665 > .jack::after{border-radius:15px}#stacks_in_40665 > .jack.border-detailed-radius,#stacks_in_40665 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40665 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40665 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40665 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40665 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40665 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40665 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40665 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40665 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40665 > .jack.bg-image:not(.glass){}#stacks_in_40665 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40665 > .jack.bg-image.glass.after,#stacks_in_40665 > .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_40665 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40665 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40665 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40665 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40665 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40665 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40665 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40665 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40665 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40665 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40665 > .jack.bg-image.glass.after,#stacks_in_40665 > .glass.jack.bg-image::after{}#stacks_in_40665 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40665 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40665 > .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_40665 > .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_40665 > .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_40665 > .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_40665 > .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_40665 > .jack.peek-shadow::before,#stacks_in_40665 > .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_40665 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40665 > .jack{overflow:hidden;}#stacks_in_40665 > .jack.height-static{height:500px}#stacks_in_40665 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_40667 {
	height: 45.00px;
}




























@media print {
	#spacerStackstacks_in_40667 {
		display: none !important;
	}
}
#stacks_in_40668 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_40668 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_40668 #jwresp_col2_stacks_in_40668{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_40668 #jwresp_col1_stacks_in_40668,#stacks_in_40668 #jwresp_col2_stacks_in_40668{width:100%;float:none;display:block}#stacks_in_40668 #jwresp_col1_stacks_in_40668{margin-bottom:15px}}

#stacks_in_40668 {
	padding:  20px;
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_40669 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_40669 {
		display: none !important;
	}
}
#stacks_in_40670 .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_40670 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40670 .fluid-image.unlimited img{width:100% !important}#stacks_in_40670 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40670 .fluid-image.align-left img{float:left}#stacks_in_40670 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40673Calligrapher{			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_40673Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40673Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40673Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40673Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40673Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40673Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40673Calligrapher h6, .stacks_in_40673Calligrapher h5, .stacks_in_40673Calligrapher h4, .stacks_in_40673Calligrapher h3, .stacks_in_40673Calligrapher h2, .stacks_in_40673Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40673Calligrapher, .stacks_in_40673Calligrapher h1, .stacks_in_40673Calligrapher h2, .stacks_in_40673Calligrapher h3, .stacks_in_40673Calligrapher h4, .stacks_in_40673Calligrapher h5, .stacks_in_40673Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40673targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40673Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40673Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40673Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40673Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40673 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_40674 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40677 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40679 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40681Calligrapher{			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_40681Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40681Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40681Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40681Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40681Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40681Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40681Calligrapher h6, .stacks_in_40681Calligrapher h5, .stacks_in_40681Calligrapher h4, .stacks_in_40681Calligrapher h3, .stacks_in_40681Calligrapher h2, .stacks_in_40681Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40681Calligrapher, .stacks_in_40681Calligrapher h1, .stacks_in_40681Calligrapher h2, .stacks_in_40681Calligrapher h3, .stacks_in_40681Calligrapher h4, .stacks_in_40681Calligrapher h5, .stacks_in_40681Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40681targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40681Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40681Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40681Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40681Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40681 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40684 {
	line-height: 2em;
}
#stacks_in_40687{}#stacks_in_40687 > .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_40687 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40687 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40687 > .jack.width-static{width:500px}#stacks_in_40687 > .jack.width-flexible{width:100%}#stacks_in_40687 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40687 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40687 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40687 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40687 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40687 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40687 > .jack::after{border-radius:15px}#stacks_in_40687 > .jack.border-detailed-radius,#stacks_in_40687 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40687 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40687 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40687 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40687 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40687 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40687 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40687 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40687 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40687 > .jack.bg-image:not(.glass){}#stacks_in_40687 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40687 > .jack.bg-image.glass.after,#stacks_in_40687 > .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_40687 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40687 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40687 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40687 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40687 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40687 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40687 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40687 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40687 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40687 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40687 > .jack.bg-image.glass.after,#stacks_in_40687 > .glass.jack.bg-image::after{}#stacks_in_40687 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40687 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40687 > .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_40687 > .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_40687 > .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_40687 > .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_40687 > .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_40687 > .jack.peek-shadow::before,#stacks_in_40687 > .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_40687 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40687 > .jack{overflow:hidden;}#stacks_in_40687 > .jack.height-static{height:500px}#stacks_in_40687 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_40688 {
	height: 45.00px;
}




























@media print {
	#spacerStackstacks_in_40688 {
		display: none !important;
	}
}
#stacks_in_40689 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_40689 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_40689 #jwresp_col2_stacks_in_40689{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_40689 #jwresp_col1_stacks_in_40689,#stacks_in_40689 #jwresp_col2_stacks_in_40689{width:100%;float:none;display:block}#stacks_in_40689 #jwresp_col1_stacks_in_40689{margin-bottom:15px}}

#stacks_in_40689 {
	padding:  20px;
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_40690 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_40690 {
		display: none !important;
	}
}
#stacks_in_40691 .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_40691 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40691 .fluid-image.unlimited img{width:100% !important}#stacks_in_40691 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40691 .fluid-image.align-left img{float:left}#stacks_in_40691 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40694Calligrapher{			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_40694Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40694Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40694Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40694Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40694Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40694Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40694Calligrapher h6, .stacks_in_40694Calligrapher h5, .stacks_in_40694Calligrapher h4, .stacks_in_40694Calligrapher h3, .stacks_in_40694Calligrapher h2, .stacks_in_40694Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40694Calligrapher, .stacks_in_40694Calligrapher h1, .stacks_in_40694Calligrapher h2, .stacks_in_40694Calligrapher h3, .stacks_in_40694Calligrapher h4, .stacks_in_40694Calligrapher h5, .stacks_in_40694Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40694targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40694Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40694Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40694Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40694Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40694 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_40695 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40698 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40702Calligrapher{			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_40702Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40702Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40702Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40702Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40702Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40702Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40702Calligrapher h6, .stacks_in_40702Calligrapher h5, .stacks_in_40702Calligrapher h4, .stacks_in_40702Calligrapher h3, .stacks_in_40702Calligrapher h2, .stacks_in_40702Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40702Calligrapher, .stacks_in_40702Calligrapher h1, .stacks_in_40702Calligrapher h2, .stacks_in_40702Calligrapher h3, .stacks_in_40702Calligrapher h4, .stacks_in_40702Calligrapher h5, .stacks_in_40702Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40702targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40702Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40702Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40702Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40702Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40702 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40705 {
	line-height: 2em;
}
#stacks_in_40708{}#stacks_in_40708 > .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_40708 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40708 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40708 > .jack.width-static{width:500px}#stacks_in_40708 > .jack.width-flexible{width:100%}#stacks_in_40708 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40708 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40708 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40708 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40708 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40708 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40708 > .jack::after{border-radius:15px}#stacks_in_40708 > .jack.border-detailed-radius,#stacks_in_40708 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40708 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40708 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40708 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40708 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40708 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40708 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40708 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40708 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40708 > .jack.bg-image:not(.glass){}#stacks_in_40708 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40708 > .jack.bg-image.glass.after,#stacks_in_40708 > .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_40708 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40708 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40708 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40708 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40708 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40708 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40708 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40708 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40708 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40708 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40708 > .jack.bg-image.glass.after,#stacks_in_40708 > .glass.jack.bg-image::after{}#stacks_in_40708 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40708 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40708 > .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_40708 > .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_40708 > .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_40708 > .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_40708 > .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_40708 > .jack.peek-shadow::before,#stacks_in_40708 > .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_40708 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40708 > .jack{overflow:hidden;}#stacks_in_40708 > .jack.height-static{height:500px}#stacks_in_40708 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_40709 {
	height: 45.00px;
}




























@media print {
	#spacerStackstacks_in_40709 {
		display: none !important;
	}
}
#stacks_in_40710 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_40710 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_40710 #jwresp_col2_stacks_in_40710{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_40710 #jwresp_col1_stacks_in_40710,#stacks_in_40710 #jwresp_col2_stacks_in_40710{width:100%;float:none;display:block}#stacks_in_40710 #jwresp_col1_stacks_in_40710{margin-bottom:15px}}

#stacks_in_40710 {
	padding:  20px;
}

.spacerStack {
	height: 55.00px;
}

#spacerStackstacks_in_40711 {
	height: 55.00px;
}




























@media print {
	#spacerStackstacks_in_40711 {
		display: none !important;
	}
}
#stacks_in_40712 .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_40712 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40712 .fluid-image.unlimited img{width:100% !important}#stacks_in_40712 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40712 .fluid-image.align-left img{float:left}#stacks_in_40712 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40715Calligrapher{			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_40715Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40715Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40715Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40715Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40715Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40715Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40715Calligrapher h6, .stacks_in_40715Calligrapher h5, .stacks_in_40715Calligrapher h4, .stacks_in_40715Calligrapher h3, .stacks_in_40715Calligrapher h2, .stacks_in_40715Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40715Calligrapher, .stacks_in_40715Calligrapher h1, .stacks_in_40715Calligrapher h2, .stacks_in_40715Calligrapher h3, .stacks_in_40715Calligrapher h4, .stacks_in_40715Calligrapher h5, .stacks_in_40715Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40715targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40715Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40715Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40715Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40715Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40715 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_40716 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40719 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40723Calligrapher{			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_40723Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40723Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40723Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40723Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40723Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40723Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40723Calligrapher h6, .stacks_in_40723Calligrapher h5, .stacks_in_40723Calligrapher h4, .stacks_in_40723Calligrapher h3, .stacks_in_40723Calligrapher h2, .stacks_in_40723Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40723Calligrapher, .stacks_in_40723Calligrapher h1, .stacks_in_40723Calligrapher h2, .stacks_in_40723Calligrapher h3, .stacks_in_40723Calligrapher h4, .stacks_in_40723Calligrapher h5, .stacks_in_40723Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40723targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40723Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40723Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40723Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40723Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40723 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40726 {
	line-height: 2em;
}
#stacks_in_40729{}#stacks_in_40729 > .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_40729 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40729 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40729 > .jack.width-static{width:500px}#stacks_in_40729 > .jack.width-flexible{width:100%}#stacks_in_40729 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40729 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40729 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40729 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40729 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40729 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40729 > .jack::after{border-radius:15px}#stacks_in_40729 > .jack.border-detailed-radius,#stacks_in_40729 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40729 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40729 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40729 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40729 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40729 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40729 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40729 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40729 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40729 > .jack.bg-image:not(.glass){}#stacks_in_40729 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40729 > .jack.bg-image.glass.after,#stacks_in_40729 > .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_40729 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40729 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40729 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40729 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40729 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40729 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40729 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40729 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40729 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40729 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40729 > .jack.bg-image.glass.after,#stacks_in_40729 > .glass.jack.bg-image::after{}#stacks_in_40729 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40729 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40729 > .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_40729 > .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_40729 > .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_40729 > .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_40729 > .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_40729 > .jack.peek-shadow::before,#stacks_in_40729 > .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_40729 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40729 > .jack{overflow:hidden;}#stacks_in_40729 > .jack.height-static{height:500px}#stacks_in_40729 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_40730 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_40730 {
		display: none !important;
	}
}
#stacks_in_40731 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_40731 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_40731 #jwresp_col2_stacks_in_40731{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_40731 #jwresp_col1_stacks_in_40731,#stacks_in_40731 #jwresp_col2_stacks_in_40731{width:100%;float:none;display:block}#stacks_in_40731 #jwresp_col1_stacks_in_40731{margin-bottom:15px}}

#stacks_in_40731 {
	padding:  20px;
}
#stacks_in_40732 .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_40732 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40732 .fluid-image.unlimited img{width:100% !important}#stacks_in_40732 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40732 .fluid-image.align-left img{float:left}#stacks_in_40732 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_40735 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_40735 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40736Calligrapher{			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_40736Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40736Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40736Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40736Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40736Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40736Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40736Calligrapher h6, .stacks_in_40736Calligrapher h5, .stacks_in_40736Calligrapher h4, .stacks_in_40736Calligrapher h3, .stacks_in_40736Calligrapher h2, .stacks_in_40736Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40736Calligrapher, .stacks_in_40736Calligrapher h1, .stacks_in_40736Calligrapher h2, .stacks_in_40736Calligrapher h3, .stacks_in_40736Calligrapher h4, .stacks_in_40736Calligrapher h5, .stacks_in_40736Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40736targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40736Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40736Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40736Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40736Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40736 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40737 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40740 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40744Calligrapher{			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_40744Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40744Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40744Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40744Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40744Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40744Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40744Calligrapher h6, .stacks_in_40744Calligrapher h5, .stacks_in_40744Calligrapher h4, .stacks_in_40744Calligrapher h3, .stacks_in_40744Calligrapher h2, .stacks_in_40744Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40744Calligrapher, .stacks_in_40744Calligrapher h1, .stacks_in_40744Calligrapher h2, .stacks_in_40744Calligrapher h3, .stacks_in_40744Calligrapher h4, .stacks_in_40744Calligrapher h5, .stacks_in_40744Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40744targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40744Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40744Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40744Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40744Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40744 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40747 {
	line-height: 2em;
}
#stacks_in_40750{}#stacks_in_40750 > .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_40750 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40750 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40750 > .jack.width-static{width:500px}#stacks_in_40750 > .jack.width-flexible{width:100%}#stacks_in_40750 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40750 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40750 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40750 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40750 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40750 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40750 > .jack::after{border-radius:15px}#stacks_in_40750 > .jack.border-detailed-radius,#stacks_in_40750 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40750 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40750 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40750 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40750 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40750 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40750 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40750 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40750 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40750 > .jack.bg-image:not(.glass){}#stacks_in_40750 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40750 > .jack.bg-image.glass.after,#stacks_in_40750 > .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_40750 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40750 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40750 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40750 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40750 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40750 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40750 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40750 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40750 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40750 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40750 > .jack.bg-image.glass.after,#stacks_in_40750 > .glass.jack.bg-image::after{}#stacks_in_40750 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40750 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40750 > .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_40750 > .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_40750 > .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_40750 > .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_40750 > .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_40750 > .jack.peek-shadow::before,#stacks_in_40750 > .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_40750 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40750 > .jack{overflow:hidden;}#stacks_in_40750 > .jack.height-static{height:500px}#stacks_in_40750 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_40751 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_40751 {
		display: none !important;
	}
}
#stacks_in_40752 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_40752 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_40752 #jwresp_col2_stacks_in_40752{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_40752 #jwresp_col1_stacks_in_40752,#stacks_in_40752 #jwresp_col2_stacks_in_40752{width:100%;float:none;display:block}#stacks_in_40752 #jwresp_col1_stacks_in_40752{margin-bottom:15px}}

#stacks_in_40752 {
	padding:  20px;
}
#stacks_in_40753 .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_40753 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40753 .fluid-image.unlimited img{width:100% !important}#stacks_in_40753 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40753 .fluid-image.align-left img{float:left}#stacks_in_40753 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40756Calligrapher{			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_40756Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40756Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40756Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40756Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40756Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40756Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40756Calligrapher h6, .stacks_in_40756Calligrapher h5, .stacks_in_40756Calligrapher h4, .stacks_in_40756Calligrapher h3, .stacks_in_40756Calligrapher h2, .stacks_in_40756Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40756Calligrapher, .stacks_in_40756Calligrapher h1, .stacks_in_40756Calligrapher h2, .stacks_in_40756Calligrapher h3, .stacks_in_40756Calligrapher h4, .stacks_in_40756Calligrapher h5, .stacks_in_40756Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40756targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40756Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40756Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40756Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40756Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40756 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_40757 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40760 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40762 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40764 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40768Calligrapher{			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_40768Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40768Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40768Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40768Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40768Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40768Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40768Calligrapher h6, .stacks_in_40768Calligrapher h5, .stacks_in_40768Calligrapher h4, .stacks_in_40768Calligrapher h3, .stacks_in_40768Calligrapher h2, .stacks_in_40768Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40768Calligrapher, .stacks_in_40768Calligrapher h1, .stacks_in_40768Calligrapher h2, .stacks_in_40768Calligrapher h3, .stacks_in_40768Calligrapher h4, .stacks_in_40768Calligrapher h5, .stacks_in_40768Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40768targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40768Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40768Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40768Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40768Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40768 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40771 {
	line-height: 2em;
}
#stacks_in_40774{}#stacks_in_40774 > .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_40774 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40774 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40774 > .jack.width-static{width:500px}#stacks_in_40774 > .jack.width-flexible{width:100%}#stacks_in_40774 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40774 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40774 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40774 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40774 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40774 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40774 > .jack::after{border-radius:15px}#stacks_in_40774 > .jack.border-detailed-radius,#stacks_in_40774 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40774 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40774 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40774 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40774 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40774 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40774 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40774 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40774 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40774 > .jack.bg-image:not(.glass){}#stacks_in_40774 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40774 > .jack.bg-image.glass.after,#stacks_in_40774 > .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_40774 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40774 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40774 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40774 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40774 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40774 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40774 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40774 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40774 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40774 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40774 > .jack.bg-image.glass.after,#stacks_in_40774 > .glass.jack.bg-image::after{}#stacks_in_40774 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40774 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40774 > .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_40774 > .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_40774 > .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_40774 > .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_40774 > .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_40774 > .jack.peek-shadow::before,#stacks_in_40774 > .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_40774 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40774 > .jack{overflow:hidden;}#stacks_in_40774 > .jack.height-static{height:500px}#stacks_in_40774 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_40775 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_40775 {
		display: none !important;
	}
}
#stacks_in_40776 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_40776 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_40776 #jwresp_col2_stacks_in_40776{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_40776 #jwresp_col1_stacks_in_40776,#stacks_in_40776 #jwresp_col2_stacks_in_40776{width:100%;float:none;display:block}#stacks_in_40776 #jwresp_col1_stacks_in_40776{margin-bottom:15px}}

#stacks_in_40776 {
	padding:  20px;
}
#stacks_in_40777 .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_40777 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40777 .fluid-image.unlimited img{width:100% !important}#stacks_in_40777 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40777 .fluid-image.align-left img{float:left}#stacks_in_40777 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_40780 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_40780 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40781Calligrapher{			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_40781Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40781Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40781Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40781Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40781Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40781Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40781Calligrapher h6, .stacks_in_40781Calligrapher h5, .stacks_in_40781Calligrapher h4, .stacks_in_40781Calligrapher h3, .stacks_in_40781Calligrapher h2, .stacks_in_40781Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40781Calligrapher, .stacks_in_40781Calligrapher h1, .stacks_in_40781Calligrapher h2, .stacks_in_40781Calligrapher h3, .stacks_in_40781Calligrapher h4, .stacks_in_40781Calligrapher h5, .stacks_in_40781Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40781targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40781Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40781Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40781Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40781Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40781 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40782 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40785 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40789Calligrapher{			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_40789Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40789Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40789Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40789Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40789Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40789Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40789Calligrapher h6, .stacks_in_40789Calligrapher h5, .stacks_in_40789Calligrapher h4, .stacks_in_40789Calligrapher h3, .stacks_in_40789Calligrapher h2, .stacks_in_40789Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40789Calligrapher, .stacks_in_40789Calligrapher h1, .stacks_in_40789Calligrapher h2, .stacks_in_40789Calligrapher h3, .stacks_in_40789Calligrapher h4, .stacks_in_40789Calligrapher h5, .stacks_in_40789Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40789targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40789Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40789Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40789Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40789Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40789 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40792 {
	line-height: 2em;
}
#stacks_in_40795{}#stacks_in_40795 > .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_40795 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40795 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40795 > .jack.width-static{width:500px}#stacks_in_40795 > .jack.width-flexible{width:100%}#stacks_in_40795 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40795 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40795 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40795 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40795 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40795 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40795 > .jack::after{border-radius:15px}#stacks_in_40795 > .jack.border-detailed-radius,#stacks_in_40795 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40795 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40795 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40795 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40795 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40795 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40795 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40795 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40795 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40795 > .jack.bg-image:not(.glass){}#stacks_in_40795 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40795 > .jack.bg-image.glass.after,#stacks_in_40795 > .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_40795 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40795 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40795 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40795 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40795 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40795 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40795 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40795 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40795 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40795 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40795 > .jack.bg-image.glass.after,#stacks_in_40795 > .glass.jack.bg-image::after{}#stacks_in_40795 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40795 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40795 > .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_40795 > .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_40795 > .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_40795 > .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_40795 > .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_40795 > .jack.peek-shadow::before,#stacks_in_40795 > .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_40795 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40795 > .jack{overflow:hidden;}#stacks_in_40795 > .jack.height-static{height:500px}#stacks_in_40795 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_40796 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_40796 {
		display: none !important;
	}
}
#stacks_in_40797 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_40797 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_40797 #jwresp_col2_stacks_in_40797{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_40797 #jwresp_col1_stacks_in_40797,#stacks_in_40797 #jwresp_col2_stacks_in_40797{width:100%;float:none;display:block}#stacks_in_40797 #jwresp_col1_stacks_in_40797{margin-bottom:15px}}

#stacks_in_40797 {
	padding:  20px;
}
#stacks_in_40798 .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_40798 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40798 .fluid-image.unlimited img{width:100% !important}#stacks_in_40798 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40798 .fluid-image.align-left img{float:left}#stacks_in_40798 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_40801 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_40801 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40802Calligrapher{			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_40802Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40802Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40802Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40802Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40802Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40802Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40802Calligrapher h6, .stacks_in_40802Calligrapher h5, .stacks_in_40802Calligrapher h4, .stacks_in_40802Calligrapher h3, .stacks_in_40802Calligrapher h2, .stacks_in_40802Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40802Calligrapher, .stacks_in_40802Calligrapher h1, .stacks_in_40802Calligrapher h2, .stacks_in_40802Calligrapher h3, .stacks_in_40802Calligrapher h4, .stacks_in_40802Calligrapher h5, .stacks_in_40802Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40802targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40802Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40802Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40802Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40802Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40802 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40803 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40806 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40810Calligrapher{			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_40810Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40810Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40810Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40810Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40810Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40810Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40810Calligrapher h6, .stacks_in_40810Calligrapher h5, .stacks_in_40810Calligrapher h4, .stacks_in_40810Calligrapher h3, .stacks_in_40810Calligrapher h2, .stacks_in_40810Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40810Calligrapher, .stacks_in_40810Calligrapher h1, .stacks_in_40810Calligrapher h2, .stacks_in_40810Calligrapher h3, .stacks_in_40810Calligrapher h4, .stacks_in_40810Calligrapher h5, .stacks_in_40810Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40810targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40810Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40810Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40810Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40810Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40810 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40813 {
	line-height: 2em;
}
#stacks_in_40816{}#stacks_in_40816 > .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_40816 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40816 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40816 > .jack.width-static{width:500px}#stacks_in_40816 > .jack.width-flexible{width:100%}#stacks_in_40816 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40816 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40816 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40816 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40816 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40816 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40816 > .jack::after{border-radius:15px}#stacks_in_40816 > .jack.border-detailed-radius,#stacks_in_40816 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40816 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40816 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40816 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40816 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40816 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40816 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40816 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40816 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40816 > .jack.bg-image:not(.glass){}#stacks_in_40816 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40816 > .jack.bg-image.glass.after,#stacks_in_40816 > .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_40816 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40816 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40816 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40816 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40816 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40816 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40816 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40816 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40816 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40816 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40816 > .jack.bg-image.glass.after,#stacks_in_40816 > .glass.jack.bg-image::after{}#stacks_in_40816 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40816 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40816 > .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_40816 > .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_40816 > .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_40816 > .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_40816 > .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_40816 > .jack.peek-shadow::before,#stacks_in_40816 > .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_40816 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40816 > .jack{overflow:hidden;}#stacks_in_40816 > .jack.height-static{height:500px}#stacks_in_40816 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 95.00px;
}

#spacerStackstacks_in_40817 {
	height: 95.00px;
}




























@media print {
	#spacerStackstacks_in_40817 {
		display: none !important;
	}
}
#stacks_in_40818 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_40818 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_40818 #jwresp_col2_stacks_in_40818{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_40818 #jwresp_col1_stacks_in_40818,#stacks_in_40818 #jwresp_col2_stacks_in_40818{width:100%;float:none;display:block}#stacks_in_40818 #jwresp_col1_stacks_in_40818{margin-bottom:15px}}

#stacks_in_40818 {
	padding:  18px;
}
#stacks_in_40819 .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_40819 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40819 .fluid-image.unlimited img{width:100% !important}#stacks_in_40819 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40819 .fluid-image.align-left img{float:left}#stacks_in_40819 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40822Calligrapher{			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_40822Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40822Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40822Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40822Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40822Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40822Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40822Calligrapher h6, .stacks_in_40822Calligrapher h5, .stacks_in_40822Calligrapher h4, .stacks_in_40822Calligrapher h3, .stacks_in_40822Calligrapher h2, .stacks_in_40822Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40822Calligrapher, .stacks_in_40822Calligrapher h1, .stacks_in_40822Calligrapher h2, .stacks_in_40822Calligrapher h3, .stacks_in_40822Calligrapher h4, .stacks_in_40822Calligrapher h5, .stacks_in_40822Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40822targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40822Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40822Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40822Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40822Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40822 {
	padding: 0px 20px 0px 20px;
}

#stacks_in_40823 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40826 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40830Calligrapher{			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_40830Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40830Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40830Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40830Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40830Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40830Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40830Calligrapher h6, .stacks_in_40830Calligrapher h5, .stacks_in_40830Calligrapher h4, .stacks_in_40830Calligrapher h3, .stacks_in_40830Calligrapher h2, .stacks_in_40830Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40830Calligrapher, .stacks_in_40830Calligrapher h1, .stacks_in_40830Calligrapher h2, .stacks_in_40830Calligrapher h3, .stacks_in_40830Calligrapher h4, .stacks_in_40830Calligrapher h5, .stacks_in_40830Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40830targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40830Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40830Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40830Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40830Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40830 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40833 {
	line-height: 2em;
}
#stacks_in_40836{}#stacks_in_40836 > .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_40836 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40836 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40836 > .jack.width-static{width:500px}#stacks_in_40836 > .jack.width-flexible{width:100%}#stacks_in_40836 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40836 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40836 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40836 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40836 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40836 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40836 > .jack::after{border-radius:15px}#stacks_in_40836 > .jack.border-detailed-radius,#stacks_in_40836 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40836 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40836 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40836 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40836 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40836 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40836 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40836 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40836 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40836 > .jack.bg-image:not(.glass){}#stacks_in_40836 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40836 > .jack.bg-image.glass.after,#stacks_in_40836 > .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_40836 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40836 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40836 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40836 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40836 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40836 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40836 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40836 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40836 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40836 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40836 > .jack.bg-image.glass.after,#stacks_in_40836 > .glass.jack.bg-image::after{}#stacks_in_40836 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40836 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40836 > .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_40836 > .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_40836 > .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_40836 > .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_40836 > .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_40836 > .jack.peek-shadow::before,#stacks_in_40836 > .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_40836 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40836 > .jack{overflow:hidden;}#stacks_in_40836 > .jack.height-static{height:500px}#stacks_in_40836 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 35.00px;
}

#spacerStackstacks_in_40837 {
	height: 35.00px;
}




























@media print {
	#spacerStackstacks_in_40837 {
		display: none !important;
	}
}
#stacks_in_40838 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_40838 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_40838 #jwresp_col2_stacks_in_40838{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_40838 #jwresp_col1_stacks_in_40838,#stacks_in_40838 #jwresp_col2_stacks_in_40838{width:100%;float:none;display:block}#stacks_in_40838 #jwresp_col1_stacks_in_40838{margin-bottom:15px}}

#stacks_in_40838 {
	padding:  20px;
}
#stacks_in_40839 .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_40839 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40839 .fluid-image.unlimited img{width:100% !important}#stacks_in_40839 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40839 .fluid-image.align-left img{float:left}#stacks_in_40839 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 120.00px;
}

#spacerStackstacks_in_40842 {
	height: 120.00px;
}




























@media print {
	#spacerStackstacks_in_40842 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40843Calligrapher{			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_40843Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40843Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40843Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40843Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40843Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40843Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40843Calligrapher h6, .stacks_in_40843Calligrapher h5, .stacks_in_40843Calligrapher h4, .stacks_in_40843Calligrapher h3, .stacks_in_40843Calligrapher h2, .stacks_in_40843Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40843Calligrapher, .stacks_in_40843Calligrapher h1, .stacks_in_40843Calligrapher h2, .stacks_in_40843Calligrapher h3, .stacks_in_40843Calligrapher h4, .stacks_in_40843Calligrapher h5, .stacks_in_40843Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40843targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40843Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40843Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40843Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40843Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40843 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40844 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40847 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40851Calligrapher{			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_40851Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40851Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40851Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40851Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40851Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40851Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40851Calligrapher h6, .stacks_in_40851Calligrapher h5, .stacks_in_40851Calligrapher h4, .stacks_in_40851Calligrapher h3, .stacks_in_40851Calligrapher h2, .stacks_in_40851Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40851Calligrapher, .stacks_in_40851Calligrapher h1, .stacks_in_40851Calligrapher h2, .stacks_in_40851Calligrapher h3, .stacks_in_40851Calligrapher h4, .stacks_in_40851Calligrapher h5, .stacks_in_40851Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40851targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40851Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40851Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40851Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40851Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40852 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40854 {
	line-height: 2em;
}
#stacks_in_40857{}#stacks_in_40857 > .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_40857 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40857 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40857 > .jack.width-static{width:500px}#stacks_in_40857 > .jack.width-flexible{width:100%}#stacks_in_40857 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40857 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40857 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40857 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40857 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40857 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40857 > .jack::after{border-radius:15px}#stacks_in_40857 > .jack.border-detailed-radius,#stacks_in_40857 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40857 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40857 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40857 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40857 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40857 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40857 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40857 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40857 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40857 > .jack.bg-image:not(.glass){}#stacks_in_40857 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40857 > .jack.bg-image.glass.after,#stacks_in_40857 > .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_40857 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40857 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40857 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40857 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40857 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40857 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40857 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40857 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40857 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40857 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40857 > .jack.bg-image.glass.after,#stacks_in_40857 > .glass.jack.bg-image::after{}#stacks_in_40857 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40857 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40857 > .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_40857 > .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_40857 > .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_40857 > .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_40857 > .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_40857 > .jack.peek-shadow::before,#stacks_in_40857 > .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_40857 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40857 > .jack{overflow:hidden;}#stacks_in_40857 > .jack.height-static{height:500px}#stacks_in_40857 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_40858 {
	height: 25.00px;
}




























@media print {
	#spacerStackstacks_in_40858 {
		display: none !important;
	}
}
#stacks_in_40859 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_40859 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_40859 #jwresp_col2_stacks_in_40859{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_40859 #jwresp_col1_stacks_in_40859,#stacks_in_40859 #jwresp_col2_stacks_in_40859{width:100%;float:none;display:block}#stacks_in_40859 #jwresp_col1_stacks_in_40859{margin-bottom:15px}}

#stacks_in_40859 {
	padding:  20px;
}
#stacks_in_40860 .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_40860 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40860 .fluid-image.unlimited img{width:100% !important}#stacks_in_40860 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40860 .fluid-image.align-left img{float:left}#stacks_in_40860 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 70.00px;
}

#spacerStackstacks_in_40863 {
	height: 70.00px;
}




























@media print {
	#spacerStackstacks_in_40863 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40864Calligrapher{			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_40864Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40864Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40864Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40864Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40864Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40864Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40864Calligrapher h6, .stacks_in_40864Calligrapher h5, .stacks_in_40864Calligrapher h4, .stacks_in_40864Calligrapher h3, .stacks_in_40864Calligrapher h2, .stacks_in_40864Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40864Calligrapher, .stacks_in_40864Calligrapher h1, .stacks_in_40864Calligrapher h2, .stacks_in_40864Calligrapher h3, .stacks_in_40864Calligrapher h4, .stacks_in_40864Calligrapher h5, .stacks_in_40864Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40864targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40864Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40864Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40864Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40864Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40864 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40865 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40868 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40872Calligrapher{			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_40872Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40872Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40872Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40872Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40872Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40872Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40872Calligrapher h6, .stacks_in_40872Calligrapher h5, .stacks_in_40872Calligrapher h4, .stacks_in_40872Calligrapher h3, .stacks_in_40872Calligrapher h2, .stacks_in_40872Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40872Calligrapher, .stacks_in_40872Calligrapher h1, .stacks_in_40872Calligrapher h2, .stacks_in_40872Calligrapher h3, .stacks_in_40872Calligrapher h4, .stacks_in_40872Calligrapher h5, .stacks_in_40872Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40872targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40872Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40872Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40872Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40872Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40872 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40873 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40875 {
	line-height: 2em;
}
#stacks_in_40878{}#stacks_in_40878 > .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_40878 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40878 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40878 > .jack.width-static{width:500px}#stacks_in_40878 > .jack.width-flexible{width:100%}#stacks_in_40878 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40878 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40878 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40878 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40878 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40878 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40878 > .jack::after{border-radius:15px}#stacks_in_40878 > .jack.border-detailed-radius,#stacks_in_40878 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40878 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40878 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40878 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40878 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40878 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40878 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40878 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40878 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40878 > .jack.bg-image:not(.glass){}#stacks_in_40878 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40878 > .jack.bg-image.glass.after,#stacks_in_40878 > .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_40878 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40878 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40878 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40878 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40878 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40878 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40878 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40878 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40878 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40878 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40878 > .jack.bg-image.glass.after,#stacks_in_40878 > .glass.jack.bg-image::after{}#stacks_in_40878 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40878 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40878 > .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_40878 > .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_40878 > .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_40878 > .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_40878 > .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_40878 > .jack.peek-shadow::before,#stacks_in_40878 > .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_40878 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40878 > .jack{overflow:hidden;}#stacks_in_40878 > .jack.height-static{height:500px}#stacks_in_40878 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_40879 {
	height: 50.00px;
}




























@media print {
	#spacerStackstacks_in_40879 {
		display: none !important;
	}
}
#stacks_in_40880 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_40880 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_40880 #jwresp_col2_stacks_in_40880{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_40880 #jwresp_col1_stacks_in_40880,#stacks_in_40880 #jwresp_col2_stacks_in_40880{width:100%;float:none;display:block}#stacks_in_40880 #jwresp_col1_stacks_in_40880{margin-bottom:15px}}

#stacks_in_40880 {
	padding:  20px;
}
#stacks_in_40881 .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_40881 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40881 .fluid-image.unlimited img{width:100% !important}#stacks_in_40881 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40881 .fluid-image.align-left img{float:left}#stacks_in_40881 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 70.00px;
}

#spacerStackstacks_in_40884 {
	height: 70.00px;
}




























@media print {
	#spacerStackstacks_in_40884 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40885Calligrapher{			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_40885Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40885Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40885Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40885Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40885Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40885Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40885Calligrapher h6, .stacks_in_40885Calligrapher h5, .stacks_in_40885Calligrapher h4, .stacks_in_40885Calligrapher h3, .stacks_in_40885Calligrapher h2, .stacks_in_40885Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40885Calligrapher, .stacks_in_40885Calligrapher h1, .stacks_in_40885Calligrapher h2, .stacks_in_40885Calligrapher h3, .stacks_in_40885Calligrapher h4, .stacks_in_40885Calligrapher h5, .stacks_in_40885Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40885targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40885Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40885Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40885Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40885Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40885 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40886 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40889 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40893Calligrapher{			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_40893Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40893Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40893Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40893Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40893Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40893Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40893Calligrapher h6, .stacks_in_40893Calligrapher h5, .stacks_in_40893Calligrapher h4, .stacks_in_40893Calligrapher h3, .stacks_in_40893Calligrapher h2, .stacks_in_40893Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40893Calligrapher, .stacks_in_40893Calligrapher h1, .stacks_in_40893Calligrapher h2, .stacks_in_40893Calligrapher h3, .stacks_in_40893Calligrapher h4, .stacks_in_40893Calligrapher h5, .stacks_in_40893Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40893targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40893Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40893Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40893Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40893Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40893 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40894 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40896 {
	line-height: 2em;
}
#stacks_in_40899{}#stacks_in_40899 > .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_40899 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40899 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40899 > .jack.width-static{width:500px}#stacks_in_40899 > .jack.width-flexible{width:100%}#stacks_in_40899 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40899 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40899 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40899 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40899 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40899 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40899 > .jack::after{border-radius:15px}#stacks_in_40899 > .jack.border-detailed-radius,#stacks_in_40899 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40899 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40899 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40899 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40899 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40899 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40899 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40899 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40899 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40899 > .jack.bg-image:not(.glass){}#stacks_in_40899 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40899 > .jack.bg-image.glass.after,#stacks_in_40899 > .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_40899 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40899 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40899 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40899 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40899 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40899 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40899 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40899 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40899 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40899 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40899 > .jack.bg-image.glass.after,#stacks_in_40899 > .glass.jack.bg-image::after{}#stacks_in_40899 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40899 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40899 > .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_40899 > .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_40899 > .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_40899 > .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_40899 > .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_40899 > .jack.peek-shadow::before,#stacks_in_40899 > .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_40899 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40899 > .jack{overflow:hidden;}#stacks_in_40899 > .jack.height-static{height:500px}#stacks_in_40899 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_40900 {
	height: 50.00px;
}




























@media print {
	#spacerStackstacks_in_40900 {
		display: none !important;
	}
}
#stacks_in_40901 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_40901 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_40901 #jwresp_col2_stacks_in_40901{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_40901 #jwresp_col1_stacks_in_40901,#stacks_in_40901 #jwresp_col2_stacks_in_40901{width:100%;float:none;display:block}#stacks_in_40901 #jwresp_col1_stacks_in_40901{margin-bottom:15px}}

#stacks_in_40901 {
	padding:  20px;
}
#stacks_in_40902 .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_40902 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40902 .fluid-image.unlimited img{width:100% !important}#stacks_in_40902 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40902 .fluid-image.align-left img{float:left}#stacks_in_40902 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_40905 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_40905 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40906Calligrapher{			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_40906Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40906Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40906Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40906Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40906Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40906Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40906Calligrapher h6, .stacks_in_40906Calligrapher h5, .stacks_in_40906Calligrapher h4, .stacks_in_40906Calligrapher h3, .stacks_in_40906Calligrapher h2, .stacks_in_40906Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40906Calligrapher, .stacks_in_40906Calligrapher h1, .stacks_in_40906Calligrapher h2, .stacks_in_40906Calligrapher h3, .stacks_in_40906Calligrapher h4, .stacks_in_40906Calligrapher h5, .stacks_in_40906Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40906targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40906Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40906Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40906Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40906Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40906 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40907 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40910 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40912Calligrapher{			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_40912Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40912Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40912Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40912Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40912Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40912Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40912Calligrapher h6, .stacks_in_40912Calligrapher h5, .stacks_in_40912Calligrapher h4, .stacks_in_40912Calligrapher h3, .stacks_in_40912Calligrapher h2, .stacks_in_40912Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40912Calligrapher, .stacks_in_40912Calligrapher h1, .stacks_in_40912Calligrapher h2, .stacks_in_40912Calligrapher h3, .stacks_in_40912Calligrapher h4, .stacks_in_40912Calligrapher h5, .stacks_in_40912Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40912targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40912Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40912Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40912Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40912Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40912 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40913 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40915 {
	line-height: 2em;
}
#stacks_in_40918{}#stacks_in_40918 > .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_40918 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40918 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40918 > .jack.width-static{width:500px}#stacks_in_40918 > .jack.width-flexible{width:100%}#stacks_in_40918 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40918 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40918 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40918 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40918 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40918 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40918 > .jack::after{border-radius:15px}#stacks_in_40918 > .jack.border-detailed-radius,#stacks_in_40918 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40918 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40918 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40918 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40918 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40918 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40918 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40918 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40918 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40918 > .jack.bg-image:not(.glass){}#stacks_in_40918 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40918 > .jack.bg-image.glass.after,#stacks_in_40918 > .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_40918 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40918 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40918 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40918 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40918 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40918 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40918 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40918 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40918 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40918 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40918 > .jack.bg-image.glass.after,#stacks_in_40918 > .glass.jack.bg-image::after{}#stacks_in_40918 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40918 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40918 > .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_40918 > .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_40918 > .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_40918 > .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_40918 > .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_40918 > .jack.peek-shadow::before,#stacks_in_40918 > .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_40918 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40918 > .jack{overflow:hidden;}#stacks_in_40918 > .jack.height-static{height:500px}#stacks_in_40918 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_40919 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_40919 {
		display: none !important;
	}
}
#stacks_in_40920 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_40920 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_40920 #jwresp_col2_stacks_in_40920{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_40920 #jwresp_col1_stacks_in_40920,#stacks_in_40920 #jwresp_col2_stacks_in_40920{width:100%;float:none;display:block}#stacks_in_40920 #jwresp_col1_stacks_in_40920{margin-bottom:15px}}

#stacks_in_40920 {
	padding:  20px;
}
#stacks_in_40921 .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_40921 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40921 .fluid-image.unlimited img{width:100% !important}#stacks_in_40921 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40921 .fluid-image.align-left img{float:left}#stacks_in_40921 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_40924 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_40924 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40925Calligrapher{			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_40925Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40925Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40925Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40925Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40925Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40925Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40925Calligrapher h6, .stacks_in_40925Calligrapher h5, .stacks_in_40925Calligrapher h4, .stacks_in_40925Calligrapher h3, .stacks_in_40925Calligrapher h2, .stacks_in_40925Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40925Calligrapher, .stacks_in_40925Calligrapher h1, .stacks_in_40925Calligrapher h2, .stacks_in_40925Calligrapher h3, .stacks_in_40925Calligrapher h4, .stacks_in_40925Calligrapher h5, .stacks_in_40925Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40925targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40925Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40925Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40925Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40925Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40925 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40926 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40929 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40931 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40933Calligrapher{			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_40933Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40933Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40933Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40933Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40933Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40933Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40933Calligrapher h6, .stacks_in_40933Calligrapher h5, .stacks_in_40933Calligrapher h4, .stacks_in_40933Calligrapher h3, .stacks_in_40933Calligrapher h2, .stacks_in_40933Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40933Calligrapher, .stacks_in_40933Calligrapher h1, .stacks_in_40933Calligrapher h2, .stacks_in_40933Calligrapher h3, .stacks_in_40933Calligrapher h4, .stacks_in_40933Calligrapher h5, .stacks_in_40933Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40933targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40933Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40933Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40933Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40933Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40934 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40936 {
	line-height: 2em;
}
#stacks_in_40939{}#stacks_in_40939 > .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_40939 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40939 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40939 > .jack.width-static{width:500px}#stacks_in_40939 > .jack.width-flexible{width:100%}#stacks_in_40939 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40939 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40939 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40939 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40939 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40939 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40939 > .jack::after{border-radius:15px}#stacks_in_40939 > .jack.border-detailed-radius,#stacks_in_40939 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40939 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40939 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40939 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40939 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40939 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40939 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40939 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40939 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40939 > .jack.bg-image:not(.glass){}#stacks_in_40939 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40939 > .jack.bg-image.glass.after,#stacks_in_40939 > .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_40939 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40939 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40939 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40939 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40939 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40939 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40939 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40939 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40939 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40939 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40939 > .jack.bg-image.glass.after,#stacks_in_40939 > .glass.jack.bg-image::after{}#stacks_in_40939 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40939 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40939 > .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_40939 > .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_40939 > .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_40939 > .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_40939 > .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_40939 > .jack.peek-shadow::before,#stacks_in_40939 > .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_40939 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40939 > .jack{overflow:hidden;}#stacks_in_40939 > .jack.height-static{height:500px}#stacks_in_40939 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_40940 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_40940 {
		display: none !important;
	}
}
#stacks_in_40941 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_40941 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_40941 #jwresp_col2_stacks_in_40941{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_40941 #jwresp_col1_stacks_in_40941,#stacks_in_40941 #jwresp_col2_stacks_in_40941{width:100%;float:none;display:block}#stacks_in_40941 #jwresp_col1_stacks_in_40941{margin-bottom:15px}}

#stacks_in_40941 {
	padding:  20px;
}
#stacks_in_40942 .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_40942 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40942 .fluid-image.unlimited img{width:100% !important}#stacks_in_40942 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40942 .fluid-image.align-left img{float:left}#stacks_in_40942 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_40945 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_40945 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40946Calligrapher{			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_40946Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40946Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40946Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40946Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40946Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40946Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40946Calligrapher h6, .stacks_in_40946Calligrapher h5, .stacks_in_40946Calligrapher h4, .stacks_in_40946Calligrapher h3, .stacks_in_40946Calligrapher h2, .stacks_in_40946Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40946Calligrapher, .stacks_in_40946Calligrapher h1, .stacks_in_40946Calligrapher h2, .stacks_in_40946Calligrapher h3, .stacks_in_40946Calligrapher h4, .stacks_in_40946Calligrapher h5, .stacks_in_40946Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40946targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40946Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40946Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40946Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40946Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40946 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40947 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40950 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40952 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40954Calligrapher{			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_40954Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40954Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40954Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40954Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40954Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40954Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40954Calligrapher h6, .stacks_in_40954Calligrapher h5, .stacks_in_40954Calligrapher h4, .stacks_in_40954Calligrapher h3, .stacks_in_40954Calligrapher h2, .stacks_in_40954Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40954Calligrapher, .stacks_in_40954Calligrapher h1, .stacks_in_40954Calligrapher h2, .stacks_in_40954Calligrapher h3, .stacks_in_40954Calligrapher h4, .stacks_in_40954Calligrapher h5, .stacks_in_40954Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40954targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40954Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40954Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40954Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40954Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40954 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40955 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40957 {
	line-height: 2em;
}
#stacks_in_40960{}#stacks_in_40960 > .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_40960 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40960 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40960 > .jack.width-static{width:500px}#stacks_in_40960 > .jack.width-flexible{width:100%}#stacks_in_40960 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40960 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40960 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40960 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40960 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40960 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40960 > .jack::after{border-radius:15px}#stacks_in_40960 > .jack.border-detailed-radius,#stacks_in_40960 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40960 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40960 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40960 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40960 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40960 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40960 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40960 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40960 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40960 > .jack.bg-image:not(.glass){}#stacks_in_40960 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40960 > .jack.bg-image.glass.after,#stacks_in_40960 > .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_40960 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40960 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40960 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40960 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40960 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40960 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40960 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40960 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40960 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40960 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40960 > .jack.bg-image.glass.after,#stacks_in_40960 > .glass.jack.bg-image::after{}#stacks_in_40960 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40960 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40960 > .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_40960 > .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_40960 > .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_40960 > .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_40960 > .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_40960 > .jack.peek-shadow::before,#stacks_in_40960 > .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_40960 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40960 > .jack{overflow:hidden;}#stacks_in_40960 > .jack.height-static{height:500px}#stacks_in_40960 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_40961 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_40961 {
		display: none !important;
	}
}
#stacks_in_40962 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_40962 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_40962 #jwresp_col2_stacks_in_40962{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_40962 #jwresp_col1_stacks_in_40962,#stacks_in_40962 #jwresp_col2_stacks_in_40962{width:100%;float:none;display:block}#stacks_in_40962 #jwresp_col1_stacks_in_40962{margin-bottom:15px}}

#stacks_in_40962 {
	padding:  20px;
}
#stacks_in_40963 .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_40963 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40963 .fluid-image.unlimited img{width:100% !important}#stacks_in_40963 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40963 .fluid-image.align-left img{float:left}#stacks_in_40963 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40966Calligrapher{			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_40966Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40966Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40966Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40966Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40966Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40966Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40966Calligrapher h6, .stacks_in_40966Calligrapher h5, .stacks_in_40966Calligrapher h4, .stacks_in_40966Calligrapher h3, .stacks_in_40966Calligrapher h2, .stacks_in_40966Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40966Calligrapher, .stacks_in_40966Calligrapher h1, .stacks_in_40966Calligrapher h2, .stacks_in_40966Calligrapher h3, .stacks_in_40966Calligrapher h4, .stacks_in_40966Calligrapher h5, .stacks_in_40966Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40966targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40966Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40966Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40966Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40966Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40966 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40967 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40970 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40972 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40974Calligrapher{			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_40974Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40974Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40974Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40974Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40974Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40974Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40974Calligrapher h6, .stacks_in_40974Calligrapher h5, .stacks_in_40974Calligrapher h4, .stacks_in_40974Calligrapher h3, .stacks_in_40974Calligrapher h2, .stacks_in_40974Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40974Calligrapher, .stacks_in_40974Calligrapher h1, .stacks_in_40974Calligrapher h2, .stacks_in_40974Calligrapher h3, .stacks_in_40974Calligrapher h4, .stacks_in_40974Calligrapher h5, .stacks_in_40974Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40974targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40974Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40974Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40974Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40974Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40974 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40975 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40977 {
	line-height: 2em;
}
#stacks_in_40980{}#stacks_in_40980 > .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_40980 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40980 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40980 > .jack.width-static{width:500px}#stacks_in_40980 > .jack.width-flexible{width:100%}#stacks_in_40980 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40980 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40980 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40980 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40980 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40980 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40980 > .jack::after{border-radius:15px}#stacks_in_40980 > .jack.border-detailed-radius,#stacks_in_40980 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40980 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40980 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40980 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40980 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40980 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40980 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40980 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40980 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40980 > .jack.bg-image:not(.glass){}#stacks_in_40980 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40980 > .jack.bg-image.glass.after,#stacks_in_40980 > .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_40980 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40980 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40980 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40980 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40980 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40980 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40980 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40980 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40980 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40980 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40980 > .jack.bg-image.glass.after,#stacks_in_40980 > .glass.jack.bg-image::after{}#stacks_in_40980 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40980 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40980 > .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_40980 > .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_40980 > .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_40980 > .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_40980 > .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_40980 > .jack.peek-shadow::before,#stacks_in_40980 > .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_40980 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40980 > .jack{overflow:hidden;}#stacks_in_40980 > .jack.height-static{height:500px}#stacks_in_40980 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 60.00px;
}

#spacerStackstacks_in_40981 {
	height: 60.00px;
}




























@media print {
	#spacerStackstacks_in_40981 {
		display: none !important;
	}
}
#stacks_in_40982 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_40982 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_40982 #jwresp_col2_stacks_in_40982{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_40982 #jwresp_col1_stacks_in_40982,#stacks_in_40982 #jwresp_col2_stacks_in_40982{width:100%;float:none;display:block}#stacks_in_40982 #jwresp_col1_stacks_in_40982{margin-bottom:15px}}

#stacks_in_40982 {
	padding:  20px;
}
#stacks_in_40983 .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_40983 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40983 .fluid-image.unlimited img{width:100% !important}#stacks_in_40983 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_40983 .fluid-image.align-left img{float:left}#stacks_in_40983 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 60.00px;
}

#spacerStackstacks_in_40986 {
	height: 60.00px;
}




























@media print {
	#spacerStackstacks_in_40986 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40987Calligrapher{			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_40987Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40987Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40987Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40987Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40987Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40987Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40987Calligrapher h6, .stacks_in_40987Calligrapher h5, .stacks_in_40987Calligrapher h4, .stacks_in_40987Calligrapher h3, .stacks_in_40987Calligrapher h2, .stacks_in_40987Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40987Calligrapher, .stacks_in_40987Calligrapher h1, .stacks_in_40987Calligrapher h2, .stacks_in_40987Calligrapher h3, .stacks_in_40987Calligrapher h4, .stacks_in_40987Calligrapher h5, .stacks_in_40987Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40987targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40987Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40987Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40987Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40987Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40987 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_40988 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_40991 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_40993Calligrapher{			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_40993Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40993Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40993Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40993Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40993Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40993Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_40993Calligrapher h6, .stacks_in_40993Calligrapher h5, .stacks_in_40993Calligrapher h4, .stacks_in_40993Calligrapher h3, .stacks_in_40993Calligrapher h2, .stacks_in_40993Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_40993Calligrapher, .stacks_in_40993Calligrapher h1, .stacks_in_40993Calligrapher h2, .stacks_in_40993Calligrapher h3, .stacks_in_40993Calligrapher h4, .stacks_in_40993Calligrapher h5, .stacks_in_40993Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_40993targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_40993Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_40993Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_40993Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_40993Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_40993 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_40994 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_40996 {
	line-height: 2em;
}
#stacks_in_40999{}#stacks_in_40999 > .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_40999 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40999 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40999 > .jack.width-static{width:500px}#stacks_in_40999 > .jack.width-flexible{width:100%}#stacks_in_40999 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40999 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40999 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40999 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40999 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40999 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40999 > .jack::after{border-radius:15px}#stacks_in_40999 > .jack.border-detailed-radius,#stacks_in_40999 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_40999 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40999 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_40999 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_40999 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40999 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40999 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40999 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40999 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40999 > .jack.bg-image:not(.glass){}#stacks_in_40999 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40999 > .jack.bg-image.glass.after,#stacks_in_40999 > .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_40999 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40999 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40999 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40999 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40999 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40999 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40999 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40999 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40999 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40999 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40999 > .jack.bg-image.glass.after,#stacks_in_40999 > .glass.jack.bg-image::after{}#stacks_in_40999 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40999 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40999 > .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_40999 > .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_40999 > .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_40999 > .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_40999 > .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_40999 > .jack.peek-shadow::before,#stacks_in_40999 > .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_40999 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40999 > .jack{overflow:hidden;}#stacks_in_40999 > .jack.height-static{height:500px}#stacks_in_40999 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_41000 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_41000 {
		display: none !important;
	}
}
#stacks_in_41001 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_41001 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_41001 #jwresp_col2_stacks_in_41001{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_41001 #jwresp_col1_stacks_in_41001,#stacks_in_41001 #jwresp_col2_stacks_in_41001{width:100%;float:none;display:block}#stacks_in_41001 #jwresp_col1_stacks_in_41001{margin-bottom:15px}}

#stacks_in_41001 {
	padding:  20px;
}
#stacks_in_41002 .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_41002 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41002 .fluid-image.unlimited img{width:100% !important}#stacks_in_41002 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41002 .fluid-image.align-left img{float:left}#stacks_in_41002 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41005Calligrapher{			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_41005Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41005Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41005Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41005Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41005Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41005Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41005Calligrapher h6, .stacks_in_41005Calligrapher h5, .stacks_in_41005Calligrapher h4, .stacks_in_41005Calligrapher h3, .stacks_in_41005Calligrapher h2, .stacks_in_41005Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41005Calligrapher, .stacks_in_41005Calligrapher h1, .stacks_in_41005Calligrapher h2, .stacks_in_41005Calligrapher h3, .stacks_in_41005Calligrapher h4, .stacks_in_41005Calligrapher h5, .stacks_in_41005Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41005targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41005Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41005Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41005Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41005Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41005 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41006 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41009 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41011 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41013Calligrapher{			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_41013Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41013Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41013Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41013Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41013Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41013Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41013Calligrapher h6, .stacks_in_41013Calligrapher h5, .stacks_in_41013Calligrapher h4, .stacks_in_41013Calligrapher h3, .stacks_in_41013Calligrapher h2, .stacks_in_41013Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41013Calligrapher, .stacks_in_41013Calligrapher h1, .stacks_in_41013Calligrapher h2, .stacks_in_41013Calligrapher h3, .stacks_in_41013Calligrapher h4, .stacks_in_41013Calligrapher h5, .stacks_in_41013Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41013targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41013Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41013Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41013Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41013Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41013 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41016 {
	line-height: 2em;
}
#stacks_in_41019{}#stacks_in_41019 > .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_41019 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41019 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41019 > .jack.width-static{width:500px}#stacks_in_41019 > .jack.width-flexible{width:100%}#stacks_in_41019 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41019 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41019 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41019 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41019 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41019 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41019 > .jack::after{border-radius:15px}#stacks_in_41019 > .jack.border-detailed-radius,#stacks_in_41019 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41019 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41019 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41019 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41019 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41019 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41019 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41019 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41019 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41019 > .jack.bg-image:not(.glass){}#stacks_in_41019 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41019 > .jack.bg-image.glass.after,#stacks_in_41019 > .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_41019 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41019 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41019 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41019 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41019 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41019 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41019 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41019 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41019 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41019 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41019 > .jack.bg-image.glass.after,#stacks_in_41019 > .glass.jack.bg-image::after{}#stacks_in_41019 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41019 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41019 > .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_41019 > .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_41019 > .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_41019 > .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_41019 > .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_41019 > .jack.peek-shadow::before,#stacks_in_41019 > .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_41019 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41019 > .jack{overflow:hidden;}#stacks_in_41019 > .jack.height-static{height:500px}#stacks_in_41019 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_41020 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_41020 {
		display: none !important;
	}
}
#stacks_in_41021 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_41021 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_41021 #jwresp_col2_stacks_in_41021{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_41021 #jwresp_col1_stacks_in_41021,#stacks_in_41021 #jwresp_col2_stacks_in_41021{width:100%;float:none;display:block}#stacks_in_41021 #jwresp_col1_stacks_in_41021{margin-bottom:15px}}

#stacks_in_41021 {
	padding:  20px;
}
#stacks_in_41022 .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_41022 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41022 .fluid-image.unlimited img{width:100% !important}#stacks_in_41022 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41022 .fluid-image.align-left img{float:left}#stacks_in_41022 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_41025 {
	height: 80.00px;
}




























@media print {
	#spacerStackstacks_in_41025 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41026Calligrapher{			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_41026Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41026Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41026Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41026Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41026Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41026Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41026Calligrapher h6, .stacks_in_41026Calligrapher h5, .stacks_in_41026Calligrapher h4, .stacks_in_41026Calligrapher h3, .stacks_in_41026Calligrapher h2, .stacks_in_41026Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41026Calligrapher, .stacks_in_41026Calligrapher h1, .stacks_in_41026Calligrapher h2, .stacks_in_41026Calligrapher h3, .stacks_in_41026Calligrapher h4, .stacks_in_41026Calligrapher h5, .stacks_in_41026Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41026targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41026Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41026Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41026Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41026Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41026 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41027 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41030 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41032Calligrapher{			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_41032Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41032Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41032Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41032Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41032Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41032Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41032Calligrapher h6, .stacks_in_41032Calligrapher h5, .stacks_in_41032Calligrapher h4, .stacks_in_41032Calligrapher h3, .stacks_in_41032Calligrapher h2, .stacks_in_41032Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41032Calligrapher, .stacks_in_41032Calligrapher h1, .stacks_in_41032Calligrapher h2, .stacks_in_41032Calligrapher h3, .stacks_in_41032Calligrapher h4, .stacks_in_41032Calligrapher h5, .stacks_in_41032Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41032targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41032Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41032Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41032Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41032Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41032 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41033 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_41035 {
	line-height: 2em;
}
#stacks_in_41038{}#stacks_in_41038 > .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_41038 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41038 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41038 > .jack.width-static{width:500px}#stacks_in_41038 > .jack.width-flexible{width:100%}#stacks_in_41038 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41038 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41038 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41038 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41038 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41038 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41038 > .jack::after{border-radius:15px}#stacks_in_41038 > .jack.border-detailed-radius,#stacks_in_41038 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41038 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41038 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41038 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41038 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41038 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41038 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41038 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41038 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41038 > .jack.bg-image:not(.glass){}#stacks_in_41038 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41038 > .jack.bg-image.glass.after,#stacks_in_41038 > .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_41038 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41038 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41038 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41038 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41038 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41038 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41038 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41038 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41038 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41038 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41038 > .jack.bg-image.glass.after,#stacks_in_41038 > .glass.jack.bg-image::after{}#stacks_in_41038 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41038 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41038 > .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_41038 > .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_41038 > .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_41038 > .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_41038 > .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_41038 > .jack.peek-shadow::before,#stacks_in_41038 > .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_41038 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41038 > .jack{overflow:hidden;}#stacks_in_41038 > .jack.height-static{height:500px}#stacks_in_41038 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_41039 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_41039 {
		display: none !important;
	}
}
#stacks_in_41040 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_41040 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_41040 #jwresp_col2_stacks_in_41040{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_41040 #jwresp_col1_stacks_in_41040,#stacks_in_41040 #jwresp_col2_stacks_in_41040{width:100%;float:none;display:block}#stacks_in_41040 #jwresp_col1_stacks_in_41040{margin-bottom:15px}}

#stacks_in_41040 {
	padding:  20px;
}
#stacks_in_41041 .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_41041 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41041 .fluid-image.unlimited img{width:100% !important}#stacks_in_41041 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41041 .fluid-image.align-left img{float:left}#stacks_in_41041 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_41044 {
	height: 80.00px;
}




























@media print {
	#spacerStackstacks_in_41044 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41045Calligrapher{			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_41045Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41045Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41045Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41045Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41045Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41045Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41045Calligrapher h6, .stacks_in_41045Calligrapher h5, .stacks_in_41045Calligrapher h4, .stacks_in_41045Calligrapher h3, .stacks_in_41045Calligrapher h2, .stacks_in_41045Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41045Calligrapher, .stacks_in_41045Calligrapher h1, .stacks_in_41045Calligrapher h2, .stacks_in_41045Calligrapher h3, .stacks_in_41045Calligrapher h4, .stacks_in_41045Calligrapher h5, .stacks_in_41045Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41045targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41045Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41045Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41045Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41045Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41045 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41046 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41049 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41051 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41053Calligrapher{			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_41053Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41053Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41053Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41053Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41053Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41053Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41053Calligrapher h6, .stacks_in_41053Calligrapher h5, .stacks_in_41053Calligrapher h4, .stacks_in_41053Calligrapher h3, .stacks_in_41053Calligrapher h2, .stacks_in_41053Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41053Calligrapher, .stacks_in_41053Calligrapher h1, .stacks_in_41053Calligrapher h2, .stacks_in_41053Calligrapher h3, .stacks_in_41053Calligrapher h4, .stacks_in_41053Calligrapher h5, .stacks_in_41053Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41053targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41053Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41053Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41053Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41053Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41053 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41054 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_41056 {
	line-height: 2em;
}
#stacks_in_41059{}#stacks_in_41059 > .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_41059 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41059 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41059 > .jack.width-static{width:500px}#stacks_in_41059 > .jack.width-flexible{width:100%}#stacks_in_41059 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41059 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41059 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41059 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41059 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41059 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41059 > .jack::after{border-radius:15px}#stacks_in_41059 > .jack.border-detailed-radius,#stacks_in_41059 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41059 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41059 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41059 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41059 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41059 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41059 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41059 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41059 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41059 > .jack.bg-image:not(.glass){}#stacks_in_41059 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41059 > .jack.bg-image.glass.after,#stacks_in_41059 > .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_41059 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41059 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41059 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41059 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41059 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41059 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41059 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41059 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41059 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41059 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41059 > .jack.bg-image.glass.after,#stacks_in_41059 > .glass.jack.bg-image::after{}#stacks_in_41059 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41059 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41059 > .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_41059 > .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_41059 > .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_41059 > .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_41059 > .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_41059 > .jack.peek-shadow::before,#stacks_in_41059 > .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_41059 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41059 > .jack{overflow:hidden;}#stacks_in_41059 > .jack.height-static{height:500px}#stacks_in_41059 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_41060 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_41060 {
		display: none !important;
	}
}
#stacks_in_41061 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_41061 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_41061 #jwresp_col2_stacks_in_41061{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_41061 #jwresp_col1_stacks_in_41061,#stacks_in_41061 #jwresp_col2_stacks_in_41061{width:100%;float:none;display:block}#stacks_in_41061 #jwresp_col1_stacks_in_41061{margin-bottom:15px}}

#stacks_in_41061 {
	padding:  20px;
}
#stacks_in_41062 .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_41062 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41062 .fluid-image.unlimited img{width:100% !important}#stacks_in_41062 .fluid-image.define_max img{width:100% !important;max-width:250px !important}#stacks_in_41062 .fluid-image.align-left img{float:left}#stacks_in_41062 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 120.00px;
}

#spacerStackstacks_in_41065 {
	height: 120.00px;
}




























@media print {
	#spacerStackstacks_in_41065 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41066Calligrapher{			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_41066Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41066Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41066Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41066Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41066Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41066Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41066Calligrapher h6, .stacks_in_41066Calligrapher h5, .stacks_in_41066Calligrapher h4, .stacks_in_41066Calligrapher h3, .stacks_in_41066Calligrapher h2, .stacks_in_41066Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41066Calligrapher, .stacks_in_41066Calligrapher h1, .stacks_in_41066Calligrapher h2, .stacks_in_41066Calligrapher h3, .stacks_in_41066Calligrapher h4, .stacks_in_41066Calligrapher h5, .stacks_in_41066Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41066targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41066Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41066Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41066Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41066Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41066 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41067 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41070 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41072 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41074Calligrapher{			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_41074Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41074Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41074Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41074Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41074Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41074Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41074Calligrapher h6, .stacks_in_41074Calligrapher h5, .stacks_in_41074Calligrapher h4, .stacks_in_41074Calligrapher h3, .stacks_in_41074Calligrapher h2, .stacks_in_41074Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41074Calligrapher, .stacks_in_41074Calligrapher h1, .stacks_in_41074Calligrapher h2, .stacks_in_41074Calligrapher h3, .stacks_in_41074Calligrapher h4, .stacks_in_41074Calligrapher h5, .stacks_in_41074Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41074targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41074Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41074Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41074Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41074Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41074 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41075 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_41077 {
	line-height: 2em;
}
#stacks_in_41080{}#stacks_in_41080 > .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_41080 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41080 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41080 > .jack.width-static{width:500px}#stacks_in_41080 > .jack.width-flexible{width:100%}#stacks_in_41080 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41080 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41080 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41080 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41080 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41080 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41080 > .jack::after{border-radius:15px}#stacks_in_41080 > .jack.border-detailed-radius,#stacks_in_41080 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41080 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41080 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41080 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41080 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41080 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41080 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41080 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41080 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41080 > .jack.bg-image:not(.glass){}#stacks_in_41080 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41080 > .jack.bg-image.glass.after,#stacks_in_41080 > .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_41080 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41080 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41080 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41080 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41080 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41080 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41080 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41080 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41080 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41080 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41080 > .jack.bg-image.glass.after,#stacks_in_41080 > .glass.jack.bg-image::after{}#stacks_in_41080 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41080 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41080 > .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_41080 > .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_41080 > .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_41080 > .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_41080 > .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_41080 > .jack.peek-shadow::before,#stacks_in_41080 > .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_41080 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41080 > .jack{overflow:hidden;}#stacks_in_41080 > .jack.height-static{height:500px}#stacks_in_41080 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_41081 {
	height: 25.00px;
}




























@media print {
	#spacerStackstacks_in_41081 {
		display: none !important;
	}
}
#stacks_in_41082 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_41082 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_41082 #jwresp_col2_stacks_in_41082{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_41082 #jwresp_col1_stacks_in_41082,#stacks_in_41082 #jwresp_col2_stacks_in_41082{width:100%;float:none;display:block}#stacks_in_41082 #jwresp_col1_stacks_in_41082{margin-bottom:15px}}

#stacks_in_41082 {
	padding:  20px;
}
#stacks_in_41083 .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_41083 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41083 .fluid-image.unlimited img{width:100% !important}#stacks_in_41083 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41083 .fluid-image.align-left img{float:left}#stacks_in_41083 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_41086 {
	height: 80.00px;
}




























@media print {
	#spacerStackstacks_in_41086 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41087Calligrapher{			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_41087Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41087Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41087Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41087Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41087Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41087Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41087Calligrapher h6, .stacks_in_41087Calligrapher h5, .stacks_in_41087Calligrapher h4, .stacks_in_41087Calligrapher h3, .stacks_in_41087Calligrapher h2, .stacks_in_41087Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41087Calligrapher, .stacks_in_41087Calligrapher h1, .stacks_in_41087Calligrapher h2, .stacks_in_41087Calligrapher h3, .stacks_in_41087Calligrapher h4, .stacks_in_41087Calligrapher h5, .stacks_in_41087Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41087targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41087Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41087Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41087Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41087Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41087 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41088 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41091 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41093 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41095Calligrapher{			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_41095Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41095Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41095Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41095Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41095Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41095Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41095Calligrapher h6, .stacks_in_41095Calligrapher h5, .stacks_in_41095Calligrapher h4, .stacks_in_41095Calligrapher h3, .stacks_in_41095Calligrapher h2, .stacks_in_41095Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41095Calligrapher, .stacks_in_41095Calligrapher h1, .stacks_in_41095Calligrapher h2, .stacks_in_41095Calligrapher h3, .stacks_in_41095Calligrapher h4, .stacks_in_41095Calligrapher h5, .stacks_in_41095Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41095targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41095Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41095Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41095Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41095Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41095 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41096 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_41098 {
	line-height: 2em;
}
#stacks_in_41101{}#stacks_in_41101 > .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_41101 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41101 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41101 > .jack.width-static{width:500px}#stacks_in_41101 > .jack.width-flexible{width:100%}#stacks_in_41101 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41101 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41101 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41101 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41101 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41101 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41101 > .jack::after{border-radius:15px}#stacks_in_41101 > .jack.border-detailed-radius,#stacks_in_41101 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41101 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41101 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41101 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41101 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41101 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41101 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41101 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41101 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41101 > .jack.bg-image:not(.glass){}#stacks_in_41101 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41101 > .jack.bg-image.glass.after,#stacks_in_41101 > .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_41101 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41101 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41101 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41101 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41101 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41101 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41101 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41101 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41101 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41101 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41101 > .jack.bg-image.glass.after,#stacks_in_41101 > .glass.jack.bg-image::after{}#stacks_in_41101 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41101 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41101 > .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_41101 > .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_41101 > .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_41101 > .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_41101 > .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_41101 > .jack.peek-shadow::before,#stacks_in_41101 > .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_41101 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41101 > .jack{overflow:hidden;}#stacks_in_41101 > .jack.height-static{height:500px}#stacks_in_41101 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_41102 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_41102 {
		display: none !important;
	}
}
#stacks_in_41103 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_41103 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_41103 #jwresp_col2_stacks_in_41103{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_41103 #jwresp_col1_stacks_in_41103,#stacks_in_41103 #jwresp_col2_stacks_in_41103{width:100%;float:none;display:block}#stacks_in_41103 #jwresp_col1_stacks_in_41103{margin-bottom:15px}}

#stacks_in_41103 {
	padding:  20px;
}
#stacks_in_41104 .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_41104 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41104 .fluid-image.unlimited img{width:100% !important}#stacks_in_41104 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41104 .fluid-image.align-left img{float:left}#stacks_in_41104 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41107Calligrapher{			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_41107Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41107Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41107Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41107Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41107Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41107Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41107Calligrapher h6, .stacks_in_41107Calligrapher h5, .stacks_in_41107Calligrapher h4, .stacks_in_41107Calligrapher h3, .stacks_in_41107Calligrapher h2, .stacks_in_41107Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41107Calligrapher, .stacks_in_41107Calligrapher h1, .stacks_in_41107Calligrapher h2, .stacks_in_41107Calligrapher h3, .stacks_in_41107Calligrapher h4, .stacks_in_41107Calligrapher h5, .stacks_in_41107Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41107targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41107Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41107Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41107Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41107Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41107 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41108 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41111 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41113 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41115Calligrapher{			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_41115Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41115Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41115Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41115Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41115Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41115Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41115Calligrapher h6, .stacks_in_41115Calligrapher h5, .stacks_in_41115Calligrapher h4, .stacks_in_41115Calligrapher h3, .stacks_in_41115Calligrapher h2, .stacks_in_41115Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41115Calligrapher, .stacks_in_41115Calligrapher h1, .stacks_in_41115Calligrapher h2, .stacks_in_41115Calligrapher h3, .stacks_in_41115Calligrapher h4, .stacks_in_41115Calligrapher h5, .stacks_in_41115Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41115targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41115Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41115Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41115Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41115Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41115 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41116 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_41118 {
	line-height: 2em;
}
#stacks_in_41121{}#stacks_in_41121 > .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_41121 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41121 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41121 > .jack.width-static{width:500px}#stacks_in_41121 > .jack.width-flexible{width:100%}#stacks_in_41121 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41121 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41121 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41121 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41121 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41121 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41121 > .jack::after{border-radius:15px}#stacks_in_41121 > .jack.border-detailed-radius,#stacks_in_41121 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41121 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41121 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41121 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41121 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41121 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41121 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41121 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41121 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41121 > .jack.bg-image:not(.glass){}#stacks_in_41121 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41121 > .jack.bg-image.glass.after,#stacks_in_41121 > .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_41121 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41121 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41121 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41121 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41121 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41121 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41121 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41121 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41121 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41121 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41121 > .jack.bg-image.glass.after,#stacks_in_41121 > .glass.jack.bg-image::after{}#stacks_in_41121 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41121 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41121 > .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_41121 > .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_41121 > .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_41121 > .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_41121 > .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_41121 > .jack.peek-shadow::before,#stacks_in_41121 > .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_41121 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41121 > .jack{overflow:hidden;}#stacks_in_41121 > .jack.height-static{height:500px}#stacks_in_41121 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_41122 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_41122 {
		display: none !important;
	}
}
#stacks_in_41123 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_41123 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_41123 #jwresp_col2_stacks_in_41123{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_41123 #jwresp_col1_stacks_in_41123,#stacks_in_41123 #jwresp_col2_stacks_in_41123{width:100%;float:none;display:block}#stacks_in_41123 #jwresp_col1_stacks_in_41123{margin-bottom:15px}}

#stacks_in_41123 {
	padding:  20px;
}
#stacks_in_40658 .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_40658 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_40658 .fluid-image.unlimited img{width:100% !important}#stacks_in_40658 .fluid-image.define_max img{width:100% !important;max-width:250px !important}#stacks_in_40658 .fluid-image.align-left img{float:left}#stacks_in_40658 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 130.00px;
}

#spacerStackstacks_in_41126 {
	height: 130.00px;
}




























@media print {
	#spacerStackstacks_in_41126 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41127Calligrapher{			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_41127Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41127Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41127Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41127Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41127Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41127Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41127Calligrapher h6, .stacks_in_41127Calligrapher h5, .stacks_in_41127Calligrapher h4, .stacks_in_41127Calligrapher h3, .stacks_in_41127Calligrapher h2, .stacks_in_41127Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41127Calligrapher, .stacks_in_41127Calligrapher h1, .stacks_in_41127Calligrapher h2, .stacks_in_41127Calligrapher h3, .stacks_in_41127Calligrapher h4, .stacks_in_41127Calligrapher h5, .stacks_in_41127Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41127targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41127Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41127Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41127Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41127Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41127 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41128 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41131 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41133Calligrapher{			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_41133Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41133Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41133Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41133Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41133Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41133Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41133Calligrapher h6, .stacks_in_41133Calligrapher h5, .stacks_in_41133Calligrapher h4, .stacks_in_41133Calligrapher h3, .stacks_in_41133Calligrapher h2, .stacks_in_41133Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41133Calligrapher, .stacks_in_41133Calligrapher h1, .stacks_in_41133Calligrapher h2, .stacks_in_41133Calligrapher h3, .stacks_in_41133Calligrapher h4, .stacks_in_41133Calligrapher h5, .stacks_in_41133Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41133targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41133Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41133Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41133Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41133Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41133 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41134 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_41136 {
	line-height: 2em;
}
#stacks_in_40659{padding-left:0px;padding-right:0px;}#stacks_in_40659 > .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_40659 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_40659 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_40659 > .jack.width-static{width:500px}#stacks_in_40659 > .jack.width-flexible{width:100%}#stacks_in_40659 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_40659 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40659 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_40659 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_40659 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_40659 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_40659 > .jack::after{border-radius:0px}#stacks_in_40659 > .jack.border-detailed-radius,#stacks_in_40659 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_40659 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_40659 > .jack.bg-color{background-color:#89C5FF}#stacks_in_40659 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_40659 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_40659 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_40659 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_40659 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_40659 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40659 > .jack.bg-image:not(.glass){}#stacks_in_40659 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_40659 > .jack.bg-image.glass.after,#stacks_in_40659 > .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_40659 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_40659 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_40659 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_40659 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_40659 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_40659 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_40659 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40659 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_40659 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_40659 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_40659 > .jack.bg-image.glass.after,#stacks_in_40659 > .glass.jack.bg-image::after{}#stacks_in_40659 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_40659 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_40659 > .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_40659 > .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_40659 > .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_40659 > .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_40659 > .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_40659 > .jack.peek-shadow::before,#stacks_in_40659 > .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_40659 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_40659 > .jack{overflow:visible;}#stacks_in_40659 > .jack.height-static{height:100px}#stacks_in_40659 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41139{}#stacks_in_41139 > .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_41139 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41139 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41139 > .jack.width-static{width:500px}#stacks_in_41139 > .jack.width-flexible{width:100%}#stacks_in_41139 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41139 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41139 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41139 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41139 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41139 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41139 > .jack::after{border-radius:15px}#stacks_in_41139 > .jack.border-detailed-radius,#stacks_in_41139 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 0.00px 0.00px}#stacks_in_41139 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41139 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41139 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_41139 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41139 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41139 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41139 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41139 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41139 > .jack.bg-image:not(.glass){}#stacks_in_41139 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41139 > .jack.bg-image.glass.after,#stacks_in_41139 > .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_41139 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41139 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41139 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41139 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41139 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41139 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41139 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41139 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41139 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41139 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41139 > .jack.bg-image.glass.after,#stacks_in_41139 > .glass.jack.bg-image::after{}#stacks_in_41139 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41139 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41139 > .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_41139 > .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_41139 > .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_41139 > .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_41139 > .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_41139 > .jack.peek-shadow::before,#stacks_in_41139 > .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_41139 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41139 > .jack{overflow:hidden;}#stacks_in_41139 > .jack.height-static{height:100px}#stacks_in_41139 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41141Calligrapher{			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_41141Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41141Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41141Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41141Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41141Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41141Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41141Calligrapher h6, .stacks_in_41141Calligrapher h5, .stacks_in_41141Calligrapher h4, .stacks_in_41141Calligrapher h3, .stacks_in_41141Calligrapher h2, .stacks_in_41141Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41141Calligrapher, .stacks_in_41141Calligrapher h1, .stacks_in_41141Calligrapher h2, .stacks_in_41141Calligrapher h3, .stacks_in_41141Calligrapher h4, .stacks_in_41141Calligrapher h5, .stacks_in_41141Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_41141Calligrapher, .stacks_in_41141Calligrapher h1, .stacks_in_41141Calligrapher h2, .stacks_in_41141Calligrapher h3, .stacks_in_41141Calligrapher h4, .stacks_in_41141Calligrapher h5, .stacks_in_41141Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41141targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41141Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41141Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41141Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41141Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41141 {
	padding: 0px 20px 0px 20px;
}
/* Start dooHeader X stack CSS code */.stacks_in_41142x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_41142x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_41142x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_41143 {
	display:inline-block; width:100%; line-height: 0.750000em;
	font-weight: lighter;
}
#stacks_in_40660{overflow:visible;-webkit-font-smoothing:antialiased;}#stacks_in_40660 .cycler_reel{position:relative;width:100%;overflow:hidden}#stacks_in_40660{visibility:hidden}#stacks_in_40660 .cycler_reel > div.stacks_out{width:100% !important}#stacks_in_40660 .cycler_reel > div.stacks_out:first{visibility:visible}#stacks_in_40660 .cycler_nav{cursor:pointer;z-index:101;display:block;width:20px;height:20px;position:absolute;background:url(../thai_lernen_files/cycler-images/75x75-ChevronLight.png) 0px 0px no-repeat;background-size:100%;top:30%;}#stacks_in_40660 .cycler_nav.prev{left:0px;background-position:0px 0px}#stacks_in_40660 .cycler_nav.prev:hover{background-position:0px -20px}#stacks_in_40660 .cycler_nav.prev:active{background-position:0px -40px}#stacks_in_40660 .cycler_nav.next{right:0px;background-position:0px -60px}#stacks_in_40660 .cycler_nav.next:hover{background-position:0px -80px}#stacks_in_40660 .cycler_nav.next:active{background-position:0px -100px}
#stacks_in_41146{}#stacks_in_41146 > .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_41146 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41146 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41146 > .jack.width-static{width:500px}#stacks_in_41146 > .jack.width-flexible{width:100%}#stacks_in_41146 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41146 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41146 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41146 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41146 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41146 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41146 > .jack::after{border-radius:15px}#stacks_in_41146 > .jack.border-detailed-radius,#stacks_in_41146 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41146 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41146 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41146 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41146 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41146 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41146 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41146 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41146 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41146 > .jack.bg-image:not(.glass){}#stacks_in_41146 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41146 > .jack.bg-image.glass.after,#stacks_in_41146 > .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_41146 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41146 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41146 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41146 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41146 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41146 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41146 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41146 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41146 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41146 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41146 > .jack.bg-image.glass.after,#stacks_in_41146 > .glass.jack.bg-image::after{}#stacks_in_41146 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41146 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41146 > .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_41146 > .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_41146 > .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_41146 > .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_41146 > .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_41146 > .jack.peek-shadow::before,#stacks_in_41146 > .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_41146 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41146 > .jack{overflow:hidden;}#stacks_in_41146 > .jack.height-static{height:100px}#stacks_in_41146 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41148 .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_41148 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41148 .fluid-image.unlimited img{width:100% !important}#stacks_in_41148 .fluid-image.define_max img{width:100% !important;max-width:400px !important}#stacks_in_41148 .fluid-image.align-left img{float:left}#stacks_in_41148 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41151Calligrapher{			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_41151Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41151Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41151Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41151Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41151Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41151Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41151Calligrapher h6, .stacks_in_41151Calligrapher h5, .stacks_in_41151Calligrapher h4, .stacks_in_41151Calligrapher h3, .stacks_in_41151Calligrapher h2, .stacks_in_41151Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41151Calligrapher, .stacks_in_41151Calligrapher h1, .stacks_in_41151Calligrapher h2, .stacks_in_41151Calligrapher h3, .stacks_in_41151Calligrapher h4, .stacks_in_41151Calligrapher h5, .stacks_in_41151Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41151targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41151Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41151Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41151Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41151Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41151 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41152 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41155 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41157 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41159Calligrapher{			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_41159Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41159Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41159Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41159Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41159Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41159Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41159Calligrapher h6, .stacks_in_41159Calligrapher h5, .stacks_in_41159Calligrapher h4, .stacks_in_41159Calligrapher h3, .stacks_in_41159Calligrapher h2, .stacks_in_41159Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41159Calligrapher, .stacks_in_41159Calligrapher h1, .stacks_in_41159Calligrapher h2, .stacks_in_41159Calligrapher h3, .stacks_in_41159Calligrapher h4, .stacks_in_41159Calligrapher h5, .stacks_in_41159Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41159targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41159Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41159Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41159Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41159Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41159 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41162 {
	line-height: 2em;
}
#stacks_in_41163{}#stacks_in_41163 > .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_41163 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41163 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41163 > .jack.width-static{width:500px}#stacks_in_41163 > .jack.width-flexible{width:100%}#stacks_in_41163 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41163 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41163 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41163 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41163 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41163 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41163 > .jack::after{border-radius:15px}#stacks_in_41163 > .jack.border-detailed-radius,#stacks_in_41163 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41163 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41163 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41163 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41163 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41163 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41163 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41163 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41163 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41163 > .jack.bg-image:not(.glass){}#stacks_in_41163 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41163 > .jack.bg-image.glass.after,#stacks_in_41163 > .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_41163 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41163 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41163 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41163 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41163 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41163 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41163 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41163 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41163 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41163 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41163 > .jack.bg-image.glass.after,#stacks_in_41163 > .glass.jack.bg-image::after{}#stacks_in_41163 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41163 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41163 > .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_41163 > .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_41163 > .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_41163 > .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_41163 > .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_41163 > .jack.peek-shadow::before,#stacks_in_41163 > .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_41163 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41163 > .jack{overflow:hidden;}#stacks_in_41163 > .jack.height-static{height:100px}#stacks_in_41163 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41164 .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_41164 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41164 .fluid-image.unlimited img{width:100% !important}#stacks_in_41164 .fluid-image.define_max img{width:100% !important;max-width:400px !important}#stacks_in_41164 .fluid-image.align-left img{float:left}#stacks_in_41164 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41167Calligrapher{			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_41167Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41167Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41167Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41167Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41167Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41167Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41167Calligrapher h6, .stacks_in_41167Calligrapher h5, .stacks_in_41167Calligrapher h4, .stacks_in_41167Calligrapher h3, .stacks_in_41167Calligrapher h2, .stacks_in_41167Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41167Calligrapher, .stacks_in_41167Calligrapher h1, .stacks_in_41167Calligrapher h2, .stacks_in_41167Calligrapher h3, .stacks_in_41167Calligrapher h4, .stacks_in_41167Calligrapher h5, .stacks_in_41167Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41167targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41167Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41167Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41167Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41167Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41167 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41168 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41171 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41175Calligrapher{			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_41175Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41175Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41175Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41175Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41175Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41175Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41175Calligrapher h6, .stacks_in_41175Calligrapher h5, .stacks_in_41175Calligrapher h4, .stacks_in_41175Calligrapher h3, .stacks_in_41175Calligrapher h2, .stacks_in_41175Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41175Calligrapher, .stacks_in_41175Calligrapher h1, .stacks_in_41175Calligrapher h2, .stacks_in_41175Calligrapher h3, .stacks_in_41175Calligrapher h4, .stacks_in_41175Calligrapher h5, .stacks_in_41175Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41175targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41175Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41175Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41175Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41175Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41175 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41178 {
	line-height: 2em;
}
#stacks_in_41179{}#stacks_in_41179 > .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_41179 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41179 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41179 > .jack.width-static{width:500px}#stacks_in_41179 > .jack.width-flexible{width:100%}#stacks_in_41179 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41179 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41179 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41179 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41179 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41179 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41179 > .jack::after{border-radius:15px}#stacks_in_41179 > .jack.border-detailed-radius,#stacks_in_41179 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41179 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41179 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41179 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41179 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41179 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41179 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41179 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41179 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41179 > .jack.bg-image:not(.glass){}#stacks_in_41179 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41179 > .jack.bg-image.glass.after,#stacks_in_41179 > .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_41179 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41179 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41179 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41179 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41179 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41179 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41179 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41179 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41179 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41179 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41179 > .jack.bg-image.glass.after,#stacks_in_41179 > .glass.jack.bg-image::after{}#stacks_in_41179 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41179 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41179 > .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_41179 > .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_41179 > .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_41179 > .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_41179 > .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_41179 > .jack.peek-shadow::before,#stacks_in_41179 > .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_41179 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41179 > .jack{overflow:hidden;}#stacks_in_41179 > .jack.height-static{height:100px}#stacks_in_41179 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41180 .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_41180 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41180 .fluid-image.unlimited img{width:100% !important}#stacks_in_41180 .fluid-image.define_max img{width:100% !important;max-width:600px !important}#stacks_in_41180 .fluid-image.align-left img{float:left}#stacks_in_41180 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41183Calligrapher{			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_41183Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41183Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41183Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41183Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41183Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41183Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41183Calligrapher h6, .stacks_in_41183Calligrapher h5, .stacks_in_41183Calligrapher h4, .stacks_in_41183Calligrapher h3, .stacks_in_41183Calligrapher h2, .stacks_in_41183Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41183Calligrapher, .stacks_in_41183Calligrapher h1, .stacks_in_41183Calligrapher h2, .stacks_in_41183Calligrapher h3, .stacks_in_41183Calligrapher h4, .stacks_in_41183Calligrapher h5, .stacks_in_41183Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41183targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41183Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41183Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41183Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41183Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41183 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41184 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41187 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41191Calligrapher{			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_41191Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41191Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41191Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41191Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41191Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41191Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41191Calligrapher h6, .stacks_in_41191Calligrapher h5, .stacks_in_41191Calligrapher h4, .stacks_in_41191Calligrapher h3, .stacks_in_41191Calligrapher h2, .stacks_in_41191Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41191Calligrapher, .stacks_in_41191Calligrapher h1, .stacks_in_41191Calligrapher h2, .stacks_in_41191Calligrapher h3, .stacks_in_41191Calligrapher h4, .stacks_in_41191Calligrapher h5, .stacks_in_41191Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41191targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41191Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41191Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41191Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41191Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41191 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41194 {
	line-height: 2em;
}
#stacks_in_41195{}#stacks_in_41195 > .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_41195 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41195 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41195 > .jack.width-static{width:500px}#stacks_in_41195 > .jack.width-flexible{width:100%}#stacks_in_41195 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41195 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41195 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41195 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41195 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41195 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41195 > .jack::after{border-radius:15px}#stacks_in_41195 > .jack.border-detailed-radius,#stacks_in_41195 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41195 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41195 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41195 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41195 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41195 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41195 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41195 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41195 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41195 > .jack.bg-image:not(.glass){}#stacks_in_41195 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41195 > .jack.bg-image.glass.after,#stacks_in_41195 > .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_41195 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41195 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41195 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41195 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41195 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41195 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41195 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41195 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41195 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41195 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41195 > .jack.bg-image.glass.after,#stacks_in_41195 > .glass.jack.bg-image::after{}#stacks_in_41195 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41195 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41195 > .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_41195 > .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_41195 > .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_41195 > .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_41195 > .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_41195 > .jack.peek-shadow::before,#stacks_in_41195 > .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_41195 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41195 > .jack{overflow:hidden;}#stacks_in_41195 > .jack.height-static{height:500px}#stacks_in_41195 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41196Calligrapher{			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_41196Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41196Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41196Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41196Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41196Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41196Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41196Calligrapher h6, .stacks_in_41196Calligrapher h5, .stacks_in_41196Calligrapher h4, .stacks_in_41196Calligrapher h3, .stacks_in_41196Calligrapher h2, .stacks_in_41196Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41196Calligrapher, .stacks_in_41196Calligrapher h1, .stacks_in_41196Calligrapher h2, .stacks_in_41196Calligrapher h3, .stacks_in_41196Calligrapher h4, .stacks_in_41196Calligrapher h5, .stacks_in_41196Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41196targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41196Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41196Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41196Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41196Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41196 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41197 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41200 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41204Calligrapher{			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_41204Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41204Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41204Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41204Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41204Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41204Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41204Calligrapher h6, .stacks_in_41204Calligrapher h5, .stacks_in_41204Calligrapher h4, .stacks_in_41204Calligrapher h3, .stacks_in_41204Calligrapher h2, .stacks_in_41204Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41204Calligrapher, .stacks_in_41204Calligrapher h1, .stacks_in_41204Calligrapher h2, .stacks_in_41204Calligrapher h3, .stacks_in_41204Calligrapher h4, .stacks_in_41204Calligrapher h5, .stacks_in_41204Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41204targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41204Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41204Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41204Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41204Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41204 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41207 {
	line-height: 2em;
}
#stacks_in_41209{}#stacks_in_41209 > .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_41209 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41209 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41209 > .jack.width-static{width:500px}#stacks_in_41209 > .jack.width-flexible{width:100%}#stacks_in_41209 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41209 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41209 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41209 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41209 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41209 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41209 > .jack::after{border-radius:15px}#stacks_in_41209 > .jack.border-detailed-radius,#stacks_in_41209 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41209 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41209 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41209 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41209 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41209 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41209 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41209 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41209 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41209 > .jack.bg-image:not(.glass){}#stacks_in_41209 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41209 > .jack.bg-image.glass.after,#stacks_in_41209 > .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_41209 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41209 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41209 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41209 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41209 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41209 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41209 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41209 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41209 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41209 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41209 > .jack.bg-image.glass.after,#stacks_in_41209 > .glass.jack.bg-image::after{}#stacks_in_41209 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41209 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41209 > .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_41209 > .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_41209 > .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_41209 > .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_41209 > .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_41209 > .jack.peek-shadow::before,#stacks_in_41209 > .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_41209 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41209 > .jack{overflow:hidden;}#stacks_in_41209 > .jack.height-static{height:100px}#stacks_in_41209 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41210 .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_41210 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41210 .fluid-image.unlimited img{width:100% !important}#stacks_in_41210 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41210 .fluid-image.align-left img{float:left}#stacks_in_41210 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41213Calligrapher{			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_41213Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41213Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41213Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41213Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41213Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41213Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41213Calligrapher h6, .stacks_in_41213Calligrapher h5, .stacks_in_41213Calligrapher h4, .stacks_in_41213Calligrapher h3, .stacks_in_41213Calligrapher h2, .stacks_in_41213Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41213Calligrapher, .stacks_in_41213Calligrapher h1, .stacks_in_41213Calligrapher h2, .stacks_in_41213Calligrapher h3, .stacks_in_41213Calligrapher h4, .stacks_in_41213Calligrapher h5, .stacks_in_41213Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41213targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41213Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41213Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41213Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41213Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41213 {
	margin: 30px 0px 0px 0px;
	padding: 20px 20px 0px 20px;
}

#stacks_in_41214 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41217 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41221Calligrapher{			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_41221Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41221Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41221Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41221Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41221Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41221Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41221Calligrapher h6, .stacks_in_41221Calligrapher h5, .stacks_in_41221Calligrapher h4, .stacks_in_41221Calligrapher h3, .stacks_in_41221Calligrapher h2, .stacks_in_41221Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41221Calligrapher, .stacks_in_41221Calligrapher h1, .stacks_in_41221Calligrapher h2, .stacks_in_41221Calligrapher h3, .stacks_in_41221Calligrapher h4, .stacks_in_41221Calligrapher h5, .stacks_in_41221Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41221targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41221Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41221Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41221Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41221Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41221 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41224 {
	line-height: 2em;
}
#stacks_in_41225{}#stacks_in_41225 > .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_41225 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41225 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41225 > .jack.width-static{width:500px}#stacks_in_41225 > .jack.width-flexible{width:100%}#stacks_in_41225 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41225 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41225 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41225 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41225 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41225 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41225 > .jack::after{border-radius:15px}#stacks_in_41225 > .jack.border-detailed-radius,#stacks_in_41225 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41225 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41225 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41225 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41225 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41225 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41225 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41225 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41225 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41225 > .jack.bg-image:not(.glass){}#stacks_in_41225 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41225 > .jack.bg-image.glass.after,#stacks_in_41225 > .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_41225 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41225 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41225 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41225 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41225 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41225 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41225 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41225 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41225 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41225 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41225 > .jack.bg-image.glass.after,#stacks_in_41225 > .glass.jack.bg-image::after{}#stacks_in_41225 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41225 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41225 > .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_41225 > .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_41225 > .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_41225 > .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_41225 > .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_41225 > .jack.peek-shadow::before,#stacks_in_41225 > .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_41225 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41225 > .jack{overflow:hidden;}#stacks_in_41225 > .jack.height-static{height:100px}#stacks_in_41225 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41226 .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_41226 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41226 .fluid-image.unlimited img{width:100% !important}#stacks_in_41226 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41226 .fluid-image.align-left img{float:left}#stacks_in_41226 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41229Calligrapher{			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_41229Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41229Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41229Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41229Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41229Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41229Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41229Calligrapher h6, .stacks_in_41229Calligrapher h5, .stacks_in_41229Calligrapher h4, .stacks_in_41229Calligrapher h3, .stacks_in_41229Calligrapher h2, .stacks_in_41229Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41229Calligrapher, .stacks_in_41229Calligrapher h1, .stacks_in_41229Calligrapher h2, .stacks_in_41229Calligrapher h3, .stacks_in_41229Calligrapher h4, .stacks_in_41229Calligrapher h5, .stacks_in_41229Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41229targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41229Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41229Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41229Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41229Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41229 {
	margin: 30px 0px 0px 0px;
	padding: 20px 20px 0px 20px;
}

#stacks_in_41230 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41233 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41235 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41237 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41241Calligrapher{			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_41241Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41241Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41241Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41241Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41241Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41241Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41241Calligrapher h6, .stacks_in_41241Calligrapher h5, .stacks_in_41241Calligrapher h4, .stacks_in_41241Calligrapher h3, .stacks_in_41241Calligrapher h2, .stacks_in_41241Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41241Calligrapher, .stacks_in_41241Calligrapher h1, .stacks_in_41241Calligrapher h2, .stacks_in_41241Calligrapher h3, .stacks_in_41241Calligrapher h4, .stacks_in_41241Calligrapher h5, .stacks_in_41241Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41241targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41241Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41241Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41241Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41241Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41241 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41244 {
	line-height: 2em;
}
#stacks_in_41245{}#stacks_in_41245 > .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_41245 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41245 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41245 > .jack.width-static{width:500px}#stacks_in_41245 > .jack.width-flexible{width:100%}#stacks_in_41245 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41245 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41245 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41245 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41245 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41245 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41245 > .jack::after{border-radius:15px}#stacks_in_41245 > .jack.border-detailed-radius,#stacks_in_41245 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41245 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41245 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41245 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41245 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41245 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41245 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41245 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41245 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41245 > .jack.bg-image:not(.glass){}#stacks_in_41245 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41245 > .jack.bg-image.glass.after,#stacks_in_41245 > .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_41245 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41245 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41245 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41245 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41245 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41245 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41245 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41245 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41245 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41245 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41245 > .jack.bg-image.glass.after,#stacks_in_41245 > .glass.jack.bg-image::after{}#stacks_in_41245 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41245 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41245 > .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_41245 > .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_41245 > .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_41245 > .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_41245 > .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_41245 > .jack.peek-shadow::before,#stacks_in_41245 > .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_41245 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41245 > .jack{overflow:hidden;}#stacks_in_41245 > .jack.height-static{height:100px}#stacks_in_41245 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41246 .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_41246 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41246 .fluid-image.unlimited img{width:100% !important}#stacks_in_41246 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41246 .fluid-image.align-left img{float:left}#stacks_in_41246 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41249Calligrapher{			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_41249Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41249Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41249Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41249Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41249Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41249Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41249Calligrapher h6, .stacks_in_41249Calligrapher h5, .stacks_in_41249Calligrapher h4, .stacks_in_41249Calligrapher h3, .stacks_in_41249Calligrapher h2, .stacks_in_41249Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41249Calligrapher, .stacks_in_41249Calligrapher h1, .stacks_in_41249Calligrapher h2, .stacks_in_41249Calligrapher h3, .stacks_in_41249Calligrapher h4, .stacks_in_41249Calligrapher h5, .stacks_in_41249Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41249targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41249Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41249Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41249Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41249Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41249 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41250 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41253 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41257Calligrapher{			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_41257Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41257Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41257Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41257Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41257Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41257Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41257Calligrapher h6, .stacks_in_41257Calligrapher h5, .stacks_in_41257Calligrapher h4, .stacks_in_41257Calligrapher h3, .stacks_in_41257Calligrapher h2, .stacks_in_41257Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41257Calligrapher, .stacks_in_41257Calligrapher h1, .stacks_in_41257Calligrapher h2, .stacks_in_41257Calligrapher h3, .stacks_in_41257Calligrapher h4, .stacks_in_41257Calligrapher h5, .stacks_in_41257Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41257targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41257Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41257Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41257Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41257Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41257 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41260 {
	line-height: 2em;
}
#stacks_in_41261{}#stacks_in_41261 > .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_41261 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41261 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41261 > .jack.width-static{width:500px}#stacks_in_41261 > .jack.width-flexible{width:100%}#stacks_in_41261 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41261 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41261 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41261 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41261 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41261 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41261 > .jack::after{border-radius:15px}#stacks_in_41261 > .jack.border-detailed-radius,#stacks_in_41261 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41261 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41261 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41261 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41261 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41261 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41261 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41261 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41261 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41261 > .jack.bg-image:not(.glass){}#stacks_in_41261 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41261 > .jack.bg-image.glass.after,#stacks_in_41261 > .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_41261 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41261 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41261 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41261 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41261 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41261 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41261 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41261 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41261 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41261 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41261 > .jack.bg-image.glass.after,#stacks_in_41261 > .glass.jack.bg-image::after{}#stacks_in_41261 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41261 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41261 > .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_41261 > .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_41261 > .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_41261 > .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_41261 > .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_41261 > .jack.peek-shadow::before,#stacks_in_41261 > .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_41261 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41261 > .jack{overflow:hidden;}#stacks_in_41261 > .jack.height-static{height:100px}#stacks_in_41261 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41262 .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_41262 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41262 .fluid-image.unlimited img{width:100% !important}#stacks_in_41262 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41262 .fluid-image.align-left img{float:left}#stacks_in_41262 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41265Calligrapher{			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_41265Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41265Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41265Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41265Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41265Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41265Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41265Calligrapher h6, .stacks_in_41265Calligrapher h5, .stacks_in_41265Calligrapher h4, .stacks_in_41265Calligrapher h3, .stacks_in_41265Calligrapher h2, .stacks_in_41265Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41265Calligrapher, .stacks_in_41265Calligrapher h1, .stacks_in_41265Calligrapher h2, .stacks_in_41265Calligrapher h3, .stacks_in_41265Calligrapher h4, .stacks_in_41265Calligrapher h5, .stacks_in_41265Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41265targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41265Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41265Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41265Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41265Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41265 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41266 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41269 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41273Calligrapher{			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_41273Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41273Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41273Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41273Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41273Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41273Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41273Calligrapher h6, .stacks_in_41273Calligrapher h5, .stacks_in_41273Calligrapher h4, .stacks_in_41273Calligrapher h3, .stacks_in_41273Calligrapher h2, .stacks_in_41273Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41273Calligrapher, .stacks_in_41273Calligrapher h1, .stacks_in_41273Calligrapher h2, .stacks_in_41273Calligrapher h3, .stacks_in_41273Calligrapher h4, .stacks_in_41273Calligrapher h5, .stacks_in_41273Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41273targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41273Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41273Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41273Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41273Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41273 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41276 {
	line-height: 2em;
}
#stacks_in_41277{}#stacks_in_41277 > .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_41277 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41277 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41277 > .jack.width-static{width:500px}#stacks_in_41277 > .jack.width-flexible{width:100%}#stacks_in_41277 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41277 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41277 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41277 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41277 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41277 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41277 > .jack::after{border-radius:15px}#stacks_in_41277 > .jack.border-detailed-radius,#stacks_in_41277 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41277 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41277 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41277 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41277 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41277 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41277 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41277 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41277 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41277 > .jack.bg-image:not(.glass){}#stacks_in_41277 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41277 > .jack.bg-image.glass.after,#stacks_in_41277 > .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_41277 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41277 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41277 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41277 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41277 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41277 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41277 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41277 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41277 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41277 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41277 > .jack.bg-image.glass.after,#stacks_in_41277 > .glass.jack.bg-image::after{}#stacks_in_41277 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41277 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41277 > .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_41277 > .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_41277 > .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_41277 > .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_41277 > .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_41277 > .jack.peek-shadow::before,#stacks_in_41277 > .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_41277 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41277 > .jack{overflow:hidden;}#stacks_in_41277 > .jack.height-static{height:100px}#stacks_in_41277 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41278 .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_41278 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41278 .fluid-image.unlimited img{width:100% !important}#stacks_in_41278 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41278 .fluid-image.align-left img{float:left}#stacks_in_41278 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41281Calligrapher{			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_41281Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41281Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41281Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41281Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41281Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41281Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41281Calligrapher h6, .stacks_in_41281Calligrapher h5, .stacks_in_41281Calligrapher h4, .stacks_in_41281Calligrapher h3, .stacks_in_41281Calligrapher h2, .stacks_in_41281Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41281Calligrapher, .stacks_in_41281Calligrapher h1, .stacks_in_41281Calligrapher h2, .stacks_in_41281Calligrapher h3, .stacks_in_41281Calligrapher h4, .stacks_in_41281Calligrapher h5, .stacks_in_41281Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41281targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41281Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41281Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41281Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41281Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41281 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41282 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41285 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41289Calligrapher{			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_41289Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41289Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41289Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41289Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41289Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41289Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41289Calligrapher h6, .stacks_in_41289Calligrapher h5, .stacks_in_41289Calligrapher h4, .stacks_in_41289Calligrapher h3, .stacks_in_41289Calligrapher h2, .stacks_in_41289Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41289Calligrapher, .stacks_in_41289Calligrapher h1, .stacks_in_41289Calligrapher h2, .stacks_in_41289Calligrapher h3, .stacks_in_41289Calligrapher h4, .stacks_in_41289Calligrapher h5, .stacks_in_41289Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41289targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41289Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41289Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41289Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41289Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41289 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41292 {
	line-height: 2em;
}
#stacks_in_41293{}#stacks_in_41293 > .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_41293 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41293 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41293 > .jack.width-static{width:500px}#stacks_in_41293 > .jack.width-flexible{width:100%}#stacks_in_41293 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41293 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41293 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41293 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41293 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41293 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41293 > .jack::after{border-radius:15px}#stacks_in_41293 > .jack.border-detailed-radius,#stacks_in_41293 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41293 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41293 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41293 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41293 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41293 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41293 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41293 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41293 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41293 > .jack.bg-image:not(.glass){}#stacks_in_41293 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41293 > .jack.bg-image.glass.after,#stacks_in_41293 > .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_41293 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41293 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41293 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41293 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41293 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41293 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41293 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41293 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41293 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41293 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41293 > .jack.bg-image.glass.after,#stacks_in_41293 > .glass.jack.bg-image::after{}#stacks_in_41293 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41293 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41293 > .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_41293 > .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_41293 > .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_41293 > .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_41293 > .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_41293 > .jack.peek-shadow::before,#stacks_in_41293 > .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_41293 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41293 > .jack{overflow:hidden;}#stacks_in_41293 > .jack.height-static{height:100px}#stacks_in_41293 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41294 .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_41294 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41294 .fluid-image.unlimited img{width:100% !important}#stacks_in_41294 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41294 .fluid-image.align-left img{float:left}#stacks_in_41294 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41297Calligrapher{			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_41297Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41297Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41297Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41297Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41297Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41297Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41297Calligrapher h6, .stacks_in_41297Calligrapher h5, .stacks_in_41297Calligrapher h4, .stacks_in_41297Calligrapher h3, .stacks_in_41297Calligrapher h2, .stacks_in_41297Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41297Calligrapher, .stacks_in_41297Calligrapher h1, .stacks_in_41297Calligrapher h2, .stacks_in_41297Calligrapher h3, .stacks_in_41297Calligrapher h4, .stacks_in_41297Calligrapher h5, .stacks_in_41297Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41297targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41297Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41297Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41297Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41297Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41297 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41298 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41301 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41305Calligrapher{			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_41305Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41305Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41305Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41305Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41305Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41305Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41305Calligrapher h6, .stacks_in_41305Calligrapher h5, .stacks_in_41305Calligrapher h4, .stacks_in_41305Calligrapher h3, .stacks_in_41305Calligrapher h2, .stacks_in_41305Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41305Calligrapher, .stacks_in_41305Calligrapher h1, .stacks_in_41305Calligrapher h2, .stacks_in_41305Calligrapher h3, .stacks_in_41305Calligrapher h4, .stacks_in_41305Calligrapher h5, .stacks_in_41305Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41305targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41305Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41305Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41305Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41305Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41305 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41306 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_41308 {
	line-height: 2em;
}
#stacks_in_41309{}#stacks_in_41309 > .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_41309 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41309 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41309 > .jack.width-static{width:500px}#stacks_in_41309 > .jack.width-flexible{width:100%}#stacks_in_41309 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41309 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41309 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41309 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41309 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41309 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41309 > .jack::after{border-radius:15px}#stacks_in_41309 > .jack.border-detailed-radius,#stacks_in_41309 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41309 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41309 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41309 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41309 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41309 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41309 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41309 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41309 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41309 > .jack.bg-image:not(.glass){}#stacks_in_41309 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41309 > .jack.bg-image.glass.after,#stacks_in_41309 > .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_41309 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41309 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41309 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41309 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41309 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41309 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41309 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41309 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41309 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41309 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41309 > .jack.bg-image.glass.after,#stacks_in_41309 > .glass.jack.bg-image::after{}#stacks_in_41309 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41309 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41309 > .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_41309 > .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_41309 > .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_41309 > .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_41309 > .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_41309 > .jack.peek-shadow::before,#stacks_in_41309 > .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_41309 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41309 > .jack{overflow:hidden;}#stacks_in_41309 > .jack.height-static{height:100px}#stacks_in_41309 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41310 .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_41310 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41310 .fluid-image.unlimited img{width:100% !important}#stacks_in_41310 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41310 .fluid-image.align-left img{float:left}#stacks_in_41310 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41313Calligrapher{			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_41313Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41313Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41313Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41313Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41313Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41313Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41313Calligrapher h6, .stacks_in_41313Calligrapher h5, .stacks_in_41313Calligrapher h4, .stacks_in_41313Calligrapher h3, .stacks_in_41313Calligrapher h2, .stacks_in_41313Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41313Calligrapher, .stacks_in_41313Calligrapher h1, .stacks_in_41313Calligrapher h2, .stacks_in_41313Calligrapher h3, .stacks_in_41313Calligrapher h4, .stacks_in_41313Calligrapher h5, .stacks_in_41313Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41313targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41313Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41313Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41313Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41313Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41313 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41314 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41317 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41321Calligrapher{			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_41321Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41321Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41321Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41321Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41321Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41321Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41321Calligrapher h6, .stacks_in_41321Calligrapher h5, .stacks_in_41321Calligrapher h4, .stacks_in_41321Calligrapher h3, .stacks_in_41321Calligrapher h2, .stacks_in_41321Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41321Calligrapher, .stacks_in_41321Calligrapher h1, .stacks_in_41321Calligrapher h2, .stacks_in_41321Calligrapher h3, .stacks_in_41321Calligrapher h4, .stacks_in_41321Calligrapher h5, .stacks_in_41321Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41321targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41321Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41321Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41321Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41321Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41321 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41322 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_41324 {
	line-height: 2em;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_41325 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_41325 {
		display: none !important;
	}
}
#stacks_in_41326{}#stacks_in_41326 > .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_41326 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41326 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41326 > .jack.width-static{width:500px}#stacks_in_41326 > .jack.width-flexible{width:100%}#stacks_in_41326 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41326 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41326 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41326 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41326 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41326 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41326 > .jack::after{border-radius:15px}#stacks_in_41326 > .jack.border-detailed-radius,#stacks_in_41326 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41326 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41326 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41326 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41326 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41326 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41326 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41326 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41326 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41326 > .jack.bg-image:not(.glass){}#stacks_in_41326 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41326 > .jack.bg-image.glass.after,#stacks_in_41326 > .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_41326 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41326 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41326 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41326 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41326 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41326 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41326 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41326 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41326 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41326 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41326 > .jack.bg-image.glass.after,#stacks_in_41326 > .glass.jack.bg-image::after{}#stacks_in_41326 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41326 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41326 > .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_41326 > .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_41326 > .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_41326 > .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_41326 > .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_41326 > .jack.peek-shadow::before,#stacks_in_41326 > .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_41326 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41326 > .jack{overflow:hidden;}#stacks_in_41326 > .jack.height-static{height:100px}#stacks_in_41326 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41327 .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_41327 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41327 .fluid-image.unlimited img{width:100% !important}#stacks_in_41327 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41327 .fluid-image.align-left img{float:left}#stacks_in_41327 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41330Calligrapher{			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_41330Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41330Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41330Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41330Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41330Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41330Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41330Calligrapher h6, .stacks_in_41330Calligrapher h5, .stacks_in_41330Calligrapher h4, .stacks_in_41330Calligrapher h3, .stacks_in_41330Calligrapher h2, .stacks_in_41330Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41330Calligrapher, .stacks_in_41330Calligrapher h1, .stacks_in_41330Calligrapher h2, .stacks_in_41330Calligrapher h3, .stacks_in_41330Calligrapher h4, .stacks_in_41330Calligrapher h5, .stacks_in_41330Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41330targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41330Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41330Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41330Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41330Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41330 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41331 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41334 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41338Calligrapher{			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_41338Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41338Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41338Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41338Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41338Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41338Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41338Calligrapher h6, .stacks_in_41338Calligrapher h5, .stacks_in_41338Calligrapher h4, .stacks_in_41338Calligrapher h3, .stacks_in_41338Calligrapher h2, .stacks_in_41338Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41338Calligrapher, .stacks_in_41338Calligrapher h1, .stacks_in_41338Calligrapher h2, .stacks_in_41338Calligrapher h3, .stacks_in_41338Calligrapher h4, .stacks_in_41338Calligrapher h5, .stacks_in_41338Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41338targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41338Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41338Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41338Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41338Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41338 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41339 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_41341 {
	line-height: 2em;
}
#stacks_in_41342{}#stacks_in_41342 > .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_41342 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41342 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41342 > .jack.width-static{width:500px}#stacks_in_41342 > .jack.width-flexible{width:100%}#stacks_in_41342 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41342 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41342 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41342 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41342 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41342 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41342 > .jack::after{border-radius:15px}#stacks_in_41342 > .jack.border-detailed-radius,#stacks_in_41342 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41342 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41342 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41342 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41342 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41342 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41342 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41342 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41342 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41342 > .jack.bg-image:not(.glass){}#stacks_in_41342 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41342 > .jack.bg-image.glass.after,#stacks_in_41342 > .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_41342 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41342 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41342 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41342 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41342 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41342 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41342 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41342 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41342 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41342 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41342 > .jack.bg-image.glass.after,#stacks_in_41342 > .glass.jack.bg-image::after{}#stacks_in_41342 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41342 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41342 > .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_41342 > .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_41342 > .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_41342 > .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_41342 > .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_41342 > .jack.peek-shadow::before,#stacks_in_41342 > .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_41342 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41342 > .jack{overflow:hidden;}#stacks_in_41342 > .jack.height-static{height:100px}#stacks_in_41342 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41343 .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_41343 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41343 .fluid-image.unlimited img{width:100% !important}#stacks_in_41343 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41343 .fluid-image.align-left img{float:left}#stacks_in_41343 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41346Calligrapher{			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_41346Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41346Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41346Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41346Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41346Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41346Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41346Calligrapher h6, .stacks_in_41346Calligrapher h5, .stacks_in_41346Calligrapher h4, .stacks_in_41346Calligrapher h3, .stacks_in_41346Calligrapher h2, .stacks_in_41346Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41346Calligrapher, .stacks_in_41346Calligrapher h1, .stacks_in_41346Calligrapher h2, .stacks_in_41346Calligrapher h3, .stacks_in_41346Calligrapher h4, .stacks_in_41346Calligrapher h5, .stacks_in_41346Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41346targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41346Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41346Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41346Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41346Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41346 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41347 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41350 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41352Calligrapher{			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_41352Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41352Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41352Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41352Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41352Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41352Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41352Calligrapher h6, .stacks_in_41352Calligrapher h5, .stacks_in_41352Calligrapher h4, .stacks_in_41352Calligrapher h3, .stacks_in_41352Calligrapher h2, .stacks_in_41352Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41352Calligrapher, .stacks_in_41352Calligrapher h1, .stacks_in_41352Calligrapher h2, .stacks_in_41352Calligrapher h3, .stacks_in_41352Calligrapher h4, .stacks_in_41352Calligrapher h5, .stacks_in_41352Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41352targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41352Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41352Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41352Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41352Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41352 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41353 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_41355 {
	line-height: 2em;
}
#stacks_in_41356{}#stacks_in_41356 > .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_41356 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41356 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41356 > .jack.width-static{width:500px}#stacks_in_41356 > .jack.width-flexible{width:100%}#stacks_in_41356 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41356 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41356 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41356 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41356 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41356 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41356 > .jack::after{border-radius:15px}#stacks_in_41356 > .jack.border-detailed-radius,#stacks_in_41356 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41356 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41356 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41356 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41356 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41356 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41356 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41356 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41356 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41356 > .jack.bg-image:not(.glass){}#stacks_in_41356 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41356 > .jack.bg-image.glass.after,#stacks_in_41356 > .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_41356 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41356 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41356 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41356 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41356 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41356 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41356 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41356 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41356 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41356 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41356 > .jack.bg-image.glass.after,#stacks_in_41356 > .glass.jack.bg-image::after{}#stacks_in_41356 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41356 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41356 > .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_41356 > .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_41356 > .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_41356 > .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_41356 > .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_41356 > .jack.peek-shadow::before,#stacks_in_41356 > .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_41356 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41356 > .jack{overflow:hidden;}#stacks_in_41356 > .jack.height-static{height:100px}#stacks_in_41356 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41357 .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_41357 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41357 .fluid-image.unlimited img{width:100% !important}#stacks_in_41357 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41357 .fluid-image.align-left img{float:left}#stacks_in_41357 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41360Calligrapher{			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_41360Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41360Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41360Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41360Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41360Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41360Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41360Calligrapher h6, .stacks_in_41360Calligrapher h5, .stacks_in_41360Calligrapher h4, .stacks_in_41360Calligrapher h3, .stacks_in_41360Calligrapher h2, .stacks_in_41360Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41360Calligrapher, .stacks_in_41360Calligrapher h1, .stacks_in_41360Calligrapher h2, .stacks_in_41360Calligrapher h3, .stacks_in_41360Calligrapher h4, .stacks_in_41360Calligrapher h5, .stacks_in_41360Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41360targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41360Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41360Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41360Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41360Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41360 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41361 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41364 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41366 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41368Calligrapher{			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_41368Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41368Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41368Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41368Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41368Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41368Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41368Calligrapher h6, .stacks_in_41368Calligrapher h5, .stacks_in_41368Calligrapher h4, .stacks_in_41368Calligrapher h3, .stacks_in_41368Calligrapher h2, .stacks_in_41368Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41368Calligrapher, .stacks_in_41368Calligrapher h1, .stacks_in_41368Calligrapher h2, .stacks_in_41368Calligrapher h3, .stacks_in_41368Calligrapher h4, .stacks_in_41368Calligrapher h5, .stacks_in_41368Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41368targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41368Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41368Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41368Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41368Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41368 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41369 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_41371 {
	line-height: 2em;
}
#stacks_in_41372{}#stacks_in_41372 > .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_41372 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41372 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41372 > .jack.width-static{width:500px}#stacks_in_41372 > .jack.width-flexible{width:100%}#stacks_in_41372 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41372 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41372 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41372 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41372 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41372 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41372 > .jack::after{border-radius:15px}#stacks_in_41372 > .jack.border-detailed-radius,#stacks_in_41372 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41372 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41372 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41372 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41372 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41372 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41372 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41372 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41372 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41372 > .jack.bg-image:not(.glass){}#stacks_in_41372 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41372 > .jack.bg-image.glass.after,#stacks_in_41372 > .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_41372 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41372 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41372 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41372 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41372 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41372 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41372 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41372 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41372 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41372 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41372 > .jack.bg-image.glass.after,#stacks_in_41372 > .glass.jack.bg-image::after{}#stacks_in_41372 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41372 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41372 > .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_41372 > .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_41372 > .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_41372 > .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_41372 > .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_41372 > .jack.peek-shadow::before,#stacks_in_41372 > .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_41372 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41372 > .jack{overflow:hidden;}#stacks_in_41372 > .jack.height-static{height:100px}#stacks_in_41372 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41373 .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_41373 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41373 .fluid-image.unlimited img{width:100% !important}#stacks_in_41373 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41373 .fluid-image.align-left img{float:left}#stacks_in_41373 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41376Calligrapher{			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_41376Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41376Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41376Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41376Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41376Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41376Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41376Calligrapher h6, .stacks_in_41376Calligrapher h5, .stacks_in_41376Calligrapher h4, .stacks_in_41376Calligrapher h3, .stacks_in_41376Calligrapher h2, .stacks_in_41376Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41376Calligrapher, .stacks_in_41376Calligrapher h1, .stacks_in_41376Calligrapher h2, .stacks_in_41376Calligrapher h3, .stacks_in_41376Calligrapher h4, .stacks_in_41376Calligrapher h5, .stacks_in_41376Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41376targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41376Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41376Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41376Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41376Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41376 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41377 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41380 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41382 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41384Calligrapher{			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_41384Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41384Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41384Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41384Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41384Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41384Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41384Calligrapher h6, .stacks_in_41384Calligrapher h5, .stacks_in_41384Calligrapher h4, .stacks_in_41384Calligrapher h3, .stacks_in_41384Calligrapher h2, .stacks_in_41384Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41384Calligrapher, .stacks_in_41384Calligrapher h1, .stacks_in_41384Calligrapher h2, .stacks_in_41384Calligrapher h3, .stacks_in_41384Calligrapher h4, .stacks_in_41384Calligrapher h5, .stacks_in_41384Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41384targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41384Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41384Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41384Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41384Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41384 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41385 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_41387 {
	line-height: 2em;
}
#stacks_in_41388{}#stacks_in_41388 > .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_41388 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41388 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41388 > .jack.width-static{width:500px}#stacks_in_41388 > .jack.width-flexible{width:100%}#stacks_in_41388 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41388 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41388 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41388 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41388 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41388 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41388 > .jack::after{border-radius:15px}#stacks_in_41388 > .jack.border-detailed-radius,#stacks_in_41388 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41388 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41388 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41388 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41388 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41388 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41388 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41388 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41388 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41388 > .jack.bg-image:not(.glass){}#stacks_in_41388 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41388 > .jack.bg-image.glass.after,#stacks_in_41388 > .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_41388 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41388 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41388 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41388 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41388 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41388 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41388 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41388 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41388 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41388 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41388 > .jack.bg-image.glass.after,#stacks_in_41388 > .glass.jack.bg-image::after{}#stacks_in_41388 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41388 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41388 > .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_41388 > .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_41388 > .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_41388 > .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_41388 > .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_41388 > .jack.peek-shadow::before,#stacks_in_41388 > .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_41388 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41388 > .jack{overflow:hidden;}#stacks_in_41388 > .jack.height-static{height:100px}#stacks_in_41388 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41389 .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_41389 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41389 .fluid-image.unlimited img{width:100% !important}#stacks_in_41389 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41389 .fluid-image.align-left img{float:left}#stacks_in_41389 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41392Calligrapher{			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_41392Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41392Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41392Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41392Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41392Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41392Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41392Calligrapher h6, .stacks_in_41392Calligrapher h5, .stacks_in_41392Calligrapher h4, .stacks_in_41392Calligrapher h3, .stacks_in_41392Calligrapher h2, .stacks_in_41392Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41392Calligrapher, .stacks_in_41392Calligrapher h1, .stacks_in_41392Calligrapher h2, .stacks_in_41392Calligrapher h3, .stacks_in_41392Calligrapher h4, .stacks_in_41392Calligrapher h5, .stacks_in_41392Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41392targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41392Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41392Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41392Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41392Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41392 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41393 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41396 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41398 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41400Calligrapher{			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_41400Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41400Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41400Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41400Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41400Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41400Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41400Calligrapher h6, .stacks_in_41400Calligrapher h5, .stacks_in_41400Calligrapher h4, .stacks_in_41400Calligrapher h3, .stacks_in_41400Calligrapher h2, .stacks_in_41400Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41400Calligrapher, .stacks_in_41400Calligrapher h1, .stacks_in_41400Calligrapher h2, .stacks_in_41400Calligrapher h3, .stacks_in_41400Calligrapher h4, .stacks_in_41400Calligrapher h5, .stacks_in_41400Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41400targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41400Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41400Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41400Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41400Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41400 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41401 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_41403 {
	line-height: 2em;
}
#stacks_in_41404{}#stacks_in_41404 > .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_41404 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41404 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41404 > .jack.width-static{width:500px}#stacks_in_41404 > .jack.width-flexible{width:100%}#stacks_in_41404 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41404 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41404 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41404 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41404 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41404 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41404 > .jack::after{border-radius:15px}#stacks_in_41404 > .jack.border-detailed-radius,#stacks_in_41404 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41404 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41404 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41404 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41404 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41404 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41404 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41404 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41404 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41404 > .jack.bg-image:not(.glass){}#stacks_in_41404 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41404 > .jack.bg-image.glass.after,#stacks_in_41404 > .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_41404 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41404 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41404 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41404 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41404 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41404 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41404 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41404 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41404 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41404 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41404 > .jack.bg-image.glass.after,#stacks_in_41404 > .glass.jack.bg-image::after{}#stacks_in_41404 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41404 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41404 > .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_41404 > .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_41404 > .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_41404 > .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_41404 > .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_41404 > .jack.peek-shadow::before,#stacks_in_41404 > .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_41404 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41404 > .jack{overflow:hidden;}#stacks_in_41404 > .jack.height-static{height:100px}#stacks_in_41404 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41405 .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_41405 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41405 .fluid-image.unlimited img{width:100% !important}#stacks_in_41405 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41405 .fluid-image.align-left img{float:left}#stacks_in_41405 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41408Calligrapher{			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_41408Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41408Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41408Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41408Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41408Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41408Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41408Calligrapher h6, .stacks_in_41408Calligrapher h5, .stacks_in_41408Calligrapher h4, .stacks_in_41408Calligrapher h3, .stacks_in_41408Calligrapher h2, .stacks_in_41408Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41408Calligrapher, .stacks_in_41408Calligrapher h1, .stacks_in_41408Calligrapher h2, .stacks_in_41408Calligrapher h3, .stacks_in_41408Calligrapher h4, .stacks_in_41408Calligrapher h5, .stacks_in_41408Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41408targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41408Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41408Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41408Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41408Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41408 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41409 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41412 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41414Calligrapher{			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_41414Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41414Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41414Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41414Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41414Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41414Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41414Calligrapher h6, .stacks_in_41414Calligrapher h5, .stacks_in_41414Calligrapher h4, .stacks_in_41414Calligrapher h3, .stacks_in_41414Calligrapher h2, .stacks_in_41414Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41414Calligrapher, .stacks_in_41414Calligrapher h1, .stacks_in_41414Calligrapher h2, .stacks_in_41414Calligrapher h3, .stacks_in_41414Calligrapher h4, .stacks_in_41414Calligrapher h5, .stacks_in_41414Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41414targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41414Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41414Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41414Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41414Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41414 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41415 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_41417 {
	line-height: 2em;
}
#stacks_in_41418{}#stacks_in_41418 > .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_41418 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41418 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41418 > .jack.width-static{width:500px}#stacks_in_41418 > .jack.width-flexible{width:100%}#stacks_in_41418 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41418 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41418 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41418 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41418 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41418 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41418 > .jack::after{border-radius:15px}#stacks_in_41418 > .jack.border-detailed-radius,#stacks_in_41418 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41418 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41418 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41418 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41418 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41418 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41418 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41418 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41418 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41418 > .jack.bg-image:not(.glass){}#stacks_in_41418 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41418 > .jack.bg-image.glass.after,#stacks_in_41418 > .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_41418 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41418 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41418 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41418 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41418 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41418 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41418 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41418 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41418 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41418 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41418 > .jack.bg-image.glass.after,#stacks_in_41418 > .glass.jack.bg-image::after{}#stacks_in_41418 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41418 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41418 > .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_41418 > .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_41418 > .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_41418 > .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_41418 > .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_41418 > .jack.peek-shadow::before,#stacks_in_41418 > .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_41418 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41418 > .jack{overflow:hidden;}#stacks_in_41418 > .jack.height-static{height:100px}#stacks_in_41418 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41419 .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_41419 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41419 .fluid-image.unlimited img{width:100% !important}#stacks_in_41419 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41419 .fluid-image.align-left img{float:left}#stacks_in_41419 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41422Calligrapher{			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_41422Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41422Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41422Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41422Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41422Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41422Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41422Calligrapher h6, .stacks_in_41422Calligrapher h5, .stacks_in_41422Calligrapher h4, .stacks_in_41422Calligrapher h3, .stacks_in_41422Calligrapher h2, .stacks_in_41422Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41422Calligrapher, .stacks_in_41422Calligrapher h1, .stacks_in_41422Calligrapher h2, .stacks_in_41422Calligrapher h3, .stacks_in_41422Calligrapher h4, .stacks_in_41422Calligrapher h5, .stacks_in_41422Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41422targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41422Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41422Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41422Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41422Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41422 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41423 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41426 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41428 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41430Calligrapher{			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_41430Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41430Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41430Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41430Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41430Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41430Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41430Calligrapher h6, .stacks_in_41430Calligrapher h5, .stacks_in_41430Calligrapher h4, .stacks_in_41430Calligrapher h3, .stacks_in_41430Calligrapher h2, .stacks_in_41430Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41430Calligrapher, .stacks_in_41430Calligrapher h1, .stacks_in_41430Calligrapher h2, .stacks_in_41430Calligrapher h3, .stacks_in_41430Calligrapher h4, .stacks_in_41430Calligrapher h5, .stacks_in_41430Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41430targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41430Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41430Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41430Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41430Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41430 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41431 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_41433 {
	line-height: 2em;
}
#stacks_in_41434{}#stacks_in_41434 > .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_41434 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41434 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41434 > .jack.width-static{width:500px}#stacks_in_41434 > .jack.width-flexible{width:100%}#stacks_in_41434 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41434 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41434 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41434 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41434 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41434 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41434 > .jack::after{border-radius:15px}#stacks_in_41434 > .jack.border-detailed-radius,#stacks_in_41434 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41434 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41434 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41434 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41434 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41434 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41434 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41434 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41434 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41434 > .jack.bg-image:not(.glass){}#stacks_in_41434 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41434 > .jack.bg-image.glass.after,#stacks_in_41434 > .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_41434 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41434 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41434 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41434 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41434 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41434 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41434 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41434 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41434 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41434 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41434 > .jack.bg-image.glass.after,#stacks_in_41434 > .glass.jack.bg-image::after{}#stacks_in_41434 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41434 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41434 > .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_41434 > .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_41434 > .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_41434 > .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_41434 > .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_41434 > .jack.peek-shadow::before,#stacks_in_41434 > .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_41434 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41434 > .jack{overflow:hidden;}#stacks_in_41434 > .jack.height-static{height:100px}#stacks_in_41434 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41435 .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_41435 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41435 .fluid-image.unlimited img{width:100% !important}#stacks_in_41435 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41435 .fluid-image.align-left img{float:left}#stacks_in_41435 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41438Calligrapher{			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_41438Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41438Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41438Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41438Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41438Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41438Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41438Calligrapher h6, .stacks_in_41438Calligrapher h5, .stacks_in_41438Calligrapher h4, .stacks_in_41438Calligrapher h3, .stacks_in_41438Calligrapher h2, .stacks_in_41438Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41438Calligrapher, .stacks_in_41438Calligrapher h1, .stacks_in_41438Calligrapher h2, .stacks_in_41438Calligrapher h3, .stacks_in_41438Calligrapher h4, .stacks_in_41438Calligrapher h5, .stacks_in_41438Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41438targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41438Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41438Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41438Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41438Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41438 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41439 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41442 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41444Calligrapher{			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_41444Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41444Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41444Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41444Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41444Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41444Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41444Calligrapher h6, .stacks_in_41444Calligrapher h5, .stacks_in_41444Calligrapher h4, .stacks_in_41444Calligrapher h3, .stacks_in_41444Calligrapher h2, .stacks_in_41444Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41444Calligrapher, .stacks_in_41444Calligrapher h1, .stacks_in_41444Calligrapher h2, .stacks_in_41444Calligrapher h3, .stacks_in_41444Calligrapher h4, .stacks_in_41444Calligrapher h5, .stacks_in_41444Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41444targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41444Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41444Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41444Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41444Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41444 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41445 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_41447 {
	line-height: 2em;
}
#stacks_in_41448{}#stacks_in_41448 > .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_41448 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41448 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41448 > .jack.width-static{width:500px}#stacks_in_41448 > .jack.width-flexible{width:100%}#stacks_in_41448 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41448 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41448 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41448 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41448 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41448 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41448 > .jack::after{border-radius:15px}#stacks_in_41448 > .jack.border-detailed-radius,#stacks_in_41448 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41448 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41448 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41448 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41448 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41448 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41448 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41448 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41448 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41448 > .jack.bg-image:not(.glass){}#stacks_in_41448 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41448 > .jack.bg-image.glass.after,#stacks_in_41448 > .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_41448 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41448 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41448 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41448 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41448 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41448 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41448 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41448 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41448 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41448 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41448 > .jack.bg-image.glass.after,#stacks_in_41448 > .glass.jack.bg-image::after{}#stacks_in_41448 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41448 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41448 > .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_41448 > .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_41448 > .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_41448 > .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_41448 > .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_41448 > .jack.peek-shadow::before,#stacks_in_41448 > .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_41448 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41448 > .jack{overflow:hidden;}#stacks_in_41448 > .jack.height-static{height:100px}#stacks_in_41448 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41449 .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_41449 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41449 .fluid-image.unlimited img{width:100% !important}#stacks_in_41449 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41449 .fluid-image.align-left img{float:left}#stacks_in_41449 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41452Calligrapher{			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_41452Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41452Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41452Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41452Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41452Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41452Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41452Calligrapher h6, .stacks_in_41452Calligrapher h5, .stacks_in_41452Calligrapher h4, .stacks_in_41452Calligrapher h3, .stacks_in_41452Calligrapher h2, .stacks_in_41452Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41452Calligrapher, .stacks_in_41452Calligrapher h1, .stacks_in_41452Calligrapher h2, .stacks_in_41452Calligrapher h3, .stacks_in_41452Calligrapher h4, .stacks_in_41452Calligrapher h5, .stacks_in_41452Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41452targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41452Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41452Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41452Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41452Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41452 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41453 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41456 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41458 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41460Calligrapher{			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_41460Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41460Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41460Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41460Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41460Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41460Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41460Calligrapher h6, .stacks_in_41460Calligrapher h5, .stacks_in_41460Calligrapher h4, .stacks_in_41460Calligrapher h3, .stacks_in_41460Calligrapher h2, .stacks_in_41460Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41460Calligrapher, .stacks_in_41460Calligrapher h1, .stacks_in_41460Calligrapher h2, .stacks_in_41460Calligrapher h3, .stacks_in_41460Calligrapher h4, .stacks_in_41460Calligrapher h5, .stacks_in_41460Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41460targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41460Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41460Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41460Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41460Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41460 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41461 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_41463 {
	line-height: 2em;
}
#stacks_in_41464{}#stacks_in_41464 > .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_41464 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41464 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41464 > .jack.width-static{width:500px}#stacks_in_41464 > .jack.width-flexible{width:100%}#stacks_in_41464 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41464 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41464 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41464 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41464 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41464 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41464 > .jack::after{border-radius:15px}#stacks_in_41464 > .jack.border-detailed-radius,#stacks_in_41464 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41464 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41464 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41464 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41464 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41464 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41464 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41464 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41464 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41464 > .jack.bg-image:not(.glass){}#stacks_in_41464 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41464 > .jack.bg-image.glass.after,#stacks_in_41464 > .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_41464 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41464 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41464 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41464 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41464 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41464 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41464 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41464 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41464 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41464 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41464 > .jack.bg-image.glass.after,#stacks_in_41464 > .glass.jack.bg-image::after{}#stacks_in_41464 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41464 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41464 > .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_41464 > .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_41464 > .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_41464 > .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_41464 > .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_41464 > .jack.peek-shadow::before,#stacks_in_41464 > .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_41464 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41464 > .jack{overflow:hidden;}#stacks_in_41464 > .jack.height-static{height:100px}#stacks_in_41464 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41465 .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_41465 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41465 .fluid-image.unlimited img{width:100% !important}#stacks_in_41465 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41465 .fluid-image.align-left img{float:left}#stacks_in_41465 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41468Calligrapher{			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_41468Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41468Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41468Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41468Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41468Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41468Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41468Calligrapher h6, .stacks_in_41468Calligrapher h5, .stacks_in_41468Calligrapher h4, .stacks_in_41468Calligrapher h3, .stacks_in_41468Calligrapher h2, .stacks_in_41468Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41468Calligrapher, .stacks_in_41468Calligrapher h1, .stacks_in_41468Calligrapher h2, .stacks_in_41468Calligrapher h3, .stacks_in_41468Calligrapher h4, .stacks_in_41468Calligrapher h5, .stacks_in_41468Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41468targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41468Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41468Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41468Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41468Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41468 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41469 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41472 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41474 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41476Calligrapher{			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_41476Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41476Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41476Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41476Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41476Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41476Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41476Calligrapher h6, .stacks_in_41476Calligrapher h5, .stacks_in_41476Calligrapher h4, .stacks_in_41476Calligrapher h3, .stacks_in_41476Calligrapher h2, .stacks_in_41476Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41476Calligrapher, .stacks_in_41476Calligrapher h1, .stacks_in_41476Calligrapher h2, .stacks_in_41476Calligrapher h3, .stacks_in_41476Calligrapher h4, .stacks_in_41476Calligrapher h5, .stacks_in_41476Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41476targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41476Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41476Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41476Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41476Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41476 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41477 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_41479 {
	line-height: 2em;
}
#stacks_in_41480{}#stacks_in_41480 > .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_41480 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41480 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41480 > .jack.width-static{width:500px}#stacks_in_41480 > .jack.width-flexible{width:100%}#stacks_in_41480 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41480 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41480 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41480 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41480 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41480 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41480 > .jack::after{border-radius:15px}#stacks_in_41480 > .jack.border-detailed-radius,#stacks_in_41480 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41480 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41480 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41480 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41480 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41480 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41480 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41480 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41480 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41480 > .jack.bg-image:not(.glass){}#stacks_in_41480 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41480 > .jack.bg-image.glass.after,#stacks_in_41480 > .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_41480 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41480 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41480 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41480 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41480 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41480 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41480 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41480 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41480 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41480 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41480 > .jack.bg-image.glass.after,#stacks_in_41480 > .glass.jack.bg-image::after{}#stacks_in_41480 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41480 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41480 > .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_41480 > .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_41480 > .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_41480 > .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_41480 > .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_41480 > .jack.peek-shadow::before,#stacks_in_41480 > .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_41480 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41480 > .jack{overflow:hidden;}#stacks_in_41480 > .jack.height-static{height:100px}#stacks_in_41480 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41481 .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_41481 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41481 .fluid-image.unlimited img{width:100% !important}#stacks_in_41481 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41481 .fluid-image.align-left img{float:left}#stacks_in_41481 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41484Calligrapher{			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_41484Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41484Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41484Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41484Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41484Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41484Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41484Calligrapher h6, .stacks_in_41484Calligrapher h5, .stacks_in_41484Calligrapher h4, .stacks_in_41484Calligrapher h3, .stacks_in_41484Calligrapher h2, .stacks_in_41484Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41484Calligrapher, .stacks_in_41484Calligrapher h1, .stacks_in_41484Calligrapher h2, .stacks_in_41484Calligrapher h3, .stacks_in_41484Calligrapher h4, .stacks_in_41484Calligrapher h5, .stacks_in_41484Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41484targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41484Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41484Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41484Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41484Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41484 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41485 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41488 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41490 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41492Calligrapher{			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_41492Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41492Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41492Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41492Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41492Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41492Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41492Calligrapher h6, .stacks_in_41492Calligrapher h5, .stacks_in_41492Calligrapher h4, .stacks_in_41492Calligrapher h3, .stacks_in_41492Calligrapher h2, .stacks_in_41492Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41492Calligrapher, .stacks_in_41492Calligrapher h1, .stacks_in_41492Calligrapher h2, .stacks_in_41492Calligrapher h3, .stacks_in_41492Calligrapher h4, .stacks_in_41492Calligrapher h5, .stacks_in_41492Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41492targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41492Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41492Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41492Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41492Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41492 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41493 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_41495 {
	line-height: 2em;
}
#stacks_in_41496{}#stacks_in_41496 > .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_41496 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41496 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41496 > .jack.width-static{width:500px}#stacks_in_41496 > .jack.width-flexible{width:100%}#stacks_in_41496 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41496 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41496 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41496 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41496 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41496 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41496 > .jack::after{border-radius:15px}#stacks_in_41496 > .jack.border-detailed-radius,#stacks_in_41496 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41496 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41496 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41496 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41496 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41496 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41496 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41496 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41496 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41496 > .jack.bg-image:not(.glass){}#stacks_in_41496 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41496 > .jack.bg-image.glass.after,#stacks_in_41496 > .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_41496 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41496 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41496 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41496 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41496 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41496 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41496 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41496 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41496 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41496 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41496 > .jack.bg-image.glass.after,#stacks_in_41496 > .glass.jack.bg-image::after{}#stacks_in_41496 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41496 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41496 > .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_41496 > .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_41496 > .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_41496 > .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_41496 > .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_41496 > .jack.peek-shadow::before,#stacks_in_41496 > .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_41496 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41496 > .jack{overflow:hidden;}#stacks_in_41496 > .jack.height-static{height:100px}#stacks_in_41496 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41497 .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_41497 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41497 .fluid-image.unlimited img{width:100% !important}#stacks_in_41497 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_41497 .fluid-image.align-left img{float:left}#stacks_in_41497 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41500Calligrapher{			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_41500Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41500Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41500Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41500Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41500Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41500Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41500Calligrapher h6, .stacks_in_41500Calligrapher h5, .stacks_in_41500Calligrapher h4, .stacks_in_41500Calligrapher h3, .stacks_in_41500Calligrapher h2, .stacks_in_41500Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41500Calligrapher, .stacks_in_41500Calligrapher h1, .stacks_in_41500Calligrapher h2, .stacks_in_41500Calligrapher h3, .stacks_in_41500Calligrapher h4, .stacks_in_41500Calligrapher h5, .stacks_in_41500Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41500targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41500Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41500Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41500Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41500Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41500 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41501 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41504 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41506 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41508Calligrapher{			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_41508Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41508Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41508Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41508Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41508Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41508Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41508Calligrapher h6, .stacks_in_41508Calligrapher h5, .stacks_in_41508Calligrapher h4, .stacks_in_41508Calligrapher h3, .stacks_in_41508Calligrapher h2, .stacks_in_41508Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41508Calligrapher, .stacks_in_41508Calligrapher h1, .stacks_in_41508Calligrapher h2, .stacks_in_41508Calligrapher h3, .stacks_in_41508Calligrapher h4, .stacks_in_41508Calligrapher h5, .stacks_in_41508Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41508targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41508Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41508Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41508Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41508Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41508 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_41509 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_41511 {
	line-height: 2em;
}
#stacks_in_41512{}#stacks_in_41512 > .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_41512 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_41512 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_41512 > .jack.width-static{width:500px}#stacks_in_41512 > .jack.width-flexible{width:100%}#stacks_in_41512 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_41512 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41512 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_41512 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_41512 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_41512 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_41512 > .jack::after{border-radius:15px}#stacks_in_41512 > .jack.border-detailed-radius,#stacks_in_41512 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_41512 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_41512 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_41512 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_41512 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_41512 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_41512 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_41512 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_41512 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41512 > .jack.bg-image:not(.glass){}#stacks_in_41512 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_41512 > .jack.bg-image.glass.after,#stacks_in_41512 > .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_41512 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_41512 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_41512 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_41512 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_41512 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_41512 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_41512 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41512 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_41512 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_41512 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_41512 > .jack.bg-image.glass.after,#stacks_in_41512 > .glass.jack.bg-image::after{}#stacks_in_41512 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_41512 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_41512 > .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_41512 > .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_41512 > .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_41512 > .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_41512 > .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_41512 > .jack.peek-shadow::before,#stacks_in_41512 > .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_41512 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_41512 > .jack{overflow:hidden;}#stacks_in_41512 > .jack.height-static{height:100px}#stacks_in_41512 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_41513 .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_41513 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_41513 .fluid-image.unlimited img{width:100% !important}#stacks_in_41513 .fluid-image.define_max img{width:100% !important;max-width:300px !important}#stacks_in_41513 .fluid-image.align-left img{float:left}#stacks_in_41513 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41516Calligrapher{			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_41516Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41516Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41516Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41516Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41516Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41516Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41516Calligrapher h6, .stacks_in_41516Calligrapher h5, .stacks_in_41516Calligrapher h4, .stacks_in_41516Calligrapher h3, .stacks_in_41516Calligrapher h2, .stacks_in_41516Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41516Calligrapher, .stacks_in_41516Calligrapher h1, .stacks_in_41516Calligrapher h2, .stacks_in_41516Calligrapher h3, .stacks_in_41516Calligrapher h4, .stacks_in_41516Calligrapher h5, .stacks_in_41516Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41516targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41516Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41516Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41516Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41516Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41516 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_41517 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_41520 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41522Calligrapher{			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_41522Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41522Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41522Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41522Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41522Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41522Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_41522Calligrapher h6, .stacks_in_41522Calligrapher h5, .stacks_in_41522Calligrapher h4, .stacks_in_41522Calligrapher h3, .stacks_in_41522Calligrapher h2, .stacks_in_41522Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41522Calligrapher, .stacks_in_41522Calligrapher h1, .stacks_in_41522Calligrapher h2, .stacks_in_41522Calligrapher h3, .stacks_in_41522Calligrapher h4, .stacks_in_41522Calligrapher h5, .stacks_in_41522Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41522targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_41522Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_41522Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_41522Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_41522Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_41522 {
	padding: 0px 20px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_41523Calligrapher{			line-height: normal !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_41523Calligrapher, .stacks_in_41523Calligrapher h1, .stacks_in_41523Calligrapher h2, .stacks_in_41523Calligrapher h3, .stacks_in_41523Calligrapher h4, .stacks_in_41523Calligrapher h5, .stacks_in_41523Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_41523targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- *//* End Calligrapher stack CSS code */
#stacks_in_41524 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_41526 {
	line-height: 2em;
}
#stacks_in_32245{padding-left:0px;padding-right:0px;}#stacks_in_32245 > .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_32245 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32245 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32245 > .jack.width-static{width:500px}#stacks_in_32245 > .jack.width-flexible{width:100%}#stacks_in_32245 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32245 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32245 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32245 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32245 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32245 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32245 > .jack::after{border-radius:0px}#stacks_in_32245 > .jack.border-detailed-radius,#stacks_in_32245 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_32245 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32245 > .jack.bg-color{background-color:#89C5FF}#stacks_in_32245 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_32245 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32245 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32245 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32245 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32245 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32245 > .jack.bg-image:not(.glass){}#stacks_in_32245 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32245 > .jack.bg-image.glass.after,#stacks_in_32245 > .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_32245 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32245 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32245 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32245 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32245 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32245 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32245 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32245 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32245 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32245 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32245 > .jack.bg-image.glass.after,#stacks_in_32245 > .glass.jack.bg-image::after{}#stacks_in_32245 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32245 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32245 > .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_32245 > .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_32245 > .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_32245 > .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_32245 > .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_32245 > .jack.peek-shadow::before,#stacks_in_32245 > .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_32245 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32245 > .jack{overflow:visible;}#stacks_in_32245 > .jack.height-static{height:100px}#stacks_in_32245 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_12783 *,
#stacks_in_12783 *:before,
#stacks_in_12783 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_12785{}#stacks_in_12785 > .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_12785 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_12785 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_12785 > .jack.width-static{width:500px}#stacks_in_12785 > .jack.width-flexible{width:100%}#stacks_in_12785 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_12785 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_12785 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_12785 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_12785 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_12785 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_12785 > .jack::after{border-radius:15px}#stacks_in_12785 > .jack.border-detailed-radius,#stacks_in_12785 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_12785 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_12785 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_12785 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_12785 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_12785 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_12785 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_12785 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_12785 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_12785 > .jack.bg-image:not(.glass){}#stacks_in_12785 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_12785 > .jack.bg-image.glass.after,#stacks_in_12785 > .glass.jack.bg-image::after{opacity:0.40;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_12785 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_12785 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_12785 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_12785 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_12785 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_12785 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_12785 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_12785 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_12785 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_12785 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_12785 > .jack.bg-image.glass.after,#stacks_in_12785 > .glass.jack.bg-image::after{}#stacks_in_12785 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_12785 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_12785 > .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_12785 > .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_12785 > .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_12785 > .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_12785 > .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_12785 > .jack.peek-shadow::before,#stacks_in_12785 > .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_12785 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_12785 > .jack{overflow:hidden;}#stacks_in_12785 > .jack.height-static{height:100px}#stacks_in_12785 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_12785 {
	margin: 25px 0px 15px 0px;
}
#stacks_in_30064 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_30064 .jwresp_col{float:none} #stacks_in_30064 #jwresp_col2_stacks_in_30064{position:relative;margin:0 auto;width:32%;float:none}#stacks_in_30064 #jwresp_col1_stacks_in_30064,#stacks_in_30064 #jwresp_col3_stacks_in_30064{width:32%}#stacks_in_30064 #jwresp_col1_stacks_in_30064{float:left}#stacks_in_30064 #jwresp_col3_stacks_in_30064{float:right} @media screen and (max-width:770px){#stacks_in_30064 #jwresp_col1_stacks_in_30064,#stacks_in_30064 #jwresp_col3_stacks_in_30064{margin-bottom:20px}#stacks_in_30064 #jwresp_col1_stacks_in_30064{width:49%}#stacks_in_30064 #jwresp_col3_stacks_in_30064{width:49%}#stacks_in_30064 #jwresp_col2_stacks_in_30064{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_30064 #jwresp_col1_stacks_in_30064,#stacks_in_30064 #jwresp_col3_stacks_in_30064,#stacks_in_30064 #jwresp_col2_stacks_in_30064{float:none;width:100%;display:block}#stacks_in_30064 #jwresp_col1_stacks_in_30064,#stacks_in_30064 #jwresp_col3_stacks_in_30064{margin-bottom:20px}} 

#stacks_in_30064 {
	margin: 10px 0px 10px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_12790 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_12790 .borderbuttonthing, #stacks_in_12790 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_12790 .borderbuttonthing:hover {
	background: #4211A2;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_12790 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_30068 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_30068 .borderbuttonthing, #stacks_in_30068 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_30068 .borderbuttonthing:hover {
	background: #4211A2;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_30068 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_12792 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_12792 .borderbuttonthing, #stacks_in_12792 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_12792 .borderbuttonthing:hover {
	background: #4211A2;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_12792 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_31075{}#stacks_in_31075 > .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_31075 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31075 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31075 > .jack.width-static{width:500px}#stacks_in_31075 > .jack.width-flexible{width:100%}#stacks_in_31075 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31075 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31075 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31075 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31075 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31075 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31075 > .jack::after{border-radius:15px}#stacks_in_31075 > .jack.border-detailed-radius,#stacks_in_31075 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31075 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31075 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31075 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_31075 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31075 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31075 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31075 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31075 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31075 > .jack.bg-image:not(.glass){}#stacks_in_31075 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31075 > .jack.bg-image.glass.after,#stacks_in_31075 > .glass.jack.bg-image::after{opacity:0.40;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_31075 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31075 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31075 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31075 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31075 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31075 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31075 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31075 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31075 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31075 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31075 > .jack.bg-image.glass.after,#stacks_in_31075 > .glass.jack.bg-image::after{}#stacks_in_31075 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31075 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31075 > .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_31075 > .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_31075 > .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_31075 > .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_31075 > .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_31075 > .jack.peek-shadow::before,#stacks_in_31075 > .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_31075 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31075 > .jack{overflow:hidden;}#stacks_in_31075 > .jack.height-static{height:100px}#stacks_in_31075 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_31075 {
	margin: 25px 0px 15px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31078 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31078 .borderbuttonthing, #stacks_in_31078 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_31078 .borderbuttonthing:hover {
	background: #4211A2;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_31078 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_31078 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31082 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31082 .borderbuttonthing, #stacks_in_31082 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_31082 .borderbuttonthing:hover {
	background: #4211A2;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_31082 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_31082 {
	margin: 10px 0px 0px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_31080 {
	text-align: center;
	text-rendering: optimizeLegibility;
	-webkit-font-smoothing: subpixel-antialiased; /* Chrome */
	-webkit-font-smoothing: antialiased; /* Safari */
/* 	-webkit-text-shadow: rgba(255,255,255,0.01) 0 0 1px; */	
	-webkit-text-stroke: rgba(255,255,255,0.01) 0.1px; 
/* 	-webkit-text-stroke-width: 0.1px; */
	
	}



#stacks_in_31080 .borderbuttonthing, #stacks_in_31080 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #4211A2;
	color: #4211A2;
	text-shadow: 0 1px 0px #333333;
	text-shadow:none;
	text-transform: none;;
	letter-spacing:0px;;
	font-weight:bold;;
  	-webkit-user-select: none;
	   -moz-user-select: none;
			user-select: none;
	-webkit-border-radius: 5px;
	   -moz-border-radius: 5px;
			border-radius: 5px;
}

#stacks_in_31080 .borderbuttonthing:hover {
	background: #4211A2;
	zoom: 1;
	filter: alpha(opacity=80);
	opacity: 1;
	color: #FFFFFF;
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}

#stacks_in_31080 .borderbuttonthing:active {
	-webkit-transition: all 0.3s ease-in-out;
	   -moz-transition: all 0.3s ease-in-out;
			transition: all 0.3s ease-in-out;
}


#stacks_in_31080 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_29010{padding-left:0px;padding-right:0px;}#stacks_in_29010 > .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_29010 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_29010 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_29010 > .jack.width-static{width:500px}#stacks_in_29010 > .jack.width-flexible{width:100%}#stacks_in_29010 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_29010 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_29010 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_29010 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_29010 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_29010 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_29010 > .jack::after{border-radius:0px}#stacks_in_29010 > .jack.border-detailed-radius,#stacks_in_29010 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_29010 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_29010 > .jack.bg-color{background-color:#89C5FF}#stacks_in_29010 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_29010 > .jack.bg-image:not(.glass){background-image:url(../thai_lernen_files/bgImage-29010.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_29010 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_29010 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_29010 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_3_col.jpg)}#stacks_in_29010 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_29010 > .jack.bg-image:not(.glass){background-image:url(../thai_lernen_files/bgImageLarge-29010.jpg);}#stacks_in_29010 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_29010 > .jack.bg-image.glass.after,#stacks_in_29010 > .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_lernen_files/bgImage-29010.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_29010 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_29010 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_29010 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_29010 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_29010 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_29010 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_29010 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_29010 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_3_col.jpg)}#stacks_in_29010 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_29010 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_29010 > .jack.bg-image.glass.after,#stacks_in_29010 > .glass.jack.bg-image::after{background-image:url(../thai_lernen_files/bgImageLarge-29010.jpg);}#stacks_in_29010 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_29010 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_29010 > .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_29010 > .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_29010 > .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_29010 > .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_29010 > .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_29010 > .jack.peek-shadow::before,#stacks_in_29010 > .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_29010 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_29010 > .jack{overflow:hidden;}#stacks_in_29010 > .jack.height-static{height:40px}#stacks_in_29010 > .jack.height-minmax{min-height:100px;max-height:800px}

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