@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);
  }
}
:root{--animate-duration:1s;--animate-delay:1s;--animate-repeat:1}.animated{-webkit-animation-duration:var(--animate-duration);animation-duration:var(--animate-duration);-webkit-animation-fill-mode:both;animation-fill-mode:both}.animated.infinite{-webkit-animation-iteration-count:infinite;animation-iteration-count:infinite}.animated.repeat-1{-webkit-animation-iteration-count:var(--animate-repeat);animation-iteration-count:var(--animate-repeat)}.animated.repeat-2{-webkit-animation-iteration-count:calc(var(--animate-repeat) * 2);animation-iteration-count:calc(var(--animate-repeat) * 2)}.animated.repeat-3{-webkit-animation-iteration-count:calc(var(--animate-repeat) * 3);animation-iteration-count:calc(var(--animate-repeat) * 3)}.animated.delay-1s{-webkit-animation-delay:var(--animate-delay);animation-delay:var(--animate-delay)}.animated.delay-2s{-webkit-animation-delay:calc(var(--animate-delay) * 2);animation-delay:calc(var(--animate-delay) * 2)}.animated.delay-3s{-webkit-animation-delay:calc(var(--animate-delay) * 3);animation-delay:calc(var(--animate-delay) * 3)}.animated.delay-4s{-webkit-animation-delay:calc(var(--animate-delay) * 4);animation-delay:calc(var(--animate-delay) * 4)}.animated.delay-5s{-webkit-animation-delay:calc(var(--animate-delay) * 5);animation-delay:calc(var(--animate-delay) * 5)}.animated.faster{-webkit-animation-duration:calc(var(--animate-duration) / 2);animation-duration:calc(var(--animate-duration) / 2)}.animated.fast{-webkit-animation-duration:calc(var(--animate-duration) * 0.8);animation-duration:calc(var(--animate-duration) * 0.8)}.animated.slow{-webkit-animation-duration:calc(var(--animate-duration) * 2);animation-duration:calc(var(--animate-duration) * 2)}.animated.slower{-webkit-animation-duration:calc(var(--animate-duration) * 3);animation-duration:calc(var(--animate-duration) * 3)}@media print,(prefers-reduced-motion:reduce){.animated{-webkit-animation-duration:1ms !important;animation-duration:1ms !important;-webkit-transition-duration:1ms !important;transition-duration:1ms !important;-webkit-animation-iteration-count:1 !important;animation-iteration-count:1 !important}.animated[class*='Out']{opacity:0}}@-webkit-keyframes bounce{from,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(0.215,0.61,0.355,1);transition-timing-function:cubic-bezier(0.215,0.61,0.355,1);-webkit-transform:translate3d(0,0,0) scaleY(0.95);transform:translate3d(0,0,0) scaleY(0.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}@keyframes bounce{from,20%,53%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}40%,43%{-webkit-animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);-webkit-transform:translate3d(0,-30px,0) scaleY(1.1);transform:translate3d(0,-30px,0) scaleY(1.1)}70%{-webkit-animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);animation-timing-function:cubic-bezier(0.755,0.05,0.855,0.06);-webkit-transform:translate3d(0,-15px,0) scaleY(1.05);transform:translate3d(0,-15px,0) scaleY(1.05)}80%{-webkit-transition-timing-function:cubic-bezier(0.215,0.61,0.355,1);transition-timing-function:cubic-bezier(0.215,0.61,0.355,1);-webkit-transform:translate3d(0,0,0) scaleY(0.95);transform:translate3d(0,0,0) scaleY(0.95)}90%{-webkit-transform:translate3d(0,-4px,0) scaleY(1.02);transform:translate3d(0,-4px,0) scaleY(1.02)}}.bounce{-webkit-animation-name:bounce;animation-name:bounce;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes flash{from,50%,to{opacity:1}25%,75%{opacity:0}}@keyframes flash{from,50%,to{opacity:1}25%,75%{opacity:0}}.flash{-webkit-animation-name:flash;animation-name:flash}@-webkit-keyframes pulse{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes pulse{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}50%{-webkit-transform:scale3d(1.05,1.05,1.05);transform:scale3d(1.05,1.05,1.05)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.pulse{-webkit-animation-name:pulse;animation-name:pulse;-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes rubberBand{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,0.75,1);transform:scale3d(1.25,0.75,1)}40%{-webkit-transform:scale3d(0.75,1.25,1);transform:scale3d(0.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,0.85,1);transform:scale3d(1.15,0.85,1)}65%{-webkit-transform:scale3d(0.95,1.05,1);transform:scale3d(0.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,0.95,1);transform:scale3d(1.05,0.95,1)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes rubberBand{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}30%{-webkit-transform:scale3d(1.25,0.75,1);transform:scale3d(1.25,0.75,1)}40%{-webkit-transform:scale3d(0.75,1.25,1);transform:scale3d(0.75,1.25,1)}50%{-webkit-transform:scale3d(1.15,0.85,1);transform:scale3d(1.15,0.85,1)}65%{-webkit-transform:scale3d(0.95,1.05,1);transform:scale3d(0.95,1.05,1)}75%{-webkit-transform:scale3d(1.05,0.95,1);transform:scale3d(1.05,0.95,1)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.rubberBand{-webkit-animation-name:rubberBand;animation-name:rubberBand}@-webkit-keyframes shakeX{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}@keyframes shakeX{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(-10px,0,0);transform:translate3d(-10px,0,0)}20%,40%,60%,80%{-webkit-transform:translate3d(10px,0,0);transform:translate3d(10px,0,0)}}.shakeX{-webkit-animation-name:shakeX;animation-name:shakeX}@-webkit-keyframes shakeY{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}@keyframes shakeY{from,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}10%,30%,50%,70%,90%{-webkit-transform:translate3d(0,-10px,0);transform:translate3d(0,-10px,0)}20%,40%,60%,80%{-webkit-transform:translate3d(0,10px,0);transform:translate3d(0,10px,0)}}.shakeY{-webkit-animation-name:shakeY;animation-name:shakeY}@-webkit-keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}@keyframes headShake{0%{-webkit-transform:translateX(0);transform:translateX(0)}6.5%{-webkit-transform:translateX(-6px) rotateY(-9deg);transform:translateX(-6px) rotateY(-9deg)}18.5%{-webkit-transform:translateX(5px) rotateY(7deg);transform:translateX(5px) rotateY(7deg)}31.5%{-webkit-transform:translateX(-3px) rotateY(-5deg);transform:translateX(-3px) rotateY(-5deg)}43.5%{-webkit-transform:translateX(2px) rotateY(3deg);transform:translateX(2px) rotateY(3deg)}50%{-webkit-transform:translateX(0);transform:translateX(0)}}.headShake{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;-webkit-animation-name:headShake;animation-name:headShake}@-webkit-keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}@keyframes swing{20%{-webkit-transform:rotate3d(0,0,1,15deg);transform:rotate3d(0,0,1,15deg)}40%{-webkit-transform:rotate3d(0,0,1,-10deg);transform:rotate3d(0,0,1,-10deg)}60%{-webkit-transform:rotate3d(0,0,1,5deg);transform:rotate3d(0,0,1,5deg)}80%{-webkit-transform:rotate3d(0,0,1,-5deg);transform:rotate3d(0,0,1,-5deg)}to{-webkit-transform:rotate3d(0,0,1,0deg);transform:rotate3d(0,0,1,0deg)}}.swing{-webkit-transform-origin:top center;transform-origin:top center;-webkit-animation-name:swing;animation-name:swing}@-webkit-keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(0.9,0.9,0.9) rotate3d(0,0,1,-3deg);transform:scale3d(0.9,0.9,0.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes tada{from{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}10%,20%{-webkit-transform:scale3d(0.9,0.9,0.9) rotate3d(0,0,1,-3deg);transform:scale3d(0.9,0.9,0.9) rotate3d(0,0,1,-3deg)}30%,50%,70%,90%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,3deg)}40%,60%,80%{-webkit-transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg);transform:scale3d(1.1,1.1,1.1) rotate3d(0,0,1,-3deg)}to{-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.tada{-webkit-animation-name:tada;animation-name:tada}@-webkit-keyframes wobble{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes wobble{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}15%{-webkit-transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg);transform:translate3d(-25%,0,0) rotate3d(0,0,1,-5deg)}30%{-webkit-transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg);transform:translate3d(20%,0,0) rotate3d(0,0,1,3deg)}45%{-webkit-transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg);transform:translate3d(-15%,0,0) rotate3d(0,0,1,-3deg)}60%{-webkit-transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg);transform:translate3d(10%,0,0) rotate3d(0,0,1,2deg)}75%{-webkit-transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg);transform:translate3d(-5%,0,0) rotate3d(0,0,1,-1deg)}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.wobble{-webkit-animation-name:wobble;animation-name:wobble}@-webkit-keyframes jello{from,11.1%,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-0.78125deg) skewY(-0.78125deg);transform:skewX(-0.78125deg) skewY(-0.78125deg)}77.7%{-webkit-transform:skewX(0.390625deg) skewY(0.390625deg);transform:skewX(0.390625deg) skewY(0.390625deg)}88.8%{-webkit-transform:skewX(-0.1953125deg) skewY(-0.1953125deg);transform:skewX(-0.1953125deg) skewY(-0.1953125deg)}}@keyframes jello{from,11.1%,to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}22.2%{-webkit-transform:skewX(-12.5deg) skewY(-12.5deg);transform:skewX(-12.5deg) skewY(-12.5deg)}33.3%{-webkit-transform:skewX(6.25deg) skewY(6.25deg);transform:skewX(6.25deg) skewY(6.25deg)}44.4%{-webkit-transform:skewX(-3.125deg) skewY(-3.125deg);transform:skewX(-3.125deg) skewY(-3.125deg)}55.5%{-webkit-transform:skewX(1.5625deg) skewY(1.5625deg);transform:skewX(1.5625deg) skewY(1.5625deg)}66.6%{-webkit-transform:skewX(-0.78125deg) skewY(-0.78125deg);transform:skewX(-0.78125deg) skewY(-0.78125deg)}77.7%{-webkit-transform:skewX(0.390625deg) skewY(0.390625deg);transform:skewX(0.390625deg) skewY(0.390625deg)}88.8%{-webkit-transform:skewX(-0.1953125deg) skewY(-0.1953125deg);transform:skewX(-0.1953125deg) skewY(-0.1953125deg)}}.jello{-webkit-animation-name:jello;animation-name:jello;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}@keyframes heartBeat{0%{-webkit-transform:scale(1);transform:scale(1)}14%{-webkit-transform:scale(1.3);transform:scale(1.3)}28%{-webkit-transform:scale(1);transform:scale(1)}42%{-webkit-transform:scale(1.3);transform:scale(1.3)}70%{-webkit-transform:scale(1);transform:scale(1)}}.heartBeat{-webkit-animation-name:heartBeat;animation-name:heartBeat;-webkit-animation-duration:calc(var(--animate-duration) * 1.3);animation-duration:calc(var(--animate-duration) * 1.3);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}@-webkit-keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(0.7);transform:translateY(-1200px) scale(0.7);opacity:0.7}80%{-webkit-transform:translateY(0px) scale(0.7);transform:translateY(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInDown{0%{-webkit-transform:translateY(-1200px) scale(0.7);transform:translateY(-1200px) scale(0.7);opacity:0.7}80%{-webkit-transform:translateY(0px) scale(0.7);transform:translateY(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.backInDown{-webkit-animation-name:backInDown;animation-name:backInDown}@-webkit-keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(0.7);transform:translateX(-2000px) scale(0.7);opacity:0.7}80%{-webkit-transform:translateX(0px) scale(0.7);transform:translateX(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInLeft{0%{-webkit-transform:translateX(-2000px) scale(0.7);transform:translateX(-2000px) scale(0.7);opacity:0.7}80%{-webkit-transform:translateX(0px) scale(0.7);transform:translateX(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.backInLeft{-webkit-animation-name:backInLeft;animation-name:backInLeft}@-webkit-keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(0.7);transform:translateX(2000px) scale(0.7);opacity:0.7}80%{-webkit-transform:translateX(0px) scale(0.7);transform:translateX(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInRight{0%{-webkit-transform:translateX(2000px) scale(0.7);transform:translateX(2000px) scale(0.7);opacity:0.7}80%{-webkit-transform:translateX(0px) scale(0.7);transform:translateX(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.backInRight{-webkit-animation-name:backInRight;animation-name:backInRight}@-webkit-keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(0.7);transform:translateY(1200px) scale(0.7);opacity:0.7}80%{-webkit-transform:translateY(0px) scale(0.7);transform:translateY(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@keyframes backInUp{0%{-webkit-transform:translateY(1200px) scale(0.7);transform:translateY(1200px) scale(0.7);opacity:0.7}80%{-webkit-transform:translateY(0px) scale(0.7);transform:translateY(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:scale(1);transform:scale(1);opacity:1}}.backInUp{-webkit-animation-name:backInUp;animation-name:backInUp}@-webkit-keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0px) scale(0.7);transform:translateY(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:translateY(700px) scale(0.7);transform:translateY(700px) scale(0.7);opacity:0.7}}@keyframes backOutDown{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0px) scale(0.7);transform:translateY(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:translateY(700px) scale(0.7);transform:translateY(700px) scale(0.7);opacity:0.7}}.backOutDown{-webkit-animation-name:backOutDown;animation-name:backOutDown}@-webkit-keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0px) scale(0.7);transform:translateX(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:translateX(-2000px) scale(0.7);transform:translateX(-2000px) scale(0.7);opacity:0.7}}@keyframes backOutLeft{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0px) scale(0.7);transform:translateX(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:translateX(-2000px) scale(0.7);transform:translateX(-2000px) scale(0.7);opacity:0.7}}.backOutLeft{-webkit-animation-name:backOutLeft;animation-name:backOutLeft}@-webkit-keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0px) scale(0.7);transform:translateX(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:translateX(2000px) scale(0.7);transform:translateX(2000px) scale(0.7);opacity:0.7}}@keyframes backOutRight{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateX(0px) scale(0.7);transform:translateX(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:translateX(2000px) scale(0.7);transform:translateX(2000px) scale(0.7);opacity:0.7}}.backOutRight{-webkit-animation-name:backOutRight;animation-name:backOutRight}@-webkit-keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0px) scale(0.7);transform:translateY(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:translateY(-700px) scale(0.7);transform:translateY(-700px) scale(0.7);opacity:0.7}}@keyframes backOutUp{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}20%{-webkit-transform:translateY(0px) scale(0.7);transform:translateY(0px) scale(0.7);opacity:0.7}100%{-webkit-transform:translateY(-700px) scale(0.7);transform:translateY(-700px) scale(0.7);opacity:0.7}}.backOutUp{-webkit-animation-name:backOutUp;animation-name:backOutUp}@-webkit-keyframes bounceIn{from,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}0%{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(0.9,0.9,0.9);transform:scale3d(0.9,0.9,0.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(0.97,0.97,0.97);transform:scale3d(0.97,0.97,0.97)}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}@keyframes bounceIn{from,20%,40%,60%,80%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}0%{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}20%{-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}40%{-webkit-transform:scale3d(0.9,0.9,0.9);transform:scale3d(0.9,0.9,0.9)}60%{opacity:1;-webkit-transform:scale3d(1.03,1.03,1.03);transform:scale3d(1.03,1.03,1.03)}80%{-webkit-transform:scale3d(0.97,0.97,0.97);transform:scale3d(0.97,0.97,0.97)}to{opacity:1;-webkit-transform:scale3d(1,1,1);transform:scale3d(1,1,1)}}.bounceIn{-webkit-animation-duration:calc(var(--animate-duration) * 0.75);animation-duration:calc(var(--animate-duration) * 0.75);-webkit-animation-name:bounceIn;animation-name:bounceIn}@-webkit-keyframes bounceInDown{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(0.9);transform:translate3d(0,25px,0) scaleY(0.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(0.95);transform:translate3d(0,-10px,0) scaleY(0.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(0.985);transform:translate3d(0,5px,0) scaleY(0.985)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInDown{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}0%{opacity:0;-webkit-transform:translate3d(0,-3000px,0) scaleY(3);transform:translate3d(0,-3000px,0) scaleY(3)}60%{opacity:1;-webkit-transform:translate3d(0,25px,0) scaleY(0.9);transform:translate3d(0,25px,0) scaleY(0.9)}75%{-webkit-transform:translate3d(0,-10px,0) scaleY(0.95);transform:translate3d(0,-10px,0) scaleY(0.95)}90%{-webkit-transform:translate3d(0,5px,0) scaleY(0.985);transform:translate3d(0,5px,0) scaleY(0.985)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.bounceInDown{-webkit-animation-name:bounceInDown;animation-name:bounceInDown}@-webkit-keyframes bounceInLeft{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(0.98);transform:translate3d(-10px,0,0) scaleX(0.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(0.995);transform:translate3d(5px,0,0) scaleX(0.995)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInLeft{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}0%{opacity:0;-webkit-transform:translate3d(-3000px,0,0) scaleX(3);transform:translate3d(-3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(25px,0,0) scaleX(1);transform:translate3d(25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(-10px,0,0) scaleX(0.98);transform:translate3d(-10px,0,0) scaleX(0.98)}90%{-webkit-transform:translate3d(5px,0,0) scaleX(0.995);transform:translate3d(5px,0,0) scaleX(0.995)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.bounceInLeft{-webkit-animation-name:bounceInLeft;animation-name:bounceInLeft}@-webkit-keyframes bounceInRight{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(0.98);transform:translate3d(10px,0,0) scaleX(0.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(0.995);transform:translate3d(-5px,0,0) scaleX(0.995)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInRight{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}from{opacity:0;-webkit-transform:translate3d(3000px,0,0) scaleX(3);transform:translate3d(3000px,0,0) scaleX(3)}60%{opacity:1;-webkit-transform:translate3d(-25px,0,0) scaleX(1);transform:translate3d(-25px,0,0) scaleX(1)}75%{-webkit-transform:translate3d(10px,0,0) scaleX(0.98);transform:translate3d(10px,0,0) scaleX(0.98)}90%{-webkit-transform:translate3d(-5px,0,0) scaleX(0.995);transform:translate3d(-5px,0,0) scaleX(0.995)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.bounceInRight{-webkit-animation-name:bounceInRight;animation-name:bounceInRight}@-webkit-keyframes bounceInUp{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}from{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(0.9);transform:translate3d(0,-20px,0) scaleY(0.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(0.95);transform:translate3d(0,10px,0) scaleY(0.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(0.985);transform:translate3d(0,-5px,0) scaleY(0.985)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes bounceInUp{from,60%,75%,90%,to{-webkit-animation-timing-function:cubic-bezier(0.215,0.61,0.355,1);animation-timing-function:cubic-bezier(0.215,0.61,0.355,1)}from{opacity:0;-webkit-transform:translate3d(0,3000px,0) scaleY(5);transform:translate3d(0,3000px,0) scaleY(5)}60%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(0.9);transform:translate3d(0,-20px,0) scaleY(0.9)}75%{-webkit-transform:translate3d(0,10px,0) scaleY(0.95);transform:translate3d(0,10px,0) scaleY(0.95)}90%{-webkit-transform:translate3d(0,-5px,0) scaleY(0.985);transform:translate3d(0,-5px,0) scaleY(0.985)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.bounceInUp{-webkit-animation-name:bounceInUp;animation-name:bounceInUp}@-webkit-keyframes bounceOut{20%{-webkit-transform:scale3d(0.9,0.9,0.9);transform:scale3d(0.9,0.9,0.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}}@keyframes bounceOut{20%{-webkit-transform:scale3d(0.9,0.9,0.9);transform:scale3d(0.9,0.9,0.9)}50%,55%{opacity:1;-webkit-transform:scale3d(1.1,1.1,1.1);transform:scale3d(1.1,1.1,1.1)}to{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}}.bounceOut{-webkit-animation-duration:calc(var(--animate-duration) * 0.75);animation-duration:calc(var(--animate-duration) * 0.75);-webkit-animation-name:bounceOut;animation-name:bounceOut}@-webkit-keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(0.985);transform:translate3d(0,10px,0) scaleY(0.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(0.9);transform:translate3d(0,-20px,0) scaleY(0.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}@keyframes bounceOutDown{20%{-webkit-transform:translate3d(0,10px,0) scaleY(0.985);transform:translate3d(0,10px,0) scaleY(0.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,-20px,0) scaleY(0.9);transform:translate3d(0,-20px,0) scaleY(0.9)}to{opacity:0;-webkit-transform:translate3d(0,2000px,0) scaleY(3);transform:translate3d(0,2000px,0) scaleY(3)}}.bounceOutDown{-webkit-animation-name:bounceOutDown;animation-name:bounceOutDown}@-webkit-keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(0.9);transform:translate3d(20px,0,0) scaleX(0.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}@keyframes bounceOutLeft{20%{opacity:1;-webkit-transform:translate3d(20px,0,0) scaleX(0.9);transform:translate3d(20px,0,0) scaleX(0.9)}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0) scaleX(2);transform:translate3d(-2000px,0,0) scaleX(2)}}.bounceOutLeft{-webkit-animation-name:bounceOutLeft;animation-name:bounceOutLeft}@-webkit-keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(0.9);transform:translate3d(-20px,0,0) scaleX(0.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}@keyframes bounceOutRight{20%{opacity:1;-webkit-transform:translate3d(-20px,0,0) scaleX(0.9);transform:translate3d(-20px,0,0) scaleX(0.9)}to{opacity:0;-webkit-transform:translate3d(2000px,0,0) scaleX(2);transform:translate3d(2000px,0,0) scaleX(2)}}.bounceOutRight{-webkit-animation-name:bounceOutRight;animation-name:bounceOutRight}@-webkit-keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(0.985);transform:translate3d(0,-10px,0) scaleY(0.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(0.9);transform:translate3d(0,20px,0) scaleY(0.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}@keyframes bounceOutUp{20%{-webkit-transform:translate3d(0,-10px,0) scaleY(0.985);transform:translate3d(0,-10px,0) scaleY(0.985)}40%,45%{opacity:1;-webkit-transform:translate3d(0,20px,0) scaleY(0.9);transform:translate3d(0,20px,0) scaleY(0.9)}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0) scaleY(3);transform:translate3d(0,-2000px,0) scaleY(3)}}.bounceOutUp{-webkit-animation-name:bounceOutUp;animation-name:bounceOutUp}@-webkit-keyframes fadeIn{from{opacity:0}to{opacity:1}}@keyframes fadeIn{from{opacity:0}to{opacity:1}}.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn}@-webkit-keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInDown{from{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInDown{-webkit-animation-name:fadeInDown;animation-name:fadeInDown}@-webkit-keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInDownBig{from{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInDownBig{-webkit-animation-name:fadeInDownBig;animation-name:fadeInDownBig}@-webkit-keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInLeft{from{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInLeft{-webkit-animation-name:fadeInLeft;animation-name:fadeInLeft}@-webkit-keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInLeftBig{from{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInLeftBig{-webkit-animation-name:fadeInLeftBig;animation-name:fadeInLeftBig}@-webkit-keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInRight{from{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInRight{-webkit-animation-name:fadeInRight;animation-name:fadeInRight}@-webkit-keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInRightBig{from{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInRightBig{-webkit-animation-name:fadeInRightBig;animation-name:fadeInRightBig}@-webkit-keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInUp{from{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInUp{-webkit-animation-name:fadeInUp;animation-name:fadeInUp}@-webkit-keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInUpBig{from{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInUpBig{-webkit-animation-name:fadeInUpBig;animation-name:fadeInUpBig}@-webkit-keyframes fadeInTopLeft{from{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInTopLeft{from{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInTopLeft{-webkit-animation-name:fadeInTopLeft;animation-name:fadeInTopLeft}@-webkit-keyframes fadeInTopRight{from{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInTopRight{from{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInTopRight{-webkit-animation-name:fadeInTopRight;animation-name:fadeInTopRight}@-webkit-keyframes fadeInBottomLeft{from{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInBottomLeft{from{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInBottomLeft{-webkit-animation-name:fadeInBottomLeft;animation-name:fadeInBottomLeft}@-webkit-keyframes fadeInBottomRight{from{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes fadeInBottomRight{from{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.fadeInBottomRight{-webkit-animation-name:fadeInBottomRight;animation-name:fadeInBottomRight}@-webkit-keyframes fadeOut{from{opacity:1}to{opacity:0}}@keyframes fadeOut{from{opacity:1}to{opacity:0}}.fadeOut{-webkit-animation-name:fadeOut;animation-name:fadeOut}@-webkit-keyframes fadeOutDown{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes fadeOutDown{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.fadeOutDown{-webkit-animation-name:fadeOutDown;animation-name:fadeOutDown}@-webkit-keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}@keyframes fadeOutDownBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,2000px,0);transform:translate3d(0,2000px,0)}}.fadeOutDownBig{-webkit-animation-name:fadeOutDownBig;animation-name:fadeOutDownBig}@-webkit-keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes fadeOutLeft{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.fadeOutLeft{-webkit-animation-name:fadeOutLeft;animation-name:fadeOutLeft}@-webkit-keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}@keyframes fadeOutLeftBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(-2000px,0,0);transform:translate3d(-2000px,0,0)}}.fadeOutLeftBig{-webkit-animation-name:fadeOutLeftBig;animation-name:fadeOutLeftBig}@-webkit-keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes fadeOutRight{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.fadeOutRight{-webkit-animation-name:fadeOutRight;animation-name:fadeOutRight}@-webkit-keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}@keyframes fadeOutRightBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(2000px,0,0);transform:translate3d(2000px,0,0)}}.fadeOutRightBig{-webkit-animation-name:fadeOutRightBig;animation-name:fadeOutRightBig}@-webkit-keyframes fadeOutUp{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes fadeOutUp{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.fadeOutUp{-webkit-animation-name:fadeOutUp;animation-name:fadeOutUp}@-webkit-keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}@keyframes fadeOutUpBig{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(0,-2000px,0);transform:translate3d(0,-2000px,0)}}.fadeOutUpBig{-webkit-animation-name:fadeOutUpBig;animation-name:fadeOutUpBig}@-webkit-keyframes fadeOutTopLeft{from{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}@keyframes fadeOutTopLeft{from{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{opacity:0;-webkit-transform:translate3d(-100%,-100%,0);transform:translate3d(-100%,-100%,0)}}.fadeOutTopLeft{-webkit-animation-name:fadeOutTopLeft;animation-name:fadeOutTopLeft}@-webkit-keyframes fadeOutTopRight{from{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}@keyframes fadeOutTopRight{from{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{opacity:0;-webkit-transform:translate3d(100%,-100%,0);transform:translate3d(100%,-100%,0)}}.fadeOutTopRight{-webkit-animation-name:fadeOutTopRight;animation-name:fadeOutTopRight}@-webkit-keyframes fadeOutBottomRight{from{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}@keyframes fadeOutBottomRight{from{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{opacity:0;-webkit-transform:translate3d(100%,100%,0);transform:translate3d(100%,100%,0)}}.fadeOutBottomRight{-webkit-animation-name:fadeOutBottomRight;animation-name:fadeOutBottomRight}@-webkit-keyframes fadeOutBottomLeft{from{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}@keyframes fadeOutBottomLeft{from{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{opacity:0;-webkit-transform:translate3d(-100%,100%,0);transform:translate3d(-100%,100%,0)}}.fadeOutBottomLeft{-webkit-animation-name:fadeOutBottomLeft;animation-name:fadeOutBottomLeft}@-webkit-keyframes flip{from{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(0.95,0.95,0.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(0.95,0.95,0.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}@keyframes flip{from{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,-360deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}40%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-190deg);-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}50%{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,150px) rotate3d(0,1,0,-170deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}80%{-webkit-transform:perspective(400px) scale3d(0.95,0.95,0.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(0.95,0.95,0.95) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}to{-webkit-transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);transform:perspective(400px) scale3d(1,1,1) translate3d(0,0,0) rotate3d(0,1,0,0deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}}.animated.flip{-webkit-backface-visibility:visible;backface-visibility:visible;-webkit-animation-name:flip;animation-name:flip}@-webkit-keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{opacity:1;-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInX{from{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(1,0,0,10deg);transform:perspective(400px) rotate3d(1,0,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-5deg);transform:perspective(400px) rotate3d(1,0,0,-5deg)}to{opacity:1;-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInX{-webkit-backface-visibility:visible !important;backface-visibility:visible !important;-webkit-animation-name:flipInX;animation-name:flipInX}@-webkit-keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}to{opacity:1;-webkit-transform:perspective(400px);transform:perspective(400px)}}@keyframes flipInY{from{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in;opacity:0}40%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-20deg);transform:perspective(400px) rotate3d(0,1,0,-20deg);-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}60%{-webkit-transform:perspective(400px) rotate3d(0,1,0,10deg);transform:perspective(400px) rotate3d(0,1,0,10deg);opacity:1}80%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-5deg);transform:perspective(400px) rotate3d(0,1,0,-5deg)}to{opacity:1;-webkit-transform:perspective(400px);transform:perspective(400px)}}.flipInY{-webkit-backface-visibility:visible !important;backface-visibility:visible !important;-webkit-animation-name:flipInY;animation-name:flipInY}@-webkit-keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}@keyframes flipOutX{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(1,0,0,-20deg);transform:perspective(400px) rotate3d(1,0,0,-20deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(1,0,0,90deg);transform:perspective(400px) rotate3d(1,0,0,90deg);opacity:0}}.flipOutX{-webkit-animation-duration:calc(var(--animate-duration) * 0.75);animation-duration:calc(var(--animate-duration) * 0.75);-webkit-animation-name:flipOutX;animation-name:flipOutX;-webkit-backface-visibility:visible !important;backface-visibility:visible !important}@-webkit-keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}@keyframes flipOutY{from{-webkit-transform:perspective(400px);transform:perspective(400px)}30%{-webkit-transform:perspective(400px) rotate3d(0,1,0,-15deg);transform:perspective(400px) rotate3d(0,1,0,-15deg);opacity:1}to{-webkit-transform:perspective(400px) rotate3d(0,1,0,90deg);transform:perspective(400px) rotate3d(0,1,0,90deg);opacity:0}}.flipOutY{-webkit-animation-duration:calc(var(--animate-duration) * 0.75);animation-duration:calc(var(--animate-duration) * 0.75);-webkit-backface-visibility:visible !important;backface-visibility:visible !important;-webkit-animation-name:flipOutY;animation-name:flipOutY}@-webkit-keyframes lightSpeedInRight{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes lightSpeedInRight{from{-webkit-transform:translate3d(100%,0,0) skewX(-30deg);transform:translate3d(100%,0,0) skewX(-30deg);opacity:0}60%{-webkit-transform:skewX(20deg);transform:skewX(20deg);opacity:1}80%{-webkit-transform:skewX(-5deg);transform:skewX(-5deg)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.lightSpeedInRight{-webkit-animation-name:lightSpeedInRight;animation-name:lightSpeedInRight;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedInLeft{from{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes lightSpeedInLeft{from{-webkit-transform:translate3d(-100%,0,0) skewX(30deg);transform:translate3d(-100%,0,0) skewX(30deg);opacity:0}60%{-webkit-transform:skewX(-20deg);transform:skewX(-20deg);opacity:1}80%{-webkit-transform:skewX(5deg);transform:skewX(5deg)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.lightSpeedInLeft{-webkit-animation-name:lightSpeedInLeft;animation-name:lightSpeedInLeft;-webkit-animation-timing-function:ease-out;animation-timing-function:ease-out}@-webkit-keyframes lightSpeedOutRight{from{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}@keyframes lightSpeedOutRight{from{opacity:1}to{-webkit-transform:translate3d(100%,0,0) skewX(30deg);transform:translate3d(100%,0,0) skewX(30deg);opacity:0}}.lightSpeedOutRight{-webkit-animation-name:lightSpeedOutRight;animation-name:lightSpeedOutRight;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes lightSpeedOutLeft{from{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}@keyframes lightSpeedOutLeft{from{opacity:1}to{-webkit-transform:translate3d(-100%,0,0) skewX(-30deg);transform:translate3d(-100%,0,0) skewX(-30deg);opacity:0}}.lightSpeedOutLeft{-webkit-animation-name:lightSpeedOutLeft;animation-name:lightSpeedOutLeft;-webkit-animation-timing-function:ease-in;animation-timing-function:ease-in}@-webkit-keyframes rotateIn{from{-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateIn{from{-webkit-transform:rotate3d(0,0,1,-200deg);transform:rotate3d(0,0,1,-200deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.rotateIn{-webkit-animation-name:rotateIn;animation-name:rotateIn;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateInDownLeft{from{-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInDownLeft{from{-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.rotateInDownLeft{-webkit-animation-name:rotateInDownLeft;animation-name:rotateInDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInDownRight{from{-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInDownRight{from{-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.rotateInDownRight{-webkit-animation-name:rotateInDownRight;animation-name:rotateInDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateInUpLeft{from{-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInUpLeft{from{-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.rotateInUpLeft{-webkit-animation-name:rotateInUpLeft;animation-name:rotateInUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateInUpRight{from{-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}@keyframes rotateInUpRight{from{-webkit-transform:rotate3d(0,0,1,-90deg);transform:rotate3d(0,0,1,-90deg);opacity:0}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0);opacity:1}}.rotateInUpRight{-webkit-animation-name:rotateInUpRight;animation-name:rotateInUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOut{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}@keyframes rotateOut{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,200deg);transform:rotate3d(0,0,1,200deg);opacity:0}}.rotateOut{-webkit-animation-name:rotateOut;animation-name:rotateOut;-webkit-transform-origin:center;transform-origin:center}@-webkit-keyframes rotateOutDownLeft{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}@keyframes rotateOutDownLeft{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,45deg);transform:rotate3d(0,0,1,45deg);opacity:0}}.rotateOutDownLeft{-webkit-animation-name:rotateOutDownLeft;animation-name:rotateOutDownLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutDownRight{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutDownRight{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.rotateOutDownRight{-webkit-animation-name:rotateOutDownRight;animation-name:rotateOutDownRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes rotateOutUpLeft{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}@keyframes rotateOutUpLeft{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,-45deg);transform:rotate3d(0,0,1,-45deg);opacity:0}}.rotateOutUpLeft{-webkit-animation-name:rotateOutUpLeft;animation-name:rotateOutUpLeft;-webkit-transform-origin:left bottom;transform-origin:left bottom}@-webkit-keyframes rotateOutUpRight{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}@keyframes rotateOutUpRight{from{opacity:1}to{-webkit-transform:rotate3d(0,0,1,90deg);transform:rotate3d(0,0,1,90deg);opacity:0}}.rotateOutUpRight{-webkit-animation-name:rotateOutUpRight;animation-name:rotateOutUpRight;-webkit-transform-origin:right bottom;transform-origin:right bottom}@-webkit-keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}@keyframes hinge{0%{-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}20%,60%{-webkit-transform:rotate3d(0,0,1,80deg);transform:rotate3d(0,0,1,80deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out}40%,80%{-webkit-transform:rotate3d(0,0,1,60deg);transform:rotate3d(0,0,1,60deg);-webkit-animation-timing-function:ease-in-out;animation-timing-function:ease-in-out;opacity:1}to{-webkit-transform:translate3d(0,700px,0);transform:translate3d(0,700px,0);opacity:0}}.hinge{-webkit-animation-duration:calc(var(--animate-duration) * 2);animation-duration:calc(var(--animate-duration) * 2);-webkit-animation-name:hinge;animation-name:hinge;-webkit-transform-origin:top left;transform-origin:top left}@-webkit-keyframes jackInTheBox{from{opacity:0;-webkit-transform:scale(0.1) rotate(30deg);transform:scale(0.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}@keyframes jackInTheBox{from{opacity:0;-webkit-transform:scale(0.1) rotate(30deg);transform:scale(0.1) rotate(30deg);-webkit-transform-origin:center bottom;transform-origin:center bottom}50%{-webkit-transform:rotate(-10deg);transform:rotate(-10deg)}70%{-webkit-transform:rotate(3deg);transform:rotate(3deg)}to{opacity:1;-webkit-transform:scale(1);transform:scale(1)}}.jackInTheBox{-webkit-animation-name:jackInTheBox;animation-name:jackInTheBox}@-webkit-keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes rollIn{from{opacity:0;-webkit-transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg);transform:translate3d(-100%,0,0) rotate3d(0,0,1,-120deg)}to{opacity:1;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.rollIn{-webkit-animation-name:rollIn;animation-name:rollIn}@-webkit-keyframes rollOut{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}@keyframes rollOut{from{opacity:1}to{opacity:0;-webkit-transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg);transform:translate3d(100%,0,0) rotate3d(0,0,1,120deg)}}.rollOut{-webkit-animation-name:rollOut;animation-name:rollOut}@-webkit-keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}50%{opacity:1}to{opacity:1}}@keyframes zoomIn{from{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}50%{opacity:1}to{opacity:1}}.zoomIn{-webkit-animation-name:zoomIn;animation-name:zoomIn}@-webkit-keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,-1000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}to{opacity:1}}@keyframes zoomInDown{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,-1000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,-1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}to{opacity:1}}.zoomInDown{-webkit-animation-name:zoomInDown;animation-name:zoomInDown}@-webkit-keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(-1000px,0,0);transform:scale3d(0.1,0.1,0.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(10px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}to{opacity:1}}@keyframes zoomInLeft{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(-1000px,0,0);transform:scale3d(0.1,0.1,0.1) translate3d(-1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(10px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}to{opacity:1}}.zoomInLeft{-webkit-animation-name:zoomInLeft;animation-name:zoomInLeft}@-webkit-keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(1000px,0,0);transform:scale3d(0.1,0.1,0.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(-10px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}to{opacity:1}}@keyframes zoomInRight{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(1000px,0,0);transform:scale3d(0.1,0.1,0.1) translate3d(1000px,0,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(-10px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(-10px,0,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}to{opacity:1}}.zoomInRight{-webkit-animation-name:zoomInRight;animation-name:zoomInRight}@-webkit-keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,1000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}to{opacity:1}}@keyframes zoomInUp{from{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,1000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,1000px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}60%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}to{opacity:1}}.zoomInUp{-webkit-animation-name:zoomInUp;animation-name:zoomInUp}@-webkit-keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}to{opacity:0}}@keyframes zoomOut{from{opacity:1}50%{opacity:0;-webkit-transform:scale3d(0.3,0.3,0.3);transform:scale3d(0.3,0.3,0.3)}to{opacity:0}}.zoomOut{-webkit-animation-name:zoomOut;animation-name:zoomOut}@-webkit-keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}to{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,2000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}}@keyframes zoomOutDown{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,-60px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}to{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,2000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,2000px,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}}.zoomOutDown{-webkit-animation-name:zoomOutDown;animation-name:zoomOutDown;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(42px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(0.1) translate3d(-2000px,0,0);transform:scale(0.1) translate3d(-2000px,0,0)}}@keyframes zoomOutLeft{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(42px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(42px,0,0)}to{opacity:0;-webkit-transform:scale(0.1) translate3d(-2000px,0,0);transform:scale(0.1) translate3d(-2000px,0,0)}}.zoomOutLeft{-webkit-animation-name:zoomOutLeft;animation-name:zoomOutLeft;-webkit-transform-origin:left center;transform-origin:left center}@-webkit-keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(-42px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(0.1) translate3d(2000px,0,0);transform:scale(0.1) translate3d(2000px,0,0)}}@keyframes zoomOutRight{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(-42px,0,0);transform:scale3d(0.475,0.475,0.475) translate3d(-42px,0,0)}to{opacity:0;-webkit-transform:scale(0.1) translate3d(2000px,0,0);transform:scale(0.1) translate3d(2000px,0,0)}}.zoomOutRight{-webkit-animation-name:zoomOutRight;animation-name:zoomOutRight;-webkit-transform-origin:right center;transform-origin:right center}@-webkit-keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}to{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,-2000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}}@keyframes zoomOutUp{40%{opacity:1;-webkit-transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);transform:scale3d(0.475,0.475,0.475) translate3d(0,60px,0);-webkit-animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19);animation-timing-function:cubic-bezier(0.55,0.055,0.675,0.19)}to{opacity:0;-webkit-transform:scale3d(0.1,0.1,0.1) translate3d(0,-2000px,0);transform:scale3d(0.1,0.1,0.1) translate3d(0,-2000px,0);-webkit-animation-timing-function:cubic-bezier(0.175,0.885,0.32,1);animation-timing-function:cubic-bezier(0.175,0.885,0.32,1)}}.zoomOutUp{-webkit-animation-name:zoomOutUp;animation-name:zoomOutUp;-webkit-transform-origin:center bottom;transform-origin:center bottom}@-webkit-keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInDown{from{-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInDown{-webkit-animation-name:slideInDown;animation-name:slideInDown}@-webkit-keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInLeft{from{-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInLeft{-webkit-animation-name:slideInLeft;animation-name:slideInLeft}@-webkit-keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInRight{from{-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInRight{-webkit-animation-name:slideInRight;animation-name:slideInRight}@-webkit-keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}@keyframes slideInUp{from{-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0);visibility:visible}to{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}.slideInUp{-webkit-animation-name:slideInUp;animation-name:slideInUp}@-webkit-keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}@keyframes slideOutDown{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,100%,0);transform:translate3d(0,100%,0)}}.slideOutDown{-webkit-animation-name:slideOutDown;animation-name:slideOutDown}@-webkit-keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}@keyframes slideOutLeft{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}}.slideOutLeft{-webkit-animation-name:slideOutLeft;animation-name:slideOutLeft}@-webkit-keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}@keyframes slideOutRight{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}}.slideOutRight{-webkit-animation-name:slideOutRight;animation-name:slideOutRight}@-webkit-keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}@keyframes slideOutUp{from{-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}to{visibility:hidden;-webkit-transform:translate3d(0,-100%,0);transform:translate3d(0,-100%,0)}}.slideOutUp{-webkit-animation-name:slideOutUp;animation-name:slideOutUp}
@-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_30440{padding-right:0.00px;padding-left:0.00px;}#stacks_in_30440 > .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_30440 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_30440 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_30440 > .jack.width-static{width:500px}#stacks_in_30440 > .jack.width-flexible{width:100%}#stacks_in_30440 > .jack.margin-detailed{margin:10.00px 0.00px 10.00px 0.00px}#stacks_in_30440 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30440 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_30440 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_30440 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_30440 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_30440 > .jack::after{border-radius:0px}#stacks_in_30440 > .jack.border-detailed-radius,#stacks_in_30440 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_30440 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_30440 > .jack.bg-color{background-color:#89C5FF}#stacks_in_30440 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_30440 > .jack.bg-image:not(.glass){background-image:url(../kurse_files/bgImage-30440.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30440 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_30440 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_30440 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_30440 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30440 > .jack.bg-image:not(.glass){}#stacks_in_30440 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_30440 > .jack.bg-image.glass.after,#stacks_in_30440 > .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(../kurse_files/bgImage-30440.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30440 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_30440 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30440 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_30440 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_30440 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_30440 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_30440 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30440 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_30440 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_30440 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30440 > .jack.bg-image.glass.after,#stacks_in_30440 > .glass.jack.bg-image::after{}#stacks_in_30440 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30440 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_30440 > .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_30440 > .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_30440 > .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_30440 > .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_30440 > .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_30440 > .jack.peek-shadow::before,#stacks_in_30440 > .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_30440 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_30440 > .jack{overflow:hidden;}#stacks_in_30440 > .jack.height-static{height:20px}#stacks_in_30440 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_31842{}#stacks_in_31842 > .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_31842 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31842 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31842 > .jack.width-static{width:500px}#stacks_in_31842 > .jack.width-flexible{width:100%}#stacks_in_31842 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31842 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31842 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31842 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31842 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31842 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31842 > .jack::after{border-radius:15px}#stacks_in_31842 > .jack.border-detailed-radius,#stacks_in_31842 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31842 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31842 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31842 > .jack.bg-gradient{background-color:#FFEAF8}#stacks_in_31842 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31842 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31842 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31842 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31842 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31842 > .jack.bg-image:not(.glass){}#stacks_in_31842 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31842 > .jack.bg-image.glass.after,#stacks_in_31842 > .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_31842 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31842 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31842 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31842 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31842 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31842 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31842 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31842 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31842 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31842 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31842 > .jack.bg-image.glass.after,#stacks_in_31842 > .glass.jack.bg-image::after{}#stacks_in_31842 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31842 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31842 > .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_31842 > .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_31842 > .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_31842 > .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_31842 > .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_31842 > .jack.peek-shadow::before,#stacks_in_31842 > .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_31842 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31842 > .jack{overflow:hidden;}#stacks_in_31842 > .jack.height-static{height:100px}#stacks_in_31842 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31844Calligrapher{			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_31844Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31844Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31844Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31844Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31844Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31844Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31844Calligrapher h6, .stacks_in_31844Calligrapher h5, .stacks_in_31844Calligrapher h4, .stacks_in_31844Calligrapher h3, .stacks_in_31844Calligrapher h2, .stacks_in_31844Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31844Calligrapher, .stacks_in_31844Calligrapher h1, .stacks_in_31844Calligrapher h2, .stacks_in_31844Calligrapher h3, .stacks_in_31844Calligrapher h4, .stacks_in_31844Calligrapher h5, .stacks_in_31844Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31844Calligrapher, .stacks_in_31844Calligrapher h1, .stacks_in_31844Calligrapher h2, .stacks_in_31844Calligrapher h3, .stacks_in_31844Calligrapher h4, .stacks_in_31844Calligrapher h5, .stacks_in_31844Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31844targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31844Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31844Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31844Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31844Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_31845x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31845x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_31845x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31845 {
	margin: 40px 0px 30px 0px;
}

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

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



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

#stacks_in_40446 {
	line-height: 2em;
}
#stacks_in_38683 *,
#stacks_in_38683 *:before,
#stacks_in_38683 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



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

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

#stacks_in_31882 {
	font-weight: lighter;
}
#stacks_in_2214 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_2214 .jwresp_col{overflow:hidden;margin:0;width:49%; float:left;}#stacks_in_2214 #jwresp_col2_stacks_in_2214{ float:right; width:49%}@media screen and (max-width:500px){#stacks_in_2214 #jwresp_col1_stacks_in_2214,#stacks_in_2214 #jwresp_col2_stacks_in_2214{width:100%;float:none;display:block}#stacks_in_2214 #jwresp_col1_stacks_in_2214{margin-bottom:15px}}
#stacks_in_2224 *,
#stacks_in_2224 *:before,
#stacks_in_2224 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



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

#stacks_in_31886 {
	font-weight: lighter;
}
#stacks_in_31892{padding-left:0px;padding-right:0px;}#stacks_in_31892 > .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_31892 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31892 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31892 > .jack.width-static{width:500px}#stacks_in_31892 > .jack.width-flexible{width:100%}#stacks_in_31892 > .jack.margin-detailed{margin:1.00px 0.00px 10.00px 0.00px}#stacks_in_31892 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31892 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31892 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31892 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31892 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31892 > .jack::after{border-radius:0px}#stacks_in_31892 > .jack.border-detailed-radius,#stacks_in_31892 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31892 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31892 > .jack.bg-color{background-color:#E9E9E9}#stacks_in_31892 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_31892 > .jack.bg-image:not(.glass){background-image:url(../kurse_files/bgImage-31892.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_31892 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31892 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31892 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_31892 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31892 > .jack.bg-image:not(.glass){}#stacks_in_31892 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31892 > .jack.bg-image.glass.after,#stacks_in_31892 > .glass.jack.bg-image::after{opacity:0.50;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url(../kurse_files/bgImage-31892.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_31892 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31892 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31892 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31892 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31892 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31892 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31892 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31892 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_31892 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31892 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31892 > .jack.bg-image.glass.after,#stacks_in_31892 > .glass.jack.bg-image::after{}#stacks_in_31892 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31892 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31892 > .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_31892 > .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_31892 > .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_31892 > .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_31892 > .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_31892 > .jack.peek-shadow::before,#stacks_in_31892 > .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_31892 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31892 > .jack{overflow:hidden;}#stacks_in_31892 > .jack.height-static{height:5px}#stacks_in_31892 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31904Calligrapher{			font-size: 110% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31904Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31904Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31904Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31904Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31904Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31904Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31904Calligrapher h6, .stacks_in_31904Calligrapher h5, .stacks_in_31904Calligrapher h4, .stacks_in_31904Calligrapher h3, .stacks_in_31904Calligrapher h2, .stacks_in_31904Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31904Calligrapher, .stacks_in_31904Calligrapher h1, .stacks_in_31904Calligrapher h2, .stacks_in_31904Calligrapher h3, .stacks_in_31904Calligrapher h4, .stacks_in_31904Calligrapher h5, .stacks_in_31904Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31904Calligrapher, .stacks_in_31904Calligrapher h1, .stacks_in_31904Calligrapher h2, .stacks_in_31904Calligrapher h3, .stacks_in_31904Calligrapher h4, .stacks_in_31904Calligrapher h5, .stacks_in_31904Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31904targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31904Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31904Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31904Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31904Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31904 {
	margin: 20px 15px 15px 15px;
}

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

#stacks_in_31907 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_31940{padding-left:0px;padding-right:0px;}#stacks_in_31940 > .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_31940 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31940 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31940 > .jack.width-static{width:500px}#stacks_in_31940 > .jack.width-flexible{width:100%}#stacks_in_31940 > .jack.margin-detailed{margin:1.00px 0.00px 10.00px 0.00px}#stacks_in_31940 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31940 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31940 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31940 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31940 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31940 > .jack::after{border-radius:0px}#stacks_in_31940 > .jack.border-detailed-radius,#stacks_in_31940 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31940 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31940 > .jack.bg-color{background-color:#E9E9E9}#stacks_in_31940 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_31940 > .jack.bg-image:not(.glass){background-image:url(../kurse_files/bgImage-31940.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_31940 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31940 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31940 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_31940 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31940 > .jack.bg-image:not(.glass){}#stacks_in_31940 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31940 > .jack.bg-image.glass.after,#stacks_in_31940 > .glass.jack.bg-image::after{opacity:0.50;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url(../kurse_files/bgImage-31940.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_31940 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31940 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31940 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31940 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31940 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31940 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31940 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31940 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_31940 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31940 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31940 > .jack.bg-image.glass.after,#stacks_in_31940 > .glass.jack.bg-image::after{}#stacks_in_31940 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31940 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31940 > .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_31940 > .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_31940 > .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_31940 > .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_31940 > .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_31940 > .jack.peek-shadow::before,#stacks_in_31940 > .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_31940 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31940 > .jack{overflow:hidden;}#stacks_in_31940 > .jack.height-static{height:5px}#stacks_in_31940 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_31913{}#stacks_in_31913 > .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_31913 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31913 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31913 > .jack.width-static{width:500px}#stacks_in_31913 > .jack.width-flexible{width:100%}#stacks_in_31913 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31913 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31913 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31913 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31913 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31913 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31913 > .jack::after{border-radius:15px}#stacks_in_31913 > .jack.border-detailed-radius,#stacks_in_31913 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_31913 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31913 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31913 > .jack.bg-gradient{background-color:#FFEAF8}#stacks_in_31913 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31913 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31913 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31913 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31913 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31913 > .jack.bg-image:not(.glass){}#stacks_in_31913 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31913 > .jack.bg-image.glass.after,#stacks_in_31913 > .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_31913 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31913 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31913 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31913 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31913 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31913 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31913 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31913 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31913 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31913 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31913 > .jack.bg-image.glass.after,#stacks_in_31913 > .glass.jack.bg-image::after{}#stacks_in_31913 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31913 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31913 > .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_31913 > .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_31913 > .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_31913 > .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_31913 > .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_31913 > .jack.peek-shadow::before,#stacks_in_31913 > .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_31913 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31913 > .jack{overflow:hidden;}#stacks_in_31913 > .jack.height-static{height:675px}#stacks_in_31913 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_2231 .ls-wrapper{margin:0 auto;clear:both;overflow:auto;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;max-width:none !important}#stacks_in_2231 .ls-wrapper .ls-preloader{background:url(../../rw_common/plugins/stacks/tabulous-images/loading.gif) #FFFFFF no-repeat center 75px;opacity:0.9;width:100%;height:200%;position:absolute;top:0;left:0}#stacks_in_2231 .ls-wrapper .liquid-slider{width:100%;margin:0;float:left;overflow:hidden;position:relative;-webkit-backface-visibility:hidden;border-radius:10px;}#stacks_in_2231 .ls-wrapper .panel-container{position:relative}#stacks_in_2231 .ls-wrapper .panel-container .fadeClass{position:absolute;top:0;left:0;display:none}#stacks_in_2231 .ls-wrapper .panel-container .panel{width:1030px;display:block;float:left;border:none;margin-bottom:0;padding:0;background:transparent;-webkit-backface-visibility:hidden}#stacks_in_2231 .ls-wrapper .panel-container .panel.fade{position:absolute;top:0;opacity:0}#stacks_in_2231 .ls-wrapper .panel-container .panel .panel-wrapper{padding:20px;position:relative}#stacks_in_2231 .ls-wrapper .panel-container .panel .panel-wrapper .tab-title{display:none;}#stacks_in_2231 .ls-wrapper .ls-nav{overflow:hidden;clear:both}@media screen and (max-width:600px){#stacks_in_2231 .ls-wrapper .ls-nav{margin-bottom:0;margin-top:0;padding:0}}#stacks_in_2231 .ls-wrapper .ls-nav ul{padding:0;clear:both;display:block;margin:auto;overflow:auto;-webkit-box-sizing:content-box;box-sizing:content-box;margin-bottom:0px;}#stacks_in_2231 .ls-wrapper .ls-nav ul li{display:inline;margin:0;-webkit-box-sizing:content-box;box-sizing:content-box}#stacks_in_2231 .ls-wrapper .ls-nav ul li a{display:block;float:left;text-decoration:none;margin-right:3px;color:#E6DCDE;font-size:12px;height:auto !important;-webkit-transition-property:background,color;transition-property:background,color;-webkit-transition-duration:250ms;transition-duration:250ms;-webkit-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out;text-align:center;background:#8D8583;padding:6px;}#stacks_in_2231 .ls-wrapper .ls-nav ul li a:hover{background:#8C0043;color:#FFFFFF}#stacks_in_2231 .ls-wrapper .ls-nav ul li a.current{background:#8C0043;color:#FFFFFF}#stacks_in_2231 .ls-wrapper .ls-nav ul li a.current h1,#stacks_in_2231 .ls-wrapper .ls-nav ul li a.current h2,#stacks_in_2231 .ls-wrapper .ls-nav ul li a.current h3,#stacks_in_2231 .ls-wrapper .ls-nav ul li a.current h4,#stacks_in_2231 .ls-wrapper .ls-nav ul li a.current h5,#stacks_in_2231 .ls-wrapper .ls-nav ul li a.current h6,#stacks_in_2231 .ls-wrapper .ls-nav ul li a.current span{color:#FFFFFF}#stacks_in_2231 .ls-wrapper .ls-nav ul li a h1,#stacks_in_2231 .ls-wrapper .ls-nav ul li a h2,#stacks_in_2231 .ls-wrapper .ls-nav ul li a h3,#stacks_in_2231 .ls-wrapper .ls-nav ul li a h4,#stacks_in_2231 .ls-wrapper .ls-nav ul li a h5,#stacks_in_2231 .ls-wrapper .ls-nav ul li a h6,#stacks_in_2231 .ls-wrapper .ls-nav ul li a span{display:inline;font-size:12px;color:#E6DCDE;margin:0}#stacks_in_2231 .ls-wrapper .ls-nav ul li:first-child a{border-bottom-left-radius:0px;border-top-left-radius:0px;}#stacks_in_2231 .ls-wrapper .ls-nav ul li:last-child a{margin-right:0;border-bottom-right-radius:0px;border-top-right-radius:0px;}#stacks_in_2231 .ls-wrapper .ls-select-box{width:100%;height:35px;overflow:hidden;color:#FFFFFF;background:url(../kurse_files/tabulous-images/menu-gray.png) no-repeat 98% 50% #8C0043;border-top-left-radius:0px;border-top-right-radius:0px;}#stacks_in_2231 .ls-wrapper .ls-select-box select{width:110%;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;padding:5px 10px;font-size:110%;border:1px solid #78002F;height:35px;cursor:pointer;color:#FFFFFF;border-radius:0;border-top-left-radius:0px;border-top-right-radius:0px;}#stacks_in_2231 .ls-wrapper .ls-select-box select option{font-weight:normal;color:#000000}#stacks_in_2231 .ls-wrapper .ls-nav-left,#stacks_in_2231 .ls-wrapper .ls-nav-right,#stacks_in_2231 .ls-wrapper .ls-nav-left-arrow,#stacks_in_2231 .ls-wrapper .ls-nav-right-arrow{cursor:pointer;position:absolute;top:50px;z-index:100;opacity:0.3 !important;filter:alpha(opacity=30) !important;-webkit-transition:opacity 250ms ease-in-out 0;transition:opacity 250ms ease-in-out 0;background-repeat:no-repeat;background-size:100%}#stacks_in_2231 .ls-wrapper .ls-nav-left a,#stacks_in_2231 .ls-wrapper .ls-nav-right a,#stacks_in_2231 .ls-wrapper .ls-nav-left-arrow a,#stacks_in_2231 .ls-wrapper .ls-nav-right-arrow a{display:block;font-size:25px;color:#000000;text-decoration:none}#stacks_in_2231 .ls-wrapper .ls-nav-left:hover,#stacks_in_2231 .ls-wrapper .ls-nav-right:hover,#stacks_in_2231 .ls-wrapper .ls-nav-left-arrow:hover,#stacks_in_2231 .ls-wrapper .ls-nav-right-arrow:hover{opacity:1.0 !important;filter:alpha(opacity=100) !important}#stacks_in_2231 .ls-wrapper .ls-nav-right,#stacks_in_2231 .ls-wrapper .ls-nav-right-arrow{right:5px}#stacks_in_2231 .ls-wrapper .ls-nav-left,#stacks_in_2231 .ls-wrapper .ls-nav-left-arrow{left:5px}#stacks_in_2231 .ls-wrapper .ls-nav-left-arrow,#stacks_in_2231 .ls-wrapper .ls-nav-right-arrow{width:25px;height:25px}#stacks_in_2231 .ls-wrapper .ls-nav-right-arrow{background-image:url(../kurse_files/tabulous-images/arrow-right.png);background-position:top right}#stacks_in_2231 .ls-wrapper .ls-nav-left-arrow{background-image:url(../kurse_files/tabulous-images/arrow-left.png);background-position:top left}@media screen and (max-width:600px){#stacks_in_2231 .liquid-slider{border-top-left-radius:0!important;border-top-right-radius:0!important}}

#stacks_in_2231 {
	margin: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31987Calligrapher{			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_31987Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31987Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31987Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31987Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31987Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31987Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31987Calligrapher h6, .stacks_in_31987Calligrapher h5, .stacks_in_31987Calligrapher h4, .stacks_in_31987Calligrapher h3, .stacks_in_31987Calligrapher h2, .stacks_in_31987Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31987Calligrapher, .stacks_in_31987Calligrapher h1, .stacks_in_31987Calligrapher h2, .stacks_in_31987Calligrapher h3, .stacks_in_31987Calligrapher h4, .stacks_in_31987Calligrapher h5, .stacks_in_31987Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31987Calligrapher, .stacks_in_31987Calligrapher h1, .stacks_in_31987Calligrapher h2, .stacks_in_31987Calligrapher h3, .stacks_in_31987Calligrapher h4, .stacks_in_31987Calligrapher h5, .stacks_in_31987Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31987targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31987Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31987Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31987Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31987Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31987 {
	margin: 0px 15px 0px 15px;
}
/* Start dooHeader X stack CSS code */.stacks_in_31988x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31988x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_31988x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31986 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31982Calligrapher{			font-size: 110% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31982Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31982Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31982Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31982Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31982Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31982Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31982Calligrapher h6, .stacks_in_31982Calligrapher h5, .stacks_in_31982Calligrapher h4, .stacks_in_31982Calligrapher h3, .stacks_in_31982Calligrapher h2, .stacks_in_31982Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31982Calligrapher, .stacks_in_31982Calligrapher h1, .stacks_in_31982Calligrapher h2, .stacks_in_31982Calligrapher h3, .stacks_in_31982Calligrapher h4, .stacks_in_31982Calligrapher h5, .stacks_in_31982Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31982Calligrapher, .stacks_in_31982Calligrapher h1, .stacks_in_31982Calligrapher h2, .stacks_in_31982Calligrapher h3, .stacks_in_31982Calligrapher h4, .stacks_in_31982Calligrapher h5, .stacks_in_31982Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31982targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31982Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31982Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31982Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31982Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31982 {
	margin: 15px 15px 15px 15px;
}

#stacks_in_31985 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31990Calligrapher{			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_31990Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31990Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31990Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31990Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31990Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31990Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31990Calligrapher h6, .stacks_in_31990Calligrapher h5, .stacks_in_31990Calligrapher h4, .stacks_in_31990Calligrapher h3, .stacks_in_31990Calligrapher h2, .stacks_in_31990Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31990Calligrapher, .stacks_in_31990Calligrapher h1, .stacks_in_31990Calligrapher h2, .stacks_in_31990Calligrapher h3, .stacks_in_31990Calligrapher h4, .stacks_in_31990Calligrapher h5, .stacks_in_31990Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31990Calligrapher, .stacks_in_31990Calligrapher h1, .stacks_in_31990Calligrapher h2, .stacks_in_31990Calligrapher h3, .stacks_in_31990Calligrapher h4, .stacks_in_31990Calligrapher h5, .stacks_in_31990Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31990targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31990Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31990Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31990Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31990Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31990 {
	margin: 0px 15px 0px 15px;
}
/* Start dooHeader X stack CSS code */.stacks_in_31993x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_31993x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_31993x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_31994 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31991Calligrapher{			font-size: 110% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31991Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31991Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31991Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31991Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31991Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31991Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31991Calligrapher h6, .stacks_in_31991Calligrapher h5, .stacks_in_31991Calligrapher h4, .stacks_in_31991Calligrapher h3, .stacks_in_31991Calligrapher h2, .stacks_in_31991Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31991Calligrapher, .stacks_in_31991Calligrapher h1, .stacks_in_31991Calligrapher h2, .stacks_in_31991Calligrapher h3, .stacks_in_31991Calligrapher h4, .stacks_in_31991Calligrapher h5, .stacks_in_31991Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31991Calligrapher, .stacks_in_31991Calligrapher h1, .stacks_in_31991Calligrapher h2, .stacks_in_31991Calligrapher h3, .stacks_in_31991Calligrapher h4, .stacks_in_31991Calligrapher h5, .stacks_in_31991Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31991targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31991Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31991Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31991Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31991Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31991 {
	margin: 15px 15px 15px 15px;
}

#stacks_in_31992 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31998Calligrapher{			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_31998Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31998Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31998Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31998Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31998Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31998Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31998Calligrapher h6, .stacks_in_31998Calligrapher h5, .stacks_in_31998Calligrapher h4, .stacks_in_31998Calligrapher h3, .stacks_in_31998Calligrapher h2, .stacks_in_31998Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31998Calligrapher, .stacks_in_31998Calligrapher h1, .stacks_in_31998Calligrapher h2, .stacks_in_31998Calligrapher h3, .stacks_in_31998Calligrapher h4, .stacks_in_31998Calligrapher h5, .stacks_in_31998Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31998Calligrapher, .stacks_in_31998Calligrapher h1, .stacks_in_31998Calligrapher h2, .stacks_in_31998Calligrapher h3, .stacks_in_31998Calligrapher h4, .stacks_in_31998Calligrapher h5, .stacks_in_31998Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31998targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31998Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31998Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31998Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31998Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31998 {
	margin: 0px 15px 0px 15px;
}
/* Start dooHeader X stack CSS code */.stacks_in_32000x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_32000x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_32000x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_32001 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31999Calligrapher{			font-size: 110% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31999Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31999Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31999Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31999Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31999Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31999Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31999Calligrapher h6, .stacks_in_31999Calligrapher h5, .stacks_in_31999Calligrapher h4, .stacks_in_31999Calligrapher h3, .stacks_in_31999Calligrapher h2, .stacks_in_31999Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31999Calligrapher, .stacks_in_31999Calligrapher h1, .stacks_in_31999Calligrapher h2, .stacks_in_31999Calligrapher h3, .stacks_in_31999Calligrapher h4, .stacks_in_31999Calligrapher h5, .stacks_in_31999Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31999Calligrapher, .stacks_in_31999Calligrapher h1, .stacks_in_31999Calligrapher h2, .stacks_in_31999Calligrapher h3, .stacks_in_31999Calligrapher h4, .stacks_in_31999Calligrapher h5, .stacks_in_31999Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31999targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31999Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31999Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31999Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31999Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31999 {
	margin: 15px 15px 15px 15px;
}

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



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

#stacks_in_31889 {
	font-weight: lighter;
}
#stacks_in_31898{padding-left:0px;padding-right:0px;}#stacks_in_31898 > .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_31898 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31898 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31898 > .jack.width-static{width:500px}#stacks_in_31898 > .jack.width-flexible{width:100%}#stacks_in_31898 > .jack.margin-detailed{margin:1.00px 0.00px 10.00px 0.00px}#stacks_in_31898 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31898 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31898 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31898 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31898 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31898 > .jack::after{border-radius:0px}#stacks_in_31898 > .jack.border-detailed-radius,#stacks_in_31898 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31898 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31898 > .jack.bg-color{background-color:#E9E9E9}#stacks_in_31898 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_31898 > .jack.bg-image:not(.glass){background-image:url(../kurse_files/bgImage-31898.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_31898 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31898 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31898 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_31898 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31898 > .jack.bg-image:not(.glass){}#stacks_in_31898 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31898 > .jack.bg-image.glass.after,#stacks_in_31898 > .glass.jack.bg-image::after{opacity:0.50;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url(../kurse_files/bgImage-31898.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_31898 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31898 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31898 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31898 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31898 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31898 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31898 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31898 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_31898 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31898 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31898 > .jack.bg-image.glass.after,#stacks_in_31898 > .glass.jack.bg-image::after{}#stacks_in_31898 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31898 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31898 > .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_31898 > .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_31898 > .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_31898 > .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_31898 > .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_31898 > .jack.peek-shadow::before,#stacks_in_31898 > .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_31898 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31898 > .jack{overflow:hidden;}#stacks_in_31898 > .jack.height-static{height:5px}#stacks_in_31898 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_31908Calligrapher{			font-size: 110% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_31908Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31908Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31908Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31908Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31908Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31908Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_31908Calligrapher h6, .stacks_in_31908Calligrapher h5, .stacks_in_31908Calligrapher h4, .stacks_in_31908Calligrapher h3, .stacks_in_31908Calligrapher h2, .stacks_in_31908Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_31908Calligrapher, .stacks_in_31908Calligrapher h1, .stacks_in_31908Calligrapher h2, .stacks_in_31908Calligrapher h3, .stacks_in_31908Calligrapher h4, .stacks_in_31908Calligrapher h5, .stacks_in_31908Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_31908Calligrapher, .stacks_in_31908Calligrapher h1, .stacks_in_31908Calligrapher h2, .stacks_in_31908Calligrapher h3, .stacks_in_31908Calligrapher h4, .stacks_in_31908Calligrapher h5, .stacks_in_31908Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_31908targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_31908Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_31908Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_31908Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_31908Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_31908 {
	margin: 20px 15px 15px 15px;
}

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

#stacks_in_31911 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_31947{padding-left:0px;padding-right:0px;}#stacks_in_31947 > .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_31947 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31947 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31947 > .jack.width-static{width:500px}#stacks_in_31947 > .jack.width-flexible{width:100%}#stacks_in_31947 > .jack.margin-detailed{margin:1.00px 0.00px 10.00px 0.00px}#stacks_in_31947 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31947 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31947 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31947 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31947 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31947 > .jack::after{border-radius:0px}#stacks_in_31947 > .jack.border-detailed-radius,#stacks_in_31947 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31947 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31947 > .jack.bg-color{background-color:#E9E9E9}#stacks_in_31947 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_31947 > .jack.bg-image:not(.glass){background-image:url(../kurse_files/bgImage-31947.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_31947 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31947 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31947 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_31947 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31947 > .jack.bg-image:not(.glass){}#stacks_in_31947 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31947 > .jack.bg-image.glass.after,#stacks_in_31947 > .glass.jack.bg-image::after{opacity:0.50;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url(../kurse_files/bgImage-31947.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_31947 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31947 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31947 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31947 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31947 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31947 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31947 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31947 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_31947 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31947 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31947 > .jack.bg-image.glass.after,#stacks_in_31947 > .glass.jack.bg-image::after{}#stacks_in_31947 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31947 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31947 > .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_31947 > .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_31947 > .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_31947 > .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_31947 > .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_31947 > .jack.peek-shadow::before,#stacks_in_31947 > .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_31947 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31947 > .jack{overflow:hidden;}#stacks_in_31947 > .jack.height-static{height:5px}#stacks_in_31947 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_31942{}#stacks_in_31942 > .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_31942 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31942 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31942 > .jack.width-static{width:500px}#stacks_in_31942 > .jack.width-flexible{width:100%}#stacks_in_31942 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31942 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31942 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31942 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31942 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31942 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31942 > .jack::after{border-radius:15px}#stacks_in_31942 > .jack.border-detailed-radius,#stacks_in_31942 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_31942 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31942 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31942 > .jack.bg-gradient{background-color:#FFEAF8}#stacks_in_31942 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31942 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31942 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31942 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31942 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31942 > .jack.bg-image:not(.glass){}#stacks_in_31942 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31942 > .jack.bg-image.glass.after,#stacks_in_31942 > .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_31942 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31942 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31942 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31942 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31942 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31942 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31942 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31942 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31942 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31942 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31942 > .jack.bg-image.glass.after,#stacks_in_31942 > .glass.jack.bg-image::after{}#stacks_in_31942 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31942 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31942 > .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_31942 > .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_31942 > .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_31942 > .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_31942 > .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_31942 > .jack.peek-shadow::before,#stacks_in_31942 > .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_31942 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31942 > .jack{overflow:hidden;}#stacks_in_31942 > .jack.height-static{height:675px}#stacks_in_31942 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_2265 .ls-wrapper{margin:0 auto;clear:both;overflow:auto;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;max-width:none !important}#stacks_in_2265 .ls-wrapper .ls-preloader{background:url(../../rw_common/plugins/stacks/tabulous-images/loading.gif) #FFFFFF no-repeat center 75px;opacity:0.9;width:100%;height:200%;position:absolute;top:0;left:0}#stacks_in_2265 .ls-wrapper .liquid-slider{width:100%;margin:0;float:left;overflow:hidden;position:relative;-webkit-backface-visibility:hidden;border-radius:10px;}#stacks_in_2265 .ls-wrapper .panel-container{position:relative}#stacks_in_2265 .ls-wrapper .panel-container .fadeClass{position:absolute;top:0;left:0;display:none}#stacks_in_2265 .ls-wrapper .panel-container .panel{width:1030px;display:block;float:left;border:none;margin-bottom:0;padding:0;background:transparent;-webkit-backface-visibility:hidden}#stacks_in_2265 .ls-wrapper .panel-container .panel.fade{position:absolute;top:0;opacity:0}#stacks_in_2265 .ls-wrapper .panel-container .panel .panel-wrapper{padding:20px;position:relative}#stacks_in_2265 .ls-wrapper .panel-container .panel .panel-wrapper .tab-title{display:none;}#stacks_in_2265 .ls-wrapper .ls-nav{overflow:hidden;clear:both}@media screen and (max-width:600px){#stacks_in_2265 .ls-wrapper .ls-nav{margin-bottom:0;margin-top:0;padding:0}}#stacks_in_2265 .ls-wrapper .ls-nav ul{padding:0;clear:both;display:block;margin:auto;overflow:auto;-webkit-box-sizing:content-box;box-sizing:content-box;width:100%;margin-bottom:0px;}#stacks_in_2265 .ls-wrapper .ls-nav ul li{display:inline;margin:0;-webkit-box-sizing:content-box;box-sizing:content-box}#stacks_in_2265 .ls-wrapper .ls-nav ul li a{display:block;float:left;text-decoration:none;margin-right:3px;color:#D1C1D8;font-size:12px;height:auto !important;-webkit-transition-property:background,color;transition-property:background,color;-webkit-transition-duration:250ms;transition-duration:250ms;-webkit-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out;text-align:center;background:#8D8583;padding:6px;width:32.00%;box-sizing:border-box;}#stacks_in_2265 .ls-wrapper .ls-nav ul li a:hover{background:#4D2A77;color:#FFFFFF}#stacks_in_2265 .ls-wrapper .ls-nav ul li a.current{background:#4D2A77;color:#FFFFFF}#stacks_in_2265 .ls-wrapper .ls-nav ul li a.current h1,#stacks_in_2265 .ls-wrapper .ls-nav ul li a.current h2,#stacks_in_2265 .ls-wrapper .ls-nav ul li a.current h3,#stacks_in_2265 .ls-wrapper .ls-nav ul li a.current h4,#stacks_in_2265 .ls-wrapper .ls-nav ul li a.current h5,#stacks_in_2265 .ls-wrapper .ls-nav ul li a.current h6,#stacks_in_2265 .ls-wrapper .ls-nav ul li a.current span{color:#FFFFFF}#stacks_in_2265 .ls-wrapper .ls-nav ul li a h1,#stacks_in_2265 .ls-wrapper .ls-nav ul li a h2,#stacks_in_2265 .ls-wrapper .ls-nav ul li a h3,#stacks_in_2265 .ls-wrapper .ls-nav ul li a h4,#stacks_in_2265 .ls-wrapper .ls-nav ul li a h5,#stacks_in_2265 .ls-wrapper .ls-nav ul li a h6,#stacks_in_2265 .ls-wrapper .ls-nav ul li a span{display:inline;font-size:12px;color:#D1C1D8;margin:0}#stacks_in_2265 .ls-wrapper .ls-nav ul li:first-child a{border-top-left-radius:0px;border-bottom-left-radius:0px;}#stacks_in_2265 .ls-wrapper .ls-nav ul li:last-child a{margin-right:0;border-top-right-radius:0px;border-bottom-right-radius:0px;}#stacks_in_2265 .ls-wrapper .ls-select-box{width:100%;height:35px;overflow:hidden;color:#FFFFFF;background:url(../kurse_files/tabulous-images/menu-gray.png) no-repeat 98% 50% #4D2A77;border-top-left-radius:0px;border-top-right-radius:0px;}#stacks_in_2265 .ls-wrapper .ls-select-box select{width:110%;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;padding:5px 10px;font-size:110%;border:1px solid #391663;height:35px;cursor:pointer;color:#FFFFFF;border-radius:0;border-top-left-radius:0px;border-top-right-radius:0px;}#stacks_in_2265 .ls-wrapper .ls-select-box select option{font-weight:normal;color:#000000}#stacks_in_2265 .ls-wrapper .ls-nav-left,#stacks_in_2265 .ls-wrapper .ls-nav-right,#stacks_in_2265 .ls-wrapper .ls-nav-left-arrow,#stacks_in_2265 .ls-wrapper .ls-nav-right-arrow{cursor:pointer;position:absolute;top:50px;z-index:100;opacity:0.3 !important;filter:alpha(opacity=30) !important;-webkit-transition:opacity 250ms ease-in-out 0;transition:opacity 250ms ease-in-out 0;background-repeat:no-repeat;background-size:100%}#stacks_in_2265 .ls-wrapper .ls-nav-left a,#stacks_in_2265 .ls-wrapper .ls-nav-right a,#stacks_in_2265 .ls-wrapper .ls-nav-left-arrow a,#stacks_in_2265 .ls-wrapper .ls-nav-right-arrow a{display:block;font-size:30px;color:#000000;text-decoration:none}#stacks_in_2265 .ls-wrapper .ls-nav-left:hover,#stacks_in_2265 .ls-wrapper .ls-nav-right:hover,#stacks_in_2265 .ls-wrapper .ls-nav-left-arrow:hover,#stacks_in_2265 .ls-wrapper .ls-nav-right-arrow:hover{opacity:1.0 !important;filter:alpha(opacity=100) !important}#stacks_in_2265 .ls-wrapper .ls-nav-right,#stacks_in_2265 .ls-wrapper .ls-nav-right-arrow{right:5px}#stacks_in_2265 .ls-wrapper .ls-nav-left,#stacks_in_2265 .ls-wrapper .ls-nav-left-arrow{left:5px}#stacks_in_2265 .ls-wrapper .ls-nav-left-arrow,#stacks_in_2265 .ls-wrapper .ls-nav-right-arrow{width:30px;height:30px}#stacks_in_2265 .ls-wrapper .ls-nav-right-arrow{background-image:url(../kurse_files/tabulous-images/arrow-right.png);background-position:top right}#stacks_in_2265 .ls-wrapper .ls-nav-left-arrow{background-image:url(../kurse_files/tabulous-images/arrow-left.png);background-position:top left}@media screen and (max-width:600px){#stacks_in_2265 .liquid-slider{border-top-left-radius:0!important;border-top-right-radius:0!important}}

#stacks_in_2265 {
	margin: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32006Calligrapher{			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_32006Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32006Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32006Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32006Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32006Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32006Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32006Calligrapher h6, .stacks_in_32006Calligrapher h5, .stacks_in_32006Calligrapher h4, .stacks_in_32006Calligrapher h3, .stacks_in_32006Calligrapher h2, .stacks_in_32006Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32006Calligrapher, .stacks_in_32006Calligrapher h1, .stacks_in_32006Calligrapher h2, .stacks_in_32006Calligrapher h3, .stacks_in_32006Calligrapher h4, .stacks_in_32006Calligrapher h5, .stacks_in_32006Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32006Calligrapher, .stacks_in_32006Calligrapher h1, .stacks_in_32006Calligrapher h2, .stacks_in_32006Calligrapher h3, .stacks_in_32006Calligrapher h4, .stacks_in_32006Calligrapher h5, .stacks_in_32006Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32006targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32006Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32006Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32006Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32006Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32006 {
	margin: 0px 15px 0px 15px;
}
/* Start dooHeader X stack CSS code */.stacks_in_32008x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_32008x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_32008x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_32009 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32007Calligrapher{			font-size: 110% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32007Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32007Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32007Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32007Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32007Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32007Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32007Calligrapher h6, .stacks_in_32007Calligrapher h5, .stacks_in_32007Calligrapher h4, .stacks_in_32007Calligrapher h3, .stacks_in_32007Calligrapher h2, .stacks_in_32007Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32007Calligrapher, .stacks_in_32007Calligrapher h1, .stacks_in_32007Calligrapher h2, .stacks_in_32007Calligrapher h3, .stacks_in_32007Calligrapher h4, .stacks_in_32007Calligrapher h5, .stacks_in_32007Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32007Calligrapher, .stacks_in_32007Calligrapher h1, .stacks_in_32007Calligrapher h2, .stacks_in_32007Calligrapher h3, .stacks_in_32007Calligrapher h4, .stacks_in_32007Calligrapher h5, .stacks_in_32007Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32007targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32007Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32007Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32007Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32007Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32007 {
	margin: 15px 15px 15px 15px;
}

#stacks_in_32013 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32014Calligrapher{			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_32014Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32014Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32014Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32014Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32014Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32014Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32014Calligrapher h6, .stacks_in_32014Calligrapher h5, .stacks_in_32014Calligrapher h4, .stacks_in_32014Calligrapher h3, .stacks_in_32014Calligrapher h2, .stacks_in_32014Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32014Calligrapher, .stacks_in_32014Calligrapher h1, .stacks_in_32014Calligrapher h2, .stacks_in_32014Calligrapher h3, .stacks_in_32014Calligrapher h4, .stacks_in_32014Calligrapher h5, .stacks_in_32014Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32014Calligrapher, .stacks_in_32014Calligrapher h1, .stacks_in_32014Calligrapher h2, .stacks_in_32014Calligrapher h3, .stacks_in_32014Calligrapher h4, .stacks_in_32014Calligrapher h5, .stacks_in_32014Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32014targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32014Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32014Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32014Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32014Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32014 {
	margin: 0px 15px 0px 15px;
}
/* Start dooHeader X stack CSS code */.stacks_in_32017x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_32017x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_32017x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_32018 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32015Calligrapher{			font-size: 110% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32015Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32015Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32015Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32015Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32015Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32015Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32015Calligrapher h6, .stacks_in_32015Calligrapher h5, .stacks_in_32015Calligrapher h4, .stacks_in_32015Calligrapher h3, .stacks_in_32015Calligrapher h2, .stacks_in_32015Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32015Calligrapher, .stacks_in_32015Calligrapher h1, .stacks_in_32015Calligrapher h2, .stacks_in_32015Calligrapher h3, .stacks_in_32015Calligrapher h4, .stacks_in_32015Calligrapher h5, .stacks_in_32015Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32015Calligrapher, .stacks_in_32015Calligrapher h1, .stacks_in_32015Calligrapher h2, .stacks_in_32015Calligrapher h3, .stacks_in_32015Calligrapher h4, .stacks_in_32015Calligrapher h5, .stacks_in_32015Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32015targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32015Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32015Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32015Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32015Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32015 {
	margin: 15px 15px 15px 15px;
}

#stacks_in_32016 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32022Calligrapher{			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_32022Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32022Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32022Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32022Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32022Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32022Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32022Calligrapher h6, .stacks_in_32022Calligrapher h5, .stacks_in_32022Calligrapher h4, .stacks_in_32022Calligrapher h3, .stacks_in_32022Calligrapher h2, .stacks_in_32022Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32022Calligrapher, .stacks_in_32022Calligrapher h1, .stacks_in_32022Calligrapher h2, .stacks_in_32022Calligrapher h3, .stacks_in_32022Calligrapher h4, .stacks_in_32022Calligrapher h5, .stacks_in_32022Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32022Calligrapher, .stacks_in_32022Calligrapher h1, .stacks_in_32022Calligrapher h2, .stacks_in_32022Calligrapher h3, .stacks_in_32022Calligrapher h4, .stacks_in_32022Calligrapher h5, .stacks_in_32022Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32022targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32022Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32022Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32022Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32022Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32022 {
	margin: 0px 15px 0px 15px;
}
/* Start dooHeader X stack CSS code */.stacks_in_32024x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_32024x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_32024x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_32025 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32023Calligrapher{			font-size: 110% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32023Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32023Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32023Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32023Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32023Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32023Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32023Calligrapher h6, .stacks_in_32023Calligrapher h5, .stacks_in_32023Calligrapher h4, .stacks_in_32023Calligrapher h3, .stacks_in_32023Calligrapher h2, .stacks_in_32023Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32023Calligrapher, .stacks_in_32023Calligrapher h1, .stacks_in_32023Calligrapher h2, .stacks_in_32023Calligrapher h3, .stacks_in_32023Calligrapher h4, .stacks_in_32023Calligrapher h5, .stacks_in_32023Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32023Calligrapher, .stacks_in_32023Calligrapher h1, .stacks_in_32023Calligrapher h2, .stacks_in_32023Calligrapher h3, .stacks_in_32023Calligrapher h4, .stacks_in_32023Calligrapher h5, .stacks_in_32023Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32023targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32023Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32023Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32023Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32023Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32023 {
	margin: 15px 15px 15px 15px;
}

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

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

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

#stacks_in_32224 {
	font-weight: lighter;
}
#stacks_in_32226{padding-left:0px;padding-right:0px;}#stacks_in_32226 > .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_32226 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32226 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32226 > .jack.width-static{width:500px}#stacks_in_32226 > .jack.width-flexible{width:100%}#stacks_in_32226 > .jack.margin-detailed{margin:1.00px 0.00px 10.00px 0.00px}#stacks_in_32226 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32226 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32226 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32226 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32226 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32226 > .jack::after{border-radius:0px}#stacks_in_32226 > .jack.border-detailed-radius,#stacks_in_32226 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_32226 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32226 > .jack.bg-color{background-color:#E9E9E9}#stacks_in_32226 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_32226 > .jack.bg-image:not(.glass){background-image:url(../kurse_files/bgImage-32226.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_32226 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32226 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32226 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_32226 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32226 > .jack.bg-image:not(.glass){}#stacks_in_32226 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32226 > .jack.bg-image.glass.after,#stacks_in_32226 > .glass.jack.bg-image::after{opacity:0.50;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url(../kurse_files/bgImage-32226.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_32226 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32226 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32226 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32226 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32226 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32226 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32226 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32226 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_32226 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32226 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32226 > .jack.bg-image.glass.after,#stacks_in_32226 > .glass.jack.bg-image::after{}#stacks_in_32226 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32226 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32226 > .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_32226 > .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_32226 > .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_32226 > .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_32226 > .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_32226 > .jack.peek-shadow::before,#stacks_in_32226 > .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_32226 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32226 > .jack{overflow:hidden;}#stacks_in_32226 > .jack.height-static{height:5px}#stacks_in_32226 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32229Calligrapher{			font-size: 90% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32229Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32229Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32229Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32229Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32229Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32229Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32229Calligrapher h6, .stacks_in_32229Calligrapher h5, .stacks_in_32229Calligrapher h4, .stacks_in_32229Calligrapher h3, .stacks_in_32229Calligrapher h2, .stacks_in_32229Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32229Calligrapher, .stacks_in_32229Calligrapher h1, .stacks_in_32229Calligrapher h2, .stacks_in_32229Calligrapher h3, .stacks_in_32229Calligrapher h4, .stacks_in_32229Calligrapher h5, .stacks_in_32229Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32229Calligrapher, .stacks_in_32229Calligrapher h1, .stacks_in_32229Calligrapher h2, .stacks_in_32229Calligrapher h3, .stacks_in_32229Calligrapher h4, .stacks_in_32229Calligrapher h5, .stacks_in_32229Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32229targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32229Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32229Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32229Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32229Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32229 {
	margin: 20px 15px 15px 15px;
}

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

#stacks_in_32232 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_32233{padding-left:0px;padding-right:0px;}#stacks_in_32233 > .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_32233 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32233 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32233 > .jack.width-static{width:500px}#stacks_in_32233 > .jack.width-flexible{width:100%}#stacks_in_32233 > .jack.margin-detailed{margin:1.00px 0.00px 10.00px 0.00px}#stacks_in_32233 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32233 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32233 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32233 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32233 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32233 > .jack::after{border-radius:0px}#stacks_in_32233 > .jack.border-detailed-radius,#stacks_in_32233 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_32233 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32233 > .jack.bg-color{background-color:#E9E9E9}#stacks_in_32233 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_32233 > .jack.bg-image:not(.glass){background-image:url(../kurse_files/bgImage-32233.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_32233 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32233 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32233 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_32233 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32233 > .jack.bg-image:not(.glass){}#stacks_in_32233 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32233 > .jack.bg-image.glass.after,#stacks_in_32233 > .glass.jack.bg-image::after{opacity:0.50;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url(../kurse_files/bgImage-32233.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_32233 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32233 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32233 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32233 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32233 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32233 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32233 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32233 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_32233 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32233 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32233 > .jack.bg-image.glass.after,#stacks_in_32233 > .glass.jack.bg-image::after{}#stacks_in_32233 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32233 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32233 > .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_32233 > .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_32233 > .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_32233 > .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_32233 > .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_32233 > .jack.peek-shadow::before,#stacks_in_32233 > .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_32233 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32233 > .jack{overflow:hidden;}#stacks_in_32233 > .jack.height-static{height:5px}#stacks_in_32233 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_32235{}#stacks_in_32235 > .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_32235 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32235 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32235 > .jack.width-static{width:500px}#stacks_in_32235 > .jack.width-flexible{width:100%}#stacks_in_32235 > .jack.margin-detailed{margin:0.00px 0.00px 20.00px 0.00px}#stacks_in_32235 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32235 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32235 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32235 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32235 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32235 > .jack::after{border-radius:15px}#stacks_in_32235 > .jack.border-detailed-radius,#stacks_in_32235 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_32235 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32235 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32235 > .jack.bg-gradient{background-color:#FFEAF8}#stacks_in_32235 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32235 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32235 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32235 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32235 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32235 > .jack.bg-image:not(.glass){}#stacks_in_32235 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32235 > .jack.bg-image.glass.after,#stacks_in_32235 > .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_32235 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32235 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32235 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32235 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32235 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32235 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32235 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32235 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32235 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32235 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32235 > .jack.bg-image.glass.after,#stacks_in_32235 > .glass.jack.bg-image::after{}#stacks_in_32235 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32235 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32235 > .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_32235 > .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_32235 > .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_32235 > .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_32235 > .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_32235 > .jack.peek-shadow::before,#stacks_in_32235 > .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_32235 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32235 > .jack{overflow:hidden;}#stacks_in_32235 > .jack.height-static{height:675px}#stacks_in_32235 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_32236 .ls-wrapper{margin:0 auto;clear:both;overflow:auto;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;max-width:none !important}#stacks_in_32236 .ls-wrapper .ls-preloader{background:url(../../rw_common/plugins/stacks/tabulous-images/loading.gif) #FFFFFF no-repeat center 75px;opacity:0.9;width:100%;height:200%;position:absolute;top:0;left:0}#stacks_in_32236 .ls-wrapper .liquid-slider{width:100%;margin:0;float:left;overflow:hidden;position:relative;-webkit-backface-visibility:hidden;border-radius:10px;}#stacks_in_32236 .ls-wrapper .panel-container{position:relative}#stacks_in_32236 .ls-wrapper .panel-container .fadeClass{position:absolute;top:0;left:0;display:none}#stacks_in_32236 .ls-wrapper .panel-container .panel{width:1030px;display:block;float:left;border:none;margin-bottom:0;padding:0;background:transparent;-webkit-backface-visibility:hidden}#stacks_in_32236 .ls-wrapper .panel-container .panel.fade{position:absolute;top:0;opacity:0}#stacks_in_32236 .ls-wrapper .panel-container .panel .panel-wrapper{padding:20px;position:relative}#stacks_in_32236 .ls-wrapper .panel-container .panel .panel-wrapper .tab-title{display:none;}#stacks_in_32236 .ls-wrapper .ls-nav{overflow:hidden;clear:both}@media screen and (max-width:600px){#stacks_in_32236 .ls-wrapper .ls-nav{margin-bottom:0;margin-top:0;padding:0}}#stacks_in_32236 .ls-wrapper .ls-nav ul{padding:0;clear:both;display:block;margin:auto;overflow:auto;-webkit-box-sizing:content-box;box-sizing:content-box;margin-bottom:0px;}#stacks_in_32236 .ls-wrapper .ls-nav ul li{display:inline;margin:0;-webkit-box-sizing:content-box;box-sizing:content-box}#stacks_in_32236 .ls-wrapper .ls-nav ul li a{display:block;float:left;text-decoration:none;margin-right:2px;color:#E6DCDE;font-size:12px;height:auto !important;-webkit-transition-property:background,color;transition-property:background,color;-webkit-transition-duration:250ms;transition-duration:250ms;-webkit-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out;text-align:center;background:#8D8583;padding:6px;}#stacks_in_32236 .ls-wrapper .ls-nav ul li a:hover{background:#8C0043;color:#FFFFFF}#stacks_in_32236 .ls-wrapper .ls-nav ul li a.current{background:#8C0043;color:#FFFFFF}#stacks_in_32236 .ls-wrapper .ls-nav ul li a.current h1,#stacks_in_32236 .ls-wrapper .ls-nav ul li a.current h2,#stacks_in_32236 .ls-wrapper .ls-nav ul li a.current h3,#stacks_in_32236 .ls-wrapper .ls-nav ul li a.current h4,#stacks_in_32236 .ls-wrapper .ls-nav ul li a.current h5,#stacks_in_32236 .ls-wrapper .ls-nav ul li a.current h6,#stacks_in_32236 .ls-wrapper .ls-nav ul li a.current span{color:#FFFFFF}#stacks_in_32236 .ls-wrapper .ls-nav ul li a h1,#stacks_in_32236 .ls-wrapper .ls-nav ul li a h2,#stacks_in_32236 .ls-wrapper .ls-nav ul li a h3,#stacks_in_32236 .ls-wrapper .ls-nav ul li a h4,#stacks_in_32236 .ls-wrapper .ls-nav ul li a h5,#stacks_in_32236 .ls-wrapper .ls-nav ul li a h6,#stacks_in_32236 .ls-wrapper .ls-nav ul li a span{display:inline;font-size:12px;color:#E6DCDE;margin:0}#stacks_in_32236 .ls-wrapper .ls-nav ul li:first-child a{border-bottom-left-radius:0px;border-top-left-radius:0px;}#stacks_in_32236 .ls-wrapper .ls-nav ul li:last-child a{margin-right:0;border-bottom-right-radius:0px;border-top-right-radius:0px;}#stacks_in_32236 .ls-wrapper .ls-select-box{width:100%;height:35px;overflow:hidden;color:#FFFFFF;background:url(../kurse_files/tabulous-images/menu-gray.png) no-repeat 98% 50% #8C0043;border-top-left-radius:0px;border-top-right-radius:0px;}#stacks_in_32236 .ls-wrapper .ls-select-box select{width:110%;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;padding:5px 10px;font-size:110%;border:1px solid #78002F;height:35px;cursor:pointer;color:#FFFFFF;border-radius:0;border-top-left-radius:0px;border-top-right-radius:0px;}#stacks_in_32236 .ls-wrapper .ls-select-box select option{font-weight:normal;color:#000000}#stacks_in_32236 .ls-wrapper .ls-nav-left,#stacks_in_32236 .ls-wrapper .ls-nav-right,#stacks_in_32236 .ls-wrapper .ls-nav-left-arrow,#stacks_in_32236 .ls-wrapper .ls-nav-right-arrow{cursor:pointer;position:absolute;top:50px;z-index:100;opacity:0.3 !important;filter:alpha(opacity=30) !important;-webkit-transition:opacity 250ms ease-in-out 0;transition:opacity 250ms ease-in-out 0;background-repeat:no-repeat;background-size:100%}#stacks_in_32236 .ls-wrapper .ls-nav-left a,#stacks_in_32236 .ls-wrapper .ls-nav-right a,#stacks_in_32236 .ls-wrapper .ls-nav-left-arrow a,#stacks_in_32236 .ls-wrapper .ls-nav-right-arrow a{display:block;font-size:25px;color:#000000;text-decoration:none}#stacks_in_32236 .ls-wrapper .ls-nav-left:hover,#stacks_in_32236 .ls-wrapper .ls-nav-right:hover,#stacks_in_32236 .ls-wrapper .ls-nav-left-arrow:hover,#stacks_in_32236 .ls-wrapper .ls-nav-right-arrow:hover{opacity:1.0 !important;filter:alpha(opacity=100) !important}#stacks_in_32236 .ls-wrapper .ls-nav-right,#stacks_in_32236 .ls-wrapper .ls-nav-right-arrow{right:5px}#stacks_in_32236 .ls-wrapper .ls-nav-left,#stacks_in_32236 .ls-wrapper .ls-nav-left-arrow{left:5px}#stacks_in_32236 .ls-wrapper .ls-nav-left-arrow,#stacks_in_32236 .ls-wrapper .ls-nav-right-arrow{width:25px;height:25px}#stacks_in_32236 .ls-wrapper .ls-nav-right-arrow{background-image:url(../kurse_files/tabulous-images/arrow-right.png);background-position:top right}#stacks_in_32236 .ls-wrapper .ls-nav-left-arrow{background-image:url(../kurse_files/tabulous-images/arrow-left.png);background-position:top left}@media screen and (max-width:600px){}

#stacks_in_32236 {
	margin: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32320Calligrapher{			font-size: 90% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32320Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32320Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32320Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32320Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32320Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32320Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32320Calligrapher h6, .stacks_in_32320Calligrapher h5, .stacks_in_32320Calligrapher h4, .stacks_in_32320Calligrapher h3, .stacks_in_32320Calligrapher h2, .stacks_in_32320Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32320Calligrapher, .stacks_in_32320Calligrapher h1, .stacks_in_32320Calligrapher h2, .stacks_in_32320Calligrapher h3, .stacks_in_32320Calligrapher h4, .stacks_in_32320Calligrapher h5, .stacks_in_32320Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32320Calligrapher, .stacks_in_32320Calligrapher h1, .stacks_in_32320Calligrapher h2, .stacks_in_32320Calligrapher h3, .stacks_in_32320Calligrapher h4, .stacks_in_32320Calligrapher h5, .stacks_in_32320Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32320targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32320Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32320Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32320Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32320Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_32321x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_32321x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_32321x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_32322 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32243Calligrapher{			font-size: 90% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32243Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32243Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32243Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32243Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32243Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32243Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32243Calligrapher h6, .stacks_in_32243Calligrapher h5, .stacks_in_32243Calligrapher h4, .stacks_in_32243Calligrapher h3, .stacks_in_32243Calligrapher h2, .stacks_in_32243Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32243Calligrapher, .stacks_in_32243Calligrapher h1, .stacks_in_32243Calligrapher h2, .stacks_in_32243Calligrapher h3, .stacks_in_32243Calligrapher h4, .stacks_in_32243Calligrapher h5, .stacks_in_32243Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32243Calligrapher, .stacks_in_32243Calligrapher h1, .stacks_in_32243Calligrapher h2, .stacks_in_32243Calligrapher h3, .stacks_in_32243Calligrapher h4, .stacks_in_32243Calligrapher h5, .stacks_in_32243Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32243targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32243Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32243Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32243Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32243Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32243 {
	margin: 15px 0px 15px 0px;
}

#stacks_in_32246 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32248Calligrapher{			font-size: 90% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32248Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32248Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32248Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32248Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32248Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32248Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32248Calligrapher h6, .stacks_in_32248Calligrapher h5, .stacks_in_32248Calligrapher h4, .stacks_in_32248Calligrapher h3, .stacks_in_32248Calligrapher h2, .stacks_in_32248Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32248Calligrapher, .stacks_in_32248Calligrapher h1, .stacks_in_32248Calligrapher h2, .stacks_in_32248Calligrapher h3, .stacks_in_32248Calligrapher h4, .stacks_in_32248Calligrapher h5, .stacks_in_32248Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32248Calligrapher, .stacks_in_32248Calligrapher h1, .stacks_in_32248Calligrapher h2, .stacks_in_32248Calligrapher h3, .stacks_in_32248Calligrapher h4, .stacks_in_32248Calligrapher h5, .stacks_in_32248Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32248targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32248Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32248Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32248Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32248Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_32249x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_32249x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_32249x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_32250 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32252Calligrapher{			font-size: 90% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32252Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32252Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32252Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32252Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32252Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32252Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32252Calligrapher h6, .stacks_in_32252Calligrapher h5, .stacks_in_32252Calligrapher h4, .stacks_in_32252Calligrapher h3, .stacks_in_32252Calligrapher h2, .stacks_in_32252Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32252Calligrapher, .stacks_in_32252Calligrapher h1, .stacks_in_32252Calligrapher h2, .stacks_in_32252Calligrapher h3, .stacks_in_32252Calligrapher h4, .stacks_in_32252Calligrapher h5, .stacks_in_32252Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32252Calligrapher, .stacks_in_32252Calligrapher h1, .stacks_in_32252Calligrapher h2, .stacks_in_32252Calligrapher h3, .stacks_in_32252Calligrapher h4, .stacks_in_32252Calligrapher h5, .stacks_in_32252Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32252targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32252Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32252Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32252Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32252Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32252 {
	margin: 15px 0px 15px 0px;
}

#stacks_in_32255 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32258Calligrapher{			font-size: 90% !important;			color: #40006C !important;			font-weight:   lighter !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32258Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32258Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32258Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32258Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32258Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32258Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32258Calligrapher h6, .stacks_in_32258Calligrapher h5, .stacks_in_32258Calligrapher h4, .stacks_in_32258Calligrapher h3, .stacks_in_32258Calligrapher h2, .stacks_in_32258Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32258Calligrapher, .stacks_in_32258Calligrapher h1, .stacks_in_32258Calligrapher h2, .stacks_in_32258Calligrapher h3, .stacks_in_32258Calligrapher h4, .stacks_in_32258Calligrapher h5, .stacks_in_32258Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32258Calligrapher, .stacks_in_32258Calligrapher h1, .stacks_in_32258Calligrapher h2, .stacks_in_32258Calligrapher h3, .stacks_in_32258Calligrapher h4, .stacks_in_32258Calligrapher h5, .stacks_in_32258Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32258targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32258Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32258Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32258Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32258Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_32259x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_32259x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_32259x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_32260 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32262Calligrapher{			font-size: 90% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32262Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32262Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32262Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32262Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32262Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32262Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32262Calligrapher h6, .stacks_in_32262Calligrapher h5, .stacks_in_32262Calligrapher h4, .stacks_in_32262Calligrapher h3, .stacks_in_32262Calligrapher h2, .stacks_in_32262Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32262Calligrapher, .stacks_in_32262Calligrapher h1, .stacks_in_32262Calligrapher h2, .stacks_in_32262Calligrapher h3, .stacks_in_32262Calligrapher h4, .stacks_in_32262Calligrapher h5, .stacks_in_32262Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32262Calligrapher, .stacks_in_32262Calligrapher h1, .stacks_in_32262Calligrapher h2, .stacks_in_32262Calligrapher h3, .stacks_in_32262Calligrapher h4, .stacks_in_32262Calligrapher h5, .stacks_in_32262Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32262targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32262Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32262Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32262Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32262Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32262 {
	margin: 15px 0px 15px 0px;
}

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

#stacks_in_32274 {
	font-weight: lighter;
}
#stacks_in_32276{padding-left:0px;padding-right:0px;}#stacks_in_32276 > .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_32276 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32276 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32276 > .jack.width-static{width:500px}#stacks_in_32276 > .jack.width-flexible{width:100%}#stacks_in_32276 > .jack.margin-detailed{margin:1.00px 0.00px 10.00px 0.00px}#stacks_in_32276 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32276 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32276 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32276 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32276 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32276 > .jack::after{border-radius:0px}#stacks_in_32276 > .jack.border-detailed-radius,#stacks_in_32276 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_32276 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32276 > .jack.bg-color{background-color:#E9E9E9}#stacks_in_32276 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_32276 > .jack.bg-image:not(.glass){background-image:url(../kurse_files/bgImage-32276.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_32276 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32276 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32276 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_32276 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32276 > .jack.bg-image:not(.glass){}#stacks_in_32276 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32276 > .jack.bg-image.glass.after,#stacks_in_32276 > .glass.jack.bg-image::after{opacity:0.50;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url(../kurse_files/bgImage-32276.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_32276 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32276 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32276 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32276 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32276 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32276 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32276 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32276 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_32276 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32276 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32276 > .jack.bg-image.glass.after,#stacks_in_32276 > .glass.jack.bg-image::after{}#stacks_in_32276 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32276 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32276 > .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_32276 > .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_32276 > .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_32276 > .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_32276 > .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_32276 > .jack.peek-shadow::before,#stacks_in_32276 > .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_32276 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32276 > .jack{overflow:hidden;}#stacks_in_32276 > .jack.height-static{height:5px}#stacks_in_32276 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32279Calligrapher{			font-size: 90% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32279Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32279Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32279Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32279Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32279Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32279Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32279Calligrapher h6, .stacks_in_32279Calligrapher h5, .stacks_in_32279Calligrapher h4, .stacks_in_32279Calligrapher h3, .stacks_in_32279Calligrapher h2, .stacks_in_32279Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32279Calligrapher, .stacks_in_32279Calligrapher h1, .stacks_in_32279Calligrapher h2, .stacks_in_32279Calligrapher h3, .stacks_in_32279Calligrapher h4, .stacks_in_32279Calligrapher h5, .stacks_in_32279Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32279Calligrapher, .stacks_in_32279Calligrapher h1, .stacks_in_32279Calligrapher h2, .stacks_in_32279Calligrapher h3, .stacks_in_32279Calligrapher h4, .stacks_in_32279Calligrapher h5, .stacks_in_32279Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32279targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32279Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32279Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32279Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32279Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32279 {
	margin: 20px 15px 15px 15px;
}

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

#stacks_in_32282 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_32283{padding-left:0px;padding-right:0px;}#stacks_in_32283 > .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_32283 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32283 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32283 > .jack.width-static{width:500px}#stacks_in_32283 > .jack.width-flexible{width:100%}#stacks_in_32283 > .jack.margin-detailed{margin:1.00px 0.00px 10.00px 0.00px}#stacks_in_32283 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32283 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32283 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32283 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32283 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32283 > .jack::after{border-radius:0px}#stacks_in_32283 > .jack.border-detailed-radius,#stacks_in_32283 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_32283 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32283 > .jack.bg-color{background-color:#E9E9E9}#stacks_in_32283 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_32283 > .jack.bg-image:not(.glass){background-image:url(../kurse_files/bgImage-32283.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_32283 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32283 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32283 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_32283 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32283 > .jack.bg-image:not(.glass){}#stacks_in_32283 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32283 > .jack.bg-image.glass.after,#stacks_in_32283 > .glass.jack.bg-image::after{opacity:0.50;background-attachment:fixed;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url(../kurse_files/bgImage-32283.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_32283 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32283 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32283 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32283 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32283 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32283 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32283 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32283 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_32283 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32283 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32283 > .jack.bg-image.glass.after,#stacks_in_32283 > .glass.jack.bg-image::after{}#stacks_in_32283 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32283 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32283 > .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_32283 > .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_32283 > .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_32283 > .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_32283 > .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_32283 > .jack.peek-shadow::before,#stacks_in_32283 > .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_32283 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32283 > .jack{overflow:hidden;}#stacks_in_32283 > .jack.height-static{height:5px}#stacks_in_32283 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_32286{}#stacks_in_32286 > .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_32286 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32286 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32286 > .jack.width-static{width:500px}#stacks_in_32286 > .jack.width-flexible{width:100%}#stacks_in_32286 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32286 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32286 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32286 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32286 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32286 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32286 > .jack::after{border-radius:15px}#stacks_in_32286 > .jack.border-detailed-radius,#stacks_in_32286 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_32286 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32286 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32286 > .jack.bg-gradient{background-color:#FFEAF8}#stacks_in_32286 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32286 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32286 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32286 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32286 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32286 > .jack.bg-image:not(.glass){}#stacks_in_32286 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32286 > .jack.bg-image.glass.after,#stacks_in_32286 > .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_32286 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32286 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32286 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32286 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32286 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32286 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32286 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32286 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32286 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32286 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32286 > .jack.bg-image.glass.after,#stacks_in_32286 > .glass.jack.bg-image::after{}#stacks_in_32286 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32286 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32286 > .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_32286 > .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_32286 > .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_32286 > .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_32286 > .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_32286 > .jack.peek-shadow::before,#stacks_in_32286 > .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_32286 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32286 > .jack{overflow:hidden;}#stacks_in_32286 > .jack.height-static{height:675px}#stacks_in_32286 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_32288 .ls-wrapper{margin:0 auto;clear:both;overflow:auto;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;max-width:none !important}#stacks_in_32288 .ls-wrapper .ls-preloader{background:url(../../rw_common/plugins/stacks/tabulous-images/loading.gif) #FFFFFF no-repeat center 75px;opacity:0.9;width:100%;height:200%;position:absolute;top:0;left:0}#stacks_in_32288 .ls-wrapper .liquid-slider{width:100%;margin:0;float:left;overflow:hidden;position:relative;-webkit-backface-visibility:hidden;border-radius:10px;}#stacks_in_32288 .ls-wrapper .panel-container{position:relative}#stacks_in_32288 .ls-wrapper .panel-container .fadeClass{position:absolute;top:0;left:0;display:none}#stacks_in_32288 .ls-wrapper .panel-container .panel{width:1030px;display:block;float:left;border:none;margin-bottom:0;padding:0;background:transparent;-webkit-backface-visibility:hidden}#stacks_in_32288 .ls-wrapper .panel-container .panel.fade{position:absolute;top:0;opacity:0}#stacks_in_32288 .ls-wrapper .panel-container .panel .panel-wrapper{padding:20px;position:relative}#stacks_in_32288 .ls-wrapper .panel-container .panel .panel-wrapper .tab-title{display:none;}#stacks_in_32288 .ls-wrapper .ls-nav{overflow:hidden;clear:both}@media screen and (max-width:600px){#stacks_in_32288 .ls-wrapper .ls-nav{margin-bottom:0;margin-top:0;padding:0}}#stacks_in_32288 .ls-wrapper .ls-nav ul{padding:0;clear:both;display:block;margin:auto;overflow:auto;-webkit-box-sizing:content-box;box-sizing:content-box;margin-bottom:0px;}#stacks_in_32288 .ls-wrapper .ls-nav ul li{display:inline;margin:0;-webkit-box-sizing:content-box;box-sizing:content-box}#stacks_in_32288 .ls-wrapper .ls-nav ul li a{display:block;float:left;text-decoration:none;margin-right:3px;color:#D1C1D8;font-size:8px;height:auto !important;-webkit-transition-property:background,color;transition-property:background,color;-webkit-transition-duration:250ms;transition-duration:250ms;-webkit-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out;text-align:center;background:#8D8583;padding:6px;width:100px;-webkit-box-sizing:border-box;box-sizing:border-box;}#stacks_in_32288 .ls-wrapper .ls-nav ul li a:hover{background:#4D2A77;color:#FFFFFF}#stacks_in_32288 .ls-wrapper .ls-nav ul li a.current{background:#4D2A77;color:#FFFFFF}#stacks_in_32288 .ls-wrapper .ls-nav ul li a.current h1,#stacks_in_32288 .ls-wrapper .ls-nav ul li a.current h2,#stacks_in_32288 .ls-wrapper .ls-nav ul li a.current h3,#stacks_in_32288 .ls-wrapper .ls-nav ul li a.current h4,#stacks_in_32288 .ls-wrapper .ls-nav ul li a.current h5,#stacks_in_32288 .ls-wrapper .ls-nav ul li a.current h6,#stacks_in_32288 .ls-wrapper .ls-nav ul li a.current span{color:#FFFFFF}#stacks_in_32288 .ls-wrapper .ls-nav ul li a h1,#stacks_in_32288 .ls-wrapper .ls-nav ul li a h2,#stacks_in_32288 .ls-wrapper .ls-nav ul li a h3,#stacks_in_32288 .ls-wrapper .ls-nav ul li a h4,#stacks_in_32288 .ls-wrapper .ls-nav ul li a h5,#stacks_in_32288 .ls-wrapper .ls-nav ul li a h6,#stacks_in_32288 .ls-wrapper .ls-nav ul li a span{display:inline;font-size:8px;color:#D1C1D8;margin:0}#stacks_in_32288 .ls-wrapper .ls-nav ul li:first-child a{border-top-left-radius:0px;border-bottom-left-radius:0px;}#stacks_in_32288 .ls-wrapper .ls-nav ul li:last-child a{margin-right:0;border-top-right-radius:0px;border-bottom-right-radius:0px;}#stacks_in_32288 .ls-wrapper .ls-select-box{width:100%;height:35px;overflow:hidden;color:#FFFFFF;background:url(../kurse_files/tabulous-images/menu-gray.png) no-repeat 98% 50% #4D2A77;border-top-left-radius:0px;border-top-right-radius:0px;}#stacks_in_32288 .ls-wrapper .ls-select-box select{width:110%;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;padding:5px 10px;font-size:110%;border:1px solid #391663;height:35px;cursor:pointer;color:#FFFFFF;border-radius:0;border-top-left-radius:0px;border-top-right-radius:0px;}#stacks_in_32288 .ls-wrapper .ls-select-box select option{font-weight:normal;color:#000000}#stacks_in_32288 .ls-wrapper .ls-nav-left,#stacks_in_32288 .ls-wrapper .ls-nav-right,#stacks_in_32288 .ls-wrapper .ls-nav-left-arrow,#stacks_in_32288 .ls-wrapper .ls-nav-right-arrow{cursor:pointer;position:absolute;top:50px;z-index:100;opacity:0.3 !important;filter:alpha(opacity=30) !important;-webkit-transition:opacity 250ms ease-in-out 0;transition:opacity 250ms ease-in-out 0;background-repeat:no-repeat;background-size:100%}#stacks_in_32288 .ls-wrapper .ls-nav-left a,#stacks_in_32288 .ls-wrapper .ls-nav-right a,#stacks_in_32288 .ls-wrapper .ls-nav-left-arrow a,#stacks_in_32288 .ls-wrapper .ls-nav-right-arrow a{display:block;font-size:30px;color:#000000;text-decoration:none}#stacks_in_32288 .ls-wrapper .ls-nav-left:hover,#stacks_in_32288 .ls-wrapper .ls-nav-right:hover,#stacks_in_32288 .ls-wrapper .ls-nav-left-arrow:hover,#stacks_in_32288 .ls-wrapper .ls-nav-right-arrow:hover{opacity:1.0 !important;filter:alpha(opacity=100) !important}#stacks_in_32288 .ls-wrapper .ls-nav-right,#stacks_in_32288 .ls-wrapper .ls-nav-right-arrow{right:5px}#stacks_in_32288 .ls-wrapper .ls-nav-left,#stacks_in_32288 .ls-wrapper .ls-nav-left-arrow{left:5px}#stacks_in_32288 .ls-wrapper .ls-nav-left-arrow,#stacks_in_32288 .ls-wrapper .ls-nav-right-arrow{width:30px;height:30px}#stacks_in_32288 .ls-wrapper .ls-nav-right-arrow{background-image:url(../kurse_files/tabulous-images/arrow-right.png);background-position:top right}#stacks_in_32288 .ls-wrapper .ls-nav-left-arrow{background-image:url(../kurse_files/tabulous-images/arrow-left.png);background-position:top left}@media screen and (max-width:600px){}

#stacks_in_32288 {
	margin: 20px 0px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32290Calligrapher{			font-size: 80% !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_32290Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32290Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32290Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32290Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32290Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32290Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32290Calligrapher h6, .stacks_in_32290Calligrapher h5, .stacks_in_32290Calligrapher h4, .stacks_in_32290Calligrapher h3, .stacks_in_32290Calligrapher h2, .stacks_in_32290Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32290Calligrapher, .stacks_in_32290Calligrapher h1, .stacks_in_32290Calligrapher h2, .stacks_in_32290Calligrapher h3, .stacks_in_32290Calligrapher h4, .stacks_in_32290Calligrapher h5, .stacks_in_32290Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32290Calligrapher, .stacks_in_32290Calligrapher h1, .stacks_in_32290Calligrapher h2, .stacks_in_32290Calligrapher h3, .stacks_in_32290Calligrapher h4, .stacks_in_32290Calligrapher h5, .stacks_in_32290Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32290targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32290Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32290Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32290Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32290Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_32292x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_32292x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_32292x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_32294 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32295Calligrapher{			font-size: 90% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32295Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32295Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32295Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32295Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32295Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32295Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32295Calligrapher h6, .stacks_in_32295Calligrapher h5, .stacks_in_32295Calligrapher h4, .stacks_in_32295Calligrapher h3, .stacks_in_32295Calligrapher h2, .stacks_in_32295Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32295Calligrapher, .stacks_in_32295Calligrapher h1, .stacks_in_32295Calligrapher h2, .stacks_in_32295Calligrapher h3, .stacks_in_32295Calligrapher h4, .stacks_in_32295Calligrapher h5, .stacks_in_32295Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32295Calligrapher, .stacks_in_32295Calligrapher h1, .stacks_in_32295Calligrapher h2, .stacks_in_32295Calligrapher h3, .stacks_in_32295Calligrapher h4, .stacks_in_32295Calligrapher h5, .stacks_in_32295Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32295targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32295Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32295Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32295Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32295Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32295 {
	margin: 15px 0px 15px 0px;
}

#stacks_in_32298 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32299Calligrapher{			font-size: 80% !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_32299Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32299Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32299Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32299Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32299Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32299Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32299Calligrapher h6, .stacks_in_32299Calligrapher h5, .stacks_in_32299Calligrapher h4, .stacks_in_32299Calligrapher h3, .stacks_in_32299Calligrapher h2, .stacks_in_32299Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32299Calligrapher, .stacks_in_32299Calligrapher h1, .stacks_in_32299Calligrapher h2, .stacks_in_32299Calligrapher h3, .stacks_in_32299Calligrapher h4, .stacks_in_32299Calligrapher h5, .stacks_in_32299Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32299Calligrapher, .stacks_in_32299Calligrapher h1, .stacks_in_32299Calligrapher h2, .stacks_in_32299Calligrapher h3, .stacks_in_32299Calligrapher h4, .stacks_in_32299Calligrapher h5, .stacks_in_32299Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32299targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32299Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32299Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32299Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32299Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_32301x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_32301x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_32301x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_32303 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32304Calligrapher{			font-size: 90% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32304Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32304Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32304Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32304Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32304Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32304Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32304Calligrapher h6, .stacks_in_32304Calligrapher h5, .stacks_in_32304Calligrapher h4, .stacks_in_32304Calligrapher h3, .stacks_in_32304Calligrapher h2, .stacks_in_32304Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32304Calligrapher, .stacks_in_32304Calligrapher h1, .stacks_in_32304Calligrapher h2, .stacks_in_32304Calligrapher h3, .stacks_in_32304Calligrapher h4, .stacks_in_32304Calligrapher h5, .stacks_in_32304Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32304Calligrapher, .stacks_in_32304Calligrapher h1, .stacks_in_32304Calligrapher h2, .stacks_in_32304Calligrapher h3, .stacks_in_32304Calligrapher h4, .stacks_in_32304Calligrapher h5, .stacks_in_32304Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32304targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32304Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32304Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32304Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32304Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32304 {
	margin: 15px 0px 15px 0px;
}

#stacks_in_32307 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32308Calligrapher{			font-size: 80% !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_32308Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32308Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32308Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32308Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32308Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32308Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32308Calligrapher h6, .stacks_in_32308Calligrapher h5, .stacks_in_32308Calligrapher h4, .stacks_in_32308Calligrapher h3, .stacks_in_32308Calligrapher h2, .stacks_in_32308Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32308Calligrapher, .stacks_in_32308Calligrapher h1, .stacks_in_32308Calligrapher h2, .stacks_in_32308Calligrapher h3, .stacks_in_32308Calligrapher h4, .stacks_in_32308Calligrapher h5, .stacks_in_32308Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32308Calligrapher, .stacks_in_32308Calligrapher h1, .stacks_in_32308Calligrapher h2, .stacks_in_32308Calligrapher h3, .stacks_in_32308Calligrapher h4, .stacks_in_32308Calligrapher h5, .stacks_in_32308Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32308targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32308Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32308Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32308Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32308Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_32310x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_32310x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_32310x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_32312 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32313Calligrapher{			font-size: 90% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_32313Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32313Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32313Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32313Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32313Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32313Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32313Calligrapher h6, .stacks_in_32313Calligrapher h5, .stacks_in_32313Calligrapher h4, .stacks_in_32313Calligrapher h3, .stacks_in_32313Calligrapher h2, .stacks_in_32313Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32313Calligrapher, .stacks_in_32313Calligrapher h1, .stacks_in_32313Calligrapher h2, .stacks_in_32313Calligrapher h3, .stacks_in_32313Calligrapher h4, .stacks_in_32313Calligrapher h5, .stacks_in_32313Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32313Calligrapher, .stacks_in_32313Calligrapher h1, .stacks_in_32313Calligrapher h2, .stacks_in_32313Calligrapher h3, .stacks_in_32313Calligrapher h4, .stacks_in_32313Calligrapher h5, .stacks_in_32313Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32313targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32313Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32313Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32313Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32313Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32313 {
	margin: 15px 0px 15px 0px;
}

#stacks_in_32316 {
	display:inline-block; width:100%; line-height: 1.500000em;
}
#stacks_in_4337{padding-right:0.00px;padding-left:0.00px;}#stacks_in_4337 > .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_4337 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_4337 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_4337 > .jack.width-static{width:500px}#stacks_in_4337 > .jack.width-flexible{width:100%}#stacks_in_4337 > .jack.margin-detailed{margin:0.00px 0.00px 20.00px 0.00px}#stacks_in_4337 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_4337 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_4337 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_4337 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_4337 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_4337 > .jack::after{border-radius:0px}#stacks_in_4337 > .jack.border-detailed-radius,#stacks_in_4337 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_4337 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_4337 > .jack.bg-color{background-color:#89C5FF}#stacks_in_4337 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_4337 > .jack.bg-image:not(.glass){background-image:url(../kurse_files/bgImage-4337.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_4337 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_4337 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_4337 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_4337 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_4337 > .jack.bg-image:not(.glass){}#stacks_in_4337 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_4337 > .jack.bg-image.glass.after,#stacks_in_4337 > .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(../kurse_files/bgImage-4337.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_4337 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_4337 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_4337 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_4337 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_4337 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_4337 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_4337 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_4337 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_4_col.jpg)}#stacks_in_4337 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_4337 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_4337 > .jack.bg-image.glass.after,#stacks_in_4337 > .glass.jack.bg-image::after{}#stacks_in_4337 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_4337 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_4337 > .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_4337 > .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_4337 > .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_4337 > .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_4337 > .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_4337 > .jack.peek-shadow::before,#stacks_in_4337 > .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_4337 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_4337 > .jack{overflow:hidden;}#stacks_in_4337 > .jack.height-static{height:50px}#stacks_in_4337 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_5976{}#stacks_in_5976 > .jack{margin:0px;padding:10px;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_5976 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_5976 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_5976 > .jack.width-static{width:500px}#stacks_in_5976 > .jack.width-flexible{width:100%}#stacks_in_5976 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_5976 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_5976 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_5976 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_5976 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_5976 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_5976 > .jack::after{border-radius:15px}#stacks_in_5976 > .jack.border-detailed-radius,#stacks_in_5976 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_5976 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_5976 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_5976 > .jack.bg-gradient{background-color:#FFFFFF}#stacks_in_5976 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_5976 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_5976 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_5976 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_5976 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_5976 > .jack.bg-image:not(.glass){}#stacks_in_5976 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_5976 > .jack.bg-image.glass.after,#stacks_in_5976 > .glass.jack.bg-image::after{opacity:0.20;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:10px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_5976 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_5976 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_5976 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_5976 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_5976 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_5976 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_5976 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_5976 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_5976 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_5976 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_5976 > .jack.bg-image.glass.after,#stacks_in_5976 > .glass.jack.bg-image::after{}#stacks_in_5976 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_5976 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_5976 > .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_5976 > .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_5976 > .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_5976 > .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_5976 > .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_5976 > .jack.peek-shadow::before,#stacks_in_5976 > .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_5976 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_5976 > .jack{overflow:hidden;}#stacks_in_5976 > .jack.height-static{height:100px}#stacks_in_5976 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32031Calligrapher{			font-size: 140% !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_32031Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32031Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32031Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32031Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32031Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32031Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32031Calligrapher h6, .stacks_in_32031Calligrapher h5, .stacks_in_32031Calligrapher h4, .stacks_in_32031Calligrapher h3, .stacks_in_32031Calligrapher h2, .stacks_in_32031Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32031Calligrapher, .stacks_in_32031Calligrapher h1, .stacks_in_32031Calligrapher h2, .stacks_in_32031Calligrapher h3, .stacks_in_32031Calligrapher h4, .stacks_in_32031Calligrapher h5, .stacks_in_32031Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32031Calligrapher, .stacks_in_32031Calligrapher h1, .stacks_in_32031Calligrapher h2, .stacks_in_32031Calligrapher h3, .stacks_in_32031Calligrapher h4, .stacks_in_32031Calligrapher h5, .stacks_in_32031Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32031targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32031Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32031Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32031Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32031Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_32032x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_32032x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_32032x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_32032 {
	margin: 20px 0px 20px 0px;
}

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



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

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

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

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



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

#stacks_in_32048 {
	margin: 0px 20px 0px 20px;
}
#stacks_in_2328 .ls-wrapper{margin:0 auto;clear:both;overflow:auto;position:relative;-webkit-box-sizing:border-box;box-sizing:border-box;max-width:none !important}#stacks_in_2328 .ls-wrapper .ls-preloader{background:url(../../rw_common/plugins/stacks/tabulous-images/loading.gif) #FFFFFF no-repeat center 75px;opacity:0.9;width:100%;height:200%;position:absolute;top:0;left:0}#stacks_in_2328 .ls-wrapper .liquid-slider{width:100%;margin:0;float:left;overflow:hidden;position:relative;-webkit-backface-visibility:hidden;border-radius:10px;}#stacks_in_2328 .ls-wrapper .panel-container{position:relative}#stacks_in_2328 .ls-wrapper .panel-container .fadeClass{position:absolute;top:0;left:0;display:none}#stacks_in_2328 .ls-wrapper .panel-container .panel{width:1030px;display:block;float:left;border:none;margin-bottom:0;padding:0;background:transparent;-webkit-backface-visibility:hidden}#stacks_in_2328 .ls-wrapper .panel-container .panel.fade{position:absolute;top:0;opacity:0}#stacks_in_2328 .ls-wrapper .panel-container .panel .panel-wrapper{padding:15px;position:relative}#stacks_in_2328 .ls-wrapper .panel-container .panel .panel-wrapper .tab-title{display:none;}#stacks_in_2328 .ls-wrapper .ls-nav{overflow:hidden;clear:both}@media screen and (max-width:600px){#stacks_in_2328 .ls-wrapper .ls-nav{margin-bottom:0;margin-top:0;padding:0}}#stacks_in_2328 .ls-wrapper .ls-nav ul{padding:0;clear:both;display:block;margin:auto;overflow:auto;-webkit-box-sizing:content-box;box-sizing:content-box;margin-bottom:0px;}#stacks_in_2328 .ls-wrapper .ls-nav ul li{display:inline;margin:0;-webkit-box-sizing:content-box;box-sizing:content-box}#stacks_in_2328 .ls-wrapper .ls-nav ul li a{display:block;float:left;text-decoration:none;margin-right:1px;color:#D5D5D5;font-size:20px;height:auto !important;-webkit-transition-property:background,color;transition-property:background,color;-webkit-transition-duration:250ms;transition-duration:250ms;-webkit-transition-timing-function:ease-in-out;transition-timing-function:ease-in-out;text-align:center;background:#734FA2;padding:6px;}#stacks_in_2328 .ls-wrapper .ls-nav ul li a:hover{background:#25033A;color:#FFFFFF}#stacks_in_2328 .ls-wrapper .ls-nav ul li a.current{background:#25033A;color:#FFFFFF}#stacks_in_2328 .ls-wrapper .ls-nav ul li a.current h1,#stacks_in_2328 .ls-wrapper .ls-nav ul li a.current h2,#stacks_in_2328 .ls-wrapper .ls-nav ul li a.current h3,#stacks_in_2328 .ls-wrapper .ls-nav ul li a.current h4,#stacks_in_2328 .ls-wrapper .ls-nav ul li a.current h5,#stacks_in_2328 .ls-wrapper .ls-nav ul li a.current h6,#stacks_in_2328 .ls-wrapper .ls-nav ul li a.current span{color:#FFFFFF}#stacks_in_2328 .ls-wrapper .ls-nav ul li a h1,#stacks_in_2328 .ls-wrapper .ls-nav ul li a h2,#stacks_in_2328 .ls-wrapper .ls-nav ul li a h3,#stacks_in_2328 .ls-wrapper .ls-nav ul li a h4,#stacks_in_2328 .ls-wrapper .ls-nav ul li a h5,#stacks_in_2328 .ls-wrapper .ls-nav ul li a h6,#stacks_in_2328 .ls-wrapper .ls-nav ul li a span{display:inline;font-size:20px;color:#D5D5D5;margin:0}#stacks_in_2328 .ls-wrapper .ls-nav ul li:first-child a{border-top-left-radius:0px;border-bottom-left-radius:0px;}#stacks_in_2328 .ls-wrapper .ls-nav ul li:last-child a{margin-right:0;border-top-right-radius:0px;border-bottom-right-radius:0px;}#stacks_in_2328 .ls-wrapper .ls-select-box{width:100%;height:35px;overflow:hidden;color:#FFFFFF;background:url(../kurse_files/tabulous-images/menu-gray.png) no-repeat 98% 50% #25033A;border-top-left-radius:0px;border-top-right-radius:0px;}#stacks_in_2328 .ls-wrapper .ls-select-box select{width:110%;-webkit-appearance:none;-moz-appearance:none;appearance:none;background:transparent;padding:5px 10px;font-size:110%;border:1px solid #110026;height:35px;cursor:pointer;color:#FFFFFF;border-radius:0;border-top-left-radius:0px;border-top-right-radius:0px;}#stacks_in_2328 .ls-wrapper .ls-select-box select option{font-weight:normal;color:#000000}#stacks_in_2328 .ls-wrapper .ls-nav-left,#stacks_in_2328 .ls-wrapper .ls-nav-right,#stacks_in_2328 .ls-wrapper .ls-nav-left-arrow,#stacks_in_2328 .ls-wrapper .ls-nav-right-arrow{cursor:pointer;position:absolute;top:50px;z-index:100;opacity:0.3 !important;filter:alpha(opacity=30) !important;-webkit-transition:opacity 250ms ease-in-out 0;transition:opacity 250ms ease-in-out 0;background-repeat:no-repeat;background-size:100%}#stacks_in_2328 .ls-wrapper .ls-nav-left a,#stacks_in_2328 .ls-wrapper .ls-nav-right a,#stacks_in_2328 .ls-wrapper .ls-nav-left-arrow a,#stacks_in_2328 .ls-wrapper .ls-nav-right-arrow a{display:block;font-size:25px;color:#000000;text-decoration:none}#stacks_in_2328 .ls-wrapper .ls-nav-left:hover,#stacks_in_2328 .ls-wrapper .ls-nav-right:hover,#stacks_in_2328 .ls-wrapper .ls-nav-left-arrow:hover,#stacks_in_2328 .ls-wrapper .ls-nav-right-arrow:hover{opacity:1.0 !important;filter:alpha(opacity=100) !important}#stacks_in_2328 .ls-wrapper .ls-nav-right,#stacks_in_2328 .ls-wrapper .ls-nav-right-arrow{right:5px}#stacks_in_2328 .ls-wrapper .ls-nav-left,#stacks_in_2328 .ls-wrapper .ls-nav-left-arrow{left:5px}#stacks_in_2328 .ls-wrapper .ls-nav-left-arrow,#stacks_in_2328 .ls-wrapper .ls-nav-right-arrow{width:25px;height:25px}#stacks_in_2328 .ls-wrapper .ls-nav-right-arrow{background-image:url(../kurse_files/tabulous-images/arrow-right.png);background-position:top right}#stacks_in_2328 .ls-wrapper .ls-nav-left-arrow{background-image:url(../kurse_files/tabulous-images/arrow-left.png);background-position:top left}@media screen and (max-width:600px){#stacks_in_2328 .liquid-slider{border-top-left-radius:0!important;border-top-right-radius:0!important}}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_34123 {
	display:inline-block; width:100%; line-height: 1.500000em;
}

/* @group My Group */
#stacks_in_32403 .wrapper{position: relative;padding: 10px;}
#stacks_in_32403 h2.acc_trigger {
	border: px solid ;
	font-size: 16px;
	background: #8D8583;
	color: #FFFFFF;
	padding: 5px;
	margin: 5px 0 5px;
	cursor: pointer;
	-moz-box-shadow: 0 0 3px #000000;
	-webkit-box-shadow: 0 0 3px #000000;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	box-shadow: 0 0 3px #000000;
	}
#stacks_in_32403 h2.acc_trigger:hover, #stacks_in_32403 h2.active{
	border: px  solid ;
	font-size: 16px;
	background: #321B4D;
	color: #FFFFFF;
	padding: 5px;
	}

#stacks_in_32403 h2.acc_trigger a {
	color: #FFFFFF;
	text-decoration: none;
	display: block;
	
}
#stacks_in_32403 h2.acc_trigger a:hover, #stacks_in_32403 h2.active a {
	color: #FFFFFF;
}
#stacks_in_32403 h2.active {}
#stacks_in_32403 .acc_container {
	margin: 10px 0; padding: 0;
	overflow: hidden;
	clear: both;
	background-color: #C5BED1;
	-moz-border-radius: 2px;
	-webkit-border-radius: 2px;
	border-radius: 2px;
	-moz-box-shadow: 0 0 3px #000000;
	-webkit-box-shadow: 0 0 3px #000000;
	box-shadow: 0 0 3px #000000;
	font-size: 1.1em;}
#stacks_in_32403 .acc_container .block {
	padding: 16px;
}
/* @end */#stacks_in_32404{padding-left:0px;padding-right:0px;}#stacks_in_32404 > .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_32404 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32404 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32404 > .jack.width-static{width:500px}#stacks_in_32404 > .jack.width-flexible{width:100%}#stacks_in_32404 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32404 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32404 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32404 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32404 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32404 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32404 > .jack::after{border-radius:0px}#stacks_in_32404 > .jack.border-detailed-radius,#stacks_in_32404 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 20.00px 20.00px}#stacks_in_32404 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32404 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32404 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_32404 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32404 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32404 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32404 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32404 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32404 > .jack.bg-image:not(.glass){}#stacks_in_32404 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32404 > .jack.bg-image.glass.after,#stacks_in_32404 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32404 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32404 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32404 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32404 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32404 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32404 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32404 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32404 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32404 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32404 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32404 > .jack.bg-image.glass.after,#stacks_in_32404 > .glass.jack.bg-image::after{}#stacks_in_32404 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32404 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32404 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_32404 > .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_32404 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32404 > .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_32404 > .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_32404 > .jack.peek-shadow::before,#stacks_in_32404 > .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_32404 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32404 > .jack{overflow:hidden;}#stacks_in_32404 > .jack.height-static{height:100px}#stacks_in_32404 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_32406{padding-left:0px;padding-right:0px;}#stacks_in_32406 > .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_32406 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32406 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32406 > .jack.width-static{width:500px}#stacks_in_32406 > .jack.width-flexible{width:100%}#stacks_in_32406 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32406 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32406 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32406 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32406 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32406 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32406 > .jack::after{border-radius:0px}#stacks_in_32406 > .jack.border-detailed-radius,#stacks_in_32406 > .jack.border-detailed-radius::after{border-radius:20.00px 20.00px 20.00px 20.00px}#stacks_in_32406 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32406 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32406 > .jack.bg-gradient{background-color:#D9D9D9}#stacks_in_32406 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32406 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32406 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32406 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32406 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32406 > .jack.bg-image:not(.glass){}#stacks_in_32406 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32406 > .jack.bg-image.glass.after,#stacks_in_32406 > .glass.jack.bg-image::after{opacity:0.10;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important;padding:0px;background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32406 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32406 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32406 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32406 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32406 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32406 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32406 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32406 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32406 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32406 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32406 > .jack.bg-image.glass.after,#stacks_in_32406 > .glass.jack.bg-image::after{}#stacks_in_32406 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32406 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32406 > .jack.drop-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30)}#stacks_in_32406 > .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_32406 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px -10px 6px 5px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_32406 > .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_32406 > .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_32406 > .jack.peek-shadow::before,#stacks_in_32406 > .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_32406 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32406 > .jack{overflow:hidden;}#stacks_in_32406 > .jack.height-static{height:100px}#stacks_in_32406 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_32472Calligrapher{			font-size: 70% !important;			color: #40006C !important;			font-weight:   bold !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_32472Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32472Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32472Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32472Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32472Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32472Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_32472Calligrapher h6, .stacks_in_32472Calligrapher h5, .stacks_in_32472Calligrapher h4, .stacks_in_32472Calligrapher h3, .stacks_in_32472Calligrapher h2, .stacks_in_32472Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_32472Calligrapher, .stacks_in_32472Calligrapher h1, .stacks_in_32472Calligrapher h2, .stacks_in_32472Calligrapher h3, .stacks_in_32472Calligrapher h4, .stacks_in_32472Calligrapher h5, .stacks_in_32472Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_32472Calligrapher, .stacks_in_32472Calligrapher h1, .stacks_in_32472Calligrapher h2, .stacks_in_32472Calligrapher h3, .stacks_in_32472Calligrapher h4, .stacks_in_32472Calligrapher h5, .stacks_in_32472Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_32472targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_32472Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_32472Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_32472Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_32472Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_32472 {
	margin: 10px 15px 10px 15px;
}
/* Start dooHeader X stack CSS code */.stacks_in_32473x{	display: block !important;	text-decoration: none !important;	text-align: left !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_32473x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_32473x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_32473 {
	margin: 0px 10px 0px 10px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

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

#stacks_in_32166 {
	line-height: 2em;
}
#stacks_in_32169 *,
#stacks_in_32169 *:before,
#stacks_in_32169 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_32170{}#stacks_in_32170 > .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_32170 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_32170 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_32170 > .jack.width-static{width:500px}#stacks_in_32170 > .jack.width-flexible{width:100%}#stacks_in_32170 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_32170 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32170 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_32170 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_32170 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_32170 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_32170 > .jack::after{border-radius:15px}#stacks_in_32170 > .jack.border-detailed-radius,#stacks_in_32170 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_32170 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_32170 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_32170 > .jack.bg-gradient{background-color:#F5DEDA}#stacks_in_32170 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_32170 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_32170 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_32170 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_32170 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32170 > .jack.bg-image:not(.glass){}#stacks_in_32170 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_32170 > .jack.bg-image.glass.after,#stacks_in_32170 > .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_32170 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_32170 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_32170 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_32170 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_32170 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_32170 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_32170 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32170 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_32170 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_32170 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_32170 > .jack.bg-image.glass.after,#stacks_in_32170 > .glass.jack.bg-image::after{}#stacks_in_32170 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_32170 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_32170 > .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_32170 > .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_32170 > .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_32170 > .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_32170 > .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_32170 > .jack.peek-shadow::before,#stacks_in_32170 > .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_32170 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_32170 > .jack{overflow:hidden;}#stacks_in_32170 > .jack.height-static{height:100px}#stacks_in_32170 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_32172 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_32172 .jwresp_col{float:none} #stacks_in_32172 #jwresp_col2_stacks_in_32172{position:relative;margin:0 auto;width:32%;float:none}#stacks_in_32172 #jwresp_col1_stacks_in_32172,#stacks_in_32172 #jwresp_col3_stacks_in_32172{width:32%}#stacks_in_32172 #jwresp_col1_stacks_in_32172{float:left}#stacks_in_32172 #jwresp_col3_stacks_in_32172{float:right} @media screen and (max-width:770px){#stacks_in_32172 #jwresp_col1_stacks_in_32172,#stacks_in_32172 #jwresp_col3_stacks_in_32172{margin-bottom:20px}#stacks_in_32172 #jwresp_col1_stacks_in_32172{width:49%}#stacks_in_32172 #jwresp_col3_stacks_in_32172{width:49%}#stacks_in_32172 #jwresp_col2_stacks_in_32172{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_32172 #jwresp_col1_stacks_in_32172,#stacks_in_32172 #jwresp_col3_stacks_in_32172,#stacks_in_32172 #jwresp_col2_stacks_in_32172{float:none;width:100%;display:block}#stacks_in_32172 #jwresp_col1_stacks_in_32172,#stacks_in_32172 #jwresp_col3_stacks_in_32172{margin-bottom:20px}} 
/* BorderButtonThing by RapidWeaver Central  */

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



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

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

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

/* BorderButtonThing by RapidWeaver Central  */

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



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

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

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

/* BorderButtonThing by RapidWeaver Central  */

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



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

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

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

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

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

#stacks_in_32561 {
	margin:  3px;
	padding: 0px 5px 0px 5px;
}

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

#stacks_in_32565 {
	margin:  3px;
	padding: 0px 5px 0px 5px;
}

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

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



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

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

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


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

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



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

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

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


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

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



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

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

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


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

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_39584 {
	height: 45.00px;
}




























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

#stacks_in_39585 {
	padding:  20px;
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_39586 {
	height: 5.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_39605 {
	height: 45.00px;
}




























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

#stacks_in_39606 {
	padding:  20px;
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_39607 {
	height: 5.00px;
}




























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

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

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

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

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_39626 {
	height: 45.00px;
}




























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

#stacks_in_39627 {
	padding:  20px;
}

.spacerStack {
	height: 55.00px;
}

#spacerStackstacks_in_39628 {
	height: 55.00px;
}




























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

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

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

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

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_39647 {
	height: 75.00px;
}




























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

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

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_39652 {
	height: 20.00px;
}




























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

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

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

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

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_39668 {
	height: 20.00px;
}




























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

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

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

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

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

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

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

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_39692 {
	height: 75.00px;
}




























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

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

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_39697 {
	height: 20.00px;
}




























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

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

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

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

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_39713 {
	height: 75.00px;
}




























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

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

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_39718 {
	height: 20.00px;
}




























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

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

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

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

.spacerStack {
	height: 95.00px;
}

#spacerStackstacks_in_39734 {
	height: 95.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 35.00px;
}

#spacerStackstacks_in_39754 {
	height: 35.00px;
}




























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

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

.spacerStack {
	height: 120.00px;
}

#spacerStackstacks_in_39759 {
	height: 120.00px;
}




























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

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

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

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

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_39775 {
	height: 25.00px;
}




























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

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

.spacerStack {
	height: 70.00px;
}

#spacerStackstacks_in_39780 {
	height: 70.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_39796 {
	height: 50.00px;
}




























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

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

.spacerStack {
	height: 70.00px;
}

#spacerStackstacks_in_39801 {
	height: 70.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_39817 {
	height: 50.00px;
}




























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

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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_39822 {
	height: 40.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_39836 {
	height: 75.00px;
}




























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

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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_39841 {
	height: 40.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_39857 {
	height: 30.00px;
}




























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

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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_39862 {
	height: 40.00px;
}




























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

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

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

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

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

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

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_39878 {
	height: 5.00px;
}




























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

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

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

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

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

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

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

.spacerStack {
	height: 60.00px;
}

#spacerStackstacks_in_39898 {
	height: 60.00px;
}




























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

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

.spacerStack {
	height: 60.00px;
}

#spacerStackstacks_in_39903 {
	height: 60.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_39917 {
	height: 75.00px;
}




























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

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

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

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

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

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

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_39937 {
	height: 75.00px;
}




























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

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

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_39942 {
	height: 80.00px;
}




























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

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

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

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

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

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_39956 {
	height: 30.00px;
}




























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

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

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_39961 {
	height: 80.00px;
}




























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

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

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

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

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

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

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_39977 {
	height: 30.00px;
}




























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

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

.spacerStack {
	height: 120.00px;
}

#spacerStackstacks_in_39982 {
	height: 120.00px;
}




























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

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

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

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

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

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

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_39998 {
	height: 25.00px;
}




























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

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

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_40003 {
	height: 80.00px;
}




























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

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

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

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

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

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

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_40019 {
	height: 75.00px;
}




























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

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

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

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

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

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

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

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_40039 {
	height: 40.00px;
}




























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

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

.spacerStack {
	height: 130.00px;
}

#spacerStackstacks_in_40043 {
	height: 130.00px;
}




























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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_40241 {
	line-height: 2em;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_40242 {
	height: 10.00px;
}




























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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

#stacks_in_31827 {
	margin: 10px 0px 15px 0px;
}
#stacks_in_31829 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_31829 .jwresp_col{float:none} #stacks_in_31829 #jwresp_col2_stacks_in_31829{position:relative;margin:0 auto;width:32%;float:none}#stacks_in_31829 #jwresp_col1_stacks_in_31829,#stacks_in_31829 #jwresp_col3_stacks_in_31829{width:32%}#stacks_in_31829 #jwresp_col1_stacks_in_31829{float:left}#stacks_in_31829 #jwresp_col3_stacks_in_31829{float:right} @media screen and (max-width:770px){#stacks_in_31829 #jwresp_col1_stacks_in_31829,#stacks_in_31829 #jwresp_col3_stacks_in_31829{margin-bottom:20px}#stacks_in_31829 #jwresp_col1_stacks_in_31829{width:49%}#stacks_in_31829 #jwresp_col3_stacks_in_31829{width:49%}#stacks_in_31829 #jwresp_col2_stacks_in_31829{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_31829 #jwresp_col1_stacks_in_31829,#stacks_in_31829 #jwresp_col3_stacks_in_31829,#stacks_in_31829 #jwresp_col2_stacks_in_31829{float:none;width:100%;display:block}#stacks_in_31829 #jwresp_col1_stacks_in_31829,#stacks_in_31829 #jwresp_col3_stacks_in_31829{margin-bottom:20px}} 

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

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



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

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

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

/* BorderButtonThing by RapidWeaver Central  */

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



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

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

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

/* BorderButtonThing by RapidWeaver Central  */

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



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

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

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

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

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

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



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

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

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


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

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



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

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

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


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

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



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

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

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


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