@charset "UTF-8";

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

Copyright (c) 2013 Daniel Eden

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 0;
  }
}

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

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

  100% {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

Copyright (c) 2014 Christian Pucci

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

#stacks_in_31474 {
	font-weight: lighter;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_1741Calligrapher{			line-height: normal !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_1741Calligrapher, .stacks_in_1741Calligrapher h1, .stacks_in_1741Calligrapher h2, .stacks_in_1741Calligrapher h3, .stacks_in_1741Calligrapher h4, .stacks_in_1741Calligrapher h5, .stacks_in_1741Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1741targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- *//* End Calligrapher stack CSS code */#stacks_in_30177{padding-left:0px;padding-right:0px;}#stacks_in_30177 > .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_30177 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_30177 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_30177 > .jack.width-static{width:500px}#stacks_in_30177 > .jack.width-flexible{width:100%}#stacks_in_30177 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_30177 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30177 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_30177 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_30177 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_30177 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_30177 > .jack::after{border-radius:0px}#stacks_in_30177 > .jack.border-detailed-radius,#stacks_in_30177 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_30177 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_30177 > .jack.bg-color{background-color:#89C5FF}#stacks_in_30177 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_30177 > .jack.bg-image:not(.glass){background-image:url(../about_files/bgImage-30177.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30177 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_30177 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_30177 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_7_col.jpg)}#stacks_in_30177 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30177 > .jack.bg-image:not(.glass){}#stacks_in_30177 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_30177 > .jack.bg-image.glass.after,#stacks_in_30177 > .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(../about_files/bgImage-30177.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30177 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_30177 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30177 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_30177 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_30177 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_30177 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_30177 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30177 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_7_col.jpg)}#stacks_in_30177 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_30177 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30177 > .jack.bg-image.glass.after,#stacks_in_30177 > .glass.jack.bg-image::after{}#stacks_in_30177 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30177 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_30177 > .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_30177 > .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_30177 > .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_30177 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_30177 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_30177 > .jack.peek-shadow::before,#stacks_in_30177 > .jack.peek-shadow::after{-webkit-box-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_30177 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_30177 > .jack{overflow:hidden;}#stacks_in_30177 > .jack.height-static{height:20px}#stacks_in_30177 > .jack.height-minmax{min-height:100px;max-height:800px}

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

#stacks_in_11622 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_11614 *,
#stacks_in_11614 *:before,
#stacks_in_11614 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_11616{}#stacks_in_11616 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:20px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_11616 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_11616 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_11616 > .jack.width-static{width:500px}#stacks_in_11616 > .jack.width-flexible{width:100%}#stacks_in_11616 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_11616 > .jack.padding-detailed{padding:20.00px 20.00px 0.00px 20.00px}#stacks_in_11616 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_11616 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_11616 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_11616 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_11616 > .jack::after{border-radius:20px}#stacks_in_11616 > .jack.border-detailed-radius,#stacks_in_11616 > .jack.border-detailed-radius::after{border-radius:15.00px 15.00px 0.00px 0.00px}#stacks_in_11616 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_11616 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_11616 > .jack.bg-gradient{background-color:#94E7FD}#stacks_in_11616 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_11616 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_11616 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_11616 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_11616 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_11616 > .jack.bg-image:not(.glass){}#stacks_in_11616 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_11616 > .jack.bg-image.glass.after,#stacks_in_11616 > .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_11616 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_11616 > .glass.padding-detailed.jack.bg-image::after{padding:20.00px 20.00px 0.00px 20.00px}#stacks_in_11616 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_11616 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_11616 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_11616 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_11616 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_11616 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_11616 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_11616 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_11616 > .jack.bg-image.glass.after,#stacks_in_11616 > .glass.jack.bg-image::after{}#stacks_in_11616 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_11616 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_11616 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_11616 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_11616 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_11616 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_11616 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_11616 > .jack.peek-shadow::before,#stacks_in_11616 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_11616 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_11616 > .jack{overflow:hidden;}#stacks_in_11616 > .jack.height-static{height:100px}#stacks_in_11616 > .jack.height-minmax{min-height:100px;max-height:800px}
/* LinkThing by RapidWeaver Central  */



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

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

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

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

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

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



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

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

#stacks_in_11618 .link_effect2stacks_in_11618 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

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

#stacks_in_11618 .link_effect3stacks_in_11618 {
  	text-decoration: none;
}

#stacks_in_11618 .link_effect3stacks_in_11618 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

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



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

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

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

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

#stacks_in_11618 .link_effect4stacks_in_11618 {
}

#stacks_in_11618 .link_effect4stacks_in_11618 a {
	font-weight:normal;;
}

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

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




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


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

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

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

#stacks_in_11618 .link_effect5stacks_in_11618 a {
	overflow: hidden;
	font-weight: 500;
}

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

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





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

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

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

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


#stacks_in_11618 .link_effect6stacks_in_11618 a {
	overflow: hidden;
	font-weight:normal;;
}

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

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




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

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

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

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

#stacks_in_11618 .link_effect7stacks_in_11618 {
	position: relative;
}

#stacks_in_11618 .link_effect7stacks_in_11618 a {
	vertical-align: bottom;
	font-weight:normal;;
}


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

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





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

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

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

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



#stacks_in_11618 .link_effect8stacks_in_11618 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_11618 .link_effect8stacks_in_11618 a:hover,
#stacks_in_11618 .link_effect8stacks_in_11618 a:focus {
	color: #DA4453 !important;
}

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

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

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



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

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

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


#stacks_in_11618 .link_effect9stacks_in_11618 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_11618 .link_effect9stacks_in_11618 a:hover,
#stacks_in_11618 .link_effect9stacks_in_11618 a:focus {
	color: #DA4453 !important;
}

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

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

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

#stacks_in_11618 .link_effect9stacks_in_11618 a::after {
	border-bottom: 2px solid  #DA4453;
}



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

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

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

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

#stacks_in_11618 .link_effect10stacks_in_11618 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

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

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

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



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

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

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

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


#stacks_in_11618 .link_effect11stacks_in_11618 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_11618 .link_effect11stacks_in_11618 a:hover,
#stacks_in_11618 .link_effect11stacks_in_11618 a:focus {
	color: #DA4453 !important;
}

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

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




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

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

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

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

#stacks_in_11618 .link_effect12stacks_in_11618 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

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

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

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

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


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

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

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

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

#stacks_in_11618 .link_effect13stacks_in_11618 {
}

#stacks_in_11618 .link_effect13stacks_in_11618 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
}

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

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


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

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

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

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


#stacks_in_11618 .link_effect14stacks_in_11618 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

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

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

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

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

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


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

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

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

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


#stacks_in_11618 .link_effect15stacks_in_11618 a {
	overflow: hidden;
	font-weight:normal;;
}

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

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

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

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

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

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



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

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

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

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

#stacks_in_11618 .link_effect16stacks_in_11618 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_11618 .link_effect16stacks_in_11618 a:hover {
	color: #d04c3f;
}

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

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

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

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



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

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

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

#stacks_in_11618 .link_effect17stacks_in_11618 a:hover:after {
  	width: 0;
}


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

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

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

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


#stacks_in_11618 .link_effect18stacks_in_11618 {
}

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

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

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

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

#stacks_in_11618 .link_effect18stacks_in_11618 a:hover,
#stacks_in_11618 .link_effect18stacks_in_11618 a:focus {
	color: #fff;
}

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





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


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

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

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

.link_effect19stacks_in_11618 a {
}

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

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



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

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

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

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

.link_effect20stacks_in_11618 a {
}

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

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


































#stacks_in_11620 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_11556 *,
#stacks_in_11556 *:before,
#stacks_in_11556 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_11558{}#stacks_in_11558 > .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_11558 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_11558 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_11558 > .jack.width-static{width:500px}#stacks_in_11558 > .jack.width-flexible{width:100%}#stacks_in_11558 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_11558 > .jack.padding-detailed{padding:0.00px 20.00px 0.00px 20.00px}#stacks_in_11558 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_11558 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_11558 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_11558 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_11558 > .jack::after{border-radius:0px}#stacks_in_11558 > .jack.border-detailed-radius,#stacks_in_11558 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_11558 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_11558 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_11558 > .jack.bg-gradient{background-color:#94E7FD}#stacks_in_11558 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_11558 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_11558 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_11558 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_11558 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_11558 > .jack.bg-image:not(.glass){}#stacks_in_11558 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_11558 > .jack.bg-image.glass.after,#stacks_in_11558 > .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_11558 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_11558 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 20.00px 0.00px 20.00px}#stacks_in_11558 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_11558 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_11558 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_11558 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_11558 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_11558 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_11558 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_11558 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_11558 > .jack.bg-image.glass.after,#stacks_in_11558 > .glass.jack.bg-image::after{}#stacks_in_11558 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_11558 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_11558 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_11558 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_11558 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_11558 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_11558 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_11558 > .jack.peek-shadow::before,#stacks_in_11558 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_11558 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_11558 > .jack{overflow:hidden;}#stacks_in_11558 > .jack.height-static{height:100px}#stacks_in_11558 > .jack.height-minmax{min-height:100px;max-height:800px}
/* LinkThing by RapidWeaver Central  */



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

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

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

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

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

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



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

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

#stacks_in_11562 .link_effect2stacks_in_11562 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

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

#stacks_in_11562 .link_effect3stacks_in_11562 {
  	text-decoration: none;
}

#stacks_in_11562 .link_effect3stacks_in_11562 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

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



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

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

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

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

#stacks_in_11562 .link_effect4stacks_in_11562 {
}

#stacks_in_11562 .link_effect4stacks_in_11562 a {
	font-weight:normal;;
}

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

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




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


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

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

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

#stacks_in_11562 .link_effect5stacks_in_11562 a {
	overflow: hidden;
	font-weight: 500;
}

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

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





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

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

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

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


#stacks_in_11562 .link_effect6stacks_in_11562 a {
	overflow: hidden;
	font-weight:normal;;
}

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

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




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

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

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

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

#stacks_in_11562 .link_effect7stacks_in_11562 {
	position: relative;
}

#stacks_in_11562 .link_effect7stacks_in_11562 a {
	vertical-align: bottom;
	font-weight:normal;;
}


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

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





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

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

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

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



#stacks_in_11562 .link_effect8stacks_in_11562 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_11562 .link_effect8stacks_in_11562 a:hover,
#stacks_in_11562 .link_effect8stacks_in_11562 a:focus {
	color: #DA4453 !important;
}

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

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

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



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

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

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


#stacks_in_11562 .link_effect9stacks_in_11562 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_11562 .link_effect9stacks_in_11562 a:hover,
#stacks_in_11562 .link_effect9stacks_in_11562 a:focus {
	color: #DA4453 !important;
}

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

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

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

#stacks_in_11562 .link_effect9stacks_in_11562 a::after {
	border-bottom: 2px solid  #DA4453;
}



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

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

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

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

#stacks_in_11562 .link_effect10stacks_in_11562 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

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

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

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



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

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

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

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


#stacks_in_11562 .link_effect11stacks_in_11562 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_11562 .link_effect11stacks_in_11562 a:hover,
#stacks_in_11562 .link_effect11stacks_in_11562 a:focus {
	color: #DA4453 !important;
}

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

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




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

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

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

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

#stacks_in_11562 .link_effect12stacks_in_11562 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

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

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

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

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


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

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

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

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

#stacks_in_11562 .link_effect13stacks_in_11562 {
}

#stacks_in_11562 .link_effect13stacks_in_11562 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
}

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

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


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

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

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

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


#stacks_in_11562 .link_effect14stacks_in_11562 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

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

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

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

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

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


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

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

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

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


#stacks_in_11562 .link_effect15stacks_in_11562 a {
	overflow: hidden;
	font-weight:normal;;
}

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

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

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

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

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

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



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

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

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

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

#stacks_in_11562 .link_effect16stacks_in_11562 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_11562 .link_effect16stacks_in_11562 a:hover {
	color: #d04c3f;
}

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

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

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

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



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

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

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

#stacks_in_11562 .link_effect17stacks_in_11562 a:hover:after {
  	width: 0;
}


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

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

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

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


#stacks_in_11562 .link_effect18stacks_in_11562 {
}

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

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

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

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

#stacks_in_11562 .link_effect18stacks_in_11562 a:hover,
#stacks_in_11562 .link_effect18stacks_in_11562 a:focus {
	color: #fff;
}

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





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


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

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

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

.link_effect19stacks_in_11562 a {
}

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

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



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

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

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

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

.link_effect20stacks_in_11562 a {
}

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

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


































#stacks_in_11564 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_11578 *,
#stacks_in_11578 *:before,
#stacks_in_11578 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_11580{}#stacks_in_11580 > .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_11580 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_11580 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_11580 > .jack.width-static{width:500px}#stacks_in_11580 > .jack.width-flexible{width:100%}#stacks_in_11580 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_11580 > .jack.padding-detailed{padding:0.00px 20.00px 0.00px 20.00px}#stacks_in_11580 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_11580 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_11580 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_11580 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_11580 > .jack::after{border-radius:0px}#stacks_in_11580 > .jack.border-detailed-radius,#stacks_in_11580 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_11580 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_11580 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_11580 > .jack.bg-gradient{background-color:#94E7FD}#stacks_in_11580 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_11580 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_11580 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_11580 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_11580 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_11580 > .jack.bg-image:not(.glass){}#stacks_in_11580 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_11580 > .jack.bg-image.glass.after,#stacks_in_11580 > .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_11580 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_11580 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 20.00px 0.00px 20.00px}#stacks_in_11580 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_11580 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_11580 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_11580 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_11580 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_11580 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_11580 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_11580 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_11580 > .jack.bg-image.glass.after,#stacks_in_11580 > .glass.jack.bg-image::after{}#stacks_in_11580 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_11580 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_11580 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_11580 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_11580 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_11580 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_11580 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_11580 > .jack.peek-shadow::before,#stacks_in_11580 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_11580 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_11580 > .jack{overflow:hidden;}#stacks_in_11580 > .jack.height-static{height:100px}#stacks_in_11580 > .jack.height-minmax{min-height:100px;max-height:800px}
/* LinkThing by RapidWeaver Central  */



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

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

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

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

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

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



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

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

#stacks_in_11582 .link_effect2stacks_in_11582 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

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

#stacks_in_11582 .link_effect3stacks_in_11582 {
  	text-decoration: none;
}

#stacks_in_11582 .link_effect3stacks_in_11582 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

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



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

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

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

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

#stacks_in_11582 .link_effect4stacks_in_11582 {
}

#stacks_in_11582 .link_effect4stacks_in_11582 a {
	font-weight:normal;;
}

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

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




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


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

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

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

#stacks_in_11582 .link_effect5stacks_in_11582 a {
	overflow: hidden;
	font-weight: 500;
}

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

#stacks_in_11582 .link_effect5stacks_in_11582 a:hover::before,
#stacks_in_11582 .link_effect5stacks_in_11582 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_11582 .link_effect6stacks_in_11582 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_11582 .link_effect6stacks_in_11582 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11582 .link_effect6stacks_in_11582 a::before,
#stacks_in_11582 .link_effect6stacks_in_11582 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_11582 .link_effect6stacks_in_11582 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_11582 .link_effect6stacks_in_11582 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_11582 .link_effect6stacks_in_11582 a:hover::before,
#stacks_in_11582 .link_effect6stacks_in_11582 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_11582 .link_effect7stacks_in_11582 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_11582 .link_effect7stacks_in_11582 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11582 .link_effect7stacks_in_11582 a::before,
#stacks_in_11582 .link_effect7stacks_in_11582 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_11582 .link_effect7stacks_in_11582 {
	position: relative;
}

#stacks_in_11582 .link_effect7stacks_in_11582 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_11582 .link_effect7stacks_in_11582 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_11582 .link_effect7stacks_in_11582 a:hover::before,
#stacks_in_11582 .link_effect7stacks_in_11582 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_11582 .link_effect8stacks_in_11582 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_11582 .link_effect8stacks_in_11582 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11582 .link_effect8stacks_in_11582 a::before,
#stacks_in_11582 .link_effect8stacks_in_11582 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_11582 .link_effect8stacks_in_11582 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_11582 .link_effect8stacks_in_11582 a:hover,
#stacks_in_11582 .link_effect8stacks_in_11582 a:focus {
	color: #DA4453 !important;
}

#stacks_in_11582 .link_effect8stacks_in_11582 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_11582 .link_effect8stacks_in_11582 a:hover::before,
#stacks_in_11582 .link_effect8stacks_in_11582 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_11582 .link_effect9stacks_in_11582 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_11582 .link_effect9stacks_in_11582 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11582 .link_effect9stacks_in_11582 a::before,
#stacks_in_11582 .link_effect9stacks_in_11582 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_11582 .link_effect9stacks_in_11582 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_11582 .link_effect9stacks_in_11582 a:hover,
#stacks_in_11582 .link_effect9stacks_in_11582 a:focus {
	color: #DA4453 !important;
}

#stacks_in_11582 .link_effect9stacks_in_11582 a::before,
#stacks_in_11582 .link_effect9stacks_in_11582 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_11582 .link_effect9stacks_in_11582 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_11582 .link_effect9stacks_in_11582 a:hover::before,
#stacks_in_11582 .link_effect9stacks_in_11582 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_11582 .link_effect9stacks_in_11582 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_11582 .link_effect10stacks_in_11582 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_11582 .link_effect10stacks_in_11582 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11582 .link_effect10stacks_in_11582 a::before,
#stacks_in_11582 .link_effect10stacks_in_11582 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_11582 .link_effect10stacks_in_11582 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_11582 .link_effect10stacks_in_11582 a:hover,
#stacks_in_11582 .link_effect10stacks_in_11582 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_11582 .link_effect10stacks_in_11582 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_11582 .link_effect10stacks_in_11582 a:hover::before,
#stacks_in_11582 .link_effect10stacks_in_11582 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_11582 .link_effect11stacks_in_11582 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_11582 .link_effect11stacks_in_11582 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11582 .link_effect11stacks_in_11582 a::before,
#stacks_in_11582 .link_effect11stacks_in_11582 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_11582 .link_effect11stacks_in_11582 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_11582 .link_effect11stacks_in_11582 a:hover,
#stacks_in_11582 .link_effect11stacks_in_11582 a:focus {
	color: #DA4453 !important;
}

#stacks_in_11582 .link_effect11stacks_in_11582 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_11582 .link_effect11stacks_in_11582 a:hover::before,
#stacks_in_11582 .link_effect11stacks_in_11582 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_11582 .link_effect12stacks_in_11582 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_11582 .link_effect12stacks_in_11582 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11582 .link_effect12stacks_in_11582 a::before,
#stacks_in_11582 .link_effect12stacks_in_11582 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_11582 .link_effect12stacks_in_11582 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_11582 .link_effect12stacks_in_11582 a:hover,
#stacks_in_11582 .link_effect12stacks_in_11582 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_11582 .link_effect12stacks_in_11582 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_11582 .link_effect12stacks_in_11582 a,
#stacks_in_11582 .link_effect12stacks_in_11582 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_11582 .link_effect12stacks_in_11582 a:hover::before,
#stacks_in_11582 .link_effect12stacks_in_11582 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_11582 .link_effect13stacks_in_11582 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_11582 .link_effect13stacks_in_11582 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11582 .link_effect13stacks_in_11582 a::before,
#stacks_in_11582 .link_effect13stacks_in_11582 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_11582 .link_effect13stacks_in_11582 {
}

#stacks_in_11582 .link_effect13stacks_in_11582 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
}

#stacks_in_11582 .link_effect13stacks_in_11582 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../about_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_11582 .link_effect13stacks_in_11582 a:hover::before,
#stacks_in_11582 .link_effect13stacks_in_11582 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_11582 .link_effect14stacks_in_11582 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_11582 .link_effect14stacks_in_11582 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11582 .link_effect14stacks_in_11582 a::before,
#stacks_in_11582 .link_effect14stacks_in_11582 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_11582 .link_effect14stacks_in_11582 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_11582 .link_effect14stacks_in_11582 a:hover,
#stacks_in_11582 .link_effect14stacks_in_11582 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_11582 .link_effect14stacks_in_11582 a::before,
#stacks_in_11582 .link_effect14stacks_in_11582 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_11582 .link_effect14stacks_in_11582 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_11582 .link_effect14stacks_in_11582 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../about_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_11582 .link_effect14stacks_in_11582 a:hover::after,
#stacks_in_11582 .link_effect14stacks_in_11582 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_11582 .link_effect15stacks_in_11582 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_11582 .link_effect15stacks_in_11582 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11582 .link_effect15stacks_in_11582 a::before,
#stacks_in_11582 .link_effect15stacks_in_11582 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_11582 .link_effect15stacks_in_11582 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_11582 .link_effect15stacks_in_11582 a::before,
#stacks_in_11582 .link_effect15stacks_in_11582 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_11582 .link_effect15stacks_in_11582 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_11582 .link_effect15stacks_in_11582 a:hover::before,
#stacks_in_11582 .link_effect15stacks_in_11582 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_11582 .link_effect15stacks_in_11582 a:hover::before,
#stacks_in_11582 .link_effect15stacks_in_11582 a:focus::before,
#stacks_in_11582 .link_effect15stacks_in_11582 a:hover::after,
#stacks_in_11582 .link_effect15stacks_in_11582 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_11582 .link_effect15stacks_in_11582 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_11582 .link_effect15stacks_in_11582 a:hover::after,
#stacks_in_11582 .link_effect15stacks_in_11582 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_11582 .link_effect16stacks_in_11582 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_11582 .link_effect16stacks_in_11582 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11582 .link_effect16stacks_in_11582 a::before,
#stacks_in_11582 .link_effect16stacks_in_11582 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_11582 .link_effect16stacks_in_11582 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_11582 .link_effect16stacks_in_11582 a:hover {
	color: #d04c3f;
}

#stacks_in_11582 .link_effect16stacks_in_11582 a::before,
#stacks_in_11582 .link_effect16stacks_in_11582 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_11582 .link_effect16stacks_in_11582 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_11582 .link_effect16stacks_in_11582 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_11582 .link_effect16stacks_in_11582 a:hover::before,
#stacks_in_11582 .link_effect16stacks_in_11582 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_11582 .link_effect17stacks_in_11582 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_11582 .link_effect17stacks_in_11582 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #4211A2 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_11582 .link_effect17stacks_in_11582 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_11582 .link_effect18stacks_in_11582 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_11582 .link_effect18stacks_in_11582 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11582 .link_effect18stacks_in_11582 a::before,
#stacks_in_11582 .link_effect18stacks_in_11582 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_11582 .link_effect18stacks_in_11582 {
}

#stacks_in_11582 .link_effect18stacks_in_11582 a {
	padding: 0 ;
	color: #4211A2;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_11582 .link_effect18stacks_in_11582 a::before,
#stacks_in_11582 .link_effect18stacks_in_11582 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #4211A2;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_11582 .link_effect18stacks_in_11582 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_11582 .link_effect18stacks_in_11582 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_11582 .link_effect18stacks_in_11582 a:hover,
#stacks_in_11582 .link_effect18stacks_in_11582 a:focus {
	color: #fff;
}

#stacks_in_11582 .link_effect18stacks_in_11582 a:hover::before,
#stacks_in_11582 .link_effect18stacks_in_11582 a:focus::before,
#stacks_in_11582 .link_effect18stacks_in_11582 a:hover::after,
#stacks_in_11582 .link_effect18stacks_in_11582 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_11582 .link_effect19stacks_in_11582 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_11582 .link_effect19stacks_in_11582 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11582 .link_effect19stacks_in_11582 a::before,
#stacks_in_11582 .link_effect19stacks_in_11582 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_11582 a {
}

.link_effect19stacks_in_11582 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_11582 a:hover::after,
.link_effect19stacks_in_11582 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_11582 .link_effect20stacks_in_11582 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_11582 .link_effect20stacks_in_11582 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11582 .link_effect20stacks_in_11582 a::before,
#stacks_in_11582 .link_effect20stacks_in_11582 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_11582 a {
}

.link_effect20stacks_in_11582 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_11582 a:hover::after,
.link_effect20stacks_in_11582 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_11584 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_11522 *,
#stacks_in_11522 *:before,
#stacks_in_11522 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
#stacks_in_11524{}#stacks_in_11524 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:20px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_11524 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_11524 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_11524 > .jack.width-static{width:500px}#stacks_in_11524 > .jack.width-flexible{width:100%}#stacks_in_11524 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_11524 > .jack.padding-detailed{padding:0.00px 20.00px 20.00px 20.00px}#stacks_in_11524 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_11524 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_11524 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_11524 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_11524 > .jack::after{border-radius:20px}#stacks_in_11524 > .jack.border-detailed-radius,#stacks_in_11524 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_11524 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_11524 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_11524 > .jack.bg-gradient{background-color:#3E7D8F}#stacks_in_11524 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_11524 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_11524 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_11524 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_11524 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_11524 > .jack.bg-image:not(.glass){}#stacks_in_11524 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_11524 > .jack.bg-image.glass.after,#stacks_in_11524 > .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_11524 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_11524 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 20.00px 20.00px 20.00px}#stacks_in_11524 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_11524 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_11524 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_11524 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_11524 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_11524 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_11524 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_11524 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_11524 > .jack.bg-image.glass.after,#stacks_in_11524 > .glass.jack.bg-image::after{}#stacks_in_11524 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_11524 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_11524 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_11524 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_11524 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_11524 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_11524 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_11524 > .jack.peek-shadow::before,#stacks_in_11524 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_11524 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_11524 > .jack{overflow:hidden;}#stacks_in_11524 > .jack.height-static{height:100px}#stacks_in_11524 > .jack.height-minmax{min-height:100px;max-height:800px}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_11526 a:before, .link_effect1stacks_in_11526 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #4211A2 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_11526 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_11526 a:hover:before, .link_effect1stacks_in_11526 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_11526 a   {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_11526 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_11526 .link_effect2stacks_in_11526 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_11526 .link_effect2stacks_in_11526 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_11526 .link_effect3stacks_in_11526 {
  	text-decoration: none;
}

#stacks_in_11526 .link_effect3stacks_in_11526 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_11526 .link_effect3stacks_in_11526 a:hover,
#stacks_in_11526 .link_effect3stacks_in_11526 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_11526 .link_effect4stacks_in_11526 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_11526 .link_effect4stacks_in_11526 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11526 .link_effect4stacks_in_11526 a::before,
#stacks_in_11526 .link_effect%stacks_in_11526 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_11526 .link_effect4stacks_in_11526 {
}

#stacks_in_11526 .link_effect4stacks_in_11526 a {
	font-weight:normal;;
}

#stacks_in_11526 .link_effect4stacks_in_11526 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_11526 .link_effect4stacks_in_11526 a:hover::before,
#stacks_in_11526 .link_effect4stacks_in_11526 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_11526 .link_effect5stacks_in_11526 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_11526 .link_effect5stacks_in_11526 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11526 .link_effect5stacks_in_11526 a::before,
#stacks_in_11526 .link_effect5stacks_in_11526 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_11526 .link_effect5stacks_in_11526 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_11526 .link_effect5stacks_in_11526 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_11526 .link_effect5stacks_in_11526 a:hover::before,
#stacks_in_11526 .link_effect5stacks_in_11526 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_11526 .link_effect6stacks_in_11526 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_11526 .link_effect6stacks_in_11526 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11526 .link_effect6stacks_in_11526 a::before,
#stacks_in_11526 .link_effect6stacks_in_11526 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_11526 .link_effect6stacks_in_11526 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_11526 .link_effect6stacks_in_11526 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_11526 .link_effect6stacks_in_11526 a:hover::before,
#stacks_in_11526 .link_effect6stacks_in_11526 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_11526 .link_effect7stacks_in_11526 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_11526 .link_effect7stacks_in_11526 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11526 .link_effect7stacks_in_11526 a::before,
#stacks_in_11526 .link_effect7stacks_in_11526 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_11526 .link_effect7stacks_in_11526 {
	position: relative;
}

#stacks_in_11526 .link_effect7stacks_in_11526 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_11526 .link_effect7stacks_in_11526 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_11526 .link_effect7stacks_in_11526 a:hover::before,
#stacks_in_11526 .link_effect7stacks_in_11526 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_11526 .link_effect8stacks_in_11526 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_11526 .link_effect8stacks_in_11526 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11526 .link_effect8stacks_in_11526 a::before,
#stacks_in_11526 .link_effect8stacks_in_11526 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_11526 .link_effect8stacks_in_11526 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_11526 .link_effect8stacks_in_11526 a:hover,
#stacks_in_11526 .link_effect8stacks_in_11526 a:focus {
	color: #DA4453 !important;
}

#stacks_in_11526 .link_effect8stacks_in_11526 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_11526 .link_effect8stacks_in_11526 a:hover::before,
#stacks_in_11526 .link_effect8stacks_in_11526 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_11526 .link_effect9stacks_in_11526 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_11526 .link_effect9stacks_in_11526 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11526 .link_effect9stacks_in_11526 a::before,
#stacks_in_11526 .link_effect9stacks_in_11526 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_11526 .link_effect9stacks_in_11526 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_11526 .link_effect9stacks_in_11526 a:hover,
#stacks_in_11526 .link_effect9stacks_in_11526 a:focus {
	color: #DA4453 !important;
}

#stacks_in_11526 .link_effect9stacks_in_11526 a::before,
#stacks_in_11526 .link_effect9stacks_in_11526 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_11526 .link_effect9stacks_in_11526 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_11526 .link_effect9stacks_in_11526 a:hover::before,
#stacks_in_11526 .link_effect9stacks_in_11526 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_11526 .link_effect9stacks_in_11526 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_11526 .link_effect10stacks_in_11526 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_11526 .link_effect10stacks_in_11526 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11526 .link_effect10stacks_in_11526 a::before,
#stacks_in_11526 .link_effect10stacks_in_11526 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_11526 .link_effect10stacks_in_11526 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_11526 .link_effect10stacks_in_11526 a:hover,
#stacks_in_11526 .link_effect10stacks_in_11526 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_11526 .link_effect10stacks_in_11526 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_11526 .link_effect10stacks_in_11526 a:hover::before,
#stacks_in_11526 .link_effect10stacks_in_11526 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_11526 .link_effect11stacks_in_11526 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_11526 .link_effect11stacks_in_11526 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11526 .link_effect11stacks_in_11526 a::before,
#stacks_in_11526 .link_effect11stacks_in_11526 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_11526 .link_effect11stacks_in_11526 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_11526 .link_effect11stacks_in_11526 a:hover,
#stacks_in_11526 .link_effect11stacks_in_11526 a:focus {
	color: #DA4453 !important;
}

#stacks_in_11526 .link_effect11stacks_in_11526 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_11526 .link_effect11stacks_in_11526 a:hover::before,
#stacks_in_11526 .link_effect11stacks_in_11526 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_11526 .link_effect12stacks_in_11526 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_11526 .link_effect12stacks_in_11526 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11526 .link_effect12stacks_in_11526 a::before,
#stacks_in_11526 .link_effect12stacks_in_11526 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_11526 .link_effect12stacks_in_11526 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_11526 .link_effect12stacks_in_11526 a:hover,
#stacks_in_11526 .link_effect12stacks_in_11526 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_11526 .link_effect12stacks_in_11526 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_11526 .link_effect12stacks_in_11526 a,
#stacks_in_11526 .link_effect12stacks_in_11526 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_11526 .link_effect12stacks_in_11526 a:hover::before,
#stacks_in_11526 .link_effect12stacks_in_11526 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_11526 .link_effect13stacks_in_11526 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_11526 .link_effect13stacks_in_11526 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11526 .link_effect13stacks_in_11526 a::before,
#stacks_in_11526 .link_effect13stacks_in_11526 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_11526 .link_effect13stacks_in_11526 {
}

#stacks_in_11526 .link_effect13stacks_in_11526 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
}

#stacks_in_11526 .link_effect13stacks_in_11526 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../about_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_11526 .link_effect13stacks_in_11526 a:hover::before,
#stacks_in_11526 .link_effect13stacks_in_11526 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_11526 .link_effect14stacks_in_11526 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_11526 .link_effect14stacks_in_11526 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11526 .link_effect14stacks_in_11526 a::before,
#stacks_in_11526 .link_effect14stacks_in_11526 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_11526 .link_effect14stacks_in_11526 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_11526 .link_effect14stacks_in_11526 a:hover,
#stacks_in_11526 .link_effect14stacks_in_11526 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_11526 .link_effect14stacks_in_11526 a::before,
#stacks_in_11526 .link_effect14stacks_in_11526 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_11526 .link_effect14stacks_in_11526 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_11526 .link_effect14stacks_in_11526 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../about_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_11526 .link_effect14stacks_in_11526 a:hover::after,
#stacks_in_11526 .link_effect14stacks_in_11526 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_11526 .link_effect15stacks_in_11526 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_11526 .link_effect15stacks_in_11526 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11526 .link_effect15stacks_in_11526 a::before,
#stacks_in_11526 .link_effect15stacks_in_11526 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_11526 .link_effect15stacks_in_11526 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_11526 .link_effect15stacks_in_11526 a::before,
#stacks_in_11526 .link_effect15stacks_in_11526 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_11526 .link_effect15stacks_in_11526 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_11526 .link_effect15stacks_in_11526 a:hover::before,
#stacks_in_11526 .link_effect15stacks_in_11526 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_11526 .link_effect15stacks_in_11526 a:hover::before,
#stacks_in_11526 .link_effect15stacks_in_11526 a:focus::before,
#stacks_in_11526 .link_effect15stacks_in_11526 a:hover::after,
#stacks_in_11526 .link_effect15stacks_in_11526 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_11526 .link_effect15stacks_in_11526 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_11526 .link_effect15stacks_in_11526 a:hover::after,
#stacks_in_11526 .link_effect15stacks_in_11526 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_11526 .link_effect16stacks_in_11526 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_11526 .link_effect16stacks_in_11526 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11526 .link_effect16stacks_in_11526 a::before,
#stacks_in_11526 .link_effect16stacks_in_11526 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_11526 .link_effect16stacks_in_11526 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_11526 .link_effect16stacks_in_11526 a:hover {
	color: #d04c3f;
}

#stacks_in_11526 .link_effect16stacks_in_11526 a::before,
#stacks_in_11526 .link_effect16stacks_in_11526 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_11526 .link_effect16stacks_in_11526 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_11526 .link_effect16stacks_in_11526 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_11526 .link_effect16stacks_in_11526 a:hover::before,
#stacks_in_11526 .link_effect16stacks_in_11526 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_11526 .link_effect17stacks_in_11526 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_11526 .link_effect17stacks_in_11526 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #4211A2 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_11526 .link_effect17stacks_in_11526 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_11526 .link_effect18stacks_in_11526 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_11526 .link_effect18stacks_in_11526 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11526 .link_effect18stacks_in_11526 a::before,
#stacks_in_11526 .link_effect18stacks_in_11526 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_11526 .link_effect18stacks_in_11526 {
}

#stacks_in_11526 .link_effect18stacks_in_11526 a {
	padding: 0 ;
	color: #4211A2;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_11526 .link_effect18stacks_in_11526 a::before,
#stacks_in_11526 .link_effect18stacks_in_11526 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #4211A2;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_11526 .link_effect18stacks_in_11526 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_11526 .link_effect18stacks_in_11526 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_11526 .link_effect18stacks_in_11526 a:hover,
#stacks_in_11526 .link_effect18stacks_in_11526 a:focus {
	color: #fff;
}

#stacks_in_11526 .link_effect18stacks_in_11526 a:hover::before,
#stacks_in_11526 .link_effect18stacks_in_11526 a:focus::before,
#stacks_in_11526 .link_effect18stacks_in_11526 a:hover::after,
#stacks_in_11526 .link_effect18stacks_in_11526 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_11526 .link_effect19stacks_in_11526 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_11526 .link_effect19stacks_in_11526 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11526 .link_effect19stacks_in_11526 a::before,
#stacks_in_11526 .link_effect19stacks_in_11526 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_11526 a {
}

.link_effect19stacks_in_11526 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_11526 a:hover::after,
.link_effect19stacks_in_11526 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_11526 .link_effect20stacks_in_11526 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_11526 .link_effect20stacks_in_11526 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_11526 .link_effect20stacks_in_11526 a::before,
#stacks_in_11526 .link_effect20stacks_in_11526 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_11526 a {
}

.link_effect20stacks_in_11526 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_11526 a:hover::after,
.link_effect20stacks_in_11526 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_11528 {
	margin:  20px;
	padding:  20px;
}
#stacks_in_31477{padding-left:0px;padding-right:0px;}#stacks_in_31477 > .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_31477 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31477 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31477 > .jack.width-static{width:500px}#stacks_in_31477 > .jack.width-flexible{width:100%}#stacks_in_31477 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31477 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31477 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31477 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31477 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31477 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31477 > .jack::after{border-radius:0px}#stacks_in_31477 > .jack.border-detailed-radius,#stacks_in_31477 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31477 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31477 > .jack.bg-color{background-color:#89C5FF}#stacks_in_31477 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_31477 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31477 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31477 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31477 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31477 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31477 > .jack.bg-image:not(.glass){}#stacks_in_31477 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31477 > .jack.bg-image.glass.after,#stacks_in_31477 > .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_31477 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31477 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31477 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31477 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31477 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31477 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31477 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31477 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31477 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31477 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31477 > .jack.bg-image.glass.after,#stacks_in_31477 > .glass.jack.bg-image::after{}#stacks_in_31477 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31477 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31477 > .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_31477 > .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_31477 > .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_31477 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31477 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31477 > .jack.peek-shadow::before,#stacks_in_31477 > .jack.peek-shadow::after{-webkit-box-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_31477 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31477 > .jack{overflow:hidden;}#stacks_in_31477 > .jack.height-static{height:100px}#stacks_in_31477 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_31477 {
	margin: 20px 0px 20px 0px;
}
#stacks_in_31479{}#stacks_in_31479 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:20px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31479 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31479 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31479 > .jack.width-static{width:500px}#stacks_in_31479 > .jack.width-flexible{width:100%}#stacks_in_31479 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31479 > .jack.padding-detailed{padding:20.00px 0.00px 0.00px 0.00px}#stacks_in_31479 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31479 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31479 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31479 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31479 > .jack::after{border-radius:20px}#stacks_in_31479 > .jack.border-detailed-radius,#stacks_in_31479 > .jack.border-detailed-radius::after{border-radius:15.00px 15.00px 0.00px 0.00px}#stacks_in_31479 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31479 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31479 > .jack.bg-gradient{background-color:#94E7FD}#stacks_in_31479 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31479 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31479 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31479 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31479 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31479 > .jack.bg-image:not(.glass){}#stacks_in_31479 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31479 > .jack.bg-image.glass.after,#stacks_in_31479 > .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_31479 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31479 > .glass.padding-detailed.jack.bg-image::after{padding:20.00px 0.00px 0.00px 0.00px}#stacks_in_31479 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31479 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31479 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31479 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31479 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31479 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31479 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31479 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31479 > .jack.bg-image.glass.after,#stacks_in_31479 > .glass.jack.bg-image::after{}#stacks_in_31479 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31479 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31479 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_31479 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31479 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31479 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31479 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31479 > .jack.peek-shadow::before,#stacks_in_31479 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_31479 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31479 > .jack{overflow:hidden;}#stacks_in_31479 > .jack.height-static{height:100px}#stacks_in_31479 > .jack.height-minmax{min-height:100px;max-height:800px}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_31481 a:before, .link_effect1stacks_in_31481 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #4211A2 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_31481 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_31481 a:hover:before, .link_effect1stacks_in_31481 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_31481 a   {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_31481 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_31481 .link_effect2stacks_in_31481 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_31481 .link_effect2stacks_in_31481 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_31481 .link_effect3stacks_in_31481 {
  	text-decoration: none;
}

#stacks_in_31481 .link_effect3stacks_in_31481 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_31481 .link_effect3stacks_in_31481 a:hover,
#stacks_in_31481 .link_effect3stacks_in_31481 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_31481 .link_effect4stacks_in_31481 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31481 .link_effect4stacks_in_31481 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31481 .link_effect4stacks_in_31481 a::before,
#stacks_in_31481 .link_effect%stacks_in_31481 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31481 .link_effect4stacks_in_31481 {
}

#stacks_in_31481 .link_effect4stacks_in_31481 a {
	font-weight:normal;;
}

#stacks_in_31481 .link_effect4stacks_in_31481 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_31481 .link_effect4stacks_in_31481 a:hover::before,
#stacks_in_31481 .link_effect4stacks_in_31481 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_31481 .link_effect5stacks_in_31481 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31481 .link_effect5stacks_in_31481 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31481 .link_effect5stacks_in_31481 a::before,
#stacks_in_31481 .link_effect5stacks_in_31481 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31481 .link_effect5stacks_in_31481 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_31481 .link_effect5stacks_in_31481 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_31481 .link_effect5stacks_in_31481 a:hover::before,
#stacks_in_31481 .link_effect5stacks_in_31481 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_31481 .link_effect6stacks_in_31481 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31481 .link_effect6stacks_in_31481 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31481 .link_effect6stacks_in_31481 a::before,
#stacks_in_31481 .link_effect6stacks_in_31481 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31481 .link_effect6stacks_in_31481 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_31481 .link_effect6stacks_in_31481 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_31481 .link_effect6stacks_in_31481 a:hover::before,
#stacks_in_31481 .link_effect6stacks_in_31481 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_31481 .link_effect7stacks_in_31481 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31481 .link_effect7stacks_in_31481 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31481 .link_effect7stacks_in_31481 a::before,
#stacks_in_31481 .link_effect7stacks_in_31481 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31481 .link_effect7stacks_in_31481 {
	position: relative;
}

#stacks_in_31481 .link_effect7stacks_in_31481 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_31481 .link_effect7stacks_in_31481 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_31481 .link_effect7stacks_in_31481 a:hover::before,
#stacks_in_31481 .link_effect7stacks_in_31481 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_31481 .link_effect8stacks_in_31481 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31481 .link_effect8stacks_in_31481 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31481 .link_effect8stacks_in_31481 a::before,
#stacks_in_31481 .link_effect8stacks_in_31481 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_31481 .link_effect8stacks_in_31481 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_31481 .link_effect8stacks_in_31481 a:hover,
#stacks_in_31481 .link_effect8stacks_in_31481 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31481 .link_effect8stacks_in_31481 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_31481 .link_effect8stacks_in_31481 a:hover::before,
#stacks_in_31481 .link_effect8stacks_in_31481 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_31481 .link_effect9stacks_in_31481 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31481 .link_effect9stacks_in_31481 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31481 .link_effect9stacks_in_31481 a::before,
#stacks_in_31481 .link_effect9stacks_in_31481 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31481 .link_effect9stacks_in_31481 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_31481 .link_effect9stacks_in_31481 a:hover,
#stacks_in_31481 .link_effect9stacks_in_31481 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31481 .link_effect9stacks_in_31481 a::before,
#stacks_in_31481 .link_effect9stacks_in_31481 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_31481 .link_effect9stacks_in_31481 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_31481 .link_effect9stacks_in_31481 a:hover::before,
#stacks_in_31481 .link_effect9stacks_in_31481 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_31481 .link_effect9stacks_in_31481 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_31481 .link_effect10stacks_in_31481 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31481 .link_effect10stacks_in_31481 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31481 .link_effect10stacks_in_31481 a::before,
#stacks_in_31481 .link_effect10stacks_in_31481 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31481 .link_effect10stacks_in_31481 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_31481 .link_effect10stacks_in_31481 a:hover,
#stacks_in_31481 .link_effect10stacks_in_31481 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_31481 .link_effect10stacks_in_31481 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_31481 .link_effect10stacks_in_31481 a:hover::before,
#stacks_in_31481 .link_effect10stacks_in_31481 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_31481 .link_effect11stacks_in_31481 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31481 .link_effect11stacks_in_31481 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31481 .link_effect11stacks_in_31481 a::before,
#stacks_in_31481 .link_effect11stacks_in_31481 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31481 .link_effect11stacks_in_31481 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_31481 .link_effect11stacks_in_31481 a:hover,
#stacks_in_31481 .link_effect11stacks_in_31481 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31481 .link_effect11stacks_in_31481 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_31481 .link_effect11stacks_in_31481 a:hover::before,
#stacks_in_31481 .link_effect11stacks_in_31481 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_31481 .link_effect12stacks_in_31481 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31481 .link_effect12stacks_in_31481 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31481 .link_effect12stacks_in_31481 a::before,
#stacks_in_31481 .link_effect12stacks_in_31481 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31481 .link_effect12stacks_in_31481 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_31481 .link_effect12stacks_in_31481 a:hover,
#stacks_in_31481 .link_effect12stacks_in_31481 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_31481 .link_effect12stacks_in_31481 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_31481 .link_effect12stacks_in_31481 a,
#stacks_in_31481 .link_effect12stacks_in_31481 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_31481 .link_effect12stacks_in_31481 a:hover::before,
#stacks_in_31481 .link_effect12stacks_in_31481 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_31481 .link_effect13stacks_in_31481 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31481 .link_effect13stacks_in_31481 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31481 .link_effect13stacks_in_31481 a::before,
#stacks_in_31481 .link_effect13stacks_in_31481 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31481 .link_effect13stacks_in_31481 {
}

#stacks_in_31481 .link_effect13stacks_in_31481 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
}

#stacks_in_31481 .link_effect13stacks_in_31481 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../about_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_31481 .link_effect13stacks_in_31481 a:hover::before,
#stacks_in_31481 .link_effect13stacks_in_31481 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_31481 .link_effect14stacks_in_31481 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31481 .link_effect14stacks_in_31481 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31481 .link_effect14stacks_in_31481 a::before,
#stacks_in_31481 .link_effect14stacks_in_31481 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31481 .link_effect14stacks_in_31481 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_31481 .link_effect14stacks_in_31481 a:hover,
#stacks_in_31481 .link_effect14stacks_in_31481 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_31481 .link_effect14stacks_in_31481 a::before,
#stacks_in_31481 .link_effect14stacks_in_31481 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_31481 .link_effect14stacks_in_31481 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_31481 .link_effect14stacks_in_31481 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../about_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_31481 .link_effect14stacks_in_31481 a:hover::after,
#stacks_in_31481 .link_effect14stacks_in_31481 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_31481 .link_effect15stacks_in_31481 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31481 .link_effect15stacks_in_31481 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31481 .link_effect15stacks_in_31481 a::before,
#stacks_in_31481 .link_effect15stacks_in_31481 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31481 .link_effect15stacks_in_31481 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_31481 .link_effect15stacks_in_31481 a::before,
#stacks_in_31481 .link_effect15stacks_in_31481 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_31481 .link_effect15stacks_in_31481 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_31481 .link_effect15stacks_in_31481 a:hover::before,
#stacks_in_31481 .link_effect15stacks_in_31481 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_31481 .link_effect15stacks_in_31481 a:hover::before,
#stacks_in_31481 .link_effect15stacks_in_31481 a:focus::before,
#stacks_in_31481 .link_effect15stacks_in_31481 a:hover::after,
#stacks_in_31481 .link_effect15stacks_in_31481 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_31481 .link_effect15stacks_in_31481 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_31481 .link_effect15stacks_in_31481 a:hover::after,
#stacks_in_31481 .link_effect15stacks_in_31481 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_31481 .link_effect16stacks_in_31481 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31481 .link_effect16stacks_in_31481 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31481 .link_effect16stacks_in_31481 a::before,
#stacks_in_31481 .link_effect16stacks_in_31481 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31481 .link_effect16stacks_in_31481 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_31481 .link_effect16stacks_in_31481 a:hover {
	color: #d04c3f;
}

#stacks_in_31481 .link_effect16stacks_in_31481 a::before,
#stacks_in_31481 .link_effect16stacks_in_31481 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_31481 .link_effect16stacks_in_31481 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_31481 .link_effect16stacks_in_31481 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_31481 .link_effect16stacks_in_31481 a:hover::before,
#stacks_in_31481 .link_effect16stacks_in_31481 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_31481 .link_effect17stacks_in_31481 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_31481 .link_effect17stacks_in_31481 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #4211A2 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_31481 .link_effect17stacks_in_31481 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_31481 .link_effect18stacks_in_31481 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31481 .link_effect18stacks_in_31481 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31481 .link_effect18stacks_in_31481 a::before,
#stacks_in_31481 .link_effect18stacks_in_31481 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31481 .link_effect18stacks_in_31481 {
}

#stacks_in_31481 .link_effect18stacks_in_31481 a {
	padding: 0 ;
	color: #4211A2;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_31481 .link_effect18stacks_in_31481 a::before,
#stacks_in_31481 .link_effect18stacks_in_31481 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #4211A2;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_31481 .link_effect18stacks_in_31481 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_31481 .link_effect18stacks_in_31481 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_31481 .link_effect18stacks_in_31481 a:hover,
#stacks_in_31481 .link_effect18stacks_in_31481 a:focus {
	color: #fff;
}

#stacks_in_31481 .link_effect18stacks_in_31481 a:hover::before,
#stacks_in_31481 .link_effect18stacks_in_31481 a:focus::before,
#stacks_in_31481 .link_effect18stacks_in_31481 a:hover::after,
#stacks_in_31481 .link_effect18stacks_in_31481 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_31481 .link_effect19stacks_in_31481 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31481 .link_effect19stacks_in_31481 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31481 .link_effect19stacks_in_31481 a::before,
#stacks_in_31481 .link_effect19stacks_in_31481 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_31481 a {
}

.link_effect19stacks_in_31481 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_31481 a:hover::after,
.link_effect19stacks_in_31481 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_31481 .link_effect20stacks_in_31481 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31481 .link_effect20stacks_in_31481 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31481 .link_effect20stacks_in_31481 a::before,
#stacks_in_31481 .link_effect20stacks_in_31481 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_31481 a {
}

.link_effect20stacks_in_31481 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_31481 a:hover::after,
.link_effect20stacks_in_31481 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_31482 {
	padding:  20px;
}
#stacks_in_31487{}#stacks_in_31487 > .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_31487 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31487 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31487 > .jack.width-static{width:500px}#stacks_in_31487 > .jack.width-flexible{width:100%}#stacks_in_31487 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31487 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31487 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31487 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31487 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31487 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31487 > .jack::after{border-radius:0px}#stacks_in_31487 > .jack.border-detailed-radius,#stacks_in_31487 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31487 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31487 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31487 > .jack.bg-gradient{background-color:#94E7FD}#stacks_in_31487 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31487 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31487 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31487 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31487 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31487 > .jack.bg-image:not(.glass){}#stacks_in_31487 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31487 > .jack.bg-image.glass.after,#stacks_in_31487 > .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_31487 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31487 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31487 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31487 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31487 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31487 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31487 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31487 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31487 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31487 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31487 > .jack.bg-image.glass.after,#stacks_in_31487 > .glass.jack.bg-image::after{}#stacks_in_31487 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31487 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31487 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_31487 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31487 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31487 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31487 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31487 > .jack.peek-shadow::before,#stacks_in_31487 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_31487 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31487 > .jack{overflow:hidden;}#stacks_in_31487 > .jack.height-static{height:100px}#stacks_in_31487 > .jack.height-minmax{min-height:100px;max-height:800px}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_31489 a:before, .link_effect1stacks_in_31489 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #4211A2 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_31489 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_31489 a:hover:before, .link_effect1stacks_in_31489 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_31489 a   {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_31489 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_31489 .link_effect2stacks_in_31489 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_31489 .link_effect2stacks_in_31489 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_31489 .link_effect3stacks_in_31489 {
  	text-decoration: none;
}

#stacks_in_31489 .link_effect3stacks_in_31489 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_31489 .link_effect3stacks_in_31489 a:hover,
#stacks_in_31489 .link_effect3stacks_in_31489 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_31489 .link_effect4stacks_in_31489 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31489 .link_effect4stacks_in_31489 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31489 .link_effect4stacks_in_31489 a::before,
#stacks_in_31489 .link_effect%stacks_in_31489 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31489 .link_effect4stacks_in_31489 {
}

#stacks_in_31489 .link_effect4stacks_in_31489 a {
	font-weight:normal;;
}

#stacks_in_31489 .link_effect4stacks_in_31489 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_31489 .link_effect4stacks_in_31489 a:hover::before,
#stacks_in_31489 .link_effect4stacks_in_31489 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_31489 .link_effect5stacks_in_31489 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31489 .link_effect5stacks_in_31489 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31489 .link_effect5stacks_in_31489 a::before,
#stacks_in_31489 .link_effect5stacks_in_31489 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31489 .link_effect5stacks_in_31489 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_31489 .link_effect5stacks_in_31489 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_31489 .link_effect5stacks_in_31489 a:hover::before,
#stacks_in_31489 .link_effect5stacks_in_31489 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_31489 .link_effect6stacks_in_31489 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31489 .link_effect6stacks_in_31489 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31489 .link_effect6stacks_in_31489 a::before,
#stacks_in_31489 .link_effect6stacks_in_31489 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31489 .link_effect6stacks_in_31489 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_31489 .link_effect6stacks_in_31489 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_31489 .link_effect6stacks_in_31489 a:hover::before,
#stacks_in_31489 .link_effect6stacks_in_31489 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_31489 .link_effect7stacks_in_31489 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31489 .link_effect7stacks_in_31489 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31489 .link_effect7stacks_in_31489 a::before,
#stacks_in_31489 .link_effect7stacks_in_31489 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31489 .link_effect7stacks_in_31489 {
	position: relative;
}

#stacks_in_31489 .link_effect7stacks_in_31489 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_31489 .link_effect7stacks_in_31489 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_31489 .link_effect7stacks_in_31489 a:hover::before,
#stacks_in_31489 .link_effect7stacks_in_31489 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_31489 .link_effect8stacks_in_31489 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31489 .link_effect8stacks_in_31489 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31489 .link_effect8stacks_in_31489 a::before,
#stacks_in_31489 .link_effect8stacks_in_31489 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_31489 .link_effect8stacks_in_31489 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_31489 .link_effect8stacks_in_31489 a:hover,
#stacks_in_31489 .link_effect8stacks_in_31489 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31489 .link_effect8stacks_in_31489 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_31489 .link_effect8stacks_in_31489 a:hover::before,
#stacks_in_31489 .link_effect8stacks_in_31489 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_31489 .link_effect9stacks_in_31489 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31489 .link_effect9stacks_in_31489 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31489 .link_effect9stacks_in_31489 a::before,
#stacks_in_31489 .link_effect9stacks_in_31489 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31489 .link_effect9stacks_in_31489 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_31489 .link_effect9stacks_in_31489 a:hover,
#stacks_in_31489 .link_effect9stacks_in_31489 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31489 .link_effect9stacks_in_31489 a::before,
#stacks_in_31489 .link_effect9stacks_in_31489 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_31489 .link_effect9stacks_in_31489 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_31489 .link_effect9stacks_in_31489 a:hover::before,
#stacks_in_31489 .link_effect9stacks_in_31489 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_31489 .link_effect9stacks_in_31489 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_31489 .link_effect10stacks_in_31489 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31489 .link_effect10stacks_in_31489 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31489 .link_effect10stacks_in_31489 a::before,
#stacks_in_31489 .link_effect10stacks_in_31489 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31489 .link_effect10stacks_in_31489 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_31489 .link_effect10stacks_in_31489 a:hover,
#stacks_in_31489 .link_effect10stacks_in_31489 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_31489 .link_effect10stacks_in_31489 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_31489 .link_effect10stacks_in_31489 a:hover::before,
#stacks_in_31489 .link_effect10stacks_in_31489 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_31489 .link_effect11stacks_in_31489 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31489 .link_effect11stacks_in_31489 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31489 .link_effect11stacks_in_31489 a::before,
#stacks_in_31489 .link_effect11stacks_in_31489 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31489 .link_effect11stacks_in_31489 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_31489 .link_effect11stacks_in_31489 a:hover,
#stacks_in_31489 .link_effect11stacks_in_31489 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31489 .link_effect11stacks_in_31489 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_31489 .link_effect11stacks_in_31489 a:hover::before,
#stacks_in_31489 .link_effect11stacks_in_31489 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_31489 .link_effect12stacks_in_31489 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31489 .link_effect12stacks_in_31489 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31489 .link_effect12stacks_in_31489 a::before,
#stacks_in_31489 .link_effect12stacks_in_31489 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31489 .link_effect12stacks_in_31489 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_31489 .link_effect12stacks_in_31489 a:hover,
#stacks_in_31489 .link_effect12stacks_in_31489 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_31489 .link_effect12stacks_in_31489 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_31489 .link_effect12stacks_in_31489 a,
#stacks_in_31489 .link_effect12stacks_in_31489 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_31489 .link_effect12stacks_in_31489 a:hover::before,
#stacks_in_31489 .link_effect12stacks_in_31489 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_31489 .link_effect13stacks_in_31489 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31489 .link_effect13stacks_in_31489 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31489 .link_effect13stacks_in_31489 a::before,
#stacks_in_31489 .link_effect13stacks_in_31489 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31489 .link_effect13stacks_in_31489 {
}

#stacks_in_31489 .link_effect13stacks_in_31489 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
}

#stacks_in_31489 .link_effect13stacks_in_31489 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../about_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_31489 .link_effect13stacks_in_31489 a:hover::before,
#stacks_in_31489 .link_effect13stacks_in_31489 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_31489 .link_effect14stacks_in_31489 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31489 .link_effect14stacks_in_31489 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31489 .link_effect14stacks_in_31489 a::before,
#stacks_in_31489 .link_effect14stacks_in_31489 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31489 .link_effect14stacks_in_31489 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_31489 .link_effect14stacks_in_31489 a:hover,
#stacks_in_31489 .link_effect14stacks_in_31489 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_31489 .link_effect14stacks_in_31489 a::before,
#stacks_in_31489 .link_effect14stacks_in_31489 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_31489 .link_effect14stacks_in_31489 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_31489 .link_effect14stacks_in_31489 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../about_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_31489 .link_effect14stacks_in_31489 a:hover::after,
#stacks_in_31489 .link_effect14stacks_in_31489 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_31489 .link_effect15stacks_in_31489 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31489 .link_effect15stacks_in_31489 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31489 .link_effect15stacks_in_31489 a::before,
#stacks_in_31489 .link_effect15stacks_in_31489 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31489 .link_effect15stacks_in_31489 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_31489 .link_effect15stacks_in_31489 a::before,
#stacks_in_31489 .link_effect15stacks_in_31489 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_31489 .link_effect15stacks_in_31489 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_31489 .link_effect15stacks_in_31489 a:hover::before,
#stacks_in_31489 .link_effect15stacks_in_31489 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_31489 .link_effect15stacks_in_31489 a:hover::before,
#stacks_in_31489 .link_effect15stacks_in_31489 a:focus::before,
#stacks_in_31489 .link_effect15stacks_in_31489 a:hover::after,
#stacks_in_31489 .link_effect15stacks_in_31489 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_31489 .link_effect15stacks_in_31489 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_31489 .link_effect15stacks_in_31489 a:hover::after,
#stacks_in_31489 .link_effect15stacks_in_31489 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_31489 .link_effect16stacks_in_31489 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31489 .link_effect16stacks_in_31489 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31489 .link_effect16stacks_in_31489 a::before,
#stacks_in_31489 .link_effect16stacks_in_31489 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31489 .link_effect16stacks_in_31489 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_31489 .link_effect16stacks_in_31489 a:hover {
	color: #d04c3f;
}

#stacks_in_31489 .link_effect16stacks_in_31489 a::before,
#stacks_in_31489 .link_effect16stacks_in_31489 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_31489 .link_effect16stacks_in_31489 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_31489 .link_effect16stacks_in_31489 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_31489 .link_effect16stacks_in_31489 a:hover::before,
#stacks_in_31489 .link_effect16stacks_in_31489 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_31489 .link_effect17stacks_in_31489 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_31489 .link_effect17stacks_in_31489 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #4211A2 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_31489 .link_effect17stacks_in_31489 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_31489 .link_effect18stacks_in_31489 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31489 .link_effect18stacks_in_31489 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31489 .link_effect18stacks_in_31489 a::before,
#stacks_in_31489 .link_effect18stacks_in_31489 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31489 .link_effect18stacks_in_31489 {
}

#stacks_in_31489 .link_effect18stacks_in_31489 a {
	padding: 0 ;
	color: #4211A2;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_31489 .link_effect18stacks_in_31489 a::before,
#stacks_in_31489 .link_effect18stacks_in_31489 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #4211A2;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_31489 .link_effect18stacks_in_31489 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_31489 .link_effect18stacks_in_31489 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_31489 .link_effect18stacks_in_31489 a:hover,
#stacks_in_31489 .link_effect18stacks_in_31489 a:focus {
	color: #fff;
}

#stacks_in_31489 .link_effect18stacks_in_31489 a:hover::before,
#stacks_in_31489 .link_effect18stacks_in_31489 a:focus::before,
#stacks_in_31489 .link_effect18stacks_in_31489 a:hover::after,
#stacks_in_31489 .link_effect18stacks_in_31489 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_31489 .link_effect19stacks_in_31489 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31489 .link_effect19stacks_in_31489 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31489 .link_effect19stacks_in_31489 a::before,
#stacks_in_31489 .link_effect19stacks_in_31489 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_31489 a {
}

.link_effect19stacks_in_31489 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_31489 a:hover::after,
.link_effect19stacks_in_31489 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_31489 .link_effect20stacks_in_31489 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31489 .link_effect20stacks_in_31489 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31489 .link_effect20stacks_in_31489 a::before,
#stacks_in_31489 .link_effect20stacks_in_31489 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_31489 a {
}

.link_effect20stacks_in_31489 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_31489 a:hover::after,
.link_effect20stacks_in_31489 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_31490 {
	padding:  20px;
}
#stacks_in_31495{}#stacks_in_31495 > .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_31495 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31495 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31495 > .jack.width-static{width:500px}#stacks_in_31495 > .jack.width-flexible{width:100%}#stacks_in_31495 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31495 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31495 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31495 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31495 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31495 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31495 > .jack::after{border-radius:0px}#stacks_in_31495 > .jack.border-detailed-radius,#stacks_in_31495 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_31495 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31495 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31495 > .jack.bg-gradient{background-color:#94E7FD}#stacks_in_31495 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31495 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31495 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31495 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31495 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31495 > .jack.bg-image:not(.glass){}#stacks_in_31495 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31495 > .jack.bg-image.glass.after,#stacks_in_31495 > .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_31495 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31495 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_31495 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31495 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31495 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31495 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31495 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31495 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31495 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31495 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31495 > .jack.bg-image.glass.after,#stacks_in_31495 > .glass.jack.bg-image::after{}#stacks_in_31495 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31495 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31495 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_31495 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31495 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31495 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31495 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31495 > .jack.peek-shadow::before,#stacks_in_31495 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_31495 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31495 > .jack{overflow:hidden;}#stacks_in_31495 > .jack.height-static{height:100px}#stacks_in_31495 > .jack.height-minmax{min-height:100px;max-height:800px}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_31497 a:before, .link_effect1stacks_in_31497 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #4211A2 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_31497 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_31497 a:hover:before, .link_effect1stacks_in_31497 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_31497 a   {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_31497 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_31497 .link_effect2stacks_in_31497 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_31497 .link_effect2stacks_in_31497 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_31497 .link_effect3stacks_in_31497 {
  	text-decoration: none;
}

#stacks_in_31497 .link_effect3stacks_in_31497 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_31497 .link_effect3stacks_in_31497 a:hover,
#stacks_in_31497 .link_effect3stacks_in_31497 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_31497 .link_effect4stacks_in_31497 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31497 .link_effect4stacks_in_31497 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31497 .link_effect4stacks_in_31497 a::before,
#stacks_in_31497 .link_effect%stacks_in_31497 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31497 .link_effect4stacks_in_31497 {
}

#stacks_in_31497 .link_effect4stacks_in_31497 a {
	font-weight:normal;;
}

#stacks_in_31497 .link_effect4stacks_in_31497 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_31497 .link_effect4stacks_in_31497 a:hover::before,
#stacks_in_31497 .link_effect4stacks_in_31497 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_31497 .link_effect5stacks_in_31497 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31497 .link_effect5stacks_in_31497 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31497 .link_effect5stacks_in_31497 a::before,
#stacks_in_31497 .link_effect5stacks_in_31497 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31497 .link_effect5stacks_in_31497 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_31497 .link_effect5stacks_in_31497 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_31497 .link_effect5stacks_in_31497 a:hover::before,
#stacks_in_31497 .link_effect5stacks_in_31497 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_31497 .link_effect6stacks_in_31497 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31497 .link_effect6stacks_in_31497 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31497 .link_effect6stacks_in_31497 a::before,
#stacks_in_31497 .link_effect6stacks_in_31497 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31497 .link_effect6stacks_in_31497 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_31497 .link_effect6stacks_in_31497 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_31497 .link_effect6stacks_in_31497 a:hover::before,
#stacks_in_31497 .link_effect6stacks_in_31497 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_31497 .link_effect7stacks_in_31497 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31497 .link_effect7stacks_in_31497 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31497 .link_effect7stacks_in_31497 a::before,
#stacks_in_31497 .link_effect7stacks_in_31497 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31497 .link_effect7stacks_in_31497 {
	position: relative;
}

#stacks_in_31497 .link_effect7stacks_in_31497 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_31497 .link_effect7stacks_in_31497 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_31497 .link_effect7stacks_in_31497 a:hover::before,
#stacks_in_31497 .link_effect7stacks_in_31497 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_31497 .link_effect8stacks_in_31497 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31497 .link_effect8stacks_in_31497 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31497 .link_effect8stacks_in_31497 a::before,
#stacks_in_31497 .link_effect8stacks_in_31497 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_31497 .link_effect8stacks_in_31497 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_31497 .link_effect8stacks_in_31497 a:hover,
#stacks_in_31497 .link_effect8stacks_in_31497 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31497 .link_effect8stacks_in_31497 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_31497 .link_effect8stacks_in_31497 a:hover::before,
#stacks_in_31497 .link_effect8stacks_in_31497 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_31497 .link_effect9stacks_in_31497 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31497 .link_effect9stacks_in_31497 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31497 .link_effect9stacks_in_31497 a::before,
#stacks_in_31497 .link_effect9stacks_in_31497 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31497 .link_effect9stacks_in_31497 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_31497 .link_effect9stacks_in_31497 a:hover,
#stacks_in_31497 .link_effect9stacks_in_31497 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31497 .link_effect9stacks_in_31497 a::before,
#stacks_in_31497 .link_effect9stacks_in_31497 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_31497 .link_effect9stacks_in_31497 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_31497 .link_effect9stacks_in_31497 a:hover::before,
#stacks_in_31497 .link_effect9stacks_in_31497 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_31497 .link_effect9stacks_in_31497 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_31497 .link_effect10stacks_in_31497 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31497 .link_effect10stacks_in_31497 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31497 .link_effect10stacks_in_31497 a::before,
#stacks_in_31497 .link_effect10stacks_in_31497 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31497 .link_effect10stacks_in_31497 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_31497 .link_effect10stacks_in_31497 a:hover,
#stacks_in_31497 .link_effect10stacks_in_31497 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_31497 .link_effect10stacks_in_31497 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_31497 .link_effect10stacks_in_31497 a:hover::before,
#stacks_in_31497 .link_effect10stacks_in_31497 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_31497 .link_effect11stacks_in_31497 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31497 .link_effect11stacks_in_31497 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31497 .link_effect11stacks_in_31497 a::before,
#stacks_in_31497 .link_effect11stacks_in_31497 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31497 .link_effect11stacks_in_31497 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_31497 .link_effect11stacks_in_31497 a:hover,
#stacks_in_31497 .link_effect11stacks_in_31497 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31497 .link_effect11stacks_in_31497 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_31497 .link_effect11stacks_in_31497 a:hover::before,
#stacks_in_31497 .link_effect11stacks_in_31497 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_31497 .link_effect12stacks_in_31497 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31497 .link_effect12stacks_in_31497 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31497 .link_effect12stacks_in_31497 a::before,
#stacks_in_31497 .link_effect12stacks_in_31497 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31497 .link_effect12stacks_in_31497 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_31497 .link_effect12stacks_in_31497 a:hover,
#stacks_in_31497 .link_effect12stacks_in_31497 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_31497 .link_effect12stacks_in_31497 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_31497 .link_effect12stacks_in_31497 a,
#stacks_in_31497 .link_effect12stacks_in_31497 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_31497 .link_effect12stacks_in_31497 a:hover::before,
#stacks_in_31497 .link_effect12stacks_in_31497 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_31497 .link_effect13stacks_in_31497 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31497 .link_effect13stacks_in_31497 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31497 .link_effect13stacks_in_31497 a::before,
#stacks_in_31497 .link_effect13stacks_in_31497 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31497 .link_effect13stacks_in_31497 {
}

#stacks_in_31497 .link_effect13stacks_in_31497 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
}

#stacks_in_31497 .link_effect13stacks_in_31497 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../about_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_31497 .link_effect13stacks_in_31497 a:hover::before,
#stacks_in_31497 .link_effect13stacks_in_31497 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_31497 .link_effect14stacks_in_31497 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31497 .link_effect14stacks_in_31497 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31497 .link_effect14stacks_in_31497 a::before,
#stacks_in_31497 .link_effect14stacks_in_31497 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31497 .link_effect14stacks_in_31497 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_31497 .link_effect14stacks_in_31497 a:hover,
#stacks_in_31497 .link_effect14stacks_in_31497 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_31497 .link_effect14stacks_in_31497 a::before,
#stacks_in_31497 .link_effect14stacks_in_31497 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_31497 .link_effect14stacks_in_31497 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_31497 .link_effect14stacks_in_31497 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../about_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_31497 .link_effect14stacks_in_31497 a:hover::after,
#stacks_in_31497 .link_effect14stacks_in_31497 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_31497 .link_effect15stacks_in_31497 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31497 .link_effect15stacks_in_31497 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31497 .link_effect15stacks_in_31497 a::before,
#stacks_in_31497 .link_effect15stacks_in_31497 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31497 .link_effect15stacks_in_31497 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_31497 .link_effect15stacks_in_31497 a::before,
#stacks_in_31497 .link_effect15stacks_in_31497 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_31497 .link_effect15stacks_in_31497 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_31497 .link_effect15stacks_in_31497 a:hover::before,
#stacks_in_31497 .link_effect15stacks_in_31497 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_31497 .link_effect15stacks_in_31497 a:hover::before,
#stacks_in_31497 .link_effect15stacks_in_31497 a:focus::before,
#stacks_in_31497 .link_effect15stacks_in_31497 a:hover::after,
#stacks_in_31497 .link_effect15stacks_in_31497 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_31497 .link_effect15stacks_in_31497 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_31497 .link_effect15stacks_in_31497 a:hover::after,
#stacks_in_31497 .link_effect15stacks_in_31497 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_31497 .link_effect16stacks_in_31497 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31497 .link_effect16stacks_in_31497 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31497 .link_effect16stacks_in_31497 a::before,
#stacks_in_31497 .link_effect16stacks_in_31497 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31497 .link_effect16stacks_in_31497 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_31497 .link_effect16stacks_in_31497 a:hover {
	color: #d04c3f;
}

#stacks_in_31497 .link_effect16stacks_in_31497 a::before,
#stacks_in_31497 .link_effect16stacks_in_31497 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_31497 .link_effect16stacks_in_31497 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_31497 .link_effect16stacks_in_31497 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_31497 .link_effect16stacks_in_31497 a:hover::before,
#stacks_in_31497 .link_effect16stacks_in_31497 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_31497 .link_effect17stacks_in_31497 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_31497 .link_effect17stacks_in_31497 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #4211A2 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_31497 .link_effect17stacks_in_31497 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_31497 .link_effect18stacks_in_31497 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31497 .link_effect18stacks_in_31497 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31497 .link_effect18stacks_in_31497 a::before,
#stacks_in_31497 .link_effect18stacks_in_31497 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31497 .link_effect18stacks_in_31497 {
}

#stacks_in_31497 .link_effect18stacks_in_31497 a {
	padding: 0 ;
	color: #4211A2;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_31497 .link_effect18stacks_in_31497 a::before,
#stacks_in_31497 .link_effect18stacks_in_31497 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #4211A2;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_31497 .link_effect18stacks_in_31497 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_31497 .link_effect18stacks_in_31497 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_31497 .link_effect18stacks_in_31497 a:hover,
#stacks_in_31497 .link_effect18stacks_in_31497 a:focus {
	color: #fff;
}

#stacks_in_31497 .link_effect18stacks_in_31497 a:hover::before,
#stacks_in_31497 .link_effect18stacks_in_31497 a:focus::before,
#stacks_in_31497 .link_effect18stacks_in_31497 a:hover::after,
#stacks_in_31497 .link_effect18stacks_in_31497 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_31497 .link_effect19stacks_in_31497 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31497 .link_effect19stacks_in_31497 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31497 .link_effect19stacks_in_31497 a::before,
#stacks_in_31497 .link_effect19stacks_in_31497 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_31497 a {
}

.link_effect19stacks_in_31497 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_31497 a:hover::after,
.link_effect19stacks_in_31497 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_31497 .link_effect20stacks_in_31497 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31497 .link_effect20stacks_in_31497 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31497 .link_effect20stacks_in_31497 a::before,
#stacks_in_31497 .link_effect20stacks_in_31497 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_31497 a {
}

.link_effect20stacks_in_31497 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_31497 a:hover::after,
.link_effect20stacks_in_31497 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_31498 {
	padding:  20px;
}
#stacks_in_31503{}#stacks_in_31503 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:20px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_31503 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_31503 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_31503 > .jack.width-static{width:500px}#stacks_in_31503 > .jack.width-flexible{width:100%}#stacks_in_31503 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_31503 > .jack.padding-detailed{padding:0.00px 0.00px 20.00px 0.00px}#stacks_in_31503 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_31503 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_31503 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_31503 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_31503 > .jack::after{border-radius:20px}#stacks_in_31503 > .jack.border-detailed-radius,#stacks_in_31503 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 15.00px 15.00px}#stacks_in_31503 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_31503 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_31503 > .jack.bg-gradient{background-color:#3E7D8F}#stacks_in_31503 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_31503 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_31503 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_31503 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_31503 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31503 > .jack.bg-image:not(.glass){}#stacks_in_31503 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_31503 > .jack.bg-image.glass.after,#stacks_in_31503 > .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_31503 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_31503 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 20.00px 0.00px}#stacks_in_31503 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_31503 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_31503 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_31503 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_31503 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31503 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_31503 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_31503 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_31503 > .jack.bg-image.glass.after,#stacks_in_31503 > .glass.jack.bg-image::after{}#stacks_in_31503 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_31503 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_31503 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_31503 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31503 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_31503 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_31503 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_31503 > .jack.peek-shadow::before,#stacks_in_31503 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_31503 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_31503 > .jack{overflow:hidden;}#stacks_in_31503 > .jack.height-static{height:100px}#stacks_in_31503 > .jack.height-minmax{min-height:100px;max-height:800px}
/* LinkThing by RapidWeaver Central  */



/* 1 Slinky  
====================== */

.link_effect1stacks_in_31505 a:before, .link_effect1stacks_in_31505 a:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 0;
  height: 1px;  
  background: #4211A2 !important;  
  -webkit-transition: width 300ms ease;
	transition: width 300ms ease;
}

.link_effect1stacks_in_31505 a:after {
  right: 50%;
  left: auto;
}

.link_effect1stacks_in_31505 a:hover:before, .link_effect1stacks_in_31505 a:hover:after {
  width: 50%;
}

.link_effect1stacks_in_31505 a   {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	position: relative;
	text-decoration: none;
}

.link_effect1stacks_in_31505 a:visited {
	text-decoration: none;
}



/* 2 Stretchy 
====================== */

#stacks_in_31505 .link_effect2stacks_in_31505 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
  	letter-spacing: 0;
  	opacity: .5;
  	-webkit-transition: all .25s ease-out;
	
}

#stacks_in_31505 .link_effect2stacks_in_31505 a:hover {
   	opacity: 1;
  	letter-spacing: 10px;	
}

/* 3 Fade In  
====================== */

#stacks_in_31505 .link_effect3stacks_in_31505 {
  	text-decoration: none;
}

#stacks_in_31505 .link_effect3stacks_in_31505 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	border-bottom: 1px solid #DA4453;
	font-weight: 500;
	-webkit-transition: background-color 0.3s, border-color 0.3s;
	transition: background-color 0.3s, border-color 0.3s;
}

#stacks_in_31505 .link_effect3stacks_in_31505 a:hover,
#stacks_in_31505 .link_effect3stacks_in_31505 a:focus {
	color: #DA4453 !important;
	border-color: #DA4453*0.8%;
	background-color: #DA4453;
}



/* 4 Bubble
====================== */

#stacks_in_31505 .link_effect4stacks_in_31505 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31505 .link_effect4stacks_in_31505 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31505 .link_effect4stacks_in_31505 a::before,
#stacks_in_31505 .link_effect%stacks_in_31505 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31505 .link_effect4stacks_in_31505 {
}

#stacks_in_31505 .link_effect4stacks_in_31505 a {
	font-weight:normal;;
}

#stacks_in_31505 .link_effect4stacks_in_31505 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border-radius: 10px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_31505 .link_effect4stacks_in_31505 a:hover::before,
#stacks_in_31505 .link_effect4stacks_in_31505 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}




/* 5  UpSlider 
====================== */


#stacks_in_31505 .link_effect5stacks_in_31505 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31505 .link_effect5stacks_in_31505 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	position: relative;
	display: inline-block;
	outline: none;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31505 .link_effect5stacks_in_31505 a::before,
#stacks_in_31505 .link_effect5stacks_in_31505 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31505 .link_effect5stacks_in_31505 a {
	overflow: hidden;
	font-weight: 500;
}

#stacks_in_31505 .link_effect5stacks_in_31505 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transform: translateY(95%);
	transform: translateY(95%);
}

#stacks_in_31505 .link_effect5stacks_in_31505 a:hover::before,
#stacks_in_31505 .link_effect5stacks_in_31505 a:focus::before {
	-webkit-transform: translateY(0);
	transform: translateY(0);
}





/* 6 RightSlider RightSlider_color
====================== */

#stacks_in_31505 .link_effect6stacks_in_31505 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31505 .link_effect6stacks_in_31505 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31505 .link_effect6stacks_in_31505 a::before,
#stacks_in_31505 .link_effect6stacks_in_31505 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31505 .link_effect6stacks_in_31505 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_31505 .link_effect6stacks_in_31505 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transform: scaleY(0.618) translateX(-100%);
	transform: scaleY(0.618) translateX(-100%);
}

#stacks_in_31505 .link_effect6stacks_in_31505 a:hover::before,
#stacks_in_31505 .link_effect6stacks_in_31505 a:focus::before {
	-webkit-transform: scaleY(0.618) translateX(0);
	transform: scaleY(0.618) translateX(0);
}




/* 7 InBouncer InBouncer_color
====================== */

#stacks_in_31505 .link_effect7stacks_in_31505 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31505 .link_effect7stacks_in_31505 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31505 .link_effect7stacks_in_31505 a::before,
#stacks_in_31505 .link_effect7stacks_in_31505 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31505 .link_effect7stacks_in_31505 {
	position: relative;
}

#stacks_in_31505 .link_effect7stacks_in_31505 a {
	vertical-align: bottom;
	font-weight:normal;;
}


#stacks_in_31505 .link_effect7stacks_in_31505 a::before {
	position: absolute;
	top: 0;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.2s;
	transition: transform 0.2s, opacity 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	transition-timing-function: cubic-bezier(0.25,0.25,0.325,1.39);
	-webkit-transform: scale(0);
	transform: scale(0);
}

#stacks_in_31505 .link_effect7stacks_in_31505 a:hover::before,
#stacks_in_31505 .link_effect7stacks_in_31505 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}





/* 8 Dissipater   
====================== */

#stacks_in_31505 .link_effect8stacks_in_31505 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31505 .link_effect8stacks_in_31505 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31505 .link_effect8stacks_in_31505 a::before,
#stacks_in_31505 .link_effect8stacks_in_31505 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}



#stacks_in_31505 .link_effect8stacks_in_31505 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

#stacks_in_31505 .link_effect8stacks_in_31505 a:hover,
#stacks_in_31505 .link_effect8stacks_in_31505 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31505 .link_effect8stacks_in_31505 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	border-radius: 5px;
	background-color: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.2s, opacity 0.3s, background-color 0.2s;
	transition: transform 0.2s, opacity 0.2s, background-color 0.2s;
	-webkit-transform: scale(1.1);
	transform: scale(1.1);
}

#stacks_in_31505 .link_effect8stacks_in_31505 a:hover::before,
#stacks_in_31505 .link_effect8stacks_in_31505 a:focus::before {
	background-color: rgba(255,255,255,0);
	opacity: 1;
	-webkit-transform: scaleX(1) scaleY(0.618);
	transform: scaleX(1) scaleY(0.618);
}

/* 9 Flipper 
====================== */



#stacks_in_31505 .link_effect9stacks_in_31505 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31505 .link_effect9stacks_in_31505 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31505 .link_effect9stacks_in_31505 a::before,
#stacks_in_31505 .link_effect9stacks_in_31505 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31505 .link_effect9stacks_in_31505 a {
	font-weight:normal;;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-perspective: 600px;
	perspective: 600px;
	-webkit-perspective-origin: 50% 100%;
	perspective-origin: 50% 100%;
}

#stacks_in_31505 .link_effect9stacks_in_31505 a:hover,
#stacks_in_31505 .link_effect9stacks_in_31505 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31505 .link_effect9stacks_in_31505 a::before,
#stacks_in_31505 .link_effect9stacks_in_31505 a::after {
	position: absolute;
	top: 0;
	left: -4px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 4px;
	width: 100%;
	height: 100%;
	content: '';
}

#stacks_in_31505 .link_effect9stacks_in_31505 a::before {
	background-color: #DA4453;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	-webkit-transform: rotateX(90deg);
	transform: rotateX(90deg);
	-webkit-transform-origin: 50% 100%;
	transform-origin: 50% 100%;
}

#stacks_in_31505 .link_effect9stacks_in_31505 a:hover::before,
#stacks_in_31505 .link_effect9stacks_in_31505 a:focus::before {
	-webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
}

#stacks_in_31505 .link_effect9stacks_in_31505 a::after {
	border-bottom: 2px solid  #DA4453;
}



/* 10 Borderer 
====================== */

#stacks_in_31505 .link_effect10stacks_in_31505 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31505 .link_effect10stacks_in_31505 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31505 .link_effect10stacks_in_31505 a::before,
#stacks_in_31505 .link_effect10stacks_in_31505 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}

#stacks_in_31505 .link_effect10stacks_in_31505 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.2s;
	transition: transform 0.2s;
}

#stacks_in_31505 .link_effect10stacks_in_31505 a:hover,
#stacks_in_31505 .link_effect10stacks_in_31505 a:focus {
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_31505 .link_effect10stacks_in_31505 a::before {
	position: absolute;
	top: -2px;
	left: -7px;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	border: 2px solid #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
	transition: opacity 0.2s, transform 0.2s;
	-webkit-transform: scale(0.8333);
	transform: scale(0.8333);
}

#stacks_in_31505 .link_effect10stacks_in_31505 a:hover::before,
#stacks_in_31505 .link_effect10stacks_in_31505 a:focus::before {
	opacity: 1;
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
}



/* 11 Squiffy 
====================== */

#stacks_in_31505 .link_effect11stacks_in_31505 {	
  	position: relative;
	z-index: 1; /* needed for setting pseudo-element z-index */
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

#stacks_in_31505 .link_effect11stacks_in_31505 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31505 .link_effect11stacks_in_31505 a::before,
#stacks_in_31505 .link_effect11stacks_in_31505 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
}


#stacks_in_31505 .link_effect11stacks_in_31505 a {
	font-weight:normal;;
	-webkit-transition: color 0.4s;
	transition: color 0.4s;
}

#stacks_in_31505 .link_effect11stacks_in_31505 a:hover,
#stacks_in_31505 .link_effect11stacks_in_31505 a:focus {
	color: #DA4453 !important;
}

#stacks_in_31505 .link_effect11stacks_in_31505 a::before {
	position: absolute;
	top: 0px;
	left: -5px;
	z-index: -1;
	box-sizing: content-box;
	padding: 0 5px;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
		transition: transform 0.4s, opacity 0.2s;
	-webkit-transform: skewY(-3deg) skewX(-11deg);
		transform: skewY(-3deg) skewX(-11deg);
}

#stacks_in_31505 .link_effect11stacks_in_31505 a:hover::before,
#stacks_in_31505 .link_effect11stacks_in_31505 a:focus::before {
	opacity: 1;
	-webkit-transform: skewY(0) skewX(0);
			transform: skewY(0) skewX(0);
}




/* 12 UpLiner 
====================== */

#stacks_in_31505 .link_effect12stacks_in_31505 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31505 .link_effect12stacks_in_31505 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31505 .link_effect12stacks_in_31505 a::before,
#stacks_in_31505 .link_effect12stacks_in_31505 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31505 .link_effect12stacks_in_31505 a {
	overflow: hidden;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_31505 .link_effect12stacks_in_31505 a:hover,
#stacks_in_31505 .link_effect12stacks_in_31505 a:focus {
	-webkit-transform: translateY(10%);
			transform: translateY(10%);
}

#stacks_in_31505 .link_effect12stacks_in_31505 a::before {
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
	background: #DA4453;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateY(100%) translateY(-2px);
			transform: translateY(100%) translateY(-2px);
}

#stacks_in_31505 .link_effect12stacks_in_31505 a,
#stacks_in_31505 .link_effect12stacks_in_31505 a::before {
	-webkit-transition-timing-function: cubic-bezier(0.6,0,0.4,1);
			transition-timing-function: cubic-bezier(0.6,0,0.4,1);
}

#stacks_in_31505 .link_effect12stacks_in_31505 a:hover::before,
#stacks_in_31505 .link_effect12stacks_in_31505 a:focus::before {
	-webkit-transform: translateY(-100%) translateY(2px);
			transform: translateY(-100%) translateY(2px);
} 


/* 13 Tooltipper 
====================== */

#stacks_in_31505 .link_effect13stacks_in_31505 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31505 .link_effect13stacks_in_31505 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31505 .link_effect13stacks_in_31505 a::before,
#stacks_in_31505 .link_effect13stacks_in_31505 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31505 .link_effect13stacks_in_31505 {
}

#stacks_in_31505 .link_effect13stacks_in_31505 a {
	
	color: #4211A2 !important;
		
	font-weight:normal;;
}

#stacks_in_31505 .link_effect13stacks_in_31505 a::before {
	display:table;
  	position:absolute;
  	top:1.8em;
  	left:1.8em;
  	padding:.2em .5em .5em 3.7em;
	width: 200pxpx;
	height: 100%;
	background: #DA4453 url(../about_files/link.svg) no-repeat -3em 50%;
	background-size: auto 40%;
	color: transparent;
	content: attr(href);
	white-space: pre-wrap;
	word-break: break-all;
	font-weight:normal;;
	font-size: 80%;
	font-style: italic;
	opacity: 0;
	line-height: 1.6;
	pointer-events: auto;
	-webkit-transition: opacity 0.3s, color 0.3s, -webkit-transform 0.3s, background-position 0.2s;
			transition: opacity 0.3s, color 0.3s, transform 0.3s, background-position 0.2s;
	-webkit-transform: scale(0.5);
			transform: scale(0.5);
	-webkit-border-radius: 5pxpx;
	   -moz-border-radius: 5pxpx;
			border-radius: 5pxpx;
}	

#stacks_in_31505 .link_effect13stacks_in_31505 a:hover::before,
#stacks_in_31505 .link_effect13stacks_in_31505 a:focus::before {
	background-position: 1em 50%;
	color: #DA4453;
	opacity: 1;
	-webkit-transition-delay: 0s, 0s, 0s, 0.1s;
			transition-delay: 0s, 0s, 0s, 0.1s;
	-webkit-transform: scale(1) translateY(-75%);
			transform: scale(1) translateY(-75%);
}


/* 14 Arrow arrow_color
====================== */

#stacks_in_31505 .link_effect14stacks_in_31505 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31505 .link_effect14stacks_in_31505 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31505 .link_effect14stacks_in_31505 a::before,
#stacks_in_31505 .link_effect14stacks_in_31505 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31505 .link_effect14stacks_in_31505 a {
	padding: 0 0.25em;
	font-weight:normal;;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_31505 .link_effect14stacks_in_31505 a:hover,
#stacks_in_31505 .link_effect14stacks_in_31505 a::after {
	-webkit-transform: translateX(-1em);
			transform: translateX(-1em);
}

#stacks_in_31505 .link_effect14stacks_in_31505 a::before,
#stacks_in_31505 .link_effect14stacks_in_31505 a::after {
	position: absolute;
	height: 100%;
	content: '';
}

#stacks_in_31505 .link_effect14stacks_in_31505 a::before {
	left: 0;
	z-index: -1;
	width: 100%;
	background: #4A89DC;
}

#stacks_in_31505 .link_effect14stacks_in_31505 a::after {
	left: 100%;
	z-index: -2;
	width: 1em;
	background: #3766A4 url(../about_files/arrow_right.svg) no-repeat 50% 50%;
	background-size: 60% auto;
	text-align: center;
	pointer-events: auto;
	-webkit-transition: -webkit-transform 0.3s;
			transition: transform 0.3s;
}

#stacks_in_31505 .link_effect14stacks_in_31505 a:hover::after,
#stacks_in_31505 .link_effect14stacks_in_31505 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}


/* 15 Curtains 
====================== */

#stacks_in_31505 .link_effect15stacks_in_31505 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31505 .link_effect15stacks_in_31505 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31505 .link_effect15stacks_in_31505 a::before,
#stacks_in_31505 .link_effect15stacks_in_31505 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31505 .link_effect15stacks_in_31505 a {
	overflow: hidden;
	font-weight:normal;;
}

#stacks_in_31505 .link_effect15stacks_in_31505 a::before,
#stacks_in_31505 .link_effect15stacks_in_31505 a::after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	content: '';
	-webkit-transition: -webkit-transform 0.3s;
		transition: transform 0.3s;
}

#stacks_in_31505 .link_effect15stacks_in_31505 a::before {
	border-top: 2px solid #DA4453;
	background: transparent;
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
	-webkit-transform: translateY( calc(100% - 2px) );
			transform: translateY( calc(100% - 2px) );
}

#stacks_in_31505 .link_effect15stacks_in_31505 a:hover::before,
#stacks_in_31505 .link_effect15stacks_in_31505 a:focus::before {
	-webkit-transition-delay: 0s;
			transition-delay: 0s;
}

#stacks_in_31505 .link_effect15stacks_in_31505 a:hover::before,
#stacks_in_31505 .link_effect15stacks_in_31505 a:focus::before,
#stacks_in_31505 .link_effect15stacks_in_31505 a:hover::after,
#stacks_in_31505 .link_effect15stacks_in_31505 a:focus::after {
	-webkit-transform: translateX(0);
			transform: translateX(0);
}

#stacks_in_31505 .link_effect15stacks_in_31505 a::after {
	z-index: -1;
	background: #DA4453;
	-webkit-transform: translateY(-100%);
			transform: translateY(-100%);
}

#stacks_in_31505 .link_effect15stacks_in_31505 a:hover::after,
#stacks_in_31505 .link_effect15stacks_in_31505 a:focus::after {
	-webkit-transition-delay: 0.3s;
			transition-delay: 0.3s;
}



/* 16 Brackets 
====================== */

#stacks_in_31505 .link_effect16stacks_in_31505 {	
  	position: relative;
	z-index: 1;
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31505 .link_effect16stacks_in_31505 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31505 .link_effect16stacks_in_31505 a::before,
#stacks_in_31505 .link_effect16stacks_in_31505 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

#stacks_in_31505 .link_effect16stacks_in_31505 a {
	padding: 0 0.35em;
	font-weight:normal;;
	-webkit-transition: color 0.2s;
			transition: color 0.2s;
}

#stacks_in_31505 .link_effect16stacks_in_31505 a:hover {
	color: #d04c3f;
}

#stacks_in_31505 .link_effect16stacks_in_31505 a::before,
#stacks_in_31505 .link_effect16stacks_in_31505 a::after {
	position: absolute;
	top: 0;
	font-weight: 100;
	font-size: 150%;
	line-height: 1;
	opacity: 0;
	-webkit-transition: opacity 0.2s, -webkit-transform 0.2s;
			transition: opacity 0.2s, transform 0.2s;
}

#stacks_in_31505 .link_effect16stacks_in_31505 a::before {
	left: -0.1em;
	content: '[';
	-webkit-transform: translateX(-100%);
			transform: translateX(-100%);
}

#stacks_in_31505 .link_effect16stacks_in_31505 a::after {
	right: -0.1em;
	content: ']';
	-webkit-transform: translateX(100%);
			transform: translateX(100%);
}

#stacks_in_31505 .link_effect16stacks_in_31505 a:hover::before,
#stacks_in_31505 .link_effect16stacks_in_31505 a:hover::after {
	opacity: 1;
	-webkit-transform: translateX(0);
			transform: translateX(0);
}



/* 17 Javelinky 
====================== */

#stacks_in_31505 .link_effect17stacks_in_31505 a {
  	position: relative;
  	padding: 0 5px;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
  	text-decoration: none;
}

#stacks_in_31505 .link_effect17stacks_in_31505 a:after {
  	content: '';
  	position: absolute;
  	left: 0;
  	right: 0;
  	bottom: 0;
  	width: 100%;
  	height: 1px;
  	margin: auto;
  	background-image: linear-gradient(90deg, transparent 0%, #4211A2 50%, transparent 100%);
  	-webkit-transition: width .15s ease;
  	   -moz-transition: width .15s ease;
  			transition: width .15s ease;
}

#stacks_in_31505 .link_effect17stacks_in_31505 a:hover:after {
  	width: 0;
}


/* 18 Sandwich  
====================== */

#stacks_in_31505 .link_effect18stacks_in_31505 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31505 .link_effect18stacks_in_31505 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31505 .link_effect18stacks_in_31505 a::before,
#stacks_in_31505 .link_effect18stacks_in_31505 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}


#stacks_in_31505 .link_effect18stacks_in_31505 {
}

#stacks_in_31505 .link_effect18stacks_in_31505 a {
	padding: 0 ;
	color: #4211A2;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

#stacks_in_31505 .link_effect18stacks_in_31505 a::before,
#stacks_in_31505 .link_effect18stacks_in_31505 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #4211A2;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_31505 .link_effect18stacks_in_31505 a::before {
	top: 0;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

#stacks_in_31505 .link_effect18stacks_in_31505 a::after {
	bottom: 0;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

#stacks_in_31505 .link_effect18stacks_in_31505 a:hover,
#stacks_in_31505 .link_effect18stacks_in_31505 a:focus {
	color: #fff;
}

#stacks_in_31505 .link_effect18stacks_in_31505 a:hover::before,
#stacks_in_31505 .link_effect18stacks_in_31505 a:focus::before,
#stacks_in_31505 .link_effect18stacks_in_31505 a:hover::after,
#stacks_in_31505 .link_effect18stacks_in_31505 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}





/* 19 Fade Up 
====================== */


#stacks_in_31505 .link_effect19stacks_in_31505 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31505 .link_effect19stacks_in_31505 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31505 .link_effect19stacks_in_31505 a::before,
#stacks_in_31505 .link_effect19stacks_in_31505 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect19stacks_in_31505 a {
}

.link_effect19stacks_in_31505 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 2px;
	background: #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: opacity 0.3s, -moz-transform 0.3s;
			transition: opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(10px);
	   -moz-transform: translateY(10px);
			transform: translateY(10px);
}

.link_effect19stacks_in_31505 a:hover::after,
.link_effect19stacks_in_31505 a:focus::after {
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}



/* 20 Fade Down 
====================== */

#stacks_in_31505 .link_effect20stacks_in_31505 {	
  	position: relative;
	z-index: 1; 
	overflow: hidden;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
}

#stacks_in_31505 .link_effect20stacks_in_31505 a {
	position: relative;
	display: inline-block;
	outline: none;
	
	color: #4211A2 !important;
		
	font-weight:normal;;
	vertical-align: bottom;
	text-decoration: none;
	white-space: nowrap;
}

#stacks_in_31505 .link_effect20stacks_in_31505 a::before,
#stacks_in_31505 .link_effect20stacks_in_31505 a::after {
	pointer-events: none;
	-webkit-backface-visibility: hidden;
			backface-visibility: hidden;
	-webkit-font-smoothing: antialiased;
			font-smoothing: antialiased;
}

.link_effect20stacks_in_31505 a {
}

.link_effect20stacks_in_31505 a::after {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: 1px;
	background:  #DA4453;
	content: '';
	opacity: 0;
	-webkit-transition: height 0.3s, opacity 0.3s, -webkit-transform 0.3s;
	   -moz-transition: height 0.3s, opacity 0.3s, -moz-transform 0.3s;
			transition: height 0.3s, opacity 0.3s, transform 0.3s;
	-webkit-transform: translateY(-10px);
	   -moz-transform: translateY(-10px);
			transform: translateY(-10px);
}

.link_effect20stacks_in_31505 a:hover::after,
.link_effect20stacks_in_31505 a:focus::after {
	height: 2px;
	opacity: 1;
	-webkit-transform: translateY(0px);
	   -moz-transform: translateY(0px);
			transform: translateY(0px);
}


































#stacks_in_31506 {
	padding:  20px;
}
#stacks_in_30183{padding-left:0px;padding-right:0px;}#stacks_in_30183 > .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_30183 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_30183 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_30183 > .jack.width-static{width:500px}#stacks_in_30183 > .jack.width-flexible{width:100%}#stacks_in_30183 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_30183 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30183 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_30183 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_30183 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_30183 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_30183 > .jack::after{border-radius:0px}#stacks_in_30183 > .jack.border-detailed-radius,#stacks_in_30183 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_30183 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_30183 > .jack.bg-color{background-color:#89C5FF}#stacks_in_30183 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_30183 > .jack.bg-image:not(.glass){background-image:url(../about_files/bgImage-30183.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30183 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_30183 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_30183 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_7_col.jpg)}#stacks_in_30183 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30183 > .jack.bg-image:not(.glass){}#stacks_in_30183 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_30183 > .jack.bg-image.glass.after,#stacks_in_30183 > .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(../about_files/bgImage-30183.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30183 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_30183 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30183 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_30183 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_30183 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_30183 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_30183 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30183 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_7_col.jpg)}#stacks_in_30183 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_30183 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30183 > .jack.bg-image.glass.after,#stacks_in_30183 > .glass.jack.bg-image::after{}#stacks_in_30183 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30183 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_30183 > .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_30183 > .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_30183 > .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_30183 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_30183 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_30183 > .jack.peek-shadow::before,#stacks_in_30183 > .jack.peek-shadow::after{-webkit-box-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_30183 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_30183 > .jack{overflow:hidden;}#stacks_in_30183 > .jack.height-static{height:80px}#stacks_in_30183 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_30183 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_36920{padding-left:0px;padding-right:0px;}#stacks_in_36920 > .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_36920 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_36920 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_36920 > .jack.width-static{width:500px}#stacks_in_36920 > .jack.width-flexible{width:100%}#stacks_in_36920 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_36920 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_36920 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_36920 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_36920 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_36920 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_36920 > .jack::after{border-radius:0px}#stacks_in_36920 > .jack.border-detailed-radius,#stacks_in_36920 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_36920 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_36920 > .jack.bg-color{background-color:#89C5FF}#stacks_in_36920 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_36920 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_36920 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_36920 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_36920 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_36920 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_36920 > .jack.bg-image:not(.glass){}#stacks_in_36920 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_36920 > .jack.bg-image.glass.after,#stacks_in_36920 > .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_36920 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_36920 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_36920 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_36920 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_36920 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_36920 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_36920 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_36920 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_36920 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_36920 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_36920 > .jack.bg-image.glass.after,#stacks_in_36920 > .glass.jack.bg-image::after{}#stacks_in_36920 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_36920 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_36920 > .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_36920 > .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_36920 > .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_36920 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_36920 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_36920 > .jack.peek-shadow::before,#stacks_in_36920 > .jack.peek-shadow::after{-webkit-box-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_36920 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_36920 > .jack{overflow:visible;}#stacks_in_36920 > .jack.height-static{height:100px}#stacks_in_36920 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_36921{padding-left:0px;padding-right:0px;}#stacks_in_36921 > .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_36921 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_36921 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_36921 > .jack.width-static{width:500px}#stacks_in_36921 > .jack.width-flexible{width:100%}#stacks_in_36921 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_36921 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_36921 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_36921 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_36921 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_36921 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_36921 > .jack::after{border-radius:0px}#stacks_in_36921 > .jack.border-detailed-radius,#stacks_in_36921 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_36921 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_36921 > .jack.bg-color{background-color:#89C5FF}#stacks_in_36921 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_36921 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_36921 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_36921 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_36921 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_36921 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_36921 > .jack.bg-image:not(.glass){}#stacks_in_36921 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_36921 > .jack.bg-image.glass.after,#stacks_in_36921 > .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_36921 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_36921 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_36921 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_36921 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_36921 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_36921 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_36921 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_36921 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_36921 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_36921 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_36921 > .jack.bg-image.glass.after,#stacks_in_36921 > .glass.jack.bg-image::after{}#stacks_in_36921 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_36921 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_36921 > .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_36921 > .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_36921 > .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_36921 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_36921 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_36921 > .jack.peek-shadow::before,#stacks_in_36921 > .jack.peek-shadow::after{-webkit-box-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_36921 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_36921 > .jack{overflow:visible;}#stacks_in_36921 > .jack.height-static{height:100px}#stacks_in_36921 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_36923{}#stacks_in_36923 > .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_36923 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_36923 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_36923 > .jack.width-static{width:500px}#stacks_in_36923 > .jack.width-flexible{width:100%}#stacks_in_36923 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_36923 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_36923 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_36923 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_36923 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_36923 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_36923 > .jack::after{border-radius:15px}#stacks_in_36923 > .jack.border-detailed-radius,#stacks_in_36923 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_36923 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_36923 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_36923 > .jack.bg-gradient{background-color:#AFE9BB}#stacks_in_36923 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_36923 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_36923 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_36923 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_36923 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_36923 > .jack.bg-image:not(.glass){}#stacks_in_36923 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_36923 > .jack.bg-image.glass.after,#stacks_in_36923 > .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_36923 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_36923 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_36923 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_36923 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_36923 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_36923 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_36923 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_36923 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_36923 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_36923 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_36923 > .jack.bg-image.glass.after,#stacks_in_36923 > .glass.jack.bg-image::after{}#stacks_in_36923 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_36923 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_36923 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_36923 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_36923 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_36923 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_36923 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_36923 > .jack.peek-shadow::before,#stacks_in_36923 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_36923 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_36923 > .jack{overflow:hidden;}#stacks_in_36923 > .jack.height-static{height:100px}#stacks_in_36923 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_36925Calligrapher{			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_36925Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36925Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36925Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36925Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36925Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36925Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36925Calligrapher h6, .stacks_in_36925Calligrapher h5, .stacks_in_36925Calligrapher h4, .stacks_in_36925Calligrapher h3, .stacks_in_36925Calligrapher h2, .stacks_in_36925Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_36925Calligrapher, .stacks_in_36925Calligrapher h1, .stacks_in_36925Calligrapher h2, .stacks_in_36925Calligrapher h3, .stacks_in_36925Calligrapher h4, .stacks_in_36925Calligrapher h5, .stacks_in_36925Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_36925Calligrapher, .stacks_in_36925Calligrapher h1, .stacks_in_36925Calligrapher h2, .stacks_in_36925Calligrapher h3, .stacks_in_36925Calligrapher h4, .stacks_in_36925Calligrapher h5, .stacks_in_36925Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_36925targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_36925Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_36925Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_36925Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_36925Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_36925 {
	padding: 0px 15px 0px 15px;
}
/* Start dooHeader X stack CSS code */.stacks_in_36926x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_36926x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_36926x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_36927 {
	font-weight: lighter;
}
#stacks_in_36930{overflow:visible;-webkit-font-smoothing:antialiased;}#stacks_in_36930 .cycler_reel{position:relative;width:100%;overflow:hidden}#stacks_in_36930{visibility:hidden}#stacks_in_36930 .cycler_reel > div.stacks_out{width:100% !important}#stacks_in_36930 .cycler_reel > div.stacks_out:first{visibility:visible}#stacks_in_36930 .cycler_nav{cursor:pointer;z-index:101;display:block;display:none;width:50px;height:50px;position:absolute;background:url(../about_files/cycler-images/75x75-ChevronLight.png) 0px 0px no-repeat;background-size:100%;top:40%;}#stacks_in_36930 .cycler_nav.prev{left:0px;background-position:0px 0px}#stacks_in_36930 .cycler_nav.prev:hover{background-position:0px -50px}#stacks_in_36930 .cycler_nav.prev:active{background-position:0px -100px}#stacks_in_36930 .cycler_nav.next{right:0px;background-position:0px -150px}#stacks_in_36930 .cycler_nav.next:hover{background-position:0px -200px}#stacks_in_36930 .cycler_nav.next:active{background-position:0px -250px}
#stacks_in_36931{}#stacks_in_36931 > .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_36931 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_36931 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_36931 > .jack.width-static{width:500px}#stacks_in_36931 > .jack.width-flexible{width:100%}#stacks_in_36931 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_36931 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_36931 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_36931 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_36931 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_36931 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_36931 > .jack::after{border-radius:15px}#stacks_in_36931 > .jack.border-detailed-radius,#stacks_in_36931 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_36931 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_36931 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_36931 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_36931 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_36931 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_36931 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_36931 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_36931 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_36931 > .jack.bg-image:not(.glass){}#stacks_in_36931 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_36931 > .jack.bg-image.glass.after,#stacks_in_36931 > .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_36931 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_36931 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_36931 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_36931 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_36931 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_36931 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_36931 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_36931 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_36931 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_36931 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_36931 > .jack.bg-image.glass.after,#stacks_in_36931 > .glass.jack.bg-image::after{}#stacks_in_36931 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_36931 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_36931 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_36931 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_36931 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_36931 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_36931 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_36931 > .jack.peek-shadow::before,#stacks_in_36931 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_36931 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_36931 > .jack{overflow:hidden;}#stacks_in_36931 > .jack.height-static{height:500px}#stacks_in_36931 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_36933 {
	height: 45.00px;
}




























@media print {
	#spacerStackstacks_in_36933 {
		display: none !important;
	}
}
#stacks_in_36937 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_36937 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_36937 #jwresp_col2_stacks_in_36937{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_36937 #jwresp_col1_stacks_in_36937,#stacks_in_36937 #jwresp_col2_stacks_in_36937{width:100%;float:none;display:block}#stacks_in_36937 #jwresp_col1_stacks_in_36937{margin-bottom:15px}}

#stacks_in_36937 {
	padding:  20px;
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_36938 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_36938 {
		display: none !important;
	}
}
#stacks_in_36939 .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_36939 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_36939 .fluid-image.unlimited img{width:100% !important}#stacks_in_36939 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_36939 .fluid-image.align-left img{float:left}#stacks_in_36939 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_36942Calligrapher{			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_36942Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36942Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36942Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36942Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36942Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36942Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36942Calligrapher h6, .stacks_in_36942Calligrapher h5, .stacks_in_36942Calligrapher h4, .stacks_in_36942Calligrapher h3, .stacks_in_36942Calligrapher h2, .stacks_in_36942Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_36942Calligrapher, .stacks_in_36942Calligrapher h1, .stacks_in_36942Calligrapher h2, .stacks_in_36942Calligrapher h3, .stacks_in_36942Calligrapher h4, .stacks_in_36942Calligrapher h5, .stacks_in_36942Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_36942targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_36942Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_36942Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_36942Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_36942Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_36942 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_36943 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_36946 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_36948 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_36950Calligrapher{			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_36950Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36950Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36950Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36950Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36950Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36950Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36950Calligrapher h6, .stacks_in_36950Calligrapher h5, .stacks_in_36950Calligrapher h4, .stacks_in_36950Calligrapher h3, .stacks_in_36950Calligrapher h2, .stacks_in_36950Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_36950Calligrapher, .stacks_in_36950Calligrapher h1, .stacks_in_36950Calligrapher h2, .stacks_in_36950Calligrapher h3, .stacks_in_36950Calligrapher h4, .stacks_in_36950Calligrapher h5, .stacks_in_36950Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_36950targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_36950Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_36950Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_36950Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_36950Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_36950 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_36953 {
	line-height: 2em;
}
#stacks_in_36956{}#stacks_in_36956 > .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_36956 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_36956 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_36956 > .jack.width-static{width:500px}#stacks_in_36956 > .jack.width-flexible{width:100%}#stacks_in_36956 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_36956 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_36956 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_36956 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_36956 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_36956 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_36956 > .jack::after{border-radius:15px}#stacks_in_36956 > .jack.border-detailed-radius,#stacks_in_36956 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_36956 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_36956 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_36956 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_36956 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_36956 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_36956 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_36956 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_36956 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_36956 > .jack.bg-image:not(.glass){}#stacks_in_36956 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_36956 > .jack.bg-image.glass.after,#stacks_in_36956 > .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_36956 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_36956 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_36956 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_36956 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_36956 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_36956 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_36956 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_36956 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_36956 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_36956 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_36956 > .jack.bg-image.glass.after,#stacks_in_36956 > .glass.jack.bg-image::after{}#stacks_in_36956 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_36956 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_36956 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_36956 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_36956 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_36956 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_36956 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_36956 > .jack.peek-shadow::before,#stacks_in_36956 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_36956 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_36956 > .jack{overflow:hidden;}#stacks_in_36956 > .jack.height-static{height:500px}#stacks_in_36956 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_36957 {
	height: 45.00px;
}




























@media print {
	#spacerStackstacks_in_36957 {
		display: none !important;
	}
}
#stacks_in_36958 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_36958 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_36958 #jwresp_col2_stacks_in_36958{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_36958 #jwresp_col1_stacks_in_36958,#stacks_in_36958 #jwresp_col2_stacks_in_36958{width:100%;float:none;display:block}#stacks_in_36958 #jwresp_col1_stacks_in_36958{margin-bottom:15px}}

#stacks_in_36958 {
	padding:  20px;
}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_36959 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_36959 {
		display: none !important;
	}
}
#stacks_in_36960 .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_36960 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_36960 .fluid-image.unlimited img{width:100% !important}#stacks_in_36960 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_36960 .fluid-image.align-left img{float:left}#stacks_in_36960 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_36963Calligrapher{			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_36963Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36963Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36963Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36963Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36963Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36963Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36963Calligrapher h6, .stacks_in_36963Calligrapher h5, .stacks_in_36963Calligrapher h4, .stacks_in_36963Calligrapher h3, .stacks_in_36963Calligrapher h2, .stacks_in_36963Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_36963Calligrapher, .stacks_in_36963Calligrapher h1, .stacks_in_36963Calligrapher h2, .stacks_in_36963Calligrapher h3, .stacks_in_36963Calligrapher h4, .stacks_in_36963Calligrapher h5, .stacks_in_36963Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_36963targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_36963Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_36963Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_36963Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_36963Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_36963 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_36964 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_36967 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_36971Calligrapher{			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_36971Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36971Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36971Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36971Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36971Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36971Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36971Calligrapher h6, .stacks_in_36971Calligrapher h5, .stacks_in_36971Calligrapher h4, .stacks_in_36971Calligrapher h3, .stacks_in_36971Calligrapher h2, .stacks_in_36971Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_36971Calligrapher, .stacks_in_36971Calligrapher h1, .stacks_in_36971Calligrapher h2, .stacks_in_36971Calligrapher h3, .stacks_in_36971Calligrapher h4, .stacks_in_36971Calligrapher h5, .stacks_in_36971Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_36971targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_36971Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_36971Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_36971Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_36971Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_36971 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_36974 {
	line-height: 2em;
}
#stacks_in_36977{}#stacks_in_36977 > .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_36977 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_36977 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_36977 > .jack.width-static{width:500px}#stacks_in_36977 > .jack.width-flexible{width:100%}#stacks_in_36977 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_36977 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_36977 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_36977 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_36977 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_36977 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_36977 > .jack::after{border-radius:15px}#stacks_in_36977 > .jack.border-detailed-radius,#stacks_in_36977 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_36977 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_36977 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_36977 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_36977 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_36977 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_36977 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_36977 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_36977 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_36977 > .jack.bg-image:not(.glass){}#stacks_in_36977 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_36977 > .jack.bg-image.glass.after,#stacks_in_36977 > .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_36977 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_36977 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_36977 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_36977 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_36977 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_36977 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_36977 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_36977 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_36977 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_36977 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_36977 > .jack.bg-image.glass.after,#stacks_in_36977 > .glass.jack.bg-image::after{}#stacks_in_36977 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_36977 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_36977 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_36977 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_36977 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_36977 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_36977 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_36977 > .jack.peek-shadow::before,#stacks_in_36977 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_36977 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_36977 > .jack{overflow:hidden;}#stacks_in_36977 > .jack.height-static{height:500px}#stacks_in_36977 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 45.00px;
}

#spacerStackstacks_in_36978 {
	height: 45.00px;
}




























@media print {
	#spacerStackstacks_in_36978 {
		display: none !important;
	}
}
#stacks_in_36979 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_36979 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_36979 #jwresp_col2_stacks_in_36979{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_36979 #jwresp_col1_stacks_in_36979,#stacks_in_36979 #jwresp_col2_stacks_in_36979{width:100%;float:none;display:block}#stacks_in_36979 #jwresp_col1_stacks_in_36979{margin-bottom:15px}}

#stacks_in_36979 {
	padding:  20px;
}

.spacerStack {
	height: 55.00px;
}

#spacerStackstacks_in_36980 {
	height: 55.00px;
}




























@media print {
	#spacerStackstacks_in_36980 {
		display: none !important;
	}
}
#stacks_in_36981 .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_36981 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_36981 .fluid-image.unlimited img{width:100% !important}#stacks_in_36981 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_36981 .fluid-image.align-left img{float:left}#stacks_in_36981 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_36984Calligrapher{			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_36984Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36984Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36984Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36984Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36984Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36984Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36984Calligrapher h6, .stacks_in_36984Calligrapher h5, .stacks_in_36984Calligrapher h4, .stacks_in_36984Calligrapher h3, .stacks_in_36984Calligrapher h2, .stacks_in_36984Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_36984Calligrapher, .stacks_in_36984Calligrapher h1, .stacks_in_36984Calligrapher h2, .stacks_in_36984Calligrapher h3, .stacks_in_36984Calligrapher h4, .stacks_in_36984Calligrapher h5, .stacks_in_36984Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_36984targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_36984Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_36984Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_36984Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_36984Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_36984 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_36985 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_36988 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_36992Calligrapher{			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_36992Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36992Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36992Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36992Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36992Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36992Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_36992Calligrapher h6, .stacks_in_36992Calligrapher h5, .stacks_in_36992Calligrapher h4, .stacks_in_36992Calligrapher h3, .stacks_in_36992Calligrapher h2, .stacks_in_36992Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_36992Calligrapher, .stacks_in_36992Calligrapher h1, .stacks_in_36992Calligrapher h2, .stacks_in_36992Calligrapher h3, .stacks_in_36992Calligrapher h4, .stacks_in_36992Calligrapher h5, .stacks_in_36992Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_36992targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_36992Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_36992Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_36992Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_36992Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_36992 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_36995 {
	line-height: 2em;
}
#stacks_in_36998{}#stacks_in_36998 > .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_36998 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_36998 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_36998 > .jack.width-static{width:500px}#stacks_in_36998 > .jack.width-flexible{width:100%}#stacks_in_36998 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_36998 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_36998 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_36998 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_36998 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_36998 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_36998 > .jack::after{border-radius:15px}#stacks_in_36998 > .jack.border-detailed-radius,#stacks_in_36998 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_36998 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_36998 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_36998 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_36998 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_36998 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_36998 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_36998 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_36998 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_36998 > .jack.bg-image:not(.glass){}#stacks_in_36998 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_36998 > .jack.bg-image.glass.after,#stacks_in_36998 > .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_36998 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_36998 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_36998 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_36998 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_36998 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_36998 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_36998 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_36998 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_36998 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_36998 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_36998 > .jack.bg-image.glass.after,#stacks_in_36998 > .glass.jack.bg-image::after{}#stacks_in_36998 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_36998 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_36998 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_36998 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_36998 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_36998 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_36998 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_36998 > .jack.peek-shadow::before,#stacks_in_36998 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_36998 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_36998 > .jack{overflow:hidden;}#stacks_in_36998 > .jack.height-static{height:500px}#stacks_in_36998 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_36999 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_36999 {
		display: none !important;
	}
}
#stacks_in_37000 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_37000 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_37000 #jwresp_col2_stacks_in_37000{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_37000 #jwresp_col1_stacks_in_37000,#stacks_in_37000 #jwresp_col2_stacks_in_37000{width:100%;float:none;display:block}#stacks_in_37000 #jwresp_col1_stacks_in_37000{margin-bottom:15px}}

#stacks_in_37000 {
	padding:  20px;
}
#stacks_in_37001 .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_37001 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37001 .fluid-image.unlimited img{width:100% !important}#stacks_in_37001 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37001 .fluid-image.align-left img{float:left}#stacks_in_37001 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_37004 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_37004 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37005Calligrapher{			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_37005Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37005Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37005Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37005Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37005Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37005Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37005Calligrapher h6, .stacks_in_37005Calligrapher h5, .stacks_in_37005Calligrapher h4, .stacks_in_37005Calligrapher h3, .stacks_in_37005Calligrapher h2, .stacks_in_37005Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37005Calligrapher, .stacks_in_37005Calligrapher h1, .stacks_in_37005Calligrapher h2, .stacks_in_37005Calligrapher h3, .stacks_in_37005Calligrapher h4, .stacks_in_37005Calligrapher h5, .stacks_in_37005Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37005targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37005Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37005Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37005Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37005Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37005 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37006 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37009 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37013Calligrapher{			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_37013Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37013Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37013Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37013Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37013Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37013Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37013Calligrapher h6, .stacks_in_37013Calligrapher h5, .stacks_in_37013Calligrapher h4, .stacks_in_37013Calligrapher h3, .stacks_in_37013Calligrapher h2, .stacks_in_37013Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37013Calligrapher, .stacks_in_37013Calligrapher h1, .stacks_in_37013Calligrapher h2, .stacks_in_37013Calligrapher h3, .stacks_in_37013Calligrapher h4, .stacks_in_37013Calligrapher h5, .stacks_in_37013Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37013targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37013Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37013Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37013Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37013Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37013 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37016 {
	line-height: 2em;
}
#stacks_in_37019{}#stacks_in_37019 > .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_37019 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37019 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37019 > .jack.width-static{width:500px}#stacks_in_37019 > .jack.width-flexible{width:100%}#stacks_in_37019 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37019 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37019 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37019 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37019 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37019 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37019 > .jack::after{border-radius:15px}#stacks_in_37019 > .jack.border-detailed-radius,#stacks_in_37019 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37019 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37019 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37019 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37019 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37019 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37019 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37019 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37019 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37019 > .jack.bg-image:not(.glass){}#stacks_in_37019 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37019 > .jack.bg-image.glass.after,#stacks_in_37019 > .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_37019 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37019 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37019 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37019 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37019 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37019 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37019 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37019 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37019 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37019 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37019 > .jack.bg-image.glass.after,#stacks_in_37019 > .glass.jack.bg-image::after{}#stacks_in_37019 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37019 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37019 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37019 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37019 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37019 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37019 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37019 > .jack.peek-shadow::before,#stacks_in_37019 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37019 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37019 > .jack{overflow:hidden;}#stacks_in_37019 > .jack.height-static{height:500px}#stacks_in_37019 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_37020 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_37020 {
		display: none !important;
	}
}
#stacks_in_37021 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_37021 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_37021 #jwresp_col2_stacks_in_37021{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_37021 #jwresp_col1_stacks_in_37021,#stacks_in_37021 #jwresp_col2_stacks_in_37021{width:100%;float:none;display:block}#stacks_in_37021 #jwresp_col1_stacks_in_37021{margin-bottom:15px}}

#stacks_in_37021 {
	padding:  20px;
}
#stacks_in_37022 .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_37022 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37022 .fluid-image.unlimited img{width:100% !important}#stacks_in_37022 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37022 .fluid-image.align-left img{float:left}#stacks_in_37022 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37025Calligrapher{			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_37025Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37025Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37025Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37025Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37025Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37025Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37025Calligrapher h6, .stacks_in_37025Calligrapher h5, .stacks_in_37025Calligrapher h4, .stacks_in_37025Calligrapher h3, .stacks_in_37025Calligrapher h2, .stacks_in_37025Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37025Calligrapher, .stacks_in_37025Calligrapher h1, .stacks_in_37025Calligrapher h2, .stacks_in_37025Calligrapher h3, .stacks_in_37025Calligrapher h4, .stacks_in_37025Calligrapher h5, .stacks_in_37025Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37025targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37025Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37025Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37025Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37025Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37025 {
	padding: 5px 20px 0px 20px;
}

#stacks_in_37026 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37029 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37031 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37033 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37037Calligrapher{			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_37037Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37037Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37037Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37037Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37037Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37037Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37037Calligrapher h6, .stacks_in_37037Calligrapher h5, .stacks_in_37037Calligrapher h4, .stacks_in_37037Calligrapher h3, .stacks_in_37037Calligrapher h2, .stacks_in_37037Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37037Calligrapher, .stacks_in_37037Calligrapher h1, .stacks_in_37037Calligrapher h2, .stacks_in_37037Calligrapher h3, .stacks_in_37037Calligrapher h4, .stacks_in_37037Calligrapher h5, .stacks_in_37037Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37037targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37037Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37037Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37037Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37037Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37037 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37040 {
	line-height: 2em;
}
#stacks_in_37043{}#stacks_in_37043 > .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_37043 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37043 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37043 > .jack.width-static{width:500px}#stacks_in_37043 > .jack.width-flexible{width:100%}#stacks_in_37043 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37043 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37043 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37043 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37043 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37043 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37043 > .jack::after{border-radius:15px}#stacks_in_37043 > .jack.border-detailed-radius,#stacks_in_37043 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37043 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37043 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37043 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37043 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37043 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37043 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37043 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37043 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37043 > .jack.bg-image:not(.glass){}#stacks_in_37043 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37043 > .jack.bg-image.glass.after,#stacks_in_37043 > .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_37043 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37043 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37043 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37043 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37043 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37043 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37043 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37043 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37043 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37043 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37043 > .jack.bg-image.glass.after,#stacks_in_37043 > .glass.jack.bg-image::after{}#stacks_in_37043 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37043 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37043 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37043 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37043 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37043 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37043 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37043 > .jack.peek-shadow::before,#stacks_in_37043 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37043 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37043 > .jack{overflow:hidden;}#stacks_in_37043 > .jack.height-static{height:500px}#stacks_in_37043 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_37044 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_37044 {
		display: none !important;
	}
}
#stacks_in_37045 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_37045 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_37045 #jwresp_col2_stacks_in_37045{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_37045 #jwresp_col1_stacks_in_37045,#stacks_in_37045 #jwresp_col2_stacks_in_37045{width:100%;float:none;display:block}#stacks_in_37045 #jwresp_col1_stacks_in_37045{margin-bottom:15px}}

#stacks_in_37045 {
	padding:  20px;
}
#stacks_in_37046 .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_37046 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37046 .fluid-image.unlimited img{width:100% !important}#stacks_in_37046 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37046 .fluid-image.align-left img{float:left}#stacks_in_37046 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_37049 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_37049 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37050Calligrapher{			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_37050Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37050Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37050Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37050Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37050Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37050Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37050Calligrapher h6, .stacks_in_37050Calligrapher h5, .stacks_in_37050Calligrapher h4, .stacks_in_37050Calligrapher h3, .stacks_in_37050Calligrapher h2, .stacks_in_37050Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37050Calligrapher, .stacks_in_37050Calligrapher h1, .stacks_in_37050Calligrapher h2, .stacks_in_37050Calligrapher h3, .stacks_in_37050Calligrapher h4, .stacks_in_37050Calligrapher h5, .stacks_in_37050Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37050targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37050Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37050Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37050Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37050Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37050 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37051 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37054 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37058Calligrapher{			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_37058Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37058Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37058Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37058Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37058Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37058Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37058Calligrapher h6, .stacks_in_37058Calligrapher h5, .stacks_in_37058Calligrapher h4, .stacks_in_37058Calligrapher h3, .stacks_in_37058Calligrapher h2, .stacks_in_37058Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37058Calligrapher, .stacks_in_37058Calligrapher h1, .stacks_in_37058Calligrapher h2, .stacks_in_37058Calligrapher h3, .stacks_in_37058Calligrapher h4, .stacks_in_37058Calligrapher h5, .stacks_in_37058Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37058targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37058Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37058Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37058Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37058Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37058 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37061 {
	line-height: 2em;
}
#stacks_in_37064{}#stacks_in_37064 > .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_37064 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37064 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37064 > .jack.width-static{width:500px}#stacks_in_37064 > .jack.width-flexible{width:100%}#stacks_in_37064 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37064 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37064 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37064 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37064 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37064 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37064 > .jack::after{border-radius:15px}#stacks_in_37064 > .jack.border-detailed-radius,#stacks_in_37064 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37064 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37064 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37064 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37064 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37064 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37064 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37064 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37064 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37064 > .jack.bg-image:not(.glass){}#stacks_in_37064 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37064 > .jack.bg-image.glass.after,#stacks_in_37064 > .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_37064 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37064 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37064 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37064 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37064 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37064 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37064 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37064 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37064 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37064 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37064 > .jack.bg-image.glass.after,#stacks_in_37064 > .glass.jack.bg-image::after{}#stacks_in_37064 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37064 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37064 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37064 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37064 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37064 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37064 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37064 > .jack.peek-shadow::before,#stacks_in_37064 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37064 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37064 > .jack{overflow:hidden;}#stacks_in_37064 > .jack.height-static{height:500px}#stacks_in_37064 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_37065 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_37065 {
		display: none !important;
	}
}
#stacks_in_37066 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_37066 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_37066 #jwresp_col2_stacks_in_37066{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_37066 #jwresp_col1_stacks_in_37066,#stacks_in_37066 #jwresp_col2_stacks_in_37066{width:100%;float:none;display:block}#stacks_in_37066 #jwresp_col1_stacks_in_37066{margin-bottom:15px}}

#stacks_in_37066 {
	padding:  20px;
}
#stacks_in_37067 .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_37067 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37067 .fluid-image.unlimited img{width:100% !important}#stacks_in_37067 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37067 .fluid-image.align-left img{float:left}#stacks_in_37067 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 20.00px;
}

#spacerStackstacks_in_37070 {
	height: 20.00px;
}




























@media print {
	#spacerStackstacks_in_37070 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37071Calligrapher{			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_37071Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37071Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37071Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37071Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37071Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37071Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37071Calligrapher h6, .stacks_in_37071Calligrapher h5, .stacks_in_37071Calligrapher h4, .stacks_in_37071Calligrapher h3, .stacks_in_37071Calligrapher h2, .stacks_in_37071Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37071Calligrapher, .stacks_in_37071Calligrapher h1, .stacks_in_37071Calligrapher h2, .stacks_in_37071Calligrapher h3, .stacks_in_37071Calligrapher h4, .stacks_in_37071Calligrapher h5, .stacks_in_37071Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37071targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37071Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37071Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37071Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37071Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37071 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37072 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37075 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37079Calligrapher{			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_37079Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37079Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37079Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37079Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37079Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37079Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37079Calligrapher h6, .stacks_in_37079Calligrapher h5, .stacks_in_37079Calligrapher h4, .stacks_in_37079Calligrapher h3, .stacks_in_37079Calligrapher h2, .stacks_in_37079Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37079Calligrapher, .stacks_in_37079Calligrapher h1, .stacks_in_37079Calligrapher h2, .stacks_in_37079Calligrapher h3, .stacks_in_37079Calligrapher h4, .stacks_in_37079Calligrapher h5, .stacks_in_37079Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37079targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37079Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37079Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37079Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37079Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37079 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37082 {
	line-height: 2em;
}
#stacks_in_37085{}#stacks_in_37085 > .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_37085 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37085 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37085 > .jack.width-static{width:500px}#stacks_in_37085 > .jack.width-flexible{width:100%}#stacks_in_37085 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37085 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37085 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37085 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37085 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37085 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37085 > .jack::after{border-radius:15px}#stacks_in_37085 > .jack.border-detailed-radius,#stacks_in_37085 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37085 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37085 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37085 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37085 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37085 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37085 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37085 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37085 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37085 > .jack.bg-image:not(.glass){}#stacks_in_37085 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37085 > .jack.bg-image.glass.after,#stacks_in_37085 > .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_37085 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37085 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37085 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37085 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37085 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37085 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37085 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37085 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37085 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37085 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37085 > .jack.bg-image.glass.after,#stacks_in_37085 > .glass.jack.bg-image::after{}#stacks_in_37085 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37085 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37085 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37085 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37085 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37085 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37085 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37085 > .jack.peek-shadow::before,#stacks_in_37085 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37085 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37085 > .jack{overflow:hidden;}#stacks_in_37085 > .jack.height-static{height:500px}#stacks_in_37085 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 95.00px;
}

#spacerStackstacks_in_37086 {
	height: 95.00px;
}




























@media print {
	#spacerStackstacks_in_37086 {
		display: none !important;
	}
}
#stacks_in_37087 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_37087 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_37087 #jwresp_col2_stacks_in_37087{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_37087 #jwresp_col1_stacks_in_37087,#stacks_in_37087 #jwresp_col2_stacks_in_37087{width:100%;float:none;display:block}#stacks_in_37087 #jwresp_col1_stacks_in_37087{margin-bottom:15px}}

#stacks_in_37087 {
	padding:  18px;
}
#stacks_in_37088 .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_37088 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37088 .fluid-image.unlimited img{width:100% !important}#stacks_in_37088 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37088 .fluid-image.align-left img{float:left}#stacks_in_37088 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37091Calligrapher{			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_37091Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37091Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37091Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37091Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37091Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37091Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37091Calligrapher h6, .stacks_in_37091Calligrapher h5, .stacks_in_37091Calligrapher h4, .stacks_in_37091Calligrapher h3, .stacks_in_37091Calligrapher h2, .stacks_in_37091Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37091Calligrapher, .stacks_in_37091Calligrapher h1, .stacks_in_37091Calligrapher h2, .stacks_in_37091Calligrapher h3, .stacks_in_37091Calligrapher h4, .stacks_in_37091Calligrapher h5, .stacks_in_37091Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37091targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37091Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37091Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37091Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37091Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37091 {
	padding: 0px 20px 0px 20px;
}

#stacks_in_37092 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37095 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37099Calligrapher{			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_37099Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37099Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37099Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37099Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37099Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37099Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37099Calligrapher h6, .stacks_in_37099Calligrapher h5, .stacks_in_37099Calligrapher h4, .stacks_in_37099Calligrapher h3, .stacks_in_37099Calligrapher h2, .stacks_in_37099Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37099Calligrapher, .stacks_in_37099Calligrapher h1, .stacks_in_37099Calligrapher h2, .stacks_in_37099Calligrapher h3, .stacks_in_37099Calligrapher h4, .stacks_in_37099Calligrapher h5, .stacks_in_37099Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37099targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37099Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37099Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37099Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37099Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37099 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37102 {
	line-height: 2em;
}
#stacks_in_37105{}#stacks_in_37105 > .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_37105 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37105 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37105 > .jack.width-static{width:500px}#stacks_in_37105 > .jack.width-flexible{width:100%}#stacks_in_37105 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37105 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37105 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37105 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37105 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37105 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37105 > .jack::after{border-radius:15px}#stacks_in_37105 > .jack.border-detailed-radius,#stacks_in_37105 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37105 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37105 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37105 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37105 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37105 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37105 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37105 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37105 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37105 > .jack.bg-image:not(.glass){}#stacks_in_37105 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37105 > .jack.bg-image.glass.after,#stacks_in_37105 > .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_37105 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37105 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37105 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37105 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37105 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37105 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37105 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37105 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37105 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37105 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37105 > .jack.bg-image.glass.after,#stacks_in_37105 > .glass.jack.bg-image::after{}#stacks_in_37105 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37105 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37105 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37105 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37105 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37105 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37105 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37105 > .jack.peek-shadow::before,#stacks_in_37105 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37105 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37105 > .jack{overflow:hidden;}#stacks_in_37105 > .jack.height-static{height:500px}#stacks_in_37105 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 35.00px;
}

#spacerStackstacks_in_37106 {
	height: 35.00px;
}




























@media print {
	#spacerStackstacks_in_37106 {
		display: none !important;
	}
}
#stacks_in_37107 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_37107 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_37107 #jwresp_col2_stacks_in_37107{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_37107 #jwresp_col1_stacks_in_37107,#stacks_in_37107 #jwresp_col2_stacks_in_37107{width:100%;float:none;display:block}#stacks_in_37107 #jwresp_col1_stacks_in_37107{margin-bottom:15px}}

#stacks_in_37107 {
	padding:  20px;
}
#stacks_in_37108 .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_37108 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37108 .fluid-image.unlimited img{width:100% !important}#stacks_in_37108 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37108 .fluid-image.align-left img{float:left}#stacks_in_37108 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 120.00px;
}

#spacerStackstacks_in_37111 {
	height: 120.00px;
}




























@media print {
	#spacerStackstacks_in_37111 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37112Calligrapher{			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_37112Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37112Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37112Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37112Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37112Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37112Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37112Calligrapher h6, .stacks_in_37112Calligrapher h5, .stacks_in_37112Calligrapher h4, .stacks_in_37112Calligrapher h3, .stacks_in_37112Calligrapher h2, .stacks_in_37112Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37112Calligrapher, .stacks_in_37112Calligrapher h1, .stacks_in_37112Calligrapher h2, .stacks_in_37112Calligrapher h3, .stacks_in_37112Calligrapher h4, .stacks_in_37112Calligrapher h5, .stacks_in_37112Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37112targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37112Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37112Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37112Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37112Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37112 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37113 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37116 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37120Calligrapher{			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_37120Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37120Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37120Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37120Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37120Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37120Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37120Calligrapher h6, .stacks_in_37120Calligrapher h5, .stacks_in_37120Calligrapher h4, .stacks_in_37120Calligrapher h3, .stacks_in_37120Calligrapher h2, .stacks_in_37120Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37120Calligrapher, .stacks_in_37120Calligrapher h1, .stacks_in_37120Calligrapher h2, .stacks_in_37120Calligrapher h3, .stacks_in_37120Calligrapher h4, .stacks_in_37120Calligrapher h5, .stacks_in_37120Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37120targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37120Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37120Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37120Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37120Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37121 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_37123 {
	line-height: 2em;
}
#stacks_in_37126{}#stacks_in_37126 > .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_37126 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37126 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37126 > .jack.width-static{width:500px}#stacks_in_37126 > .jack.width-flexible{width:100%}#stacks_in_37126 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37126 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37126 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37126 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37126 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37126 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37126 > .jack::after{border-radius:15px}#stacks_in_37126 > .jack.border-detailed-radius,#stacks_in_37126 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37126 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37126 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37126 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37126 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37126 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37126 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37126 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37126 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37126 > .jack.bg-image:not(.glass){}#stacks_in_37126 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37126 > .jack.bg-image.glass.after,#stacks_in_37126 > .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_37126 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37126 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37126 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37126 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37126 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37126 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37126 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37126 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37126 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37126 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37126 > .jack.bg-image.glass.after,#stacks_in_37126 > .glass.jack.bg-image::after{}#stacks_in_37126 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37126 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37126 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37126 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37126 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37126 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37126 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37126 > .jack.peek-shadow::before,#stacks_in_37126 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37126 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37126 > .jack{overflow:hidden;}#stacks_in_37126 > .jack.height-static{height:500px}#stacks_in_37126 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_37127 {
	height: 25.00px;
}




























@media print {
	#spacerStackstacks_in_37127 {
		display: none !important;
	}
}
#stacks_in_37128 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_37128 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_37128 #jwresp_col2_stacks_in_37128{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_37128 #jwresp_col1_stacks_in_37128,#stacks_in_37128 #jwresp_col2_stacks_in_37128{width:100%;float:none;display:block}#stacks_in_37128 #jwresp_col1_stacks_in_37128{margin-bottom:15px}}

#stacks_in_37128 {
	padding:  20px;
}
#stacks_in_37129 .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_37129 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37129 .fluid-image.unlimited img{width:100% !important}#stacks_in_37129 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37129 .fluid-image.align-left img{float:left}#stacks_in_37129 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 70.00px;
}

#spacerStackstacks_in_37132 {
	height: 70.00px;
}




























@media print {
	#spacerStackstacks_in_37132 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37133Calligrapher{			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_37133Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37133Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37133Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37133Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37133Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37133Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37133Calligrapher h6, .stacks_in_37133Calligrapher h5, .stacks_in_37133Calligrapher h4, .stacks_in_37133Calligrapher h3, .stacks_in_37133Calligrapher h2, .stacks_in_37133Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37133Calligrapher, .stacks_in_37133Calligrapher h1, .stacks_in_37133Calligrapher h2, .stacks_in_37133Calligrapher h3, .stacks_in_37133Calligrapher h4, .stacks_in_37133Calligrapher h5, .stacks_in_37133Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37133targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37133Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37133Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37133Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37133Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37133 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37134 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37137 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37141Calligrapher{			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_37141Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37141Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37141Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37141Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37141Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37141Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37141Calligrapher h6, .stacks_in_37141Calligrapher h5, .stacks_in_37141Calligrapher h4, .stacks_in_37141Calligrapher h3, .stacks_in_37141Calligrapher h2, .stacks_in_37141Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37141Calligrapher, .stacks_in_37141Calligrapher h1, .stacks_in_37141Calligrapher h2, .stacks_in_37141Calligrapher h3, .stacks_in_37141Calligrapher h4, .stacks_in_37141Calligrapher h5, .stacks_in_37141Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37141targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37141Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37141Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37141Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37141Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37141 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37142 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_37144 {
	line-height: 2em;
}
#stacks_in_37147{}#stacks_in_37147 > .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_37147 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37147 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37147 > .jack.width-static{width:500px}#stacks_in_37147 > .jack.width-flexible{width:100%}#stacks_in_37147 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37147 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37147 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37147 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37147 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37147 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37147 > .jack::after{border-radius:15px}#stacks_in_37147 > .jack.border-detailed-radius,#stacks_in_37147 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37147 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37147 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37147 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37147 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37147 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37147 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37147 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37147 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37147 > .jack.bg-image:not(.glass){}#stacks_in_37147 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37147 > .jack.bg-image.glass.after,#stacks_in_37147 > .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_37147 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37147 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37147 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37147 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37147 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37147 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37147 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37147 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37147 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37147 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37147 > .jack.bg-image.glass.after,#stacks_in_37147 > .glass.jack.bg-image::after{}#stacks_in_37147 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37147 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37147 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37147 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37147 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37147 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37147 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37147 > .jack.peek-shadow::before,#stacks_in_37147 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37147 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37147 > .jack{overflow:hidden;}#stacks_in_37147 > .jack.height-static{height:500px}#stacks_in_37147 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_37148 {
	height: 50.00px;
}




























@media print {
	#spacerStackstacks_in_37148 {
		display: none !important;
	}
}
#stacks_in_37149 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_37149 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_37149 #jwresp_col2_stacks_in_37149{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_37149 #jwresp_col1_stacks_in_37149,#stacks_in_37149 #jwresp_col2_stacks_in_37149{width:100%;float:none;display:block}#stacks_in_37149 #jwresp_col1_stacks_in_37149{margin-bottom:15px}}

#stacks_in_37149 {
	padding:  20px;
}
#stacks_in_37150 .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_37150 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37150 .fluid-image.unlimited img{width:100% !important}#stacks_in_37150 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37150 .fluid-image.align-left img{float:left}#stacks_in_37150 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 70.00px;
}

#spacerStackstacks_in_37153 {
	height: 70.00px;
}




























@media print {
	#spacerStackstacks_in_37153 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37154Calligrapher{			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_37154Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37154Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37154Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37154Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37154Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37154Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37154Calligrapher h6, .stacks_in_37154Calligrapher h5, .stacks_in_37154Calligrapher h4, .stacks_in_37154Calligrapher h3, .stacks_in_37154Calligrapher h2, .stacks_in_37154Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37154Calligrapher, .stacks_in_37154Calligrapher h1, .stacks_in_37154Calligrapher h2, .stacks_in_37154Calligrapher h3, .stacks_in_37154Calligrapher h4, .stacks_in_37154Calligrapher h5, .stacks_in_37154Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37154targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37154Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37154Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37154Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37154Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37154 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37155 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37158 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37162Calligrapher{			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_37162Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37162Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37162Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37162Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37162Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37162Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37162Calligrapher h6, .stacks_in_37162Calligrapher h5, .stacks_in_37162Calligrapher h4, .stacks_in_37162Calligrapher h3, .stacks_in_37162Calligrapher h2, .stacks_in_37162Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37162Calligrapher, .stacks_in_37162Calligrapher h1, .stacks_in_37162Calligrapher h2, .stacks_in_37162Calligrapher h3, .stacks_in_37162Calligrapher h4, .stacks_in_37162Calligrapher h5, .stacks_in_37162Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37162targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37162Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37162Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37162Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37162Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37162 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37163 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_37165 {
	line-height: 2em;
}
#stacks_in_37168{}#stacks_in_37168 > .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_37168 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37168 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37168 > .jack.width-static{width:500px}#stacks_in_37168 > .jack.width-flexible{width:100%}#stacks_in_37168 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37168 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37168 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37168 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37168 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37168 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37168 > .jack::after{border-radius:15px}#stacks_in_37168 > .jack.border-detailed-radius,#stacks_in_37168 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37168 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37168 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37168 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37168 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37168 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37168 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37168 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37168 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37168 > .jack.bg-image:not(.glass){}#stacks_in_37168 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37168 > .jack.bg-image.glass.after,#stacks_in_37168 > .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_37168 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37168 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37168 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37168 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37168 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37168 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37168 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37168 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37168 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37168 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37168 > .jack.bg-image.glass.after,#stacks_in_37168 > .glass.jack.bg-image::after{}#stacks_in_37168 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37168 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37168 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37168 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37168 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37168 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37168 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37168 > .jack.peek-shadow::before,#stacks_in_37168 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37168 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37168 > .jack{overflow:hidden;}#stacks_in_37168 > .jack.height-static{height:500px}#stacks_in_37168 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 50.00px;
}

#spacerStackstacks_in_37169 {
	height: 50.00px;
}




























@media print {
	#spacerStackstacks_in_37169 {
		display: none !important;
	}
}
#stacks_in_37170 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_37170 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_37170 #jwresp_col2_stacks_in_37170{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_37170 #jwresp_col1_stacks_in_37170,#stacks_in_37170 #jwresp_col2_stacks_in_37170{width:100%;float:none;display:block}#stacks_in_37170 #jwresp_col1_stacks_in_37170{margin-bottom:15px}}

#stacks_in_37170 {
	padding:  20px;
}
#stacks_in_37171 .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_37171 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37171 .fluid-image.unlimited img{width:100% !important}#stacks_in_37171 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37171 .fluid-image.align-left img{float:left}#stacks_in_37171 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_37174 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_37174 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37175Calligrapher{			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_37175Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37175Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37175Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37175Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37175Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37175Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37175Calligrapher h6, .stacks_in_37175Calligrapher h5, .stacks_in_37175Calligrapher h4, .stacks_in_37175Calligrapher h3, .stacks_in_37175Calligrapher h2, .stacks_in_37175Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37175Calligrapher, .stacks_in_37175Calligrapher h1, .stacks_in_37175Calligrapher h2, .stacks_in_37175Calligrapher h3, .stacks_in_37175Calligrapher h4, .stacks_in_37175Calligrapher h5, .stacks_in_37175Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37175targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37175Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37175Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37175Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37175Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37175 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37176 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37179 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37181Calligrapher{			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_37181Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37181Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37181Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37181Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37181Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37181Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37181Calligrapher h6, .stacks_in_37181Calligrapher h5, .stacks_in_37181Calligrapher h4, .stacks_in_37181Calligrapher h3, .stacks_in_37181Calligrapher h2, .stacks_in_37181Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37181Calligrapher, .stacks_in_37181Calligrapher h1, .stacks_in_37181Calligrapher h2, .stacks_in_37181Calligrapher h3, .stacks_in_37181Calligrapher h4, .stacks_in_37181Calligrapher h5, .stacks_in_37181Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37181targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37181Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37181Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37181Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37181Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37181 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37182 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_37184 {
	line-height: 2em;
}
#stacks_in_37187{}#stacks_in_37187 > .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_37187 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37187 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37187 > .jack.width-static{width:500px}#stacks_in_37187 > .jack.width-flexible{width:100%}#stacks_in_37187 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37187 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37187 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37187 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37187 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37187 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37187 > .jack::after{border-radius:15px}#stacks_in_37187 > .jack.border-detailed-radius,#stacks_in_37187 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37187 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37187 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37187 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37187 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37187 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37187 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37187 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37187 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37187 > .jack.bg-image:not(.glass){}#stacks_in_37187 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37187 > .jack.bg-image.glass.after,#stacks_in_37187 > .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_37187 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37187 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37187 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37187 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37187 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37187 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37187 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37187 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37187 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37187 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37187 > .jack.bg-image.glass.after,#stacks_in_37187 > .glass.jack.bg-image::after{}#stacks_in_37187 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37187 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37187 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37187 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37187 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37187 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37187 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37187 > .jack.peek-shadow::before,#stacks_in_37187 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37187 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37187 > .jack{overflow:hidden;}#stacks_in_37187 > .jack.height-static{height:500px}#stacks_in_37187 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_37188 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_37188 {
		display: none !important;
	}
}
#stacks_in_37189 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_37189 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_37189 #jwresp_col2_stacks_in_37189{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_37189 #jwresp_col1_stacks_in_37189,#stacks_in_37189 #jwresp_col2_stacks_in_37189{width:100%;float:none;display:block}#stacks_in_37189 #jwresp_col1_stacks_in_37189{margin-bottom:15px}}

#stacks_in_37189 {
	padding:  20px;
}
#stacks_in_37190 .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_37190 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37190 .fluid-image.unlimited img{width:100% !important}#stacks_in_37190 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37190 .fluid-image.align-left img{float:left}#stacks_in_37190 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_37193 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_37193 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37194Calligrapher{			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_37194Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37194Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37194Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37194Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37194Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37194Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37194Calligrapher h6, .stacks_in_37194Calligrapher h5, .stacks_in_37194Calligrapher h4, .stacks_in_37194Calligrapher h3, .stacks_in_37194Calligrapher h2, .stacks_in_37194Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37194Calligrapher, .stacks_in_37194Calligrapher h1, .stacks_in_37194Calligrapher h2, .stacks_in_37194Calligrapher h3, .stacks_in_37194Calligrapher h4, .stacks_in_37194Calligrapher h5, .stacks_in_37194Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37194targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37194Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37194Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37194Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37194Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37194 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37195 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37198 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37200 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37202Calligrapher{			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_37202Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37202Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37202Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37202Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37202Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37202Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37202Calligrapher h6, .stacks_in_37202Calligrapher h5, .stacks_in_37202Calligrapher h4, .stacks_in_37202Calligrapher h3, .stacks_in_37202Calligrapher h2, .stacks_in_37202Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37202Calligrapher, .stacks_in_37202Calligrapher h1, .stacks_in_37202Calligrapher h2, .stacks_in_37202Calligrapher h3, .stacks_in_37202Calligrapher h4, .stacks_in_37202Calligrapher h5, .stacks_in_37202Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37202targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37202Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37202Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37202Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37202Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37203 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_37205 {
	line-height: 2em;
}
#stacks_in_37208{}#stacks_in_37208 > .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_37208 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37208 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37208 > .jack.width-static{width:500px}#stacks_in_37208 > .jack.width-flexible{width:100%}#stacks_in_37208 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37208 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37208 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37208 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37208 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37208 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37208 > .jack::after{border-radius:15px}#stacks_in_37208 > .jack.border-detailed-radius,#stacks_in_37208 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37208 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37208 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37208 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37208 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37208 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37208 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37208 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37208 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37208 > .jack.bg-image:not(.glass){}#stacks_in_37208 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37208 > .jack.bg-image.glass.after,#stacks_in_37208 > .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_37208 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37208 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37208 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37208 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37208 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37208 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37208 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37208 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37208 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37208 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37208 > .jack.bg-image.glass.after,#stacks_in_37208 > .glass.jack.bg-image::after{}#stacks_in_37208 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37208 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37208 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37208 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37208 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37208 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37208 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37208 > .jack.peek-shadow::before,#stacks_in_37208 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37208 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37208 > .jack{overflow:hidden;}#stacks_in_37208 > .jack.height-static{height:500px}#stacks_in_37208 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_37209 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_37209 {
		display: none !important;
	}
}
#stacks_in_37210 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_37210 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_37210 #jwresp_col2_stacks_in_37210{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_37210 #jwresp_col1_stacks_in_37210,#stacks_in_37210 #jwresp_col2_stacks_in_37210{width:100%;float:none;display:block}#stacks_in_37210 #jwresp_col1_stacks_in_37210{margin-bottom:15px}}

#stacks_in_37210 {
	padding:  20px;
}
#stacks_in_37211 .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_37211 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37211 .fluid-image.unlimited img{width:100% !important}#stacks_in_37211 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37211 .fluid-image.align-left img{float:left}#stacks_in_37211 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_37214 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_37214 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37215Calligrapher{			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_37215Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37215Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37215Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37215Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37215Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37215Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37215Calligrapher h6, .stacks_in_37215Calligrapher h5, .stacks_in_37215Calligrapher h4, .stacks_in_37215Calligrapher h3, .stacks_in_37215Calligrapher h2, .stacks_in_37215Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37215Calligrapher, .stacks_in_37215Calligrapher h1, .stacks_in_37215Calligrapher h2, .stacks_in_37215Calligrapher h3, .stacks_in_37215Calligrapher h4, .stacks_in_37215Calligrapher h5, .stacks_in_37215Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37215targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37215Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37215Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37215Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37215Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37215 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37216 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37219 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37221 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37223Calligrapher{			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_37223Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37223Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37223Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37223Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37223Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37223Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37223Calligrapher h6, .stacks_in_37223Calligrapher h5, .stacks_in_37223Calligrapher h4, .stacks_in_37223Calligrapher h3, .stacks_in_37223Calligrapher h2, .stacks_in_37223Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37223Calligrapher, .stacks_in_37223Calligrapher h1, .stacks_in_37223Calligrapher h2, .stacks_in_37223Calligrapher h3, .stacks_in_37223Calligrapher h4, .stacks_in_37223Calligrapher h5, .stacks_in_37223Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37223targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37223Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37223Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37223Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37223Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37223 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37224 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_37226 {
	line-height: 2em;
}
#stacks_in_37229{}#stacks_in_37229 > .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_37229 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37229 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37229 > .jack.width-static{width:500px}#stacks_in_37229 > .jack.width-flexible{width:100%}#stacks_in_37229 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37229 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37229 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37229 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37229 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37229 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37229 > .jack::after{border-radius:15px}#stacks_in_37229 > .jack.border-detailed-radius,#stacks_in_37229 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37229 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37229 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37229 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37229 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37229 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37229 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37229 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37229 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37229 > .jack.bg-image:not(.glass){}#stacks_in_37229 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37229 > .jack.bg-image.glass.after,#stacks_in_37229 > .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_37229 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37229 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37229 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37229 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37229 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37229 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37229 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37229 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37229 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37229 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37229 > .jack.bg-image.glass.after,#stacks_in_37229 > .glass.jack.bg-image::after{}#stacks_in_37229 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37229 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37229 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37229 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37229 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37229 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37229 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37229 > .jack.peek-shadow::before,#stacks_in_37229 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37229 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37229 > .jack{overflow:hidden;}#stacks_in_37229 > .jack.height-static{height:500px}#stacks_in_37229 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 5.00px;
}

#spacerStackstacks_in_37230 {
	height: 5.00px;
}




























@media print {
	#spacerStackstacks_in_37230 {
		display: none !important;
	}
}
#stacks_in_37231 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_37231 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_37231 #jwresp_col2_stacks_in_37231{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_37231 #jwresp_col1_stacks_in_37231,#stacks_in_37231 #jwresp_col2_stacks_in_37231{width:100%;float:none;display:block}#stacks_in_37231 #jwresp_col1_stacks_in_37231{margin-bottom:15px}}

#stacks_in_37231 {
	padding:  20px;
}
#stacks_in_37232 .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_37232 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37232 .fluid-image.unlimited img{width:100% !important}#stacks_in_37232 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37232 .fluid-image.align-left img{float:left}#stacks_in_37232 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37235Calligrapher{			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_37235Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37235Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37235Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37235Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37235Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37235Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37235Calligrapher h6, .stacks_in_37235Calligrapher h5, .stacks_in_37235Calligrapher h4, .stacks_in_37235Calligrapher h3, .stacks_in_37235Calligrapher h2, .stacks_in_37235Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37235Calligrapher, .stacks_in_37235Calligrapher h1, .stacks_in_37235Calligrapher h2, .stacks_in_37235Calligrapher h3, .stacks_in_37235Calligrapher h4, .stacks_in_37235Calligrapher h5, .stacks_in_37235Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37235targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37235Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37235Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37235Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37235Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37235 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37236 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37239 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37241 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37243Calligrapher{			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_37243Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37243Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37243Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37243Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37243Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37243Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37243Calligrapher h6, .stacks_in_37243Calligrapher h5, .stacks_in_37243Calligrapher h4, .stacks_in_37243Calligrapher h3, .stacks_in_37243Calligrapher h2, .stacks_in_37243Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37243Calligrapher, .stacks_in_37243Calligrapher h1, .stacks_in_37243Calligrapher h2, .stacks_in_37243Calligrapher h3, .stacks_in_37243Calligrapher h4, .stacks_in_37243Calligrapher h5, .stacks_in_37243Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37243targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37243Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37243Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37243Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37243Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37243 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37244 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_37246 {
	line-height: 2em;
}
#stacks_in_37249{}#stacks_in_37249 > .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_37249 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37249 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37249 > .jack.width-static{width:500px}#stacks_in_37249 > .jack.width-flexible{width:100%}#stacks_in_37249 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37249 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37249 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37249 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37249 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37249 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37249 > .jack::after{border-radius:15px}#stacks_in_37249 > .jack.border-detailed-radius,#stacks_in_37249 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37249 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37249 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37249 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37249 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37249 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37249 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37249 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37249 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37249 > .jack.bg-image:not(.glass){}#stacks_in_37249 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37249 > .jack.bg-image.glass.after,#stacks_in_37249 > .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_37249 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37249 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37249 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37249 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37249 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37249 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37249 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37249 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37249 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37249 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37249 > .jack.bg-image.glass.after,#stacks_in_37249 > .glass.jack.bg-image::after{}#stacks_in_37249 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37249 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37249 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37249 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37249 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37249 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37249 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37249 > .jack.peek-shadow::before,#stacks_in_37249 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37249 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37249 > .jack{overflow:hidden;}#stacks_in_37249 > .jack.height-static{height:500px}#stacks_in_37249 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 60.00px;
}

#spacerStackstacks_in_37250 {
	height: 60.00px;
}




























@media print {
	#spacerStackstacks_in_37250 {
		display: none !important;
	}
}
#stacks_in_37251 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_37251 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_37251 #jwresp_col2_stacks_in_37251{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_37251 #jwresp_col1_stacks_in_37251,#stacks_in_37251 #jwresp_col2_stacks_in_37251{width:100%;float:none;display:block}#stacks_in_37251 #jwresp_col1_stacks_in_37251{margin-bottom:15px}}

#stacks_in_37251 {
	padding:  20px;
}
#stacks_in_37252 .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_37252 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37252 .fluid-image.unlimited img{width:100% !important}#stacks_in_37252 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37252 .fluid-image.align-left img{float:left}#stacks_in_37252 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 60.00px;
}

#spacerStackstacks_in_37255 {
	height: 60.00px;
}




























@media print {
	#spacerStackstacks_in_37255 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37256Calligrapher{			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_37256Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37256Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37256Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37256Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37256Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37256Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37256Calligrapher h6, .stacks_in_37256Calligrapher h5, .stacks_in_37256Calligrapher h4, .stacks_in_37256Calligrapher h3, .stacks_in_37256Calligrapher h2, .stacks_in_37256Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37256Calligrapher, .stacks_in_37256Calligrapher h1, .stacks_in_37256Calligrapher h2, .stacks_in_37256Calligrapher h3, .stacks_in_37256Calligrapher h4, .stacks_in_37256Calligrapher h5, .stacks_in_37256Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37256targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37256Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37256Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37256Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37256Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37256 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37257 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37260 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37262Calligrapher{			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_37262Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37262Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37262Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37262Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37262Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37262Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37262Calligrapher h6, .stacks_in_37262Calligrapher h5, .stacks_in_37262Calligrapher h4, .stacks_in_37262Calligrapher h3, .stacks_in_37262Calligrapher h2, .stacks_in_37262Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37262Calligrapher, .stacks_in_37262Calligrapher h1, .stacks_in_37262Calligrapher h2, .stacks_in_37262Calligrapher h3, .stacks_in_37262Calligrapher h4, .stacks_in_37262Calligrapher h5, .stacks_in_37262Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37262targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37262Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37262Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37262Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37262Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37262 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37263 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_37265 {
	line-height: 2em;
}
#stacks_in_37268{}#stacks_in_37268 > .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_37268 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37268 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37268 > .jack.width-static{width:500px}#stacks_in_37268 > .jack.width-flexible{width:100%}#stacks_in_37268 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37268 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37268 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37268 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37268 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37268 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37268 > .jack::after{border-radius:15px}#stacks_in_37268 > .jack.border-detailed-radius,#stacks_in_37268 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37268 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37268 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37268 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37268 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37268 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37268 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37268 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37268 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37268 > .jack.bg-image:not(.glass){}#stacks_in_37268 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37268 > .jack.bg-image.glass.after,#stacks_in_37268 > .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_37268 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37268 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37268 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37268 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37268 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37268 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37268 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37268 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37268 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37268 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37268 > .jack.bg-image.glass.after,#stacks_in_37268 > .glass.jack.bg-image::after{}#stacks_in_37268 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37268 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37268 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37268 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37268 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37268 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37268 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37268 > .jack.peek-shadow::before,#stacks_in_37268 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37268 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37268 > .jack{overflow:hidden;}#stacks_in_37268 > .jack.height-static{height:500px}#stacks_in_37268 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_37269 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_37269 {
		display: none !important;
	}
}
#stacks_in_37270 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_37270 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_37270 #jwresp_col2_stacks_in_37270{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_37270 #jwresp_col1_stacks_in_37270,#stacks_in_37270 #jwresp_col2_stacks_in_37270{width:100%;float:none;display:block}#stacks_in_37270 #jwresp_col1_stacks_in_37270{margin-bottom:15px}}

#stacks_in_37270 {
	padding:  20px;
}
#stacks_in_37271 .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_37271 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37271 .fluid-image.unlimited img{width:100% !important}#stacks_in_37271 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37271 .fluid-image.align-left img{float:left}#stacks_in_37271 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37274Calligrapher{			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_37274Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37274Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37274Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37274Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37274Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37274Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37274Calligrapher h6, .stacks_in_37274Calligrapher h5, .stacks_in_37274Calligrapher h4, .stacks_in_37274Calligrapher h3, .stacks_in_37274Calligrapher h2, .stacks_in_37274Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37274Calligrapher, .stacks_in_37274Calligrapher h1, .stacks_in_37274Calligrapher h2, .stacks_in_37274Calligrapher h3, .stacks_in_37274Calligrapher h4, .stacks_in_37274Calligrapher h5, .stacks_in_37274Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37274targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37274Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37274Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37274Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37274Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37274 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37275 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37278 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37280 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37282Calligrapher{			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_37282Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37282Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37282Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37282Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37282Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37282Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37282Calligrapher h6, .stacks_in_37282Calligrapher h5, .stacks_in_37282Calligrapher h4, .stacks_in_37282Calligrapher h3, .stacks_in_37282Calligrapher h2, .stacks_in_37282Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37282Calligrapher, .stacks_in_37282Calligrapher h1, .stacks_in_37282Calligrapher h2, .stacks_in_37282Calligrapher h3, .stacks_in_37282Calligrapher h4, .stacks_in_37282Calligrapher h5, .stacks_in_37282Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37282targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37282Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37282Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37282Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37282Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37282 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37285 {
	line-height: 2em;
}
#stacks_in_37288{}#stacks_in_37288 > .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_37288 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37288 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37288 > .jack.width-static{width:500px}#stacks_in_37288 > .jack.width-flexible{width:100%}#stacks_in_37288 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37288 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37288 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37288 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37288 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37288 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37288 > .jack::after{border-radius:15px}#stacks_in_37288 > .jack.border-detailed-radius,#stacks_in_37288 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37288 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37288 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37288 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37288 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37288 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37288 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37288 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37288 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37288 > .jack.bg-image:not(.glass){}#stacks_in_37288 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37288 > .jack.bg-image.glass.after,#stacks_in_37288 > .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_37288 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37288 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37288 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37288 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37288 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37288 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37288 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37288 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37288 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37288 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37288 > .jack.bg-image.glass.after,#stacks_in_37288 > .glass.jack.bg-image::after{}#stacks_in_37288 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37288 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37288 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37288 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37288 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37288 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37288 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37288 > .jack.peek-shadow::before,#stacks_in_37288 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37288 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37288 > .jack{overflow:hidden;}#stacks_in_37288 > .jack.height-static{height:500px}#stacks_in_37288 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_37289 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_37289 {
		display: none !important;
	}
}
#stacks_in_37290 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_37290 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_37290 #jwresp_col2_stacks_in_37290{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_37290 #jwresp_col1_stacks_in_37290,#stacks_in_37290 #jwresp_col2_stacks_in_37290{width:100%;float:none;display:block}#stacks_in_37290 #jwresp_col1_stacks_in_37290{margin-bottom:15px}}

#stacks_in_37290 {
	padding:  20px;
}
#stacks_in_37291 .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_37291 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37291 .fluid-image.unlimited img{width:100% !important}#stacks_in_37291 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37291 .fluid-image.align-left img{float:left}#stacks_in_37291 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_37294 {
	height: 80.00px;
}




























@media print {
	#spacerStackstacks_in_37294 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37295Calligrapher{			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_37295Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37295Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37295Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37295Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37295Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37295Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37295Calligrapher h6, .stacks_in_37295Calligrapher h5, .stacks_in_37295Calligrapher h4, .stacks_in_37295Calligrapher h3, .stacks_in_37295Calligrapher h2, .stacks_in_37295Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37295Calligrapher, .stacks_in_37295Calligrapher h1, .stacks_in_37295Calligrapher h2, .stacks_in_37295Calligrapher h3, .stacks_in_37295Calligrapher h4, .stacks_in_37295Calligrapher h5, .stacks_in_37295Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37295targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37295Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37295Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37295Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37295Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37295 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37296 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37299 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37301Calligrapher{			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_37301Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37301Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37301Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37301Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37301Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37301Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37301Calligrapher h6, .stacks_in_37301Calligrapher h5, .stacks_in_37301Calligrapher h4, .stacks_in_37301Calligrapher h3, .stacks_in_37301Calligrapher h2, .stacks_in_37301Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37301Calligrapher, .stacks_in_37301Calligrapher h1, .stacks_in_37301Calligrapher h2, .stacks_in_37301Calligrapher h3, .stacks_in_37301Calligrapher h4, .stacks_in_37301Calligrapher h5, .stacks_in_37301Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37301targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37301Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37301Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37301Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37301Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37301 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37302 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_37304 {
	line-height: 2em;
}
#stacks_in_37307{}#stacks_in_37307 > .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_37307 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37307 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37307 > .jack.width-static{width:500px}#stacks_in_37307 > .jack.width-flexible{width:100%}#stacks_in_37307 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37307 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37307 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37307 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37307 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37307 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37307 > .jack::after{border-radius:15px}#stacks_in_37307 > .jack.border-detailed-radius,#stacks_in_37307 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37307 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37307 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37307 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37307 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37307 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37307 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37307 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37307 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37307 > .jack.bg-image:not(.glass){}#stacks_in_37307 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37307 > .jack.bg-image.glass.after,#stacks_in_37307 > .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_37307 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37307 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37307 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37307 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37307 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37307 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37307 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37307 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37307 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37307 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37307 > .jack.bg-image.glass.after,#stacks_in_37307 > .glass.jack.bg-image::after{}#stacks_in_37307 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37307 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37307 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37307 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37307 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37307 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37307 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37307 > .jack.peek-shadow::before,#stacks_in_37307 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37307 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37307 > .jack{overflow:hidden;}#stacks_in_37307 > .jack.height-static{height:500px}#stacks_in_37307 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_37308 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_37308 {
		display: none !important;
	}
}
#stacks_in_37309 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_37309 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_37309 #jwresp_col2_stacks_in_37309{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_37309 #jwresp_col1_stacks_in_37309,#stacks_in_37309 #jwresp_col2_stacks_in_37309{width:100%;float:none;display:block}#stacks_in_37309 #jwresp_col1_stacks_in_37309{margin-bottom:15px}}

#stacks_in_37309 {
	padding:  20px;
}
#stacks_in_37310 .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_37310 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37310 .fluid-image.unlimited img{width:100% !important}#stacks_in_37310 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37310 .fluid-image.align-left img{float:left}#stacks_in_37310 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_37313 {
	height: 80.00px;
}




























@media print {
	#spacerStackstacks_in_37313 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37314Calligrapher{			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_37314Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37314Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37314Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37314Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37314Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37314Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37314Calligrapher h6, .stacks_in_37314Calligrapher h5, .stacks_in_37314Calligrapher h4, .stacks_in_37314Calligrapher h3, .stacks_in_37314Calligrapher h2, .stacks_in_37314Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37314Calligrapher, .stacks_in_37314Calligrapher h1, .stacks_in_37314Calligrapher h2, .stacks_in_37314Calligrapher h3, .stacks_in_37314Calligrapher h4, .stacks_in_37314Calligrapher h5, .stacks_in_37314Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37314targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37314Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37314Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37314Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37314Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37314 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37315 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37318 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37320 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37322Calligrapher{			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_37322Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37322Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37322Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37322Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37322Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37322Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37322Calligrapher h6, .stacks_in_37322Calligrapher h5, .stacks_in_37322Calligrapher h4, .stacks_in_37322Calligrapher h3, .stacks_in_37322Calligrapher h2, .stacks_in_37322Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37322Calligrapher, .stacks_in_37322Calligrapher h1, .stacks_in_37322Calligrapher h2, .stacks_in_37322Calligrapher h3, .stacks_in_37322Calligrapher h4, .stacks_in_37322Calligrapher h5, .stacks_in_37322Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37322targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37322Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37322Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37322Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37322Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37322 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37323 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_37325 {
	line-height: 2em;
}
#stacks_in_37328{}#stacks_in_37328 > .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_37328 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37328 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37328 > .jack.width-static{width:500px}#stacks_in_37328 > .jack.width-flexible{width:100%}#stacks_in_37328 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37328 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37328 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37328 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37328 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37328 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37328 > .jack::after{border-radius:15px}#stacks_in_37328 > .jack.border-detailed-radius,#stacks_in_37328 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37328 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37328 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37328 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37328 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37328 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37328 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37328 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37328 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37328 > .jack.bg-image:not(.glass){}#stacks_in_37328 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37328 > .jack.bg-image.glass.after,#stacks_in_37328 > .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_37328 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37328 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37328 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37328 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37328 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37328 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37328 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37328 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37328 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37328 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37328 > .jack.bg-image.glass.after,#stacks_in_37328 > .glass.jack.bg-image::after{}#stacks_in_37328 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37328 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37328 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37328 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37328 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37328 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37328 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37328 > .jack.peek-shadow::before,#stacks_in_37328 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37328 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37328 > .jack{overflow:hidden;}#stacks_in_37328 > .jack.height-static{height:500px}#stacks_in_37328 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 30.00px;
}

#spacerStackstacks_in_37329 {
	height: 30.00px;
}




























@media print {
	#spacerStackstacks_in_37329 {
		display: none !important;
	}
}
#stacks_in_37330 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_37330 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_37330 #jwresp_col2_stacks_in_37330{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_37330 #jwresp_col1_stacks_in_37330,#stacks_in_37330 #jwresp_col2_stacks_in_37330{width:100%;float:none;display:block}#stacks_in_37330 #jwresp_col1_stacks_in_37330{margin-bottom:15px}}

#stacks_in_37330 {
	padding:  20px;
}
#stacks_in_37331 .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_37331 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37331 .fluid-image.unlimited img{width:100% !important}#stacks_in_37331 .fluid-image.define_max img{width:100% !important;max-width:250px !important}#stacks_in_37331 .fluid-image.align-left img{float:left}#stacks_in_37331 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 120.00px;
}

#spacerStackstacks_in_37334 {
	height: 120.00px;
}




























@media print {
	#spacerStackstacks_in_37334 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37335Calligrapher{			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_37335Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37335Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37335Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37335Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37335Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37335Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37335Calligrapher h6, .stacks_in_37335Calligrapher h5, .stacks_in_37335Calligrapher h4, .stacks_in_37335Calligrapher h3, .stacks_in_37335Calligrapher h2, .stacks_in_37335Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37335Calligrapher, .stacks_in_37335Calligrapher h1, .stacks_in_37335Calligrapher h2, .stacks_in_37335Calligrapher h3, .stacks_in_37335Calligrapher h4, .stacks_in_37335Calligrapher h5, .stacks_in_37335Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37335targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37335Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37335Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37335Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37335Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37335 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37336 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37339 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37341 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37343Calligrapher{			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_37343Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37343Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37343Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37343Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37343Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37343Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37343Calligrapher h6, .stacks_in_37343Calligrapher h5, .stacks_in_37343Calligrapher h4, .stacks_in_37343Calligrapher h3, .stacks_in_37343Calligrapher h2, .stacks_in_37343Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37343Calligrapher, .stacks_in_37343Calligrapher h1, .stacks_in_37343Calligrapher h2, .stacks_in_37343Calligrapher h3, .stacks_in_37343Calligrapher h4, .stacks_in_37343Calligrapher h5, .stacks_in_37343Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37343targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37343Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37343Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37343Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37343Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37343 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37344 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_37346 {
	line-height: 2em;
}
#stacks_in_37349{}#stacks_in_37349 > .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_37349 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37349 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37349 > .jack.width-static{width:500px}#stacks_in_37349 > .jack.width-flexible{width:100%}#stacks_in_37349 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37349 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37349 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37349 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37349 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37349 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37349 > .jack::after{border-radius:15px}#stacks_in_37349 > .jack.border-detailed-radius,#stacks_in_37349 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37349 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37349 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37349 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37349 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37349 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37349 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37349 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37349 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37349 > .jack.bg-image:not(.glass){}#stacks_in_37349 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37349 > .jack.bg-image.glass.after,#stacks_in_37349 > .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_37349 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37349 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37349 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37349 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37349 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37349 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37349 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37349 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37349 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37349 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37349 > .jack.bg-image.glass.after,#stacks_in_37349 > .glass.jack.bg-image::after{}#stacks_in_37349 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37349 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37349 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37349 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37349 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37349 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37349 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37349 > .jack.peek-shadow::before,#stacks_in_37349 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37349 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37349 > .jack{overflow:hidden;}#stacks_in_37349 > .jack.height-static{height:500px}#stacks_in_37349 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 25.00px;
}

#spacerStackstacks_in_37350 {
	height: 25.00px;
}




























@media print {
	#spacerStackstacks_in_37350 {
		display: none !important;
	}
}
#stacks_in_37351 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_37351 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_37351 #jwresp_col2_stacks_in_37351{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_37351 #jwresp_col1_stacks_in_37351,#stacks_in_37351 #jwresp_col2_stacks_in_37351{width:100%;float:none;display:block}#stacks_in_37351 #jwresp_col1_stacks_in_37351{margin-bottom:15px}}

#stacks_in_37351 {
	padding:  20px;
}
#stacks_in_37352 .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_37352 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37352 .fluid-image.unlimited img{width:100% !important}#stacks_in_37352 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37352 .fluid-image.align-left img{float:left}#stacks_in_37352 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 80.00px;
}

#spacerStackstacks_in_37355 {
	height: 80.00px;
}




























@media print {
	#spacerStackstacks_in_37355 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37356Calligrapher{			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_37356Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37356Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37356Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37356Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37356Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37356Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37356Calligrapher h6, .stacks_in_37356Calligrapher h5, .stacks_in_37356Calligrapher h4, .stacks_in_37356Calligrapher h3, .stacks_in_37356Calligrapher h2, .stacks_in_37356Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37356Calligrapher, .stacks_in_37356Calligrapher h1, .stacks_in_37356Calligrapher h2, .stacks_in_37356Calligrapher h3, .stacks_in_37356Calligrapher h4, .stacks_in_37356Calligrapher h5, .stacks_in_37356Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37356targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37356Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37356Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37356Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37356Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37356 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37357 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37360 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37362 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37364Calligrapher{			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_37364Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37364Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37364Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37364Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37364Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37364Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37364Calligrapher h6, .stacks_in_37364Calligrapher h5, .stacks_in_37364Calligrapher h4, .stacks_in_37364Calligrapher h3, .stacks_in_37364Calligrapher h2, .stacks_in_37364Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37364Calligrapher, .stacks_in_37364Calligrapher h1, .stacks_in_37364Calligrapher h2, .stacks_in_37364Calligrapher h3, .stacks_in_37364Calligrapher h4, .stacks_in_37364Calligrapher h5, .stacks_in_37364Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37364targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37364Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37364Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37364Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37364Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37364 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37365 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_37367 {
	line-height: 2em;
}
#stacks_in_37370{}#stacks_in_37370 > .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_37370 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37370 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37370 > .jack.width-static{width:500px}#stacks_in_37370 > .jack.width-flexible{width:100%}#stacks_in_37370 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37370 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37370 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37370 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37370 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37370 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37370 > .jack::after{border-radius:15px}#stacks_in_37370 > .jack.border-detailed-radius,#stacks_in_37370 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37370 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37370 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37370 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37370 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37370 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37370 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37370 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37370 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37370 > .jack.bg-image:not(.glass){}#stacks_in_37370 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37370 > .jack.bg-image.glass.after,#stacks_in_37370 > .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_37370 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37370 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37370 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37370 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37370 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37370 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37370 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37370 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37370 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37370 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37370 > .jack.bg-image.glass.after,#stacks_in_37370 > .glass.jack.bg-image::after{}#stacks_in_37370 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37370 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37370 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37370 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37370 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37370 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37370 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37370 > .jack.peek-shadow::before,#stacks_in_37370 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37370 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37370 > .jack{overflow:hidden;}#stacks_in_37370 > .jack.height-static{height:500px}#stacks_in_37370 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 75.00px;
}

#spacerStackstacks_in_37371 {
	height: 75.00px;
}




























@media print {
	#spacerStackstacks_in_37371 {
		display: none !important;
	}
}
#stacks_in_37372 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_37372 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_37372 #jwresp_col2_stacks_in_37372{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_37372 #jwresp_col1_stacks_in_37372,#stacks_in_37372 #jwresp_col2_stacks_in_37372{width:100%;float:none;display:block}#stacks_in_37372 #jwresp_col1_stacks_in_37372{margin-bottom:15px}}

#stacks_in_37372 {
	padding:  20px;
}
#stacks_in_37373 .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_37373 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37373 .fluid-image.unlimited img{width:100% !important}#stacks_in_37373 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37373 .fluid-image.align-left img{float:left}#stacks_in_37373 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37376Calligrapher{			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_37376Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37376Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37376Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37376Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37376Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37376Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37376Calligrapher h6, .stacks_in_37376Calligrapher h5, .stacks_in_37376Calligrapher h4, .stacks_in_37376Calligrapher h3, .stacks_in_37376Calligrapher h2, .stacks_in_37376Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37376Calligrapher, .stacks_in_37376Calligrapher h1, .stacks_in_37376Calligrapher h2, .stacks_in_37376Calligrapher h3, .stacks_in_37376Calligrapher h4, .stacks_in_37376Calligrapher h5, .stacks_in_37376Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37376targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37376Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37376Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37376Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37376Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37376 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37377 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37380 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37382 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37384Calligrapher{			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_37384Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37384Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37384Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37384Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37384Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37384Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37384Calligrapher h6, .stacks_in_37384Calligrapher h5, .stacks_in_37384Calligrapher h4, .stacks_in_37384Calligrapher h3, .stacks_in_37384Calligrapher h2, .stacks_in_37384Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37384Calligrapher, .stacks_in_37384Calligrapher h1, .stacks_in_37384Calligrapher h2, .stacks_in_37384Calligrapher h3, .stacks_in_37384Calligrapher h4, .stacks_in_37384Calligrapher h5, .stacks_in_37384Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37384targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37384Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37384Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37384Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37384Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37384 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37385 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_37387 {
	line-height: 2em;
}
#stacks_in_37390{}#stacks_in_37390 > .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_37390 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37390 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37390 > .jack.width-static{width:500px}#stacks_in_37390 > .jack.width-flexible{width:100%}#stacks_in_37390 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37390 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37390 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37390 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37390 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37390 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37390 > .jack::after{border-radius:15px}#stacks_in_37390 > .jack.border-detailed-radius,#stacks_in_37390 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37390 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37390 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37390 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37390 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37390 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37390 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37390 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37390 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37390 > .jack.bg-image:not(.glass){}#stacks_in_37390 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37390 > .jack.bg-image.glass.after,#stacks_in_37390 > .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_37390 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37390 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37390 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37390 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37390 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37390 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37390 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37390 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37390 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37390 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37390 > .jack.bg-image.glass.after,#stacks_in_37390 > .glass.jack.bg-image::after{}#stacks_in_37390 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37390 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37390 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37390 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37390 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37390 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37390 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37390 > .jack.peek-shadow::before,#stacks_in_37390 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37390 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37390 > .jack{overflow:hidden;}#stacks_in_37390 > .jack.height-static{height:500px}#stacks_in_37390 > .jack.height-minmax{min-height:100px;max-height:800px}

.spacerStack {
	height: 40.00px;
}

#spacerStackstacks_in_37391 {
	height: 40.00px;
}




























@media print {
	#spacerStackstacks_in_37391 {
		display: none !important;
	}
}
#stacks_in_37392 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_37392 .jwresp_col{overflow:hidden;margin:0;width:29%; float:left;}#stacks_in_37392 #jwresp_col2_stacks_in_37392{ float:right; width:69%}@media screen and (max-width:500px){#stacks_in_37392 #jwresp_col1_stacks_in_37392,#stacks_in_37392 #jwresp_col2_stacks_in_37392{width:100%;float:none;display:block}#stacks_in_37392 #jwresp_col1_stacks_in_37392{margin-bottom:15px}}

#stacks_in_37392 {
	padding:  20px;
}
#stacks_in_36934 .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_36934 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_36934 .fluid-image.unlimited img{width:100% !important}#stacks_in_36934 .fluid-image.define_max img{width:100% !important;max-width:250px !important}#stacks_in_36934 .fluid-image.align-left img{float:left}#stacks_in_36934 .fluid-image.align-right img{float:right}

.spacerStack {
	height: 130.00px;
}

#spacerStackstacks_in_37395 {
	height: 130.00px;
}




























@media print {
	#spacerStackstacks_in_37395 {
		display: none !important;
	}
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37396Calligrapher{			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_37396Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37396Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37396Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37396Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37396Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37396Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37396Calligrapher h6, .stacks_in_37396Calligrapher h5, .stacks_in_37396Calligrapher h4, .stacks_in_37396Calligrapher h3, .stacks_in_37396Calligrapher h2, .stacks_in_37396Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37396Calligrapher, .stacks_in_37396Calligrapher h1, .stacks_in_37396Calligrapher h2, .stacks_in_37396Calligrapher h3, .stacks_in_37396Calligrapher h4, .stacks_in_37396Calligrapher h5, .stacks_in_37396Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37396targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37396Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37396Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37396Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37396Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37396 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37397 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37400 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37402Calligrapher{			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_37402Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37402Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37402Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37402Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37402Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37402Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37402Calligrapher h6, .stacks_in_37402Calligrapher h5, .stacks_in_37402Calligrapher h4, .stacks_in_37402Calligrapher h3, .stacks_in_37402Calligrapher h2, .stacks_in_37402Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37402Calligrapher, .stacks_in_37402Calligrapher h1, .stacks_in_37402Calligrapher h2, .stacks_in_37402Calligrapher h3, .stacks_in_37402Calligrapher h4, .stacks_in_37402Calligrapher h5, .stacks_in_37402Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37402targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37402Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37402Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37402Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37402Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37402 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37403 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_37405 {
	line-height: 2em;
}
#stacks_in_36935{padding-left:0px;padding-right:0px;}#stacks_in_36935 > .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_36935 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_36935 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_36935 > .jack.width-static{width:500px}#stacks_in_36935 > .jack.width-flexible{width:100%}#stacks_in_36935 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_36935 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_36935 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_36935 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_36935 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_36935 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_36935 > .jack::after{border-radius:0px}#stacks_in_36935 > .jack.border-detailed-radius,#stacks_in_36935 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_36935 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_36935 > .jack.bg-color{background-color:#89C5FF}#stacks_in_36935 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_36935 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_36935 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_36935 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_36935 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_36935 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_36935 > .jack.bg-image:not(.glass){}#stacks_in_36935 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_36935 > .jack.bg-image.glass.after,#stacks_in_36935 > .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_36935 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_36935 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_36935 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_36935 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_36935 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_36935 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_36935 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_36935 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_36935 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_36935 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_36935 > .jack.bg-image.glass.after,#stacks_in_36935 > .glass.jack.bg-image::after{}#stacks_in_36935 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_36935 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_36935 > .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_36935 > .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_36935 > .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_36935 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_36935 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_36935 > .jack.peek-shadow::before,#stacks_in_36935 > .jack.peek-shadow::after{-webkit-box-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_36935 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_36935 > .jack{overflow:visible;}#stacks_in_36935 > .jack.height-static{height:100px}#stacks_in_36935 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_37408{}#stacks_in_37408 > .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_37408 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37408 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37408 > .jack.width-static{width:500px}#stacks_in_37408 > .jack.width-flexible{width:100%}#stacks_in_37408 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37408 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37408 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37408 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37408 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37408 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37408 > .jack::after{border-radius:15px}#stacks_in_37408 > .jack.border-detailed-radius,#stacks_in_37408 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_37408 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37408 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37408 > .jack.bg-gradient{background-color:#AFE9BB}#stacks_in_37408 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37408 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37408 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37408 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37408 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37408 > .jack.bg-image:not(.glass){}#stacks_in_37408 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37408 > .jack.bg-image.glass.after,#stacks_in_37408 > .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_37408 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37408 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37408 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37408 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37408 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37408 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37408 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37408 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37408 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37408 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37408 > .jack.bg-image.glass.after,#stacks_in_37408 > .glass.jack.bg-image::after{}#stacks_in_37408 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37408 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37408 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37408 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37408 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37408 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37408 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37408 > .jack.peek-shadow::before,#stacks_in_37408 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37408 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37408 > .jack{overflow:hidden;}#stacks_in_37408 > .jack.height-static{height:100px}#stacks_in_37408 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37410Calligrapher{			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_37410Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37410Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37410Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37410Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37410Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37410Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37410Calligrapher h6, .stacks_in_37410Calligrapher h5, .stacks_in_37410Calligrapher h4, .stacks_in_37410Calligrapher h3, .stacks_in_37410Calligrapher h2, .stacks_in_37410Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37410Calligrapher, .stacks_in_37410Calligrapher h1, .stacks_in_37410Calligrapher h2, .stacks_in_37410Calligrapher h3, .stacks_in_37410Calligrapher h4, .stacks_in_37410Calligrapher h5, .stacks_in_37410Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_37410Calligrapher, .stacks_in_37410Calligrapher h1, .stacks_in_37410Calligrapher h2, .stacks_in_37410Calligrapher h3, .stacks_in_37410Calligrapher h4, .stacks_in_37410Calligrapher h5, .stacks_in_37410Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37410targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37410Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37410Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37410Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37410Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37410 {
	padding: 0px 15px 0px 15px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37411Calligrapher{			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_37411Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37411Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37411Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37411Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37411Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37411Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37411Calligrapher h6, .stacks_in_37411Calligrapher h5, .stacks_in_37411Calligrapher h4, .stacks_in_37411Calligrapher h3, .stacks_in_37411Calligrapher h2, .stacks_in_37411Calligrapher h1{			color: #40006C !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37411Calligrapher, .stacks_in_37411Calligrapher h1, .stacks_in_37411Calligrapher h2, .stacks_in_37411Calligrapher h3, .stacks_in_37411Calligrapher h4, .stacks_in_37411Calligrapher h5, .stacks_in_37411Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- */.stacks_in_37411Calligrapher, .stacks_in_37411Calligrapher h1, .stacks_in_37411Calligrapher h2, .stacks_in_37411Calligrapher h3, .stacks_in_37411Calligrapher h4, .stacks_in_37411Calligrapher h5, .stacks_in_37411Calligrapher h6{	text-shadow: 0px 0px 1px #555555 !important;}/* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37411targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37411Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37411Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37411Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37411Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37411 {
	padding: 0px 20px 0px 20px;
}
/* Start dooHeader X stack CSS code */.stacks_in_37412x{	display: block !important;	text-decoration: none !important;	text-align: center !important;		font-weight:500 !important;}@media (max-width:768px) {	.stacks_in_37412x{		text-align: center !important;	}}@media (max-width:480px) {	.stacks_in_37412x{		text-align: center !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_37413 {
	display:inline-block; width:100%; line-height: 0.750000em;
	font-weight: lighter;
}
#stacks_in_37799{overflow:visible;-webkit-font-smoothing:antialiased;}#stacks_in_37799 .cycler_reel{position:relative;width:100%;overflow:hidden}#stacks_in_37799{visibility:hidden}#stacks_in_37799 .cycler_reel > div.stacks_out{width:100% !important}#stacks_in_37799 .cycler_reel > div.stacks_out:first{visibility:visible}#stacks_in_37799 .cycler_nav{cursor:pointer;z-index:101;display:block;width:20px;height:20px;position:absolute;background:url(../about_files/cycler-images/75x75-ChevronLight.png) 0px 0px no-repeat;background-size:100%;top:30%;}#stacks_in_37799 .cycler_nav.prev{left:0px;background-position:0px 0px}#stacks_in_37799 .cycler_nav.prev:hover{background-position:0px -20px}#stacks_in_37799 .cycler_nav.prev:active{background-position:0px -40px}#stacks_in_37799 .cycler_nav.next{right:0px;background-position:0px -60px}#stacks_in_37799 .cycler_nav.next:hover{background-position:0px -80px}#stacks_in_37799 .cycler_nav.next:active{background-position:0px -100px}
#stacks_in_37800{}#stacks_in_37800 > .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_37800 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37800 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37800 > .jack.width-static{width:500px}#stacks_in_37800 > .jack.width-flexible{width:100%}#stacks_in_37800 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37800 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37800 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37800 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37800 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37800 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37800 > .jack::after{border-radius:15px}#stacks_in_37800 > .jack.border-detailed-radius,#stacks_in_37800 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37800 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37800 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37800 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37800 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37800 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37800 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37800 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37800 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37800 > .jack.bg-image:not(.glass){}#stacks_in_37800 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37800 > .jack.bg-image.glass.after,#stacks_in_37800 > .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_37800 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37800 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37800 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37800 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37800 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37800 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37800 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37800 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37800 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37800 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37800 > .jack.bg-image.glass.after,#stacks_in_37800 > .glass.jack.bg-image::after{}#stacks_in_37800 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37800 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37800 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37800 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37800 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37800 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37800 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37800 > .jack.peek-shadow::before,#stacks_in_37800 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37800 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37800 > .jack{overflow:hidden;}#stacks_in_37800 > .jack.height-static{height:100px}#stacks_in_37800 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_37802 .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_37802 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37802 .fluid-image.unlimited img{width:100% !important}#stacks_in_37802 .fluid-image.define_max img{width:100% !important;max-width:400px !important}#stacks_in_37802 .fluid-image.align-left img{float:left}#stacks_in_37802 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37805Calligrapher{			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_37805Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37805Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37805Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37805Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37805Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37805Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37805Calligrapher h6, .stacks_in_37805Calligrapher h5, .stacks_in_37805Calligrapher h4, .stacks_in_37805Calligrapher h3, .stacks_in_37805Calligrapher h2, .stacks_in_37805Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37805Calligrapher, .stacks_in_37805Calligrapher h1, .stacks_in_37805Calligrapher h2, .stacks_in_37805Calligrapher h3, .stacks_in_37805Calligrapher h4, .stacks_in_37805Calligrapher h5, .stacks_in_37805Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37805targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37805Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37805Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37805Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37805Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37805 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37806 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37809 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37811 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37813Calligrapher{			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_37813Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37813Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37813Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37813Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37813Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37813Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37813Calligrapher h6, .stacks_in_37813Calligrapher h5, .stacks_in_37813Calligrapher h4, .stacks_in_37813Calligrapher h3, .stacks_in_37813Calligrapher h2, .stacks_in_37813Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37813Calligrapher, .stacks_in_37813Calligrapher h1, .stacks_in_37813Calligrapher h2, .stacks_in_37813Calligrapher h3, .stacks_in_37813Calligrapher h4, .stacks_in_37813Calligrapher h5, .stacks_in_37813Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37813targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37813Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37813Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37813Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37813Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37813 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37816 {
	line-height: 2em;
}
#stacks_in_37817{}#stacks_in_37817 > .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_37817 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37817 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37817 > .jack.width-static{width:500px}#stacks_in_37817 > .jack.width-flexible{width:100%}#stacks_in_37817 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37817 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37817 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37817 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37817 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37817 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37817 > .jack::after{border-radius:15px}#stacks_in_37817 > .jack.border-detailed-radius,#stacks_in_37817 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37817 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37817 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37817 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37817 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37817 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37817 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37817 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37817 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37817 > .jack.bg-image:not(.glass){}#stacks_in_37817 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37817 > .jack.bg-image.glass.after,#stacks_in_37817 > .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_37817 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37817 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37817 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37817 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37817 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37817 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37817 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37817 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37817 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37817 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37817 > .jack.bg-image.glass.after,#stacks_in_37817 > .glass.jack.bg-image::after{}#stacks_in_37817 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37817 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37817 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37817 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37817 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37817 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37817 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37817 > .jack.peek-shadow::before,#stacks_in_37817 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37817 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37817 > .jack{overflow:hidden;}#stacks_in_37817 > .jack.height-static{height:100px}#stacks_in_37817 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_37818 .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_37818 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37818 .fluid-image.unlimited img{width:100% !important}#stacks_in_37818 .fluid-image.define_max img{width:100% !important;max-width:400px !important}#stacks_in_37818 .fluid-image.align-left img{float:left}#stacks_in_37818 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37821Calligrapher{			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_37821Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37821Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37821Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37821Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37821Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37821Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37821Calligrapher h6, .stacks_in_37821Calligrapher h5, .stacks_in_37821Calligrapher h4, .stacks_in_37821Calligrapher h3, .stacks_in_37821Calligrapher h2, .stacks_in_37821Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37821Calligrapher, .stacks_in_37821Calligrapher h1, .stacks_in_37821Calligrapher h2, .stacks_in_37821Calligrapher h3, .stacks_in_37821Calligrapher h4, .stacks_in_37821Calligrapher h5, .stacks_in_37821Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37821targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37821Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37821Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37821Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37821Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37821 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37822 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37825 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37829Calligrapher{			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_37829Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37829Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37829Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37829Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37829Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37829Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37829Calligrapher h6, .stacks_in_37829Calligrapher h5, .stacks_in_37829Calligrapher h4, .stacks_in_37829Calligrapher h3, .stacks_in_37829Calligrapher h2, .stacks_in_37829Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37829Calligrapher, .stacks_in_37829Calligrapher h1, .stacks_in_37829Calligrapher h2, .stacks_in_37829Calligrapher h3, .stacks_in_37829Calligrapher h4, .stacks_in_37829Calligrapher h5, .stacks_in_37829Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37829targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37829Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37829Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37829Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37829Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37829 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37832 {
	line-height: 2em;
}
#stacks_in_37833{}#stacks_in_37833 > .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_37833 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37833 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37833 > .jack.width-static{width:500px}#stacks_in_37833 > .jack.width-flexible{width:100%}#stacks_in_37833 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37833 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37833 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37833 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37833 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37833 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37833 > .jack::after{border-radius:15px}#stacks_in_37833 > .jack.border-detailed-radius,#stacks_in_37833 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37833 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37833 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37833 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37833 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37833 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37833 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37833 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37833 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37833 > .jack.bg-image:not(.glass){}#stacks_in_37833 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37833 > .jack.bg-image.glass.after,#stacks_in_37833 > .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_37833 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37833 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37833 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37833 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37833 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37833 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37833 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37833 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37833 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37833 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37833 > .jack.bg-image.glass.after,#stacks_in_37833 > .glass.jack.bg-image::after{}#stacks_in_37833 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37833 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37833 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37833 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37833 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37833 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37833 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37833 > .jack.peek-shadow::before,#stacks_in_37833 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37833 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37833 > .jack{overflow:hidden;}#stacks_in_37833 > .jack.height-static{height:100px}#stacks_in_37833 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_37834 .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_37834 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37834 .fluid-image.unlimited img{width:100% !important}#stacks_in_37834 .fluid-image.define_max img{width:100% !important;max-width:600px !important}#stacks_in_37834 .fluid-image.align-left img{float:left}#stacks_in_37834 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37837Calligrapher{			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_37837Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37837Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37837Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37837Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37837Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37837Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37837Calligrapher h6, .stacks_in_37837Calligrapher h5, .stacks_in_37837Calligrapher h4, .stacks_in_37837Calligrapher h3, .stacks_in_37837Calligrapher h2, .stacks_in_37837Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37837Calligrapher, .stacks_in_37837Calligrapher h1, .stacks_in_37837Calligrapher h2, .stacks_in_37837Calligrapher h3, .stacks_in_37837Calligrapher h4, .stacks_in_37837Calligrapher h5, .stacks_in_37837Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37837targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37837Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37837Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37837Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37837Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37837 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37838 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37841 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37845Calligrapher{			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_37845Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37845Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37845Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37845Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37845Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37845Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37845Calligrapher h6, .stacks_in_37845Calligrapher h5, .stacks_in_37845Calligrapher h4, .stacks_in_37845Calligrapher h3, .stacks_in_37845Calligrapher h2, .stacks_in_37845Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37845Calligrapher, .stacks_in_37845Calligrapher h1, .stacks_in_37845Calligrapher h2, .stacks_in_37845Calligrapher h3, .stacks_in_37845Calligrapher h4, .stacks_in_37845Calligrapher h5, .stacks_in_37845Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37845targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37845Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37845Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37845Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37845Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37845 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37848 {
	line-height: 2em;
}
#stacks_in_37849{}#stacks_in_37849 > .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_37849 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37849 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37849 > .jack.width-static{width:500px}#stacks_in_37849 > .jack.width-flexible{width:100%}#stacks_in_37849 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37849 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37849 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37849 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37849 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37849 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37849 > .jack::after{border-radius:15px}#stacks_in_37849 > .jack.border-detailed-radius,#stacks_in_37849 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37849 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37849 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37849 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37849 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37849 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37849 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37849 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37849 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37849 > .jack.bg-image:not(.glass){}#stacks_in_37849 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37849 > .jack.bg-image.glass.after,#stacks_in_37849 > .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_37849 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37849 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37849 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37849 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37849 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37849 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37849 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37849 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37849 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37849 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37849 > .jack.bg-image.glass.after,#stacks_in_37849 > .glass.jack.bg-image::after{}#stacks_in_37849 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37849 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37849 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37849 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37849 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37849 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37849 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37849 > .jack.peek-shadow::before,#stacks_in_37849 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37849 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37849 > .jack{overflow:hidden;}#stacks_in_37849 > .jack.height-static{height:500px}#stacks_in_37849 > .jack.height-minmax{min-height:100px;max-height:800px}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37850Calligrapher{			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_37850Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37850Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37850Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37850Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37850Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37850Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37850Calligrapher h6, .stacks_in_37850Calligrapher h5, .stacks_in_37850Calligrapher h4, .stacks_in_37850Calligrapher h3, .stacks_in_37850Calligrapher h2, .stacks_in_37850Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37850Calligrapher, .stacks_in_37850Calligrapher h1, .stacks_in_37850Calligrapher h2, .stacks_in_37850Calligrapher h3, .stacks_in_37850Calligrapher h4, .stacks_in_37850Calligrapher h5, .stacks_in_37850Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37850targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37850Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37850Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37850Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37850Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37850 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37851 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37854 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37858Calligrapher{			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_37858Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37858Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37858Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37858Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37858Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37858Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37858Calligrapher h6, .stacks_in_37858Calligrapher h5, .stacks_in_37858Calligrapher h4, .stacks_in_37858Calligrapher h3, .stacks_in_37858Calligrapher h2, .stacks_in_37858Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37858Calligrapher, .stacks_in_37858Calligrapher h1, .stacks_in_37858Calligrapher h2, .stacks_in_37858Calligrapher h3, .stacks_in_37858Calligrapher h4, .stacks_in_37858Calligrapher h5, .stacks_in_37858Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37858targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37858Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37858Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37858Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37858Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37858 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37861 {
	line-height: 2em;
}
#stacks_in_37863{}#stacks_in_37863 > .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_37863 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37863 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37863 > .jack.width-static{width:500px}#stacks_in_37863 > .jack.width-flexible{width:100%}#stacks_in_37863 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37863 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37863 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37863 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37863 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37863 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37863 > .jack::after{border-radius:15px}#stacks_in_37863 > .jack.border-detailed-radius,#stacks_in_37863 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37863 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37863 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37863 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37863 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37863 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37863 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37863 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37863 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37863 > .jack.bg-image:not(.glass){}#stacks_in_37863 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37863 > .jack.bg-image.glass.after,#stacks_in_37863 > .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_37863 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37863 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37863 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37863 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37863 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37863 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37863 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37863 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37863 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37863 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37863 > .jack.bg-image.glass.after,#stacks_in_37863 > .glass.jack.bg-image::after{}#stacks_in_37863 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37863 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37863 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37863 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37863 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37863 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37863 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37863 > .jack.peek-shadow::before,#stacks_in_37863 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37863 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37863 > .jack{overflow:hidden;}#stacks_in_37863 > .jack.height-static{height:100px}#stacks_in_37863 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_37864 .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_37864 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37864 .fluid-image.unlimited img{width:100% !important}#stacks_in_37864 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37864 .fluid-image.align-left img{float:left}#stacks_in_37864 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37867Calligrapher{			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_37867Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37867Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37867Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37867Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37867Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37867Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37867Calligrapher h6, .stacks_in_37867Calligrapher h5, .stacks_in_37867Calligrapher h4, .stacks_in_37867Calligrapher h3, .stacks_in_37867Calligrapher h2, .stacks_in_37867Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37867Calligrapher, .stacks_in_37867Calligrapher h1, .stacks_in_37867Calligrapher h2, .stacks_in_37867Calligrapher h3, .stacks_in_37867Calligrapher h4, .stacks_in_37867Calligrapher h5, .stacks_in_37867Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37867targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37867Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37867Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37867Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37867Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37867 {
	margin: 30px 0px 0px 0px;
	padding: 20px 20px 0px 20px;
}

#stacks_in_37868 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37871 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37875Calligrapher{			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_37875Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37875Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37875Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37875Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37875Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37875Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37875Calligrapher h6, .stacks_in_37875Calligrapher h5, .stacks_in_37875Calligrapher h4, .stacks_in_37875Calligrapher h3, .stacks_in_37875Calligrapher h2, .stacks_in_37875Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37875Calligrapher, .stacks_in_37875Calligrapher h1, .stacks_in_37875Calligrapher h2, .stacks_in_37875Calligrapher h3, .stacks_in_37875Calligrapher h4, .stacks_in_37875Calligrapher h5, .stacks_in_37875Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37875targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37875Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37875Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37875Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37875Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37875 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37878 {
	line-height: 2em;
}
#stacks_in_37879{}#stacks_in_37879 > .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_37879 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37879 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37879 > .jack.width-static{width:500px}#stacks_in_37879 > .jack.width-flexible{width:100%}#stacks_in_37879 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37879 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37879 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37879 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37879 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37879 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37879 > .jack::after{border-radius:15px}#stacks_in_37879 > .jack.border-detailed-radius,#stacks_in_37879 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37879 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37879 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37879 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37879 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37879 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37879 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37879 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37879 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37879 > .jack.bg-image:not(.glass){}#stacks_in_37879 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37879 > .jack.bg-image.glass.after,#stacks_in_37879 > .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_37879 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37879 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37879 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37879 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37879 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37879 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37879 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37879 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37879 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37879 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37879 > .jack.bg-image.glass.after,#stacks_in_37879 > .glass.jack.bg-image::after{}#stacks_in_37879 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37879 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37879 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37879 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37879 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37879 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37879 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37879 > .jack.peek-shadow::before,#stacks_in_37879 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37879 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37879 > .jack{overflow:hidden;}#stacks_in_37879 > .jack.height-static{height:100px}#stacks_in_37879 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_37880 .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_37880 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37880 .fluid-image.unlimited img{width:100% !important}#stacks_in_37880 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37880 .fluid-image.align-left img{float:left}#stacks_in_37880 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37883Calligrapher{			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_37883Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37883Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37883Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37883Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37883Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37883Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37883Calligrapher h6, .stacks_in_37883Calligrapher h5, .stacks_in_37883Calligrapher h4, .stacks_in_37883Calligrapher h3, .stacks_in_37883Calligrapher h2, .stacks_in_37883Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37883Calligrapher, .stacks_in_37883Calligrapher h1, .stacks_in_37883Calligrapher h2, .stacks_in_37883Calligrapher h3, .stacks_in_37883Calligrapher h4, .stacks_in_37883Calligrapher h5, .stacks_in_37883Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37883targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37883Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37883Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37883Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37883Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37883 {
	margin: 30px 0px 0px 0px;
	padding: 20px 20px 0px 20px;
}

#stacks_in_37884 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37887 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37889 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37891 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37895Calligrapher{			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_37895Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37895Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37895Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37895Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37895Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37895Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37895Calligrapher h6, .stacks_in_37895Calligrapher h5, .stacks_in_37895Calligrapher h4, .stacks_in_37895Calligrapher h3, .stacks_in_37895Calligrapher h2, .stacks_in_37895Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37895Calligrapher, .stacks_in_37895Calligrapher h1, .stacks_in_37895Calligrapher h2, .stacks_in_37895Calligrapher h3, .stacks_in_37895Calligrapher h4, .stacks_in_37895Calligrapher h5, .stacks_in_37895Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37895targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37895Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37895Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37895Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37895Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37895 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37898 {
	line-height: 2em;
}
#stacks_in_37899{}#stacks_in_37899 > .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_37899 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37899 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37899 > .jack.width-static{width:500px}#stacks_in_37899 > .jack.width-flexible{width:100%}#stacks_in_37899 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37899 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37899 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37899 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37899 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37899 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37899 > .jack::after{border-radius:15px}#stacks_in_37899 > .jack.border-detailed-radius,#stacks_in_37899 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37899 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37899 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37899 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37899 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37899 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37899 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37899 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37899 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37899 > .jack.bg-image:not(.glass){}#stacks_in_37899 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37899 > .jack.bg-image.glass.after,#stacks_in_37899 > .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_37899 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37899 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37899 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37899 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37899 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37899 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37899 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37899 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37899 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37899 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37899 > .jack.bg-image.glass.after,#stacks_in_37899 > .glass.jack.bg-image::after{}#stacks_in_37899 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37899 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37899 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37899 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37899 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37899 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37899 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37899 > .jack.peek-shadow::before,#stacks_in_37899 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37899 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37899 > .jack{overflow:hidden;}#stacks_in_37899 > .jack.height-static{height:100px}#stacks_in_37899 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_37900 .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_37900 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37900 .fluid-image.unlimited img{width:100% !important}#stacks_in_37900 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37900 .fluid-image.align-left img{float:left}#stacks_in_37900 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37903Calligrapher{			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_37903Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37903Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37903Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37903Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37903Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37903Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37903Calligrapher h6, .stacks_in_37903Calligrapher h5, .stacks_in_37903Calligrapher h4, .stacks_in_37903Calligrapher h3, .stacks_in_37903Calligrapher h2, .stacks_in_37903Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37903Calligrapher, .stacks_in_37903Calligrapher h1, .stacks_in_37903Calligrapher h2, .stacks_in_37903Calligrapher h3, .stacks_in_37903Calligrapher h4, .stacks_in_37903Calligrapher h5, .stacks_in_37903Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37903targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37903Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37903Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37903Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37903Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37903 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37904 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37907 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37911Calligrapher{			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_37911Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37911Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37911Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37911Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37911Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37911Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37911Calligrapher h6, .stacks_in_37911Calligrapher h5, .stacks_in_37911Calligrapher h4, .stacks_in_37911Calligrapher h3, .stacks_in_37911Calligrapher h2, .stacks_in_37911Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37911Calligrapher, .stacks_in_37911Calligrapher h1, .stacks_in_37911Calligrapher h2, .stacks_in_37911Calligrapher h3, .stacks_in_37911Calligrapher h4, .stacks_in_37911Calligrapher h5, .stacks_in_37911Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37911targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37911Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37911Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37911Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37911Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37911 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37914 {
	line-height: 2em;
}
#stacks_in_37915{}#stacks_in_37915 > .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_37915 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37915 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37915 > .jack.width-static{width:500px}#stacks_in_37915 > .jack.width-flexible{width:100%}#stacks_in_37915 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37915 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37915 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37915 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37915 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37915 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37915 > .jack::after{border-radius:15px}#stacks_in_37915 > .jack.border-detailed-radius,#stacks_in_37915 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37915 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37915 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37915 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37915 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37915 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37915 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37915 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37915 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37915 > .jack.bg-image:not(.glass){}#stacks_in_37915 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37915 > .jack.bg-image.glass.after,#stacks_in_37915 > .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_37915 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37915 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37915 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37915 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37915 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37915 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37915 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37915 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37915 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37915 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37915 > .jack.bg-image.glass.after,#stacks_in_37915 > .glass.jack.bg-image::after{}#stacks_in_37915 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37915 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37915 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37915 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37915 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37915 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37915 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37915 > .jack.peek-shadow::before,#stacks_in_37915 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37915 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37915 > .jack{overflow:hidden;}#stacks_in_37915 > .jack.height-static{height:100px}#stacks_in_37915 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_37916 .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_37916 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37916 .fluid-image.unlimited img{width:100% !important}#stacks_in_37916 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37916 .fluid-image.align-left img{float:left}#stacks_in_37916 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37919Calligrapher{			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_37919Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37919Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37919Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37919Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37919Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37919Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37919Calligrapher h6, .stacks_in_37919Calligrapher h5, .stacks_in_37919Calligrapher h4, .stacks_in_37919Calligrapher h3, .stacks_in_37919Calligrapher h2, .stacks_in_37919Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37919Calligrapher, .stacks_in_37919Calligrapher h1, .stacks_in_37919Calligrapher h2, .stacks_in_37919Calligrapher h3, .stacks_in_37919Calligrapher h4, .stacks_in_37919Calligrapher h5, .stacks_in_37919Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37919targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37919Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37919Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37919Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37919Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37919 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37920 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37923 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37927Calligrapher{			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_37927Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37927Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37927Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37927Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37927Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37927Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37927Calligrapher h6, .stacks_in_37927Calligrapher h5, .stacks_in_37927Calligrapher h4, .stacks_in_37927Calligrapher h3, .stacks_in_37927Calligrapher h2, .stacks_in_37927Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37927Calligrapher, .stacks_in_37927Calligrapher h1, .stacks_in_37927Calligrapher h2, .stacks_in_37927Calligrapher h3, .stacks_in_37927Calligrapher h4, .stacks_in_37927Calligrapher h5, .stacks_in_37927Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37927targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37927Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37927Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37927Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37927Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37927 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37930 {
	line-height: 2em;
}
#stacks_in_37931{}#stacks_in_37931 > .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_37931 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37931 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37931 > .jack.width-static{width:500px}#stacks_in_37931 > .jack.width-flexible{width:100%}#stacks_in_37931 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37931 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37931 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37931 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37931 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37931 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37931 > .jack::after{border-radius:15px}#stacks_in_37931 > .jack.border-detailed-radius,#stacks_in_37931 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37931 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37931 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37931 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37931 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37931 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37931 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37931 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37931 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37931 > .jack.bg-image:not(.glass){}#stacks_in_37931 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37931 > .jack.bg-image.glass.after,#stacks_in_37931 > .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_37931 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37931 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37931 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37931 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37931 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37931 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37931 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37931 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37931 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37931 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37931 > .jack.bg-image.glass.after,#stacks_in_37931 > .glass.jack.bg-image::after{}#stacks_in_37931 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37931 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37931 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37931 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37931 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37931 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37931 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37931 > .jack.peek-shadow::before,#stacks_in_37931 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37931 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37931 > .jack{overflow:hidden;}#stacks_in_37931 > .jack.height-static{height:100px}#stacks_in_37931 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_37932 .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_37932 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37932 .fluid-image.unlimited img{width:100% !important}#stacks_in_37932 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37932 .fluid-image.align-left img{float:left}#stacks_in_37932 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37935Calligrapher{			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_37935Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37935Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37935Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37935Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37935Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37935Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37935Calligrapher h6, .stacks_in_37935Calligrapher h5, .stacks_in_37935Calligrapher h4, .stacks_in_37935Calligrapher h3, .stacks_in_37935Calligrapher h2, .stacks_in_37935Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37935Calligrapher, .stacks_in_37935Calligrapher h1, .stacks_in_37935Calligrapher h2, .stacks_in_37935Calligrapher h3, .stacks_in_37935Calligrapher h4, .stacks_in_37935Calligrapher h5, .stacks_in_37935Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37935targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37935Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37935Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37935Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37935Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37935 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37936 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37939 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37943Calligrapher{			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_37943Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37943Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37943Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37943Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37943Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37943Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37943Calligrapher h6, .stacks_in_37943Calligrapher h5, .stacks_in_37943Calligrapher h4, .stacks_in_37943Calligrapher h3, .stacks_in_37943Calligrapher h2, .stacks_in_37943Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37943Calligrapher, .stacks_in_37943Calligrapher h1, .stacks_in_37943Calligrapher h2, .stacks_in_37943Calligrapher h3, .stacks_in_37943Calligrapher h4, .stacks_in_37943Calligrapher h5, .stacks_in_37943Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37943targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37943Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37943Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37943Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37943Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37943 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37946 {
	line-height: 2em;
}
#stacks_in_37947{}#stacks_in_37947 > .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_37947 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37947 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37947 > .jack.width-static{width:500px}#stacks_in_37947 > .jack.width-flexible{width:100%}#stacks_in_37947 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37947 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37947 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37947 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37947 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37947 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37947 > .jack::after{border-radius:15px}#stacks_in_37947 > .jack.border-detailed-radius,#stacks_in_37947 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37947 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37947 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37947 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37947 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37947 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37947 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37947 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37947 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37947 > .jack.bg-image:not(.glass){}#stacks_in_37947 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37947 > .jack.bg-image.glass.after,#stacks_in_37947 > .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_37947 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37947 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37947 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37947 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37947 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37947 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37947 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37947 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37947 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37947 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37947 > .jack.bg-image.glass.after,#stacks_in_37947 > .glass.jack.bg-image::after{}#stacks_in_37947 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37947 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37947 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37947 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37947 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37947 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37947 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37947 > .jack.peek-shadow::before,#stacks_in_37947 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37947 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37947 > .jack{overflow:hidden;}#stacks_in_37947 > .jack.height-static{height:100px}#stacks_in_37947 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_37948 .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_37948 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37948 .fluid-image.unlimited img{width:100% !important}#stacks_in_37948 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37948 .fluid-image.align-left img{float:left}#stacks_in_37948 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37951Calligrapher{			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_37951Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37951Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37951Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37951Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37951Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37951Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37951Calligrapher h6, .stacks_in_37951Calligrapher h5, .stacks_in_37951Calligrapher h4, .stacks_in_37951Calligrapher h3, .stacks_in_37951Calligrapher h2, .stacks_in_37951Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37951Calligrapher, .stacks_in_37951Calligrapher h1, .stacks_in_37951Calligrapher h2, .stacks_in_37951Calligrapher h3, .stacks_in_37951Calligrapher h4, .stacks_in_37951Calligrapher h5, .stacks_in_37951Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37951targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37951Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37951Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37951Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37951Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37951 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37952 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37955 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37959Calligrapher{			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_37959Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37959Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37959Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37959Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37959Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37959Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37959Calligrapher h6, .stacks_in_37959Calligrapher h5, .stacks_in_37959Calligrapher h4, .stacks_in_37959Calligrapher h3, .stacks_in_37959Calligrapher h2, .stacks_in_37959Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37959Calligrapher, .stacks_in_37959Calligrapher h1, .stacks_in_37959Calligrapher h2, .stacks_in_37959Calligrapher h3, .stacks_in_37959Calligrapher h4, .stacks_in_37959Calligrapher h5, .stacks_in_37959Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37959targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37959Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37959Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37959Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37959Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37959 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37960 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_37962 {
	line-height: 2em;
}
#stacks_in_37963{}#stacks_in_37963 > .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_37963 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37963 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37963 > .jack.width-static{width:500px}#stacks_in_37963 > .jack.width-flexible{width:100%}#stacks_in_37963 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37963 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37963 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37963 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37963 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37963 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37963 > .jack::after{border-radius:15px}#stacks_in_37963 > .jack.border-detailed-radius,#stacks_in_37963 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37963 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37963 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37963 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37963 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37963 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37963 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37963 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37963 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37963 > .jack.bg-image:not(.glass){}#stacks_in_37963 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37963 > .jack.bg-image.glass.after,#stacks_in_37963 > .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_37963 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37963 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37963 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37963 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37963 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37963 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37963 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37963 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37963 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37963 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37963 > .jack.bg-image.glass.after,#stacks_in_37963 > .glass.jack.bg-image::after{}#stacks_in_37963 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37963 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37963 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37963 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37963 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37963 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37963 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37963 > .jack.peek-shadow::before,#stacks_in_37963 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37963 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37963 > .jack{overflow:hidden;}#stacks_in_37963 > .jack.height-static{height:100px}#stacks_in_37963 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_37964 .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_37964 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37964 .fluid-image.unlimited img{width:100% !important}#stacks_in_37964 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37964 .fluid-image.align-left img{float:left}#stacks_in_37964 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37967Calligrapher{			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_37967Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37967Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37967Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37967Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37967Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37967Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37967Calligrapher h6, .stacks_in_37967Calligrapher h5, .stacks_in_37967Calligrapher h4, .stacks_in_37967Calligrapher h3, .stacks_in_37967Calligrapher h2, .stacks_in_37967Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37967Calligrapher, .stacks_in_37967Calligrapher h1, .stacks_in_37967Calligrapher h2, .stacks_in_37967Calligrapher h3, .stacks_in_37967Calligrapher h4, .stacks_in_37967Calligrapher h5, .stacks_in_37967Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37967targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37967Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37967Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37967Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37967Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37967 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37968 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37971 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37975Calligrapher{			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_37975Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37975Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37975Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37975Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37975Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37975Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37975Calligrapher h6, .stacks_in_37975Calligrapher h5, .stacks_in_37975Calligrapher h4, .stacks_in_37975Calligrapher h3, .stacks_in_37975Calligrapher h2, .stacks_in_37975Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37975Calligrapher, .stacks_in_37975Calligrapher h1, .stacks_in_37975Calligrapher h2, .stacks_in_37975Calligrapher h3, .stacks_in_37975Calligrapher h4, .stacks_in_37975Calligrapher h5, .stacks_in_37975Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37975targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37975Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37975Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37975Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37975Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37975 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37976 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_37978 {
	line-height: 2em;
}

.spacerStack {
	height: 10.00px;
}

#spacerStackstacks_in_37979 {
	height: 10.00px;
}




























@media print {
	#spacerStackstacks_in_37979 {
		display: none !important;
	}
}
#stacks_in_37980{}#stacks_in_37980 > .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_37980 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37980 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37980 > .jack.width-static{width:500px}#stacks_in_37980 > .jack.width-flexible{width:100%}#stacks_in_37980 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37980 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37980 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37980 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37980 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37980 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37980 > .jack::after{border-radius:15px}#stacks_in_37980 > .jack.border-detailed-radius,#stacks_in_37980 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37980 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37980 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37980 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37980 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37980 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37980 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37980 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37980 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37980 > .jack.bg-image:not(.glass){}#stacks_in_37980 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37980 > .jack.bg-image.glass.after,#stacks_in_37980 > .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_37980 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37980 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37980 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37980 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37980 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37980 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37980 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37980 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37980 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37980 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37980 > .jack.bg-image.glass.after,#stacks_in_37980 > .glass.jack.bg-image::after{}#stacks_in_37980 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37980 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37980 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37980 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37980 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37980 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37980 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37980 > .jack.peek-shadow::before,#stacks_in_37980 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37980 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37980 > .jack{overflow:hidden;}#stacks_in_37980 > .jack.height-static{height:100px}#stacks_in_37980 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_37981 .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_37981 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37981 .fluid-image.unlimited img{width:100% !important}#stacks_in_37981 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37981 .fluid-image.align-left img{float:left}#stacks_in_37981 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37984Calligrapher{			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_37984Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37984Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37984Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37984Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37984Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37984Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37984Calligrapher h6, .stacks_in_37984Calligrapher h5, .stacks_in_37984Calligrapher h4, .stacks_in_37984Calligrapher h3, .stacks_in_37984Calligrapher h2, .stacks_in_37984Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37984Calligrapher, .stacks_in_37984Calligrapher h1, .stacks_in_37984Calligrapher h2, .stacks_in_37984Calligrapher h3, .stacks_in_37984Calligrapher h4, .stacks_in_37984Calligrapher h5, .stacks_in_37984Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37984targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37984Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37984Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37984Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37984Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37984 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_37985 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_37988 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_37992Calligrapher{			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_37992Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37992Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37992Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37992Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37992Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37992Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_37992Calligrapher h6, .stacks_in_37992Calligrapher h5, .stacks_in_37992Calligrapher h4, .stacks_in_37992Calligrapher h3, .stacks_in_37992Calligrapher h2, .stacks_in_37992Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_37992Calligrapher, .stacks_in_37992Calligrapher h1, .stacks_in_37992Calligrapher h2, .stacks_in_37992Calligrapher h3, .stacks_in_37992Calligrapher h4, .stacks_in_37992Calligrapher h5, .stacks_in_37992Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_37992targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_37992Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_37992Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_37992Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_37992Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_37992 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_37993 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_37995 {
	line-height: 2em;
}
#stacks_in_37996{}#stacks_in_37996 > .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_37996 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_37996 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_37996 > .jack.width-static{width:500px}#stacks_in_37996 > .jack.width-flexible{width:100%}#stacks_in_37996 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_37996 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37996 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_37996 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_37996 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_37996 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_37996 > .jack::after{border-radius:15px}#stacks_in_37996 > .jack.border-detailed-radius,#stacks_in_37996 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_37996 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_37996 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_37996 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_37996 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_37996 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_37996 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_37996 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_37996 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37996 > .jack.bg-image:not(.glass){}#stacks_in_37996 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_37996 > .jack.bg-image.glass.after,#stacks_in_37996 > .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_37996 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_37996 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_37996 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_37996 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_37996 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_37996 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_37996 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37996 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_37996 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_37996 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_37996 > .jack.bg-image.glass.after,#stacks_in_37996 > .glass.jack.bg-image::after{}#stacks_in_37996 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_37996 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_37996 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_37996 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37996 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_37996 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_37996 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_37996 > .jack.peek-shadow::before,#stacks_in_37996 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_37996 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_37996 > .jack{overflow:hidden;}#stacks_in_37996 > .jack.height-static{height:100px}#stacks_in_37996 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_37997 .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_37997 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_37997 .fluid-image.unlimited img{width:100% !important}#stacks_in_37997 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_37997 .fluid-image.align-left img{float:left}#stacks_in_37997 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38000Calligrapher{			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_38000Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38000Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38000Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38000Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38000Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38000Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38000Calligrapher h6, .stacks_in_38000Calligrapher h5, .stacks_in_38000Calligrapher h4, .stacks_in_38000Calligrapher h3, .stacks_in_38000Calligrapher h2, .stacks_in_38000Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38000Calligrapher, .stacks_in_38000Calligrapher h1, .stacks_in_38000Calligrapher h2, .stacks_in_38000Calligrapher h3, .stacks_in_38000Calligrapher h4, .stacks_in_38000Calligrapher h5, .stacks_in_38000Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38000targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38000Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38000Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38000Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38000Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38000 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38001 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38004 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38006Calligrapher{			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_38006Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38006Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38006Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38006Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38006Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38006Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38006Calligrapher h6, .stacks_in_38006Calligrapher h5, .stacks_in_38006Calligrapher h4, .stacks_in_38006Calligrapher h3, .stacks_in_38006Calligrapher h2, .stacks_in_38006Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38006Calligrapher, .stacks_in_38006Calligrapher h1, .stacks_in_38006Calligrapher h2, .stacks_in_38006Calligrapher h3, .stacks_in_38006Calligrapher h4, .stacks_in_38006Calligrapher h5, .stacks_in_38006Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38006targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38006Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38006Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38006Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38006Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38006 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38007 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38009 {
	line-height: 2em;
}
#stacks_in_38010{}#stacks_in_38010 > .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_38010 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38010 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38010 > .jack.width-static{width:500px}#stacks_in_38010 > .jack.width-flexible{width:100%}#stacks_in_38010 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38010 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38010 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38010 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38010 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38010 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38010 > .jack::after{border-radius:15px}#stacks_in_38010 > .jack.border-detailed-radius,#stacks_in_38010 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38010 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38010 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38010 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38010 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38010 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38010 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38010 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38010 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38010 > .jack.bg-image:not(.glass){}#stacks_in_38010 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38010 > .jack.bg-image.glass.after,#stacks_in_38010 > .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_38010 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38010 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38010 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38010 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38010 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38010 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38010 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38010 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38010 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38010 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38010 > .jack.bg-image.glass.after,#stacks_in_38010 > .glass.jack.bg-image::after{}#stacks_in_38010 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38010 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38010 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38010 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38010 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38010 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38010 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38010 > .jack.peek-shadow::before,#stacks_in_38010 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38010 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38010 > .jack{overflow:hidden;}#stacks_in_38010 > .jack.height-static{height:100px}#stacks_in_38010 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38011 .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_38011 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38011 .fluid-image.unlimited img{width:100% !important}#stacks_in_38011 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38011 .fluid-image.align-left img{float:left}#stacks_in_38011 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38014Calligrapher{			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_38014Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38014Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38014Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38014Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38014Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38014Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38014Calligrapher h6, .stacks_in_38014Calligrapher h5, .stacks_in_38014Calligrapher h4, .stacks_in_38014Calligrapher h3, .stacks_in_38014Calligrapher h2, .stacks_in_38014Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38014Calligrapher, .stacks_in_38014Calligrapher h1, .stacks_in_38014Calligrapher h2, .stacks_in_38014Calligrapher h3, .stacks_in_38014Calligrapher h4, .stacks_in_38014Calligrapher h5, .stacks_in_38014Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38014targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38014Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38014Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38014Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38014Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38014 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38015 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38018 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38020 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38022Calligrapher{			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_38022Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38022Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38022Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38022Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38022Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38022Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38022Calligrapher h6, .stacks_in_38022Calligrapher h5, .stacks_in_38022Calligrapher h4, .stacks_in_38022Calligrapher h3, .stacks_in_38022Calligrapher h2, .stacks_in_38022Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38022Calligrapher, .stacks_in_38022Calligrapher h1, .stacks_in_38022Calligrapher h2, .stacks_in_38022Calligrapher h3, .stacks_in_38022Calligrapher h4, .stacks_in_38022Calligrapher h5, .stacks_in_38022Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38022targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38022Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38022Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38022Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38022Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38022 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38023 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38025 {
	line-height: 2em;
}
#stacks_in_38026{}#stacks_in_38026 > .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_38026 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38026 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38026 > .jack.width-static{width:500px}#stacks_in_38026 > .jack.width-flexible{width:100%}#stacks_in_38026 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38026 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38026 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38026 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38026 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38026 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38026 > .jack::after{border-radius:15px}#stacks_in_38026 > .jack.border-detailed-radius,#stacks_in_38026 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38026 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38026 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38026 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38026 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38026 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38026 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38026 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38026 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38026 > .jack.bg-image:not(.glass){}#stacks_in_38026 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38026 > .jack.bg-image.glass.after,#stacks_in_38026 > .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_38026 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38026 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38026 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38026 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38026 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38026 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38026 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38026 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38026 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38026 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38026 > .jack.bg-image.glass.after,#stacks_in_38026 > .glass.jack.bg-image::after{}#stacks_in_38026 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38026 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38026 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38026 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38026 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38026 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38026 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38026 > .jack.peek-shadow::before,#stacks_in_38026 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38026 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38026 > .jack{overflow:hidden;}#stacks_in_38026 > .jack.height-static{height:100px}#stacks_in_38026 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38027 .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_38027 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38027 .fluid-image.unlimited img{width:100% !important}#stacks_in_38027 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38027 .fluid-image.align-left img{float:left}#stacks_in_38027 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38030Calligrapher{			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_38030Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38030Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38030Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38030Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38030Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38030Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38030Calligrapher h6, .stacks_in_38030Calligrapher h5, .stacks_in_38030Calligrapher h4, .stacks_in_38030Calligrapher h3, .stacks_in_38030Calligrapher h2, .stacks_in_38030Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38030Calligrapher, .stacks_in_38030Calligrapher h1, .stacks_in_38030Calligrapher h2, .stacks_in_38030Calligrapher h3, .stacks_in_38030Calligrapher h4, .stacks_in_38030Calligrapher h5, .stacks_in_38030Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38030targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38030Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38030Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38030Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38030Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38030 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38031 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38034 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38036 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38038Calligrapher{			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_38038Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38038Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38038Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38038Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38038Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38038Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38038Calligrapher h6, .stacks_in_38038Calligrapher h5, .stacks_in_38038Calligrapher h4, .stacks_in_38038Calligrapher h3, .stacks_in_38038Calligrapher h2, .stacks_in_38038Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38038Calligrapher, .stacks_in_38038Calligrapher h1, .stacks_in_38038Calligrapher h2, .stacks_in_38038Calligrapher h3, .stacks_in_38038Calligrapher h4, .stacks_in_38038Calligrapher h5, .stacks_in_38038Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38038targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38038Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38038Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38038Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38038Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38038 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38039 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38041 {
	line-height: 2em;
}
#stacks_in_38042{}#stacks_in_38042 > .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_38042 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38042 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38042 > .jack.width-static{width:500px}#stacks_in_38042 > .jack.width-flexible{width:100%}#stacks_in_38042 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38042 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38042 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38042 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38042 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38042 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38042 > .jack::after{border-radius:15px}#stacks_in_38042 > .jack.border-detailed-radius,#stacks_in_38042 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38042 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38042 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38042 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38042 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38042 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38042 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38042 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38042 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38042 > .jack.bg-image:not(.glass){}#stacks_in_38042 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38042 > .jack.bg-image.glass.after,#stacks_in_38042 > .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_38042 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38042 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38042 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38042 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38042 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38042 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38042 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38042 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38042 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38042 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38042 > .jack.bg-image.glass.after,#stacks_in_38042 > .glass.jack.bg-image::after{}#stacks_in_38042 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38042 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38042 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38042 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38042 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38042 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38042 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38042 > .jack.peek-shadow::before,#stacks_in_38042 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38042 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38042 > .jack{overflow:hidden;}#stacks_in_38042 > .jack.height-static{height:100px}#stacks_in_38042 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38043 .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_38043 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38043 .fluid-image.unlimited img{width:100% !important}#stacks_in_38043 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38043 .fluid-image.align-left img{float:left}#stacks_in_38043 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38046Calligrapher{			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_38046Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38046Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38046Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38046Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38046Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38046Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38046Calligrapher h6, .stacks_in_38046Calligrapher h5, .stacks_in_38046Calligrapher h4, .stacks_in_38046Calligrapher h3, .stacks_in_38046Calligrapher h2, .stacks_in_38046Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38046Calligrapher, .stacks_in_38046Calligrapher h1, .stacks_in_38046Calligrapher h2, .stacks_in_38046Calligrapher h3, .stacks_in_38046Calligrapher h4, .stacks_in_38046Calligrapher h5, .stacks_in_38046Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38046targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38046Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38046Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38046Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38046Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38046 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38047 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38050 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38052 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38054Calligrapher{			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_38054Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38054Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38054Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38054Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38054Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38054Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38054Calligrapher h6, .stacks_in_38054Calligrapher h5, .stacks_in_38054Calligrapher h4, .stacks_in_38054Calligrapher h3, .stacks_in_38054Calligrapher h2, .stacks_in_38054Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38054Calligrapher, .stacks_in_38054Calligrapher h1, .stacks_in_38054Calligrapher h2, .stacks_in_38054Calligrapher h3, .stacks_in_38054Calligrapher h4, .stacks_in_38054Calligrapher h5, .stacks_in_38054Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38054targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38054Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38054Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38054Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38054Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38054 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38055 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38057 {
	line-height: 2em;
}
#stacks_in_38058{}#stacks_in_38058 > .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_38058 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38058 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38058 > .jack.width-static{width:500px}#stacks_in_38058 > .jack.width-flexible{width:100%}#stacks_in_38058 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38058 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38058 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38058 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38058 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38058 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38058 > .jack::after{border-radius:15px}#stacks_in_38058 > .jack.border-detailed-radius,#stacks_in_38058 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38058 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38058 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38058 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38058 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38058 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38058 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38058 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38058 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38058 > .jack.bg-image:not(.glass){}#stacks_in_38058 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38058 > .jack.bg-image.glass.after,#stacks_in_38058 > .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_38058 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38058 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38058 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38058 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38058 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38058 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38058 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38058 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38058 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38058 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38058 > .jack.bg-image.glass.after,#stacks_in_38058 > .glass.jack.bg-image::after{}#stacks_in_38058 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38058 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38058 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38058 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38058 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38058 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38058 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38058 > .jack.peek-shadow::before,#stacks_in_38058 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38058 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38058 > .jack{overflow:hidden;}#stacks_in_38058 > .jack.height-static{height:100px}#stacks_in_38058 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38059 .fluid-image img{width:auto;max-width:100% ;height:auto ;min-width:50px ;padding:0;margin:0 auto;display:block;-webkit-transition:all 1s none;transition:all 1s none;border-radius:0px;}#stacks_in_38059 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38059 .fluid-image.unlimited img{width:100% !important}#stacks_in_38059 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38059 .fluid-image.align-left img{float:left}#stacks_in_38059 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38062Calligrapher{			font-size: 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_38062Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38062Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38062Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38062Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38062Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38062Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38062Calligrapher h6, .stacks_in_38062Calligrapher h5, .stacks_in_38062Calligrapher h4, .stacks_in_38062Calligrapher h3, .stacks_in_38062Calligrapher h2, .stacks_in_38062Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38062Calligrapher, .stacks_in_38062Calligrapher h1, .stacks_in_38062Calligrapher h2, .stacks_in_38062Calligrapher h3, .stacks_in_38062Calligrapher h4, .stacks_in_38062Calligrapher h5, .stacks_in_38062Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38062targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38062Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38062Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38062Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38062Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38062 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38063 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38066 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38068Calligrapher{			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_38068Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38068Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38068Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38068Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38068Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38068Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38068Calligrapher h6, .stacks_in_38068Calligrapher h5, .stacks_in_38068Calligrapher h4, .stacks_in_38068Calligrapher h3, .stacks_in_38068Calligrapher h2, .stacks_in_38068Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38068Calligrapher, .stacks_in_38068Calligrapher h1, .stacks_in_38068Calligrapher h2, .stacks_in_38068Calligrapher h3, .stacks_in_38068Calligrapher h4, .stacks_in_38068Calligrapher h5, .stacks_in_38068Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38068targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38068Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38068Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38068Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38068Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38068 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38069 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38071 {
	line-height: 2em;
}
#stacks_in_38072{}#stacks_in_38072 > .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_38072 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38072 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38072 > .jack.width-static{width:500px}#stacks_in_38072 > .jack.width-flexible{width:100%}#stacks_in_38072 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38072 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38072 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38072 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38072 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38072 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38072 > .jack::after{border-radius:15px}#stacks_in_38072 > .jack.border-detailed-radius,#stacks_in_38072 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38072 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38072 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38072 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38072 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38072 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38072 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38072 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38072 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38072 > .jack.bg-image:not(.glass){}#stacks_in_38072 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38072 > .jack.bg-image.glass.after,#stacks_in_38072 > .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_38072 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38072 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38072 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38072 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38072 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38072 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38072 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38072 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38072 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38072 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38072 > .jack.bg-image.glass.after,#stacks_in_38072 > .glass.jack.bg-image::after{}#stacks_in_38072 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38072 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38072 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38072 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38072 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38072 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38072 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38072 > .jack.peek-shadow::before,#stacks_in_38072 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38072 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38072 > .jack{overflow:hidden;}#stacks_in_38072 > .jack.height-static{height:100px}#stacks_in_38072 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38073 .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_38073 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38073 .fluid-image.unlimited img{width:100% !important}#stacks_in_38073 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38073 .fluid-image.align-left img{float:left}#stacks_in_38073 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38076Calligrapher{			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_38076Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38076Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38076Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38076Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38076Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38076Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38076Calligrapher h6, .stacks_in_38076Calligrapher h5, .stacks_in_38076Calligrapher h4, .stacks_in_38076Calligrapher h3, .stacks_in_38076Calligrapher h2, .stacks_in_38076Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38076Calligrapher, .stacks_in_38076Calligrapher h1, .stacks_in_38076Calligrapher h2, .stacks_in_38076Calligrapher h3, .stacks_in_38076Calligrapher h4, .stacks_in_38076Calligrapher h5, .stacks_in_38076Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38076targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38076Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38076Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38076Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38076Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38076 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38077 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38080 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38082 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38084Calligrapher{			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_38084Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38084Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38084Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38084Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38084Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38084Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38084Calligrapher h6, .stacks_in_38084Calligrapher h5, .stacks_in_38084Calligrapher h4, .stacks_in_38084Calligrapher h3, .stacks_in_38084Calligrapher h2, .stacks_in_38084Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38084Calligrapher, .stacks_in_38084Calligrapher h1, .stacks_in_38084Calligrapher h2, .stacks_in_38084Calligrapher h3, .stacks_in_38084Calligrapher h4, .stacks_in_38084Calligrapher h5, .stacks_in_38084Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38084targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38084Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38084Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38084Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38084Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38084 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38085 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38087 {
	line-height: 2em;
}
#stacks_in_38088{}#stacks_in_38088 > .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_38088 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38088 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38088 > .jack.width-static{width:500px}#stacks_in_38088 > .jack.width-flexible{width:100%}#stacks_in_38088 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38088 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38088 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38088 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38088 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38088 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38088 > .jack::after{border-radius:15px}#stacks_in_38088 > .jack.border-detailed-radius,#stacks_in_38088 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38088 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38088 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38088 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38088 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38088 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38088 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38088 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38088 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38088 > .jack.bg-image:not(.glass){}#stacks_in_38088 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38088 > .jack.bg-image.glass.after,#stacks_in_38088 > .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_38088 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38088 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38088 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38088 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38088 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38088 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38088 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38088 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38088 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38088 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38088 > .jack.bg-image.glass.after,#stacks_in_38088 > .glass.jack.bg-image::after{}#stacks_in_38088 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38088 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38088 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38088 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38088 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38088 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38088 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38088 > .jack.peek-shadow::before,#stacks_in_38088 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38088 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38088 > .jack{overflow:hidden;}#stacks_in_38088 > .jack.height-static{height:100px}#stacks_in_38088 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38089 .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_38089 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38089 .fluid-image.unlimited img{width:100% !important}#stacks_in_38089 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38089 .fluid-image.align-left img{float:left}#stacks_in_38089 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38092Calligrapher{			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_38092Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38092Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38092Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38092Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38092Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38092Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38092Calligrapher h6, .stacks_in_38092Calligrapher h5, .stacks_in_38092Calligrapher h4, .stacks_in_38092Calligrapher h3, .stacks_in_38092Calligrapher h2, .stacks_in_38092Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38092Calligrapher, .stacks_in_38092Calligrapher h1, .stacks_in_38092Calligrapher h2, .stacks_in_38092Calligrapher h3, .stacks_in_38092Calligrapher h4, .stacks_in_38092Calligrapher h5, .stacks_in_38092Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38092targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38092Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38092Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38092Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38092Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38092 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38093 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38096 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38098Calligrapher{			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_38098Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38098Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38098Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38098Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38098Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38098Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38098Calligrapher h6, .stacks_in_38098Calligrapher h5, .stacks_in_38098Calligrapher h4, .stacks_in_38098Calligrapher h3, .stacks_in_38098Calligrapher h2, .stacks_in_38098Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38098Calligrapher, .stacks_in_38098Calligrapher h1, .stacks_in_38098Calligrapher h2, .stacks_in_38098Calligrapher h3, .stacks_in_38098Calligrapher h4, .stacks_in_38098Calligrapher h5, .stacks_in_38098Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38098targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38098Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38098Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38098Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38098Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38098 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38099 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38101 {
	line-height: 2em;
}
#stacks_in_38102{}#stacks_in_38102 > .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_38102 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38102 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38102 > .jack.width-static{width:500px}#stacks_in_38102 > .jack.width-flexible{width:100%}#stacks_in_38102 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38102 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38102 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38102 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38102 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38102 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38102 > .jack::after{border-radius:15px}#stacks_in_38102 > .jack.border-detailed-radius,#stacks_in_38102 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38102 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38102 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38102 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38102 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38102 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38102 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38102 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38102 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38102 > .jack.bg-image:not(.glass){}#stacks_in_38102 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38102 > .jack.bg-image.glass.after,#stacks_in_38102 > .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_38102 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38102 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38102 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38102 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38102 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38102 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38102 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38102 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38102 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38102 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38102 > .jack.bg-image.glass.after,#stacks_in_38102 > .glass.jack.bg-image::after{}#stacks_in_38102 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38102 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38102 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38102 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38102 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38102 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38102 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38102 > .jack.peek-shadow::before,#stacks_in_38102 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38102 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38102 > .jack{overflow:hidden;}#stacks_in_38102 > .jack.height-static{height:100px}#stacks_in_38102 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38103 .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_38103 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38103 .fluid-image.unlimited img{width:100% !important}#stacks_in_38103 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38103 .fluid-image.align-left img{float:left}#stacks_in_38103 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38106Calligrapher{			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_38106Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38106Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38106Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38106Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38106Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38106Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38106Calligrapher h6, .stacks_in_38106Calligrapher h5, .stacks_in_38106Calligrapher h4, .stacks_in_38106Calligrapher h3, .stacks_in_38106Calligrapher h2, .stacks_in_38106Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38106Calligrapher, .stacks_in_38106Calligrapher h1, .stacks_in_38106Calligrapher h2, .stacks_in_38106Calligrapher h3, .stacks_in_38106Calligrapher h4, .stacks_in_38106Calligrapher h5, .stacks_in_38106Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38106targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38106Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38106Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38106Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38106Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38106 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38107 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38110 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38112 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38114Calligrapher{			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_38114Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38114Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38114Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38114Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38114Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38114Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38114Calligrapher h6, .stacks_in_38114Calligrapher h5, .stacks_in_38114Calligrapher h4, .stacks_in_38114Calligrapher h3, .stacks_in_38114Calligrapher h2, .stacks_in_38114Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38114Calligrapher, .stacks_in_38114Calligrapher h1, .stacks_in_38114Calligrapher h2, .stacks_in_38114Calligrapher h3, .stacks_in_38114Calligrapher h4, .stacks_in_38114Calligrapher h5, .stacks_in_38114Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38114targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38114Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38114Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38114Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38114Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38114 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38115 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38117 {
	line-height: 2em;
}
#stacks_in_38118{}#stacks_in_38118 > .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_38118 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38118 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38118 > .jack.width-static{width:500px}#stacks_in_38118 > .jack.width-flexible{width:100%}#stacks_in_38118 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38118 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38118 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38118 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38118 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38118 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38118 > .jack::after{border-radius:15px}#stacks_in_38118 > .jack.border-detailed-radius,#stacks_in_38118 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38118 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38118 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38118 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38118 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38118 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38118 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38118 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38118 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38118 > .jack.bg-image:not(.glass){}#stacks_in_38118 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38118 > .jack.bg-image.glass.after,#stacks_in_38118 > .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_38118 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38118 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38118 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38118 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38118 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38118 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38118 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38118 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38118 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38118 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38118 > .jack.bg-image.glass.after,#stacks_in_38118 > .glass.jack.bg-image::after{}#stacks_in_38118 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38118 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38118 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38118 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38118 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38118 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38118 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38118 > .jack.peek-shadow::before,#stacks_in_38118 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38118 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38118 > .jack{overflow:hidden;}#stacks_in_38118 > .jack.height-static{height:100px}#stacks_in_38118 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38119 .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_38119 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38119 .fluid-image.unlimited img{width:100% !important}#stacks_in_38119 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38119 .fluid-image.align-left img{float:left}#stacks_in_38119 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38122Calligrapher{			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_38122Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38122Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38122Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38122Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38122Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38122Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38122Calligrapher h6, .stacks_in_38122Calligrapher h5, .stacks_in_38122Calligrapher h4, .stacks_in_38122Calligrapher h3, .stacks_in_38122Calligrapher h2, .stacks_in_38122Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38122Calligrapher, .stacks_in_38122Calligrapher h1, .stacks_in_38122Calligrapher h2, .stacks_in_38122Calligrapher h3, .stacks_in_38122Calligrapher h4, .stacks_in_38122Calligrapher h5, .stacks_in_38122Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38122targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38122Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38122Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38122Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38122Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38122 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38123 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38126 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38128 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38130Calligrapher{			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_38130Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38130Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38130Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38130Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38130Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38130Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38130Calligrapher h6, .stacks_in_38130Calligrapher h5, .stacks_in_38130Calligrapher h4, .stacks_in_38130Calligrapher h3, .stacks_in_38130Calligrapher h2, .stacks_in_38130Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38130Calligrapher, .stacks_in_38130Calligrapher h1, .stacks_in_38130Calligrapher h2, .stacks_in_38130Calligrapher h3, .stacks_in_38130Calligrapher h4, .stacks_in_38130Calligrapher h5, .stacks_in_38130Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38130targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38130Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38130Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38130Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38130Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38130 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38131 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38133 {
	line-height: 2em;
}
#stacks_in_38134{}#stacks_in_38134 > .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_38134 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38134 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38134 > .jack.width-static{width:500px}#stacks_in_38134 > .jack.width-flexible{width:100%}#stacks_in_38134 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38134 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38134 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38134 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38134 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38134 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38134 > .jack::after{border-radius:15px}#stacks_in_38134 > .jack.border-detailed-radius,#stacks_in_38134 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38134 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38134 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38134 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38134 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38134 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38134 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38134 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38134 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38134 > .jack.bg-image:not(.glass){}#stacks_in_38134 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38134 > .jack.bg-image.glass.after,#stacks_in_38134 > .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_38134 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38134 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38134 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38134 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38134 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38134 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38134 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38134 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38134 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38134 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38134 > .jack.bg-image.glass.after,#stacks_in_38134 > .glass.jack.bg-image::after{}#stacks_in_38134 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38134 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38134 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38134 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38134 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38134 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38134 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38134 > .jack.peek-shadow::before,#stacks_in_38134 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38134 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38134 > .jack{overflow:hidden;}#stacks_in_38134 > .jack.height-static{height:100px}#stacks_in_38134 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38135 .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_38135 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38135 .fluid-image.unlimited img{width:100% !important}#stacks_in_38135 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38135 .fluid-image.align-left img{float:left}#stacks_in_38135 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38138Calligrapher{			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_38138Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38138Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38138Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38138Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38138Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38138Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38138Calligrapher h6, .stacks_in_38138Calligrapher h5, .stacks_in_38138Calligrapher h4, .stacks_in_38138Calligrapher h3, .stacks_in_38138Calligrapher h2, .stacks_in_38138Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38138Calligrapher, .stacks_in_38138Calligrapher h1, .stacks_in_38138Calligrapher h2, .stacks_in_38138Calligrapher h3, .stacks_in_38138Calligrapher h4, .stacks_in_38138Calligrapher h5, .stacks_in_38138Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38138targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38138Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38138Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38138Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38138Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38138 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38139 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38142 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38144 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38146Calligrapher{			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_38146Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38146Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38146Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38146Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38146Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38146Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38146Calligrapher h6, .stacks_in_38146Calligrapher h5, .stacks_in_38146Calligrapher h4, .stacks_in_38146Calligrapher h3, .stacks_in_38146Calligrapher h2, .stacks_in_38146Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38146Calligrapher, .stacks_in_38146Calligrapher h1, .stacks_in_38146Calligrapher h2, .stacks_in_38146Calligrapher h3, .stacks_in_38146Calligrapher h4, .stacks_in_38146Calligrapher h5, .stacks_in_38146Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38146targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38146Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38146Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38146Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38146Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38146 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38147 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38149 {
	line-height: 2em;
}
#stacks_in_38150{}#stacks_in_38150 > .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_38150 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38150 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38150 > .jack.width-static{width:500px}#stacks_in_38150 > .jack.width-flexible{width:100%}#stacks_in_38150 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38150 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38150 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38150 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38150 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38150 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38150 > .jack::after{border-radius:15px}#stacks_in_38150 > .jack.border-detailed-radius,#stacks_in_38150 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38150 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38150 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38150 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38150 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38150 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38150 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38150 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38150 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38150 > .jack.bg-image:not(.glass){}#stacks_in_38150 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38150 > .jack.bg-image.glass.after,#stacks_in_38150 > .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_38150 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38150 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38150 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38150 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38150 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38150 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38150 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38150 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38150 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38150 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38150 > .jack.bg-image.glass.after,#stacks_in_38150 > .glass.jack.bg-image::after{}#stacks_in_38150 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38150 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38150 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38150 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38150 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38150 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38150 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38150 > .jack.peek-shadow::before,#stacks_in_38150 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38150 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38150 > .jack{overflow:hidden;}#stacks_in_38150 > .jack.height-static{height:100px}#stacks_in_38150 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38151 .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_38151 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38151 .fluid-image.unlimited img{width:100% !important}#stacks_in_38151 .fluid-image.define_max img{width:100% !important;max-width:800px !important}#stacks_in_38151 .fluid-image.align-left img{float:left}#stacks_in_38151 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38154Calligrapher{			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_38154Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38154Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38154Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38154Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38154Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38154Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38154Calligrapher h6, .stacks_in_38154Calligrapher h5, .stacks_in_38154Calligrapher h4, .stacks_in_38154Calligrapher h3, .stacks_in_38154Calligrapher h2, .stacks_in_38154Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38154Calligrapher, .stacks_in_38154Calligrapher h1, .stacks_in_38154Calligrapher h2, .stacks_in_38154Calligrapher h3, .stacks_in_38154Calligrapher h4, .stacks_in_38154Calligrapher h5, .stacks_in_38154Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38154targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38154Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38154Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38154Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38154Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38154 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38155 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38158 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38160 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38162Calligrapher{			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_38162Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38162Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38162Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38162Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38162Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38162Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38162Calligrapher h6, .stacks_in_38162Calligrapher h5, .stacks_in_38162Calligrapher h4, .stacks_in_38162Calligrapher h3, .stacks_in_38162Calligrapher h2, .stacks_in_38162Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38162Calligrapher, .stacks_in_38162Calligrapher h1, .stacks_in_38162Calligrapher h2, .stacks_in_38162Calligrapher h3, .stacks_in_38162Calligrapher h4, .stacks_in_38162Calligrapher h5, .stacks_in_38162Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38162targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38162Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38162Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38162Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38162Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38162 {
	padding: 0px 20px 0px 0px;
}

#stacks_in_38163 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38165 {
	line-height: 2em;
}
#stacks_in_38166{}#stacks_in_38166 > .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_38166 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_38166 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_38166 > .jack.width-static{width:500px}#stacks_in_38166 > .jack.width-flexible{width:100%}#stacks_in_38166 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_38166 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38166 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_38166 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_38166 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_38166 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_38166 > .jack::after{border-radius:15px}#stacks_in_38166 > .jack.border-detailed-radius,#stacks_in_38166 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 20.00px 20.00px}#stacks_in_38166 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_38166 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_38166 > .jack.bg-gradient{background-color:#F8F8F8}#stacks_in_38166 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_38166 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_38166 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_38166 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_38166 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38166 > .jack.bg-image:not(.glass){}#stacks_in_38166 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_38166 > .jack.bg-image.glass.after,#stacks_in_38166 > .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_38166 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_38166 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_38166 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_38166 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_38166 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_38166 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_38166 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38166 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_38166 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_38166 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_38166 > .jack.bg-image.glass.after,#stacks_in_38166 > .glass.jack.bg-image::after{}#stacks_in_38166 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_38166 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_38166 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_38166 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38166 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_38166 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_38166 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_38166 > .jack.peek-shadow::before,#stacks_in_38166 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_38166 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_38166 > .jack{overflow:hidden;}#stacks_in_38166 > .jack.height-static{height:100px}#stacks_in_38166 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_38167 .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_38167 .fluid-image img:hover{-webkit-box-shadow:0px 0px 0px #999999;box-shadow:0px 0px 0px #999999}#stacks_in_38167 .fluid-image.unlimited img{width:100% !important}#stacks_in_38167 .fluid-image.define_max img{width:100% !important;max-width:300px !important}#stacks_in_38167 .fluid-image.align-left img{float:left}#stacks_in_38167 .fluid-image.align-right img{float:right}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38170Calligrapher{			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_38170Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38170Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38170Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38170Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38170Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38170Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38170Calligrapher h6, .stacks_in_38170Calligrapher h5, .stacks_in_38170Calligrapher h4, .stacks_in_38170Calligrapher h3, .stacks_in_38170Calligrapher h2, .stacks_in_38170Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38170Calligrapher, .stacks_in_38170Calligrapher h1, .stacks_in_38170Calligrapher h2, .stacks_in_38170Calligrapher h3, .stacks_in_38170Calligrapher h4, .stacks_in_38170Calligrapher h5, .stacks_in_38170Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38170targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38170Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38170Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38170Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38170Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38170 {
	padding: 20px 20px 0px 20px;
}

#stacks_in_38171 {
	margin: 0px 0px 15px 0px;
}

#stacks_in_38174 {
	margin: 0px 0px 15px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38176Calligrapher{			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_38176Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38176Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38176Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38176Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38176Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38176Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_38176Calligrapher h6, .stacks_in_38176Calligrapher h5, .stacks_in_38176Calligrapher h4, .stacks_in_38176Calligrapher h3, .stacks_in_38176Calligrapher h2, .stacks_in_38176Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38176Calligrapher, .stacks_in_38176Calligrapher h1, .stacks_in_38176Calligrapher h2, .stacks_in_38176Calligrapher h3, .stacks_in_38176Calligrapher h4, .stacks_in_38176Calligrapher h5, .stacks_in_38176Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38176targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_38176Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_38176Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_38176Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_38176Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_38176 {
	padding: 0px 20px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_38177Calligrapher{			line-height: normal !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_38177Calligrapher, .stacks_in_38177Calligrapher h1, .stacks_in_38177Calligrapher h2, .stacks_in_38177Calligrapher h3, .stacks_in_38177Calligrapher h4, .stacks_in_38177Calligrapher h5, .stacks_in_38177Calligrapher h6{	font-family: "Raleway" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_38177targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- *//* End Calligrapher stack CSS code */
#stacks_in_38178 {
	margin:  2px;
	padding:  3px;
}

#stacks_in_38180 {
	line-height: 2em;
}
#stacks_in_30190{padding-left:0px;padding-right:0px;}#stacks_in_30190 > .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_30190 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_30190 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_30190 > .jack.width-static{width:500px}#stacks_in_30190 > .jack.width-flexible{width:100%}#stacks_in_30190 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_30190 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30190 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_30190 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_30190 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_30190 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_30190 > .jack::after{border-radius:0px}#stacks_in_30190 > .jack.border-detailed-radius,#stacks_in_30190 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_30190 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_30190 > .jack.bg-color{background-color:#89C5FF}#stacks_in_30190 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_30190 > .jack.bg-image:not(.glass){background-image:url(../about_files/bgImage-30190.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30190 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_30190 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_30190 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_7_col.jpg)}#stacks_in_30190 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30190 > .jack.bg-image:not(.glass){}#stacks_in_30190 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_30190 > .jack.bg-image.glass.after,#stacks_in_30190 > .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(../about_files/bgImage-30190.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30190 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_30190 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30190 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_30190 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_30190 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_30190 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_30190 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30190 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_7_col.jpg)}#stacks_in_30190 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_30190 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30190 > .jack.bg-image.glass.after,#stacks_in_30190 > .glass.jack.bg-image::after{}#stacks_in_30190 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30190 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_30190 > .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_30190 > .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_30190 > .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_30190 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_30190 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_30190 > .jack.peek-shadow::before,#stacks_in_30190 > .jack.peek-shadow::after{-webkit-box-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_30190 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_30190 > .jack{overflow:hidden;}#stacks_in_30190 > .jack.height-static{height:40px}#stacks_in_30190 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_30190 {
	margin: 10px 0px 10px 0px;
}
#stacks_in_7989{}#stacks_in_7989 > .jack{margin:0px;padding:0px;border-color:#000000;border-width:0px;border-style:solid;border-radius:20px;background-attachment:scroll;background-clip:padding-box !important;background-origin:padding-box !important}#stacks_in_7989 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_7989 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_7989 > .jack.width-static{width:500px}#stacks_in_7989 > .jack.width-flexible{width:100%}#stacks_in_7989 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_7989 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_7989 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_7989 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_7989 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_7989 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_7989 > .jack::after{border-radius:20px}#stacks_in_7989 > .jack.border-detailed-radius,#stacks_in_7989 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_7989 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_7989 > .jack.bg-color{background-color:#C5C5C5}#stacks_in_7989 > .jack.bg-gradient{background-color:#DFDBFF}#stacks_in_7989 > .jack.bg-image:not(.glass){background-image:url();background-repeat:repeat;background-position:left top;}#stacks_in_7989 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_7989 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_7989 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url()}#stacks_in_7989 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_7989 > .jack.bg-image:not(.glass){}#stacks_in_7989 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_7989 > .jack.bg-image.glass.after,#stacks_in_7989 > .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_7989 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_7989 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_7989 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_7989 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_7989 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_7989 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_7989 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_7989 > .glass.bg-warehouse.jack.bg-image::after{background-image:url()}#stacks_in_7989 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_7989 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_7989 > .jack.bg-image.glass.after,#stacks_in_7989 > .glass.jack.bg-image::after{}#stacks_in_7989 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_7989 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_7989 > .jack.drop-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30)}#stacks_in_7989 > .jack.inset-shadow{-webkit-box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_7989 > .jack.drop-shadow.inset-shadow{-webkit-box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10);box-shadow:0px 1px 4px 0px rgba(0,0,0,0.30),inset 0px 0px 40px 0px rgba(0,0,0,0.10)}#stacks_in_7989 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_7989 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_7989 > .jack.peek-shadow::before,#stacks_in_7989 > .jack.peek-shadow::after{-webkit-box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);box-shadow:0px 0px 20px 0px rgba(0,0,0,0.80);top:50%;bottom:0%;left:12px;right:12px;border-radius:100px / 10px}#stacks_in_7989 > .jack.peek-shadow::after{right:12px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_7989 > .jack{overflow:hidden;}#stacks_in_7989 > .jack.height-static{height:100px}#stacks_in_7989 > .jack.height-minmax{min-height:100px;max-height:800px}
#stacks_in_7992 .jwresp_wrapper{width:100%;overflow:auto}#stacks_in_7992 .jwresp_col{float:none} #stacks_in_7992 #jwresp_col2_stacks_in_7992{position:relative;margin:0 auto;width:32%;float:none}#stacks_in_7992 #jwresp_col1_stacks_in_7992,#stacks_in_7992 #jwresp_col3_stacks_in_7992{width:32%}#stacks_in_7992 #jwresp_col1_stacks_in_7992{float:left}#stacks_in_7992 #jwresp_col3_stacks_in_7992{float:right} @media screen and (max-width:770px){#stacks_in_7992 #jwresp_col1_stacks_in_7992,#stacks_in_7992 #jwresp_col3_stacks_in_7992{margin-bottom:20px}#stacks_in_7992 #jwresp_col1_stacks_in_7992{width:49%}#stacks_in_7992 #jwresp_col3_stacks_in_7992{width:49%}#stacks_in_7992 #jwresp_col2_stacks_in_7992{clear:both;width:100%;display:block}}  @media screen and (max-width:500px){#stacks_in_7992 #jwresp_col1_stacks_in_7992,#stacks_in_7992 #jwresp_col3_stacks_in_7992,#stacks_in_7992 #jwresp_col2_stacks_in_7992{float:none;width:100%;display:block}#stacks_in_7992 #jwresp_col1_stacks_in_7992,#stacks_in_7992 #jwresp_col3_stacks_in_7992{margin-bottom:20px}} 

#stacks_in_7992 {
	margin: 10px 0px 10px 0px;
}
/* BorderButtonThing by RapidWeaver Central  */

#borderbuttonthingstacks_in_7994 {
	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_7994 .borderbuttonthing, #stacks_in_7994 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #3E7D8F;
	color: #3E7D8F;
	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_7994 .borderbuttonthing:hover {
	background: #3E7D8F;
	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_7994 .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_7996 {
	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_7996 .borderbuttonthing, #stacks_in_7996 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #3E7D8F;
	color: #3E7D8F;
	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_7996 .borderbuttonthing:hover {
	background: #3E7D8F;
	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_7996 .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_7998 {
	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_7998 .borderbuttonthing, #stacks_in_7998 .borderbuttonthing a {
	display: inline-block;
	text-align: center;
   	cursor: pointer;
	line-height: 40px;
	padding: 0 20px;
	font-size: 20px;
	border: 2px solid #3E7D8F;
	color: #3E7D8F;
	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_7998 .borderbuttonthing:hover {
	background: #3E7D8F;
	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_7998 .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_30187{padding-left:0px;padding-right:0px;}#stacks_in_30187 > .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_30187 > .jack.proportional{aspect-ratio:16 / 9;}#stacks_in_30187 > .jack.width-minmax{min-width:100px;max-width:800px}#stacks_in_30187 > .jack.width-static{width:500px}#stacks_in_30187 > .jack.width-flexible{width:100%}#stacks_in_30187 > .jack.margin-detailed{margin:0.00px 0.00px 0.00px 0.00px}#stacks_in_30187 > .jack.padding-detailed{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30187 > .jack.rotate{-webkit-transform:rotate(5deg);transform:rotate(5deg)}#stacks_in_30187 > .jack.border-detailed-width{border-width:0.00px 0.00px 0.00px 0.00px}#stacks_in_30187 > .jack.border-detailed-style{border-style:solid solid solid solid}#stacks_in_30187 > .jack.border-image{-o-border-image:url() 70 repeat;border-image:url() 70 repeat;border-style:solid}#stacks_in_30187 > .jack::after{border-radius:0px}#stacks_in_30187 > .jack.border-detailed-radius,#stacks_in_30187 > .jack.border-detailed-radius::after{border-radius:0.00px 0.00px 0.00px 0.00px}#stacks_in_30187 > .jack.bg-animate{-webkit-animation:animatedJackBackgroundtoRight 200s linear infinite;animation:animatedJackBackgroundtoRight 200s linear infinite}#stacks_in_30187 > .jack.bg-color{background-color:#89C5FF}#stacks_in_30187 > .jack.bg-gradient{background-color:#89C5FF}#stacks_in_30187 > .jack.bg-image:not(.glass){background-image:url(../about_files/bgImage-30187.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30187 > .jack.bg-image:not(.glass).bg-size-static{background-size:300px}#stacks_in_30187 > .jack.bg-image:not(.glass).bg-size-fluid{background-size:100%}#stacks_in_30187 > .jack.bg-image:not(.glass).bg-warehouse{background-image:url(http://thai.world/pictures/image_7_col.jpg)}#stacks_in_30187 > .jack.bg-image:not(.glass).bg-fallback{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30187 > .jack.bg-image:not(.glass){}#stacks_in_30187 > .jack.bg-image:not(.glass).bg-warehouse{}}#stacks_in_30187 > .jack.bg-image.glass.after,#stacks_in_30187 > .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(../about_files/bgImage-30187.jpg);background-repeat:repeat;background-position:left top;}#stacks_in_30187 > .jack.bg-image.glass.after.padding-detailed,#stacks_in_30187 > .glass.padding-detailed.jack.bg-image::after{padding:0.00px 0.00px 0.00px 0.00px}#stacks_in_30187 > .jack.bg-image.glass.after.bg-size-static,#stacks_in_30187 > .glass.bg-size-static.jack.bg-image::after{background-size:300px}#stacks_in_30187 > .jack.bg-image.glass.after.bg-size-fluid,#stacks_in_30187 > .glass.bg-size-fluid.jack.bg-image::after{background-size:100%}#stacks_in_30187 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30187 > .glass.bg-warehouse.jack.bg-image::after{background-image:url(http://thai.world/pictures/image_7_col.jpg)}#stacks_in_30187 > .jack.bg-image.glass.after.bg-fallback,#stacks_in_30187 > .glass.bg-fallback.jack.bg-image::after{background-color:#CCCCCC}@media only screen and (min-width:40.063em){#stacks_in_30187 > .jack.bg-image.glass.after,#stacks_in_30187 > .glass.jack.bg-image::after{}#stacks_in_30187 > .jack.bg-image.glass.after.bg-warehouse,#stacks_in_30187 > .glass.bg-warehouse.jack.bg-image::after{}}#stacks_in_30187 > .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_30187 > .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_30187 > .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_30187 > .jack.corner-shadow.corner-shadow-left::before{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);left:10px;-webkit-transform:rotate(-3deg);transform:rotate(-3deg)}#stacks_in_30187 > .jack.corner-shadow.corner-shadow-right::after{max-width:300px;bottom:15px;-webkit-box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);box-shadow:0px 15px 10px 0px rgba(119,119,119,0.99);right:10px;left:auto;-webkit-transform:rotate(3deg);transform:rotate(3deg)}#stacks_in_30187 > .jack.peek-shadow::before,#stacks_in_30187 > .jack.peek-shadow::after{-webkit-box-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_30187 > .jack.peek-shadow::after{right:5px;left:auto;-webkit-transform:skew(8deg) rotate(3deg);transform:skew(8deg) rotate(3deg)}#stacks_in_30187 > .jack{overflow:hidden;}#stacks_in_30187 > .jack.height-static{height:200px}#stacks_in_30187 > .jack.height-minmax{min-height:100px;max-height:800px}

#stacks_in_30187 {
	margin: 10px 0px 0px 0px;
}
