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

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

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

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



.wow {
	visibility: hidden;
}

#stacks_in_8823 {
	margin: 20px 0px 0px 0px;
}
#stacks_in_8597 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_8597 .jwresp_col{overflow:hidden;margin:0;width:27%; float:left;}#stacks_in_8597 #jwresp_col2_stacks_in_8597{ float:right; width:71%}@media screen and (max-width:500px){#stacks_in_8597 #jwresp_col1_stacks_in_8597,#stacks_in_8597 #jwresp_col2_stacks_in_8597{width:100%;float:none;display:block}#stacks_in_8597 #jwresp_col1_stacks_in_8597{margin-bottom:15px}}
#stacks_in_30219 .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;-webkit-box-shadow:5px 5px 5px #999999;box-shadow:5px 5px 5px #999999;}#stacks_in_30219 .fluid-image img:hover{-webkit-box-shadow:5px 5px 5px #999999;box-shadow:5px 5px 5px #999999}#stacks_in_30219 .fluid-image.unlimited img{width:100% !important}#stacks_in_30219 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_30219 .fluid-image.align-left img{float:left}#stacks_in_30219 .fluid-image.align-right img{float:right}

#stacks_in_30219 {
	margin:  20px;
	padding:  5px;
}

#stacks_in_14553 {
	margin:  10px;
	padding:  10px;
}
#stacks_in_31505 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_31505 .jwresp_col{overflow:hidden;margin:0;width:27%; float:left;}#stacks_in_31505 #jwresp_col2_stacks_in_31505{ float:right; width:71%}@media screen and (max-width:500px){#stacks_in_31505 #jwresp_col1_stacks_in_31505,#stacks_in_31505 #jwresp_col2_stacks_in_31505{width:100%;float:none;display:block}#stacks_in_31505 #jwresp_col1_stacks_in_31505{margin-bottom:15px}}
#stacks_in_31506 .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;-webkit-box-shadow:5px 5px 5px #999999;box-shadow:5px 5px 5px #999999;}#stacks_in_31506 .fluid-image img:hover{-webkit-box-shadow:5px 5px 5px #999999;box-shadow:5px 5px 5px #999999}#stacks_in_31506 .fluid-image.unlimited img{width:100% !important}#stacks_in_31506 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_31506 .fluid-image.align-left img{float:left}#stacks_in_31506 .fluid-image.align-right img{float:right}

#stacks_in_31506 {
	margin:  20px;
	padding:  5px;
}

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

#stacks_in_30191 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_8751 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_8751 .jwresp_col{float:none} #stacks_in_8751 #jwresp_col2_stacks_in_8751{position:relative;margin:0 auto;width:32%;float:none}#stacks_in_8751 #jwresp_col1_stacks_in_8751,#stacks_in_8751 #jwresp_col3_stacks_in_8751{width:32%}#stacks_in_8751 #jwresp_col1_stacks_in_8751{float:left}#stacks_in_8751 #jwresp_col3_stacks_in_8751{float:right} @media screen and (max-width:770px){#stacks_in_8751 #jwresp_col1_stacks_in_8751,#stacks_in_8751 #jwresp_col3_stacks_in_8751{margin-bottom:20px}#stacks_in_8751 #jwresp_col1_stacks_in_8751{width:49%}#stacks_in_8751 #jwresp_col3_stacks_in_8751{width:49%}#stacks_in_8751 #jwresp_col2_stacks_in_8751{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_8751 #jwresp_col1_stacks_in_8751,#stacks_in_8751 #jwresp_col3_stacks_in_8751,#stacks_in_8751 #jwresp_col2_stacks_in_8751{float:none;width:100%;display:block}#stacks_in_8751 #jwresp_col1_stacks_in_8751,#stacks_in_8751 #jwresp_col3_stacks_in_8751{margin-bottom:20px}} 

#stacks_in_8751 {
	margin: 25px 0px 25px 0px;
}
#stacks_in_8815 *,
#stacks_in_8815 *:before,
#stacks_in_8815 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



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

#stacks_in_8771 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_8779 {
	margin:  3px;
	padding:  5px;
}

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



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

#stacks_in_8766 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_8789 {
	margin:  3px;
	padding:  5px;
}

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



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

#stacks_in_8761 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_8784 {
	margin:  3px;
	padding:  5px;
}

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



.wow {
	visibility: hidden;
}

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

#stacks_in_31547 {
	margin: 10px 3px 0px 3px;
}

#stacks_in_31550 {
	margin:  10px;
	padding:  10px;
}

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

#stacks_in_31515 {
	margin: 20px 0px 20px 0px;
}

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

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

#stacks_in_31533 {
	margin: 0px 0px 20px 0px;
}

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

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

#stacks_in_31524 {
	margin: 0px 0px 20px 0px;
}

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

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

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

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

#stacks_in_30197 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_9101 *,
#stacks_in_9101 *:before,
#stacks_in_9101 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



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

#stacks_in_9086 {
	margin:  3px;
	padding:  5px;
}

#stacks_in_9087 {
	line-height: 2em;
}

#stacks_in_9107 {
	margin:  10px;
	padding:  10px;
}

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

#stacks_in_31552 {
	margin: 20px 0px 0px 0px;
}

#stacks_in_31554 {
	margin: 10px 3px 0px 3px;
}

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

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

#stacks_in_30200 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_9141 *,
#stacks_in_9141 *:before,
#stacks_in_9141 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



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

#stacks_in_9145 {
	margin:  3px;
	padding:  5px;
}
/* LinkThing by RapidWeaver Central  */



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

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

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

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

.link_effect1stacks_in_9161 a   {
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	position: relative;
	text-decoration: none;
}

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



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

#stacks_in_9161 .link_effect2stacks_in_9161 a {
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_9161 .link_effect2stacks_in_9161 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

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

#stacks_in_9161 .link_effect3stacks_in_9161 {
  	text-decoration: none;
}

#stacks_in_9161 .link_effect3stacks_in_9161 a {
	
	color: #4211A2 !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_9161 .link_effect3stacks_in_9161 a:hover,
#stacks_in_9161 .link_effect3stacks_in_9161 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



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

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

#stacks_in_9161 .link_effect4stacks_in_9161 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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

#stacks_in_9161 .link_effect4stacks_in_9161 {
}

#stacks_in_9161 .link_effect4stacks_in_9161 a {
	font-weight:bold !important;;
}

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




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


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

#stacks_in_9161 .link_effect5stacks_in_9161 a {
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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

#stacks_in_9161 .link_effect5stacks_in_9161 a {
	overflow: hidden;
	font-weight: 500;
}

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





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

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

#stacks_in_9161 .link_effect6stacks_in_9161 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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


#stacks_in_9161 .link_effect6stacks_in_9161 a {
	overflow: hidden;
	font-weight:bold !important;;
}

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




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

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

#stacks_in_9161 .link_effect7stacks_in_9161 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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

#stacks_in_9161 .link_effect7stacks_in_9161 {
	position: relative;
}

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


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





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

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

#stacks_in_9161 .link_effect8stacks_in_9161 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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



#stacks_in_9161 .link_effect8stacks_in_9161 a {
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_9161 .link_effect8stacks_in_9161 a:hover,
#stacks_in_9161 .link_effect8stacks_in_9161 a:focus {
	color: #DA4453 !important;
}

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

#stacks_in_9161 .link_effect9stacks_in_9161 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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


#stacks_in_9161 .link_effect9stacks_in_9161 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_9161 .link_effect9stacks_in_9161 a:hover,
#stacks_in_9161 .link_effect9stacks_in_9161 a:focus {
	color: #DA4453 !important;
}

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

#stacks_in_9161 .link_effect9stacks_in_9161 a::after {
	border-bottom: 2px solid  #DA4453;
}



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

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

#stacks_in_9161 .link_effect10stacks_in_9161 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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

#stacks_in_9161 .link_effect10stacks_in_9161 a {
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

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

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



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

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

#stacks_in_9161 .link_effect11stacks_in_9161 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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


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

#stacks_in_9161 .link_effect11stacks_in_9161 a:hover,
#stacks_in_9161 .link_effect11stacks_in_9161 a:focus {
	color: #DA4453 !important;
}

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




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

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

#stacks_in_9161 .link_effect12stacks_in_9161 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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

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

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

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


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

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

#stacks_in_9161 .link_effect13stacks_in_9161 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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

#stacks_in_9161 .link_effect13stacks_in_9161 {
}

#stacks_in_9161 .link_effect13stacks_in_9161 a {
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
}

#stacks_in_9161 .link_effect13stacks_in_9161 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(../kursleiter_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_9161 .link_effect13stacks_in_9161 a:hover::before,
#stacks_in_9161 .link_effect13stacks_in_9161 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_9161 .link_effect14stacks_in_9161 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_9161 .link_effect14stacks_in_9161 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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


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

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

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

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


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

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

#stacks_in_9161 .link_effect15stacks_in_9161 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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


#stacks_in_9161 .link_effect15stacks_in_9161 a {
	overflow: hidden;
	font-weight:bold !important;;
}

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

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

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

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



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

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

#stacks_in_9161 .link_effect16stacks_in_9161 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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

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

#stacks_in_9161 .link_effect16stacks_in_9161 a:hover {
	color: #d04c3f;
}

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

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

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



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

#stacks_in_9161 .link_effect17stacks_in_9161 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
  	text-decoration: none;
}

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

#stacks_in_9161 .link_effect17stacks_in_9161 a:hover:after {
  	width: 0;
}


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

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

#stacks_in_9161 .link_effect18stacks_in_9161 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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


#stacks_in_9161 .link_effect18stacks_in_9161 {
}

#stacks_in_9161 .link_effect18stacks_in_9161 a {
	padding: 0 ;
	color: #4211A2;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_9161 .link_effect18stacks_in_9161 a::before,
#stacks_in_9161 .link_effect18stacks_in_9161 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #4211A2;
	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_9161 .link_effect18stacks_in_9161 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

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

#stacks_in_9161 .link_effect18stacks_in_9161 a:hover,
#stacks_in_9161 .link_effect18stacks_in_9161 a:focus {
	color: #fff;
}

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





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


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

#stacks_in_9161 .link_effect19stacks_in_9161 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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

.link_effect19stacks_in_9161 a {
}

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



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

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

#stacks_in_9161 .link_effect20stacks_in_9161 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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

.link_effect20stacks_in_9161 a {
}

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


































#stacks_in_9147 {
	margin:  20px;
	padding:  20px;
}

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

#stacks_in_31562 {
	margin: 20px 0px 0px 0px;
}

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



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

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

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

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

.link_effect1stacks_in_31567 a   {
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	position: relative;
	text-decoration: none;
}

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



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

#stacks_in_31567 .link_effect2stacks_in_31567 a {
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_31567 .link_effect2stacks_in_31567 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

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

#stacks_in_31567 .link_effect3stacks_in_31567 {
  	text-decoration: none;
}

#stacks_in_31567 .link_effect3stacks_in_31567 a {
	
	color: #4211A2 !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_31567 .link_effect3stacks_in_31567 a:hover,
#stacks_in_31567 .link_effect3stacks_in_31567 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



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

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

#stacks_in_31567 .link_effect4stacks_in_31567 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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

#stacks_in_31567 .link_effect4stacks_in_31567 {
}

#stacks_in_31567 .link_effect4stacks_in_31567 a {
	font-weight:bold !important;;
}

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




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


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

#stacks_in_31567 .link_effect5stacks_in_31567 a {
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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

#stacks_in_31567 .link_effect5stacks_in_31567 a {
	overflow: hidden;
	font-weight: 500;
}

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





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

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

#stacks_in_31567 .link_effect6stacks_in_31567 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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


#stacks_in_31567 .link_effect6stacks_in_31567 a {
	overflow: hidden;
	font-weight:bold !important;;
}

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




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

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

#stacks_in_31567 .link_effect7stacks_in_31567 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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

#stacks_in_31567 .link_effect7stacks_in_31567 {
	position: relative;
}

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


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





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

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

#stacks_in_31567 .link_effect8stacks_in_31567 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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



#stacks_in_31567 .link_effect8stacks_in_31567 a {
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_31567 .link_effect8stacks_in_31567 a:hover,
#stacks_in_31567 .link_effect8stacks_in_31567 a:focus {
	color: #DA4453 !important;
}

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

#stacks_in_31567 .link_effect9stacks_in_31567 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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


#stacks_in_31567 .link_effect9stacks_in_31567 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_31567 .link_effect9stacks_in_31567 a:hover,
#stacks_in_31567 .link_effect9stacks_in_31567 a:focus {
	color: #DA4453 !important;
}

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

#stacks_in_31567 .link_effect9stacks_in_31567 a::after {
	border-bottom: 2px solid  #DA4453;
}



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

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

#stacks_in_31567 .link_effect10stacks_in_31567 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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

#stacks_in_31567 .link_effect10stacks_in_31567 a {
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

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

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



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

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

#stacks_in_31567 .link_effect11stacks_in_31567 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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


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

#stacks_in_31567 .link_effect11stacks_in_31567 a:hover,
#stacks_in_31567 .link_effect11stacks_in_31567 a:focus {
	color: #DA4453 !important;
}

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




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

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

#stacks_in_31567 .link_effect12stacks_in_31567 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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

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

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

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


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

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

#stacks_in_31567 .link_effect13stacks_in_31567 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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

#stacks_in_31567 .link_effect13stacks_in_31567 {
}

#stacks_in_31567 .link_effect13stacks_in_31567 a {
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
}

#stacks_in_31567 .link_effect13stacks_in_31567 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(../kursleiter_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_31567 .link_effect13stacks_in_31567 a:hover::before,
#stacks_in_31567 .link_effect13stacks_in_31567 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_31567 .link_effect14stacks_in_31567 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31567 .link_effect14stacks_in_31567 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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


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

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

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

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


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

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

#stacks_in_31567 .link_effect15stacks_in_31567 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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


#stacks_in_31567 .link_effect15stacks_in_31567 a {
	overflow: hidden;
	font-weight:bold !important;;
}

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

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

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

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



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

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

#stacks_in_31567 .link_effect16stacks_in_31567 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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

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

#stacks_in_31567 .link_effect16stacks_in_31567 a:hover {
	color: #d04c3f;
}

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

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

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



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

#stacks_in_31567 .link_effect17stacks_in_31567 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
  	text-decoration: none;
}

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

#stacks_in_31567 .link_effect17stacks_in_31567 a:hover:after {
  	width: 0;
}


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

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

#stacks_in_31567 .link_effect18stacks_in_31567 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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


#stacks_in_31567 .link_effect18stacks_in_31567 {
}

#stacks_in_31567 .link_effect18stacks_in_31567 a {
	padding: 0 ;
	color: #4211A2;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_31567 .link_effect18stacks_in_31567 a::before,
#stacks_in_31567 .link_effect18stacks_in_31567 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #4211A2;
	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_31567 .link_effect18stacks_in_31567 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

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

#stacks_in_31567 .link_effect18stacks_in_31567 a:hover,
#stacks_in_31567 .link_effect18stacks_in_31567 a:focus {
	color: #fff;
}

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





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


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

#stacks_in_31567 .link_effect19stacks_in_31567 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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

.link_effect19stacks_in_31567 a {
}

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



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

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

#stacks_in_31567 .link_effect20stacks_in_31567 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:bold !important;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

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

.link_effect20stacks_in_31567 a {
}

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


































#stacks_in_31568 {
	margin:  20px;
	padding:  20px;
}

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

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

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_37025 {
	height: 45.00px;
}




























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

#stacks_in_37026 {
	padding:  20px;
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_37027 {
	height: 5.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_37046 {
	height: 45.00px;
}




























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

#stacks_in_37047 {
	padding:  20px;
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_37048 {
	height: 5.00px;
}




























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

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

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

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

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_37067 {
	height: 45.00px;
}




























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

#stacks_in_37068 {
	padding:  20px;
}

.spacerStack {
	height: 55.00px;
}

#spacerStackstacks_in_37069 {
	height: 55.00px;
}




























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

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

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

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

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_37088 {
	height: 75.00px;
}




























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

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

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_37093 {
	height: 20.00px;
}




























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

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

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

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

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_37109 {
	height: 20.00px;
}




























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

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

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

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

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

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

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

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_37133 {
	height: 75.00px;
}




























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

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

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_37138 {
	height: 20.00px;
}




























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

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

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

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

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_37154 {
	height: 75.00px;
}




























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

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

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_37159 {
	height: 20.00px;
}




























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

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

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

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

.spacerStack {
	height: 95.00px;
}

#spacerStackstacks_in_37175 {
	height: 95.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 35.00px;
}

#spacerStackstacks_in_37195 {
	height: 35.00px;
}




























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

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

.spacerStack {
	height: 120.00px;
}

#spacerStackstacks_in_37200 {
	height: 120.00px;
}




























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

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

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

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

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_37216 {
	height: 25.00px;
}




























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

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

.spacerStack {
	height: 70.00px;
}

#spacerStackstacks_in_37221 {
	height: 70.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_37237 {
	height: 50.00px;
}




























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

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

.spacerStack {
	height: 70.00px;
}

#spacerStackstacks_in_37242 {
	height: 70.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_37258 {
	height: 50.00px;
}




























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

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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_37263 {
	height: 40.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_37277 {
	height: 75.00px;
}




























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

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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_37282 {
	height: 40.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_37298 {
	height: 30.00px;
}




























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

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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_37303 {
	height: 40.00px;
}




























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

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

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

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

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

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

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_37319 {
	height: 5.00px;
}




























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

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

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

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

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

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

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

.spacerStack {
	height: 60.00px;
}

#spacerStackstacks_in_37339 {
	height: 60.00px;
}




























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

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

.spacerStack {
	height: 60.00px;
}

#spacerStackstacks_in_37344 {
	height: 60.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_37358 {
	height: 75.00px;
}




























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

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

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

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

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

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

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_37378 {
	height: 75.00px;
}




























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

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

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_37383 {
	height: 80.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_37397 {
	height: 30.00px;
}




























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

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

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_37402 {
	height: 80.00px;
}




























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

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

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

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

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

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

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_37418 {
	height: 30.00px;
}




























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

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

.spacerStack {
	height: 120.00px;
}

#spacerStackstacks_in_37423 {
	height: 120.00px;
}




























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

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

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

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

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

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

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_37439 {
	height: 25.00px;
}




























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

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

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_37444 {
	height: 80.00px;
}




























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

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

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

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

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

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

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_37460 {
	height: 75.00px;
}




























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

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

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

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

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

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

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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_37480 {
	height: 40.00px;
}




























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

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

.spacerStack {
	height: 130.00px;
}

#spacerStackstacks_in_37484 {
	height: 130.00px;
}




























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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_38067 {
	line-height: 2em;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_38068 {
	height: 10.00px;
}




























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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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