@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);
  }
}
a.block-link{display:block;text-decoration:none !important;padding:0;margin:0;color:inherit}a.block-link:link,a.block-link:visited,a.block-link:hover,a.block-link:active{color:inherit}
#stacks_in_411312.aspen_split{
	position: relative;
	font-size: 13px;
	padding: 40px 20px 40px 20px;
}
@media screen and (min-width: 770px){
	#stacks_in_411312.aspen_split{
		padding: 70px 20px 70px 20px;
	}
}
#stacks_in_411312.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_411312.aspen_split .bg-wrap {clip: rect(0, auto, auto, 0);position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 0;}
#stacks_in_411312.aspen_split .bg{
	position: absolute; display: block;
	top: 0;left: 0; width: 100%; height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateZ(0);
	will-change: transform;
	
	opacity: 0.3;
	
	background-size: cover;
}

#stacks_in_411312.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_411312 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_411312.aspen_split{
	text-align:left;
	background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1.00), rgba(255, 255, 255, 1.00));
}

 
#stacks_in_411312.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_411312.aspen_split h1, 
#stacks_in_411312.aspen_split h2,
#stacks_in_411312.aspen_split h3, 
#stacks_in_411312.aspen_split h4, 
#stacks_in_411312.aspen_split h5, 
#stacks_in_411312.aspen_split h6{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_411312.aspen_split a{color: rgba(128, 80, 175, 1.00);} 
#stacks_in_411312.aspen_split a:hover{color: rgba(161, 101, 222, 1.00);}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411574Calligrapher{			font-size: 125% !important;			color: #E00011 !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_411574Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411574Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411574Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411574Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411574Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411574Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411574Calligrapher h6, .stacks_in_411574Calligrapher h5, .stacks_in_411574Calligrapher h4, .stacks_in_411574Calligrapher h3, .stacks_in_411574Calligrapher h2, .stacks_in_411574Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411574Calligrapher, .stacks_in_411574Calligrapher h1, .stacks_in_411574Calligrapher h2, .stacks_in_411574Calligrapher h3, .stacks_in_411574Calligrapher h4, .stacks_in_411574Calligrapher h5, .stacks_in_411574Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411574targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411574Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_411574Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_411574Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_411574Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_411577 {
	font-size: 109%;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_413212Calligrapher{			font-size: 80% !important;			color: #E00011 !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_413212Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413212Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413212Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413212Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413212Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413212Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413212Calligrapher h6, .stacks_in_413212Calligrapher h5, .stacks_in_413212Calligrapher h4, .stacks_in_413212Calligrapher h3, .stacks_in_413212Calligrapher h2, .stacks_in_413212Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_413212Calligrapher, .stacks_in_413212Calligrapher h1, .stacks_in_413212Calligrapher h2, .stacks_in_413212Calligrapher h3, .stacks_in_413212Calligrapher h4, .stacks_in_413212Calligrapher h5, .stacks_in_413212Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_413212targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_413212Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_413212Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_413212Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_413212Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_413215 {
	font-size: 109%;
}
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_411327 {
	height: 20px;
}#stacks_in_411328>.s3_row {
	margin: 0 -0px;
}

#stacks_in_411328>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_411328>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_411328>.s3_row>.s3_column_right {
	width: 33.33%;
}

#stacks_in_411328>.s3_row>.s3_column {
	padding: 0 0px;
}








@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_411328>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_411328>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



.spacerStack {
	height: 2px;
}

#spacerStackstacks_in_411334 {
	height: 2px;
}.spacerStack {
	height: 2px;
}

#spacerStackstacks_in_411332 {
	height: 2px;
}
#stacks_in_411332 {
	border: solid rgba(51, 51, 51, 1.00);
	border-width: 1px 0px 0px 0px;
	padding:  10px;
}

#stacks_out_411332 {
	width: 150px;
}
.spacerStack {
	height: 2px;
}

#spacerStackstacks_in_411330 {
	height: 2px;
}.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_411336 {
	height: 40px;
}.spacerStack {
	height: 30px;
}

#spacerStackstacks_in_411337 {
	height: 30px;
}#stacks_in_410740>.s3_row {
	margin: 0 -20px;
}

#stacks_in_410740>.s3_row>.s3_column_left {
	width: 75.52%;
}

#stacks_in_410740>.s3_row>.s3_column_right {
	width: 24.480003%;
}




#stacks_in_410740>.s3_row>.s3_column {
	padding: 0 20px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_410740>.s3_row  {
		margin: -20px 0;
	}
	#stacks_in_410740>.s3_row>.s3_column {
		padding: 20px 0;
		width:100%;
	}


}





/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_410274Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_410274Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_410274Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_410274Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_410274Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_410274Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_410274Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_410274Calligrapher h6, .stacks_in_410274Calligrapher h5, .stacks_in_410274Calligrapher h4, .stacks_in_410274Calligrapher h3, .stacks_in_410274Calligrapher h2, .stacks_in_410274Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_410274Calligrapher, .stacks_in_410274Calligrapher h1, .stacks_in_410274Calligrapher h2, .stacks_in_410274Calligrapher h3, .stacks_in_410274Calligrapher h4, .stacks_in_410274Calligrapher h5, .stacks_in_410274Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_410274targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_410274Calligrapher a:link{			color: #0000E3 !important;			text-decoration: none !important;		}				.stacks_in_410274Calligrapher a:visited{			color: #0000E3 !important;		}				.stacks_in_410274Calligrapher a:active{			color: #0000E3 !important;		}				.stacks_in_410274Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_410275 {
	text-align: justify !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_410275 {
		text-align: left !important;
	}
	
	#stacks_in_410275 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_410275 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_410275 {
		text-align: left !important;
	}
	
	#stacks_in_410275 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_410275 img {
		margin: 0 !important;
	}
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_409892 {
	height: 40px;
}.spacerStack {
	height: 15px;
}

#spacerStackstacks_in_411261 {
	height: 15px;
}.spacerStack {
	height: 15px;
}

#spacerStackstacks_in_412106 {
	height: 15px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411826Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_411826Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411826Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411826Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411826Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411826Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411826Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411826Calligrapher h6, .stacks_in_411826Calligrapher h5, .stacks_in_411826Calligrapher h4, .stacks_in_411826Calligrapher h3, .stacks_in_411826Calligrapher h2, .stacks_in_411826Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411826Calligrapher, .stacks_in_411826Calligrapher h1, .stacks_in_411826Calligrapher h2, .stacks_in_411826Calligrapher h3, .stacks_in_411826Calligrapher h4, .stacks_in_411826Calligrapher h5, .stacks_in_411826Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411826targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411826Calligrapher a:link{			color: #0000E3 !important;			text-decoration: none !important;		}				.stacks_in_411826Calligrapher a:visited{			color: #0000E3 !important;		}				.stacks_in_411826Calligrapher a:active{			color: #0000E3 !important;		}				.stacks_in_411826Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_409893 {
	text-align: justify !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_409893 {
		text-align: left !important;
	}
	
	#stacks_in_409893 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_409893 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_409893 {
		text-align: left !important;
	}
	
	#stacks_in_409893 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_409893 img {
		margin: 0 !important;
	}
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412209 {
	height: 20px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_409890Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_409890Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_409890Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_409890Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_409890Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_409890Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_409890Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_409890Calligrapher h6, .stacks_in_409890Calligrapher h5, .stacks_in_409890Calligrapher h4, .stacks_in_409890Calligrapher h3, .stacks_in_409890Calligrapher h2, .stacks_in_409890Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_409890Calligrapher, .stacks_in_409890Calligrapher h1, .stacks_in_409890Calligrapher h2, .stacks_in_409890Calligrapher h3, .stacks_in_409890Calligrapher h4, .stacks_in_409890Calligrapher h5, .stacks_in_409890Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_409890targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_409890Calligrapher a:link{			color: #0000E3 !important;			text-decoration: none !important;		}				.stacks_in_409890Calligrapher a:visited{			color: #0000E3 !important;		}				.stacks_in_409890Calligrapher a:active{			color: #0000E3 !important;		}				.stacks_in_409890Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_411831>.s3_row {
	margin: 0 -10px;
}

#stacks_in_411831>.s3_row>.s3_column_left {
	width: 46.72%;
}

#stacks_in_411831>.s3_row>.s3_column_right {
	width: 53.279999%;
}




#stacks_in_411831>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_411831>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_411831>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}





.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_409895 {
	height: 20px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_409896 {
	text-align: justify !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_409896 {
		text-align: left !important;
	}
	
	#stacks_in_409896 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_409896 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_409896 {
		text-align: left !important;
	}
	
	#stacks_in_409896 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_409896 img {
		margin: 0 !important;
	}
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 60px;
}

#spacerStackstacks_in_412399 {
	height: 60px;
}.spacerStack {
	height: 30px;
}

#spacerStackstacks_in_412492 {
	height: 30px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412435Calligrapher{			font-size: 150% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.3em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_412435Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412435Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412435Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412435Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412435Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412435Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412435Calligrapher h6, .stacks_in_412435Calligrapher h5, .stacks_in_412435Calligrapher h4, .stacks_in_412435Calligrapher h3, .stacks_in_412435Calligrapher h2, .stacks_in_412435Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412435Calligrapher, .stacks_in_412435Calligrapher h1, .stacks_in_412435Calligrapher h2, .stacks_in_412435Calligrapher h3, .stacks_in_412435Calligrapher h4, .stacks_in_412435Calligrapher h5, .stacks_in_412435Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412435targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412435Calligrapher a:link{			color: #0000E3 !important;			text-decoration: none !important;		}				.stacks_in_412435Calligrapher a:visited{			color: #0000E3 !important;		}				.stacks_in_412435Calligrapher a:active{			color: #0000E3 !important;		}				.stacks_in_412435Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_412435 {
	background-color: rgba(228, 229, 240, 1.00);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412440Calligrapher{			font-size: 130% !important;			color: #0955BD !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_412440Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412440Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412440Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412440Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412440Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412440Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412440Calligrapher h6, .stacks_in_412440Calligrapher h5, .stacks_in_412440Calligrapher h4, .stacks_in_412440Calligrapher h3, .stacks_in_412440Calligrapher h2, .stacks_in_412440Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412440Calligrapher, .stacks_in_412440Calligrapher h1, .stacks_in_412440Calligrapher h2, .stacks_in_412440Calligrapher h3, .stacks_in_412440Calligrapher h4, .stacks_in_412440Calligrapher h5, .stacks_in_412440Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412440targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412440Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_412440Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_412440Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_412440Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_412440 {
	padding: 0px 30px 0px 30px;
}
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412441 {
	height: 20px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_412442 {
	text-align: left !important;
}


#stacks_in_412442 img {
	margin: 0 !important;
}




@media only screen and (max-width: 768px) {
    #stacks_in_412442 {
		text-align: left !important;
	}
	
	#stacks_in_412442 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412442 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412442 {
		text-align: center !important;
	}
	
	#stacks_in_412442 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */
#stacks_in_412443 {
	font-size: 85%;
}
.spacerStack {
	height: 20px;
}

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

#spacerStackstacks_in_412456 {
	height: 20px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_412457 {
	text-align: left !important;
}


#stacks_in_412457 img {
	margin: 0 !important;
}




@media only screen and (max-width: 768px) {
    #stacks_in_412457 {
		text-align: left !important;
	}
	
	#stacks_in_412457 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412457 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412457 {
		text-align: center !important;
	}
	
	#stacks_in_412457 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */
#stacks_in_412458 {
	font-size: 85%;
}
.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_412459 {
	height: 40px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_412432 {
	text-align: left !important;
}


#stacks_in_412432 img {
	margin: 0 !important;
}




@media only screen and (max-width: 768px) {
    #stacks_in_412432 {
		text-align: left !important;
	}
	
	#stacks_in_412432 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412432 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412432 {
		text-align: center !important;
	}
	
	#stacks_in_412432 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */
#stacks_in_412432 {
	padding: 0px 30px 0px 30px;
}

#stacks_in_412433 {
	font-size: 99%;
}
/* -- Start Textalign Each css Template -- */
#stacks_in_412461 {
	text-align: left !important;
}


#stacks_in_412461 img {
	margin: 0 !important;
}




@media only screen and (max-width: 768px) {
    #stacks_in_412461 {
		text-align: left !important;
	}
	
	#stacks_in_412461 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412461 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412461 {
		text-align: center !important;
	}
	
	#stacks_in_412461 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */
#stacks_in_412462 {
	font-size: 99%;
}
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412501 {
	height: 20px;
}.spacerStack {
	height: 60px;
}

#spacerStackstacks_in_412434 {
	height: 60px;
}
#stacks_in_412387 {
	background-color: rgba(197, 234, 255, 0.55);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412389Calligrapher{			font-size: 200% !important;			color: #0955BD !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_412389Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412389Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412389Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412389Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412389Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412389Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412389Calligrapher h6, .stacks_in_412389Calligrapher h5, .stacks_in_412389Calligrapher h4, .stacks_in_412389Calligrapher h3, .stacks_in_412389Calligrapher h2, .stacks_in_412389Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412389Calligrapher, .stacks_in_412389Calligrapher h1, .stacks_in_412389Calligrapher h2, .stacks_in_412389Calligrapher h3, .stacks_in_412389Calligrapher h4, .stacks_in_412389Calligrapher h5, .stacks_in_412389Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412389targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412389Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_412389Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_412389Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_412389Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_412389 {
	padding: 0px 30px 0px 30px;
}
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412392 {
	height: 20px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_412390 {
	text-align: left !important;
}


#stacks_in_412390 img {
	margin: 0 !important;
}




@media only screen and (max-width: 768px) {
    #stacks_in_412390 {
		text-align: left !important;
	}
	
	#stacks_in_412390 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412390 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412390 {
		text-align: center !important;
	}
	
	#stacks_in_412390 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */
#stacks_in_412391 {
	font-size: 85%;
}
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412400 {
	height: 20px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412415Calligrapher{			font-size: 150% !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_412415Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412415Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412415Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412415Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412415Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412415Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412415Calligrapher h6, .stacks_in_412415Calligrapher h5, .stacks_in_412415Calligrapher h4, .stacks_in_412415Calligrapher h3, .stacks_in_412415Calligrapher h2, .stacks_in_412415Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412415Calligrapher, .stacks_in_412415Calligrapher h1, .stacks_in_412415Calligrapher h2, .stacks_in_412415Calligrapher h3, .stacks_in_412415Calligrapher h4, .stacks_in_412415Calligrapher h5, .stacks_in_412415Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412415targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412415Calligrapher a:link{			color: #0000E3 !important;			text-decoration: none !important;		}				.stacks_in_412415Calligrapher a:visited{			color: #0000E3 !important;		}				.stacks_in_412415Calligrapher a:active{			color: #0000E3 !important;		}				.stacks_in_412415Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_412415 {
	padding: 0px 30px 0px 30px;
}
/* -- Start Textalign Each css Template -- */
#stacks_in_412416 {
	text-align: justify !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412416 {
		text-align: left !important;
	}
	
	#stacks_in_412416 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412416 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412416 {
		text-align: left !important;
	}
	
	#stacks_in_412416 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412416 img {
		margin: 0 !important;
	}
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412418 {
	height: 20px;
}.spacerStack {
	height: 10px;
}

#spacerStackstacks_in_412431 {
	height: 10px;
}.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412411 {
	height: 20px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412394Calligrapher{			font-size: 150% !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_412394Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412394Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412394Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412394Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412394Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412394Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412394Calligrapher h6, .stacks_in_412394Calligrapher h5, .stacks_in_412394Calligrapher h4, .stacks_in_412394Calligrapher h3, .stacks_in_412394Calligrapher h2, .stacks_in_412394Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412394Calligrapher, .stacks_in_412394Calligrapher h1, .stacks_in_412394Calligrapher h2, .stacks_in_412394Calligrapher h3, .stacks_in_412394Calligrapher h4, .stacks_in_412394Calligrapher h5, .stacks_in_412394Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412394targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412394Calligrapher a:link{			color: #0000E3 !important;			text-decoration: none !important;		}				.stacks_in_412394Calligrapher a:visited{			color: #0000E3 !important;		}				.stacks_in_412394Calligrapher a:active{			color: #0000E3 !important;		}				.stacks_in_412394Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_412394 {
	padding: 0px 30px 0px 30px;
}
/* -- Start Textalign Each css Template -- */
#stacks_in_412395 {
	text-align: justify !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412395 {
		text-align: left !important;
	}
	
	#stacks_in_412395 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412395 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412395 {
		text-align: left !important;
	}
	
	#stacks_in_412395 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412395 img {
		margin: 0 !important;
	}
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412397 {
	height: 20px;
}
#stacks_in_412463 {
	background-color: rgba(197, 234, 255, 0.55);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding:  20px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412464Calligrapher{			font-size: 200% !important;			color: #0955BD !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_412464Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412464Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412464Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412464Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412464Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412464Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412464Calligrapher h6, .stacks_in_412464Calligrapher h5, .stacks_in_412464Calligrapher h4, .stacks_in_412464Calligrapher h3, .stacks_in_412464Calligrapher h2, .stacks_in_412464Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412464Calligrapher, .stacks_in_412464Calligrapher h1, .stacks_in_412464Calligrapher h2, .stacks_in_412464Calligrapher h3, .stacks_in_412464Calligrapher h4, .stacks_in_412464Calligrapher h5, .stacks_in_412464Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412464targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412464Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_412464Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_412464Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_412464Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412465 {
	height: 20px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_412466 {
	text-align: left !important;
}


#stacks_in_412466 img {
	margin: 0 !important;
}




@media only screen and (max-width: 768px) {
    #stacks_in_412466 {
		text-align: left !important;
	}
	
	#stacks_in_412466 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412466 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412466 {
		text-align: center !important;
	}
	
	#stacks_in_412466 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */
#stacks_in_412467 {
	font-size: 85%;
}
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412468 {
	height: 20px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412470Calligrapher{			font-size: 150% !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_412470Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412470Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412470Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412470Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412470Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412470Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412470Calligrapher h6, .stacks_in_412470Calligrapher h5, .stacks_in_412470Calligrapher h4, .stacks_in_412470Calligrapher h3, .stacks_in_412470Calligrapher h2, .stacks_in_412470Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412470Calligrapher, .stacks_in_412470Calligrapher h1, .stacks_in_412470Calligrapher h2, .stacks_in_412470Calligrapher h3, .stacks_in_412470Calligrapher h4, .stacks_in_412470Calligrapher h5, .stacks_in_412470Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412470targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412470Calligrapher a:link{			color: #0000E3 !important;			text-decoration: none !important;		}				.stacks_in_412470Calligrapher a:visited{			color: #0000E3 !important;		}				.stacks_in_412470Calligrapher a:active{			color: #0000E3 !important;		}				.stacks_in_412470Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_412493 {
	text-align: justify !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412493 {
		text-align: left !important;
	}
	
	#stacks_in_412493 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412493 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412493 {
		text-align: left !important;
	}
	
	#stacks_in_412493 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412493 img {
		margin: 0 !important;
	}
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412473 {
	height: 20px;
}.spacerStack {
	height: 10px;
}

#spacerStackstacks_in_412474 {
	height: 10px;
}.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412478 {
	height: 20px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412479Calligrapher{			font-size: 150% !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_412479Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412479Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412479Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412479Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412479Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412479Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412479Calligrapher h6, .stacks_in_412479Calligrapher h5, .stacks_in_412479Calligrapher h4, .stacks_in_412479Calligrapher h3, .stacks_in_412479Calligrapher h2, .stacks_in_412479Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412479Calligrapher, .stacks_in_412479Calligrapher h1, .stacks_in_412479Calligrapher h2, .stacks_in_412479Calligrapher h3, .stacks_in_412479Calligrapher h4, .stacks_in_412479Calligrapher h5, .stacks_in_412479Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412479targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412479Calligrapher a:link{			color: #0000E3 !important;			text-decoration: none !important;		}				.stacks_in_412479Calligrapher a:visited{			color: #0000E3 !important;		}				.stacks_in_412479Calligrapher a:active{			color: #0000E3 !important;		}				.stacks_in_412479Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_412479 {
	padding: 0px 30px 0px 30px;
}
/* -- Start Textalign Each css Template -- */
#stacks_in_412480 {
	text-align: justify !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412480 {
		text-align: left !important;
	}
	
	#stacks_in_412480 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412480 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412480 {
		text-align: left !important;
	}
	
	#stacks_in_412480 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412480 img {
		margin: 0 !important;
	}
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412482 {
	height: 20px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412487Calligrapher{			font-size: 150% !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_412487Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412487Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412487Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412487Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412487Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412487Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412487Calligrapher h6, .stacks_in_412487Calligrapher h5, .stacks_in_412487Calligrapher h4, .stacks_in_412487Calligrapher h3, .stacks_in_412487Calligrapher h2, .stacks_in_412487Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412487Calligrapher, .stacks_in_412487Calligrapher h1, .stacks_in_412487Calligrapher h2, .stacks_in_412487Calligrapher h3, .stacks_in_412487Calligrapher h4, .stacks_in_412487Calligrapher h5, .stacks_in_412487Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412487targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412487Calligrapher a:link{			color: #0000E3 !important;			text-decoration: none !important;		}				.stacks_in_412487Calligrapher a:visited{			color: #0000E3 !important;		}				.stacks_in_412487Calligrapher a:active{			color: #0000E3 !important;		}				.stacks_in_412487Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_412488 {
	text-align: justify !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412488 {
		text-align: left !important;
	}
	
	#stacks_in_412488 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412488 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412488 {
		text-align: left !important;
	}
	
	#stacks_in_412488 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412488 img {
		margin: 0 !important;
	}
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412490 {
	height: 20px;
}.spacerStack {
	height: 60px;
}

#spacerStackstacks_in_412283 {
	height: 60px;
}
#stacks_in_411440 {
	background-color: rgba(228, 229, 240, 1.00);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding: 30px 20px 30px 20px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412512Calligrapher{			font-size: 200% !important;			color: #0955BD !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_412512Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412512Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412512Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412512Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412512Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412512Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412512Calligrapher h6, .stacks_in_412512Calligrapher h5, .stacks_in_412512Calligrapher h4, .stacks_in_412512Calligrapher h3, .stacks_in_412512Calligrapher h2, .stacks_in_412512Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412512Calligrapher, .stacks_in_412512Calligrapher h1, .stacks_in_412512Calligrapher h2, .stacks_in_412512Calligrapher h3, .stacks_in_412512Calligrapher h4, .stacks_in_412512Calligrapher h5, .stacks_in_412512Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412512targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412512Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_412512Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_412512Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_412512Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_412512 {
	padding: 0px 30px 0px 30px;
}
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412513 {
	height: 20px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_412514 {
	text-align: left !important;
}


#stacks_in_412514 img {
	margin: 0 !important;
}




@media only screen and (max-width: 768px) {
    #stacks_in_412514 {
		text-align: left !important;
	}
	
	#stacks_in_412514 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412514 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412514 {
		text-align: center !important;
	}
	
	#stacks_in_412514 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */
#stacks_in_412515 {
	font-size: 85%;
}
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412516 {
	height: 20px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411446Calligrapher{			font-size: 150% !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_411446Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411446Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411446Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411446Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411446Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411446Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411446Calligrapher h6, .stacks_in_411446Calligrapher h5, .stacks_in_411446Calligrapher h4, .stacks_in_411446Calligrapher h3, .stacks_in_411446Calligrapher h2, .stacks_in_411446Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411446Calligrapher, .stacks_in_411446Calligrapher h1, .stacks_in_411446Calligrapher h2, .stacks_in_411446Calligrapher h3, .stacks_in_411446Calligrapher h4, .stacks_in_411446Calligrapher h5, .stacks_in_411446Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411446targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411446Calligrapher a:link{			color: #0000E3 !important;			text-decoration: none !important;		}				.stacks_in_411446Calligrapher a:visited{			color: #0000E3 !important;		}				.stacks_in_411446Calligrapher a:active{			color: #0000E3 !important;		}				.stacks_in_411446Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_411446 {
	padding: 0px 30px 0px 30px;
}
/* -- Start Textalign Each css Template -- */
#stacks_in_411448 {
	text-align: justify !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_411448 {
		text-align: left !important;
	}
	
	#stacks_in_411448 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_411448 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_411448 {
		text-align: left !important;
	}
	
	#stacks_in_411448 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_411448 img {
		margin: 0 !important;
	}
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_411450 {
	height: 20px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411457Calligrapher{			font-size: 150% !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_411457Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411457Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411457Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411457Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411457Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411457Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411457Calligrapher h6, .stacks_in_411457Calligrapher h5, .stacks_in_411457Calligrapher h4, .stacks_in_411457Calligrapher h3, .stacks_in_411457Calligrapher h2, .stacks_in_411457Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411457Calligrapher, .stacks_in_411457Calligrapher h1, .stacks_in_411457Calligrapher h2, .stacks_in_411457Calligrapher h3, .stacks_in_411457Calligrapher h4, .stacks_in_411457Calligrapher h5, .stacks_in_411457Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411457targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411457Calligrapher a:link{			color: #0000E3 !important;			text-decoration: none !important;		}				.stacks_in_411457Calligrapher a:visited{			color: #0000E3 !important;		}				.stacks_in_411457Calligrapher a:active{			color: #0000E3 !important;		}				.stacks_in_411457Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_411459 {
	text-align: justify !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_411459 {
		text-align: left !important;
	}
	
	#stacks_in_411459 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_411459 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_411459 {
		text-align: left !important;
	}
	
	#stacks_in_411459 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_411459 img {
		margin: 0 !important;
	}
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_411461 {
	height: 20px;
}#stacks_in_411463>.s3_row {
	margin: 0 -19px;
}

#stacks_in_411463>.s3_row>.s3_column_left {
	width: 20.43%;
}

#stacks_in_411463>.s3_row>.s3_column_right {
	width: 79.570000%;
}




#stacks_in_411463>.s3_row>.s3_column {
	padding: 0 19px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_411463>.s3_row  {
		margin: -19px 0;
	}
	#stacks_in_411463>.s3_row>.s3_column {
		padding: 19px 0;
		width:100%;
	}


}






#stacks_in_411463 {
	padding: 0px 30px 0px 30px;
}
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_411525 {
	height: 20px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411465Calligrapher{			font-size: 150% !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_411465Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411465Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411465Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411465Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411465Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411465Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411465Calligrapher h6, .stacks_in_411465Calligrapher h5, .stacks_in_411465Calligrapher h4, .stacks_in_411465Calligrapher h3, .stacks_in_411465Calligrapher h2, .stacks_in_411465Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411465Calligrapher, .stacks_in_411465Calligrapher h1, .stacks_in_411465Calligrapher h2, .stacks_in_411465Calligrapher h3, .stacks_in_411465Calligrapher h4, .stacks_in_411465Calligrapher h5, .stacks_in_411465Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411465targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411465Calligrapher a:link{			color: #5D5D5D !important;			text-decoration: none !important;		}				.stacks_in_411465Calligrapher a:visited{			color: #5D5D5D !important;		}				.stacks_in_411465Calligrapher a:active{			color: #5D5D5D !important;		}				.stacks_in_411465Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_411466 {
	padding: 0px 0px 0px 2px;
}
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_411473 {
	height: 20px;
}#stacks_in_411478>.s3_row {
	margin: 0 -2px;
}

#stacks_in_411478>.s3_row>.s3_column_left {
	width: 20.43%;
}

#stacks_in_411478>.s3_row>.s3_column_right {
	width: 79.570000%;
}




#stacks_in_411478>.s3_row>.s3_column {
	padding: 0 2px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_411478>.s3_row  {
		margin: -2px 0;
	}
	#stacks_in_411478>.s3_row>.s3_column {
		padding: 2px 0;
		width:100%;
	}


}






#stacks_in_411478 {
	padding: 0px 10px 0px 10px;
}
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_411479 {
	height: 20px;
}.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_411797 {
	height: 20px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411480Calligrapher{			font-size: 150% !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_411480Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411480Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411480Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411480Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411480Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411480Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411480Calligrapher h6, .stacks_in_411480Calligrapher h5, .stacks_in_411480Calligrapher h4, .stacks_in_411480Calligrapher h3, .stacks_in_411480Calligrapher h2, .stacks_in_411480Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411480Calligrapher, .stacks_in_411480Calligrapher h1, .stacks_in_411480Calligrapher h2, .stacks_in_411480Calligrapher h3, .stacks_in_411480Calligrapher h4, .stacks_in_411480Calligrapher h5, .stacks_in_411480Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411480targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411480Calligrapher a:link{			color: #5D5D5D !important;			text-decoration: none !important;		}				.stacks_in_411480Calligrapher a:visited{			color: #5D5D5D !important;		}				.stacks_in_411480Calligrapher a:active{			color: #5D5D5D !important;		}				.stacks_in_411480Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_411481 {
	padding: 0px 0px 0px 2px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412072Calligrapher{			font-size: 200% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: italic !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_412072Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412072Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412072Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412072Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412072Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412072Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412072Calligrapher h6, .stacks_in_412072Calligrapher h5, .stacks_in_412072Calligrapher h4, .stacks_in_412072Calligrapher h3, .stacks_in_412072Calligrapher h2, .stacks_in_412072Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412072Calligrapher, .stacks_in_412072Calligrapher h1, .stacks_in_412072Calligrapher h2, .stacks_in_412072Calligrapher h3, .stacks_in_412072Calligrapher h4, .stacks_in_412072Calligrapher h5, .stacks_in_412072Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412072targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412072Calligrapher a:link{			color: #0000E3 !important;			text-decoration: none !important;		}				.stacks_in_412072Calligrapher a:visited{			color: #0000E3 !important;		}				.stacks_in_412072Calligrapher a:active{			color: #0000E3 !important;		}				.stacks_in_412072Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_412072 {
	padding: 0px 30px 0px 50px;
}
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412073 {
	height: 20px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_412074 {
	text-align: left !important;
}


#stacks_in_412074 img {
	margin: 0 !important;
}




@media only screen and (max-width: 768px) {
    #stacks_in_412074 {
		text-align: center !important;
	}
	
	#stacks_in_412074 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412074 {
		text-align: center !important;
	}
	
	#stacks_in_412074 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412079Calligrapher{			font-size: 200% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_412079Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412079Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412079Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412079Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412079Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412079Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412079Calligrapher h6, .stacks_in_412079Calligrapher h5, .stacks_in_412079Calligrapher h4, .stacks_in_412079Calligrapher h3, .stacks_in_412079Calligrapher h2, .stacks_in_412079Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412079Calligrapher, .stacks_in_412079Calligrapher h1, .stacks_in_412079Calligrapher h2, .stacks_in_412079Calligrapher h3, .stacks_in_412079Calligrapher h4, .stacks_in_412079Calligrapher h5, .stacks_in_412079Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412079targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412079Calligrapher a:link{			color: #0000E3 !important;			text-decoration: none !important;		}				.stacks_in_412079Calligrapher a:visited{			color: #0000E3 !important;		}				.stacks_in_412079Calligrapher a:active{			color: #0000E3 !important;		}				.stacks_in_412079Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412080 {
	height: 20px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_412081 {
	text-align: left !important;
}


#stacks_in_412081 img {
	margin: 0 !important;
}




@media only screen and (max-width: 768px) {
    #stacks_in_412081 {
		text-align: center !important;
	}
	
	#stacks_in_412081 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412081 {
		text-align: center !important;
	}
	
	#stacks_in_412081 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 60px;
}

#spacerStackstacks_in_411501 {
	height: 60px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412426Calligrapher{			font-size: 180% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_412426Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412426Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412426Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412426Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412426Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412426Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412426Calligrapher h6, .stacks_in_412426Calligrapher h5, .stacks_in_412426Calligrapher h4, .stacks_in_412426Calligrapher h3, .stacks_in_412426Calligrapher h2, .stacks_in_412426Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412426Calligrapher, .stacks_in_412426Calligrapher h1, .stacks_in_412426Calligrapher h2, .stacks_in_412426Calligrapher h3, .stacks_in_412426Calligrapher h4, .stacks_in_412426Calligrapher h5, .stacks_in_412426Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412426targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412426Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_412426Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_412426Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_412426Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_412427 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412427 {
		text-align: center !important;
	}
	
	#stacks_in_412427 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412427 {
		text-align: center !important;
	}
	
	#stacks_in_412427 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412430 {
	height: 20px;
}#stacks_in_412160>.s3_row {
	margin: 0 -10px;
}

#stacks_in_412160>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_412160>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_412160>.s3_row>.s3_column_right {
	width: 33.33%;
}

#stacks_in_412160>.s3_row>.s3_column {
	padding: 0 10px;
}








@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_412160>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_412160>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}




#stacks_in_412160 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding: 30px 0px 20px 30px;
}
.spacerStack {
	height: 50px;
}

#spacerStackstacks_in_413090 {
	height: 50px;
}.spacerStack {
	height: 15px;
}

#spacerStackstacks_in_412592 {
	height: 15px;
}.spacerStack {
	height: 15px;
}

#spacerStackstacks_in_412598 {
	height: 15px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412167Calligrapher{			font-size: 94% !important;			color: #D10019 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_412167Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412167Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412167Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412167Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412167Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412167Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412167Calligrapher h6, .stacks_in_412167Calligrapher h5, .stacks_in_412167Calligrapher h4, .stacks_in_412167Calligrapher h3, .stacks_in_412167Calligrapher h2, .stacks_in_412167Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_412167Calligrapher, .stacks_in_412167Calligrapher h1, .stacks_in_412167Calligrapher h2, .stacks_in_412167Calligrapher h3, .stacks_in_412167Calligrapher h4, .stacks_in_412167Calligrapher h5, .stacks_in_412167Calligrapher h6{	font-family: "MS Serif", "New York", sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412167targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412167Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_412167Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_412167Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_412167Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_412168 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412168 {
		text-align: center !important;
	}
	
	#stacks_in_412168 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412168 {
		text-align: center !important;
	}
	
	#stacks_in_412168 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 7px;
}

#spacerStackstacks_in_412162 {
	height: 7px;
}.spacerStack {
	height: 7px;
}

#spacerStackstacks_in_413091 {
	height: 7px;
}.spacerStack {
	height: 7px;
}

#spacerStackstacks_in_413092 {
	height: 7px;
}.spacerStack {
	height: 7px;
}

#spacerStackstacks_in_413093 {
	height: 7px;
}.spacerStack {
	height: 7px;
}

#spacerStackstacks_in_413094 {
	height: 7px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_413086Calligrapher{			font-size: 90% !important;			color: #000000 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_413086Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413086Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413086Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413086Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413086Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413086Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413086Calligrapher h6, .stacks_in_413086Calligrapher h5, .stacks_in_413086Calligrapher h4, .stacks_in_413086Calligrapher h3, .stacks_in_413086Calligrapher h2, .stacks_in_413086Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_413086Calligrapher, .stacks_in_413086Calligrapher h1, .stacks_in_413086Calligrapher h2, .stacks_in_413086Calligrapher h3, .stacks_in_413086Calligrapher h4, .stacks_in_413086Calligrapher h5, .stacks_in_413086Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_413086targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_413086Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_413086Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_413086Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_413086Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_413086 {
	padding: 0px 10px 0px 10px;
}
/* -- Start Textalign Each css Template -- */
#stacks_in_413087 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_413087 {
		text-align: center !important;
	}
	
	#stacks_in_413087 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_413087 {
		text-align: center !important;
	}
	
	#stacks_in_413087 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 15px;
}

#spacerStackstacks_in_412595 {
	height: 15px;
}.spacerStack {
	height: 4px;
}

#spacerStackstacks_in_412166 {
	height: 4px;
}#stacks_in_412179>.s3_row {
	margin: 0 -10px;
}

#stacks_in_412179>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_412179>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_412179>.s3_row>.s3_column_right {
	width: 33.33%;
}

#stacks_in_412179>.s3_row>.s3_column {
	padding: 0 10px;
}








@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_412179>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_412179>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}




#stacks_in_412179 {
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
}
.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_412180 {
	height: 40px;
}.spacerStack {
	height: 4px;
}

#spacerStackstacks_in_412184 {
	height: 4px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412185Calligrapher{			font-size: 94% !important;			color: #D10019 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_412185Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412185Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412185Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412185Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412185Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412185Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412185Calligrapher h6, .stacks_in_412185Calligrapher h5, .stacks_in_412185Calligrapher h4, .stacks_in_412185Calligrapher h3, .stacks_in_412185Calligrapher h2, .stacks_in_412185Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- */ .stacks_in_412185Calligrapher, .stacks_in_412185Calligrapher h1, .stacks_in_412185Calligrapher h2, .stacks_in_412185Calligrapher h3, .stacks_in_412185Calligrapher h4, .stacks_in_412185Calligrapher h5, .stacks_in_412185Calligrapher h6{	font-family: "MS Serif", "New York", sans-serif !important;}/* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412185targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412185Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_412185Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_412185Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_412185Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_412186 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412186 {
		text-align: center !important;
	}
	
	#stacks_in_412186 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412186 {
		text-align: center !important;
	}
	
	#stacks_in_412186 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 25px;
}

#spacerStackstacks_in_412601 {
	height: 25px;
}.spacerStack {
	height: 8px;
}

#spacerStackstacks_in_413098 {
	height: 8px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_413104Calligrapher{			font-size: 100% !important;			color: #0A56BE !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_413104Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413104Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413104Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413104Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413104Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413104Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413104Calligrapher h6, .stacks_in_413104Calligrapher h5, .stacks_in_413104Calligrapher h4, .stacks_in_413104Calligrapher h3, .stacks_in_413104Calligrapher h2, .stacks_in_413104Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_413104Calligrapher, .stacks_in_413104Calligrapher h1, .stacks_in_413104Calligrapher h2, .stacks_in_413104Calligrapher h3, .stacks_in_413104Calligrapher h4, .stacks_in_413104Calligrapher h5, .stacks_in_413104Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_413104targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_413104Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_413104Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_413104Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_413104Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_413104 {
	padding: 0px 10px 0px 10px;
}
/* -- Start Textalign Each css Template -- */
#stacks_in_413105 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_413105 {
		text-align: center !important;
	}
	
	#stacks_in_413105 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_413105 {
		text-align: center !important;
	}
	
	#stacks_in_413105 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_412202 {
	height: 40px;
}.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412496 {
	height: 20px;
}
#stacks_in_412612 {
	background-color: rgba(197, 234, 255, 0.55);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding: 0px 20px 0px 20px;
}
.spacerStack {
	height: 60px;
}

#spacerStackstacks_in_412613 {
	height: 60px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412616Calligrapher{			font-size: 280% !important;			color: #0A55BF !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_412616Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412616Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412616Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412616Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412616Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412616Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412616Calligrapher h6, .stacks_in_412616Calligrapher h5, .stacks_in_412616Calligrapher h4, .stacks_in_412616Calligrapher h3, .stacks_in_412616Calligrapher h2, .stacks_in_412616Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412616Calligrapher, .stacks_in_412616Calligrapher h1, .stacks_in_412616Calligrapher h2, .stacks_in_412616Calligrapher h3, .stacks_in_412616Calligrapher h4, .stacks_in_412616Calligrapher h5, .stacks_in_412616Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412616targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412616Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_412616Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_412616Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_412616Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_412617 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412617 {
		text-align: center !important;
	}
	
	#stacks_in_412617 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412617 {
		text-align: center !important;
	}
	
	#stacks_in_412617 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 10px;
}

#spacerStackstacks_in_412620 {
	height: 10px;
}#stacks_in_412621>.s3_row {
	margin: 0 -0px;
}

#stacks_in_412621>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_412621>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_412621>.s3_row>.s3_column_right {
	width: 33.33%;
}

#stacks_in_412621>.s3_row>.s3_column {
	padding: 0 0px;
}








@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_412621>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_412621>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



.spacerStack {
	height: 2px;
}

#spacerStackstacks_in_412627 {
	height: 2px;
}.spacerStack {
	height: 2px;
}

#spacerStackstacks_in_412625 {
	height: 2px;
}
#stacks_in_412625 {
	border: solid rgba(224, 0, 17, 1.00);
	border-width: 1px 0px 0px 0px;
	padding:  10px;
}

#stacks_out_412625 {
	width: 150px;
}
.spacerStack {
	height: 2px;
}

#spacerStackstacks_in_412623 {
	height: 2px;
}.spacerStack {
	height: 15px;
}

#spacerStackstacks_in_412629 {
	height: 15px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412630Calligrapher{			font-size: 220% !important;			color: #0A55BF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_412630Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412630Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412630Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412630Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412630Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412630Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412630Calligrapher h6, .stacks_in_412630Calligrapher h5, .stacks_in_412630Calligrapher h4, .stacks_in_412630Calligrapher h3, .stacks_in_412630Calligrapher h2, .stacks_in_412630Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412630Calligrapher, .stacks_in_412630Calligrapher h1, .stacks_in_412630Calligrapher h2, .stacks_in_412630Calligrapher h3, .stacks_in_412630Calligrapher h4, .stacks_in_412630Calligrapher h5, .stacks_in_412630Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412630targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412630Calligrapher a:link{			color: #0A55BF !important;			text-decoration: none !important;		}				.stacks_in_412630Calligrapher a:visited{			color: #0A55BF !important;		}				.stacks_in_412630Calligrapher a:active{			color: #0A55BF !important;		}				.stacks_in_412630Calligrapher a:hover{			color: #FB0009 !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_412630 {
	padding:  5px;
}
/* -- Start Textalign Each css Template -- */
#stacks_in_412631 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412631 {
		text-align: center !important;
	}
	
	#stacks_in_412631 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412631 {
		text-align: center !important;
	}
	
	#stacks_in_412631 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */
#stacks_in_412632 {
	font-size: 130%;
}
/* -- Start Textalign Each css Template -- */
#stacks_in_413026 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_413026 {
		text-align: center !important;
	}
	
	#stacks_in_413026 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_413026 {
		text-align: center !important;
	}
	
	#stacks_in_413026 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 50px;
}

#spacerStackstacks_in_412641 {
	height: 50px;
}#stacks_in_412642>.s3_row {
	margin: 0 -10px;
}

#stacks_in_412642>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_412642>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_412642>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_412642>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_412642>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}





/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412654Calligrapher{			font-size: 170% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.9em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_412654Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412654Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412654Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412654Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412654Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412654Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412654Calligrapher h6, .stacks_in_412654Calligrapher h5, .stacks_in_412654Calligrapher h4, .stacks_in_412654Calligrapher h3, .stacks_in_412654Calligrapher h2, .stacks_in_412654Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412654Calligrapher, .stacks_in_412654Calligrapher h1, .stacks_in_412654Calligrapher h2, .stacks_in_412654Calligrapher h3, .stacks_in_412654Calligrapher h4, .stacks_in_412654Calligrapher h5, .stacks_in_412654Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412654targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412654Calligrapher a:link{			color: #000000 !important;			text-decoration: none !important;		}				.stacks_in_412654Calligrapher a:visited{			color: #000000 !important;		}				.stacks_in_412654Calligrapher a:active{			color: #000000 !important;		}				.stacks_in_412654Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */
#stacks_in_412657 {
	font-size: 159%;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_413001Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.9em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_413001Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413001Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413001Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413001Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413001Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413001Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413001Calligrapher h6, .stacks_in_413001Calligrapher h5, .stacks_in_413001Calligrapher h4, .stacks_in_413001Calligrapher h3, .stacks_in_413001Calligrapher h2, .stacks_in_413001Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_413001Calligrapher, .stacks_in_413001Calligrapher h1, .stacks_in_413001Calligrapher h2, .stacks_in_413001Calligrapher h3, .stacks_in_413001Calligrapher h4, .stacks_in_413001Calligrapher h5, .stacks_in_413001Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_413001targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_413001Calligrapher a:link{			color: #000000 !important;			text-decoration: none !important;		}				.stacks_in_413001Calligrapher a:visited{			color: #000000 !important;		}				.stacks_in_413001Calligrapher a:active{			color: #000000 !important;		}				.stacks_in_413001Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 7px;
}

#spacerStackstacks_in_413005 {
	height: 7px;
}
#stacks_in_413007 {
	font-size: 159%;
}
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_413008 {
	height: 20px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412643Calligrapher{			font-size: 170% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.9em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_412643Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412643Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412643Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412643Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412643Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412643Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412643Calligrapher h6, .stacks_in_412643Calligrapher h5, .stacks_in_412643Calligrapher h4, .stacks_in_412643Calligrapher h3, .stacks_in_412643Calligrapher h2, .stacks_in_412643Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412643Calligrapher, .stacks_in_412643Calligrapher h1, .stacks_in_412643Calligrapher h2, .stacks_in_412643Calligrapher h3, .stacks_in_412643Calligrapher h4, .stacks_in_412643Calligrapher h5, .stacks_in_412643Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412643targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412643Calligrapher a:link{			color: #000000 !important;			text-decoration: none !important;		}				.stacks_in_412643Calligrapher a:visited{			color: #000000 !important;		}				.stacks_in_412643Calligrapher a:active{			color: #000000 !important;		}				.stacks_in_412643Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */
#stacks_in_412646 {
	font-size: 159%;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_413009Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.9em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_413009Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413009Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413009Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413009Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413009Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413009Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413009Calligrapher h6, .stacks_in_413009Calligrapher h5, .stacks_in_413009Calligrapher h4, .stacks_in_413009Calligrapher h3, .stacks_in_413009Calligrapher h2, .stacks_in_413009Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_413009Calligrapher, .stacks_in_413009Calligrapher h1, .stacks_in_413009Calligrapher h2, .stacks_in_413009Calligrapher h3, .stacks_in_413009Calligrapher h4, .stacks_in_413009Calligrapher h5, .stacks_in_413009Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_413009targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_413009Calligrapher a:link{			color: #000000 !important;			text-decoration: none !important;		}				.stacks_in_413009Calligrapher a:visited{			color: #000000 !important;		}				.stacks_in_413009Calligrapher a:active{			color: #000000 !important;		}				.stacks_in_413009Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 7px;
}

#spacerStackstacks_in_413013 {
	height: 7px;
}
#stacks_in_413015 {
	font-size: 159%;
}
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_413016 {
	height: 20px;
}#stacks_in_412665>.s3_row {
	margin: 0 -10px;
}

#stacks_in_412665>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_412665>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_412665>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_412665>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_412665>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}






#stacks_in_412692 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 0px 1px 0px 0px;
	padding: 0px 10px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412694Calligrapher{			font-size: 140% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_412694Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412694Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412694Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412694Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412694Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412694Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412694Calligrapher h6, .stacks_in_412694Calligrapher h5, .stacks_in_412694Calligrapher h4, .stacks_in_412694Calligrapher h3, .stacks_in_412694Calligrapher h2, .stacks_in_412694Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412694Calligrapher, .stacks_in_412694Calligrapher h1, .stacks_in_412694Calligrapher h2, .stacks_in_412694Calligrapher h3, .stacks_in_412694Calligrapher h4, .stacks_in_412694Calligrapher h5, .stacks_in_412694Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412694targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412694Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_412694Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_412694Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_412694Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_412695 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412695 {
		text-align: center !important;
	}
	
	#stacks_in_412695 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412695 {
		text-align: center !important;
	}
	
	#stacks_in_412695 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412698Calligrapher{			font-size: 130% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_412698Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412698Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412698Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412698Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412698Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412698Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412698Calligrapher h6, .stacks_in_412698Calligrapher h5, .stacks_in_412698Calligrapher h4, .stacks_in_412698Calligrapher h3, .stacks_in_412698Calligrapher h2, .stacks_in_412698Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412698Calligrapher, .stacks_in_412698Calligrapher h1, .stacks_in_412698Calligrapher h2, .stacks_in_412698Calligrapher h3, .stacks_in_412698Calligrapher h4, .stacks_in_412698Calligrapher h5, .stacks_in_412698Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412698targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412698Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_412698Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_412698Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_412698Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_412699 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412699 {
		text-align: center !important;
	}
	
	#stacks_in_412699 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412699 {
		text-align: center !important;
	}
	
	#stacks_in_412699 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412702 {
	height: 20px;
}.spacerStack {
	height: 20px;
}

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


#stacks_in_412712 img {
	margin: 0 !important;
}




@media only screen and (max-width: 768px) {
    #stacks_in_412712 {
		text-align: left !important;
	}
	
	#stacks_in_412712 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412712 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412712 {
		text-align: left !important;
	}
	
	#stacks_in_412712 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412712 img {
		margin: 0 !important;
	}
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 15px;
}

#spacerStackstacks_in_412798 {
	height: 15px;
}.spacerStack {
	height: 7px;
}

#spacerStackstacks_in_412999 {
	height: 7px;
}
#stacks_in_412985 {
	background-color: rgba(239, 239, 239, 1.00);
	border: solid rgba(251, 0, 9, 1.00);
	border-width: 2px 2px 2px 2px;
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding: 40px 14px 44px 14px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412993Calligrapher{			font-size: 180% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.7em !important;			font-variant: normal !important;			letter-spacing: -1px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_412993Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412993Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412993Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412993Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412993Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412993Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412993Calligrapher h6, .stacks_in_412993Calligrapher h5, .stacks_in_412993Calligrapher h4, .stacks_in_412993Calligrapher h3, .stacks_in_412993Calligrapher h2, .stacks_in_412993Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412993Calligrapher, .stacks_in_412993Calligrapher h1, .stacks_in_412993Calligrapher h2, .stacks_in_412993Calligrapher h3, .stacks_in_412993Calligrapher h4, .stacks_in_412993Calligrapher h5, .stacks_in_412993Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412993targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412993Calligrapher a:link{			color: #0000E3 !important;			text-decoration: none !important;		}				.stacks_in_412993Calligrapher a:visited{			color: #0000E3 !important;		}				.stacks_in_412993Calligrapher a:active{			color: #0000E3 !important;		}				.stacks_in_412993Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_412994 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412994 {
		text-align: center !important;
	}
	
	#stacks_in_412994 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412994 {
		text-align: center !important;
	}
	
	#stacks_in_412994 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 15px;
}

#spacerStackstacks_in_412998 {
	height: 15px;
}.spacerStack {
	height: 15px;
}

#spacerStackstacks_in_413019 {
	height: 15px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412715Calligrapher{			font-size: 170% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_412715Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412715Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412715Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412715Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412715Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412715Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412715Calligrapher h6, .stacks_in_412715Calligrapher h5, .stacks_in_412715Calligrapher h4, .stacks_in_412715Calligrapher h3, .stacks_in_412715Calligrapher h2, .stacks_in_412715Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412715Calligrapher, .stacks_in_412715Calligrapher h1, .stacks_in_412715Calligrapher h2, .stacks_in_412715Calligrapher h3, .stacks_in_412715Calligrapher h4, .stacks_in_412715Calligrapher h5, .stacks_in_412715Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412715targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412715Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_412715Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_412715Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_412715Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_412716 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412716 {
		text-align: center !important;
	}
	
	#stacks_in_412716 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412716 {
		text-align: center !important;
	}
	
	#stacks_in_412716 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 15px;
}

#spacerStackstacks_in_413000 {
	height: 15px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_413176Calligrapher{			font-size: 140% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_413176Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413176Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413176Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413176Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413176Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413176Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413176Calligrapher h6, .stacks_in_413176Calligrapher h5, .stacks_in_413176Calligrapher h4, .stacks_in_413176Calligrapher h3, .stacks_in_413176Calligrapher h2, .stacks_in_413176Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_413176Calligrapher, .stacks_in_413176Calligrapher h1, .stacks_in_413176Calligrapher h2, .stacks_in_413176Calligrapher h3, .stacks_in_413176Calligrapher h4, .stacks_in_413176Calligrapher h5, .stacks_in_413176Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_413176targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_413176Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_413176Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_413176Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_413176Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_413177 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_413177 {
		text-align: center !important;
	}
	
	#stacks_in_413177 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_413177 {
		text-align: center !important;
	}
	
	#stacks_in_413177 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_413181Calligrapher{			font-size: 130% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_413181Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413181Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413181Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413181Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413181Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413181Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413181Calligrapher h6, .stacks_in_413181Calligrapher h5, .stacks_in_413181Calligrapher h4, .stacks_in_413181Calligrapher h3, .stacks_in_413181Calligrapher h2, .stacks_in_413181Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_413181Calligrapher, .stacks_in_413181Calligrapher h1, .stacks_in_413181Calligrapher h2, .stacks_in_413181Calligrapher h3, .stacks_in_413181Calligrapher h4, .stacks_in_413181Calligrapher h5, .stacks_in_413181Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_413181targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_413181Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_413181Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_413181Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_413181Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_413182 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_413182 {
		text-align: center !important;
	}
	
	#stacks_in_413182 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_413182 {
		text-align: center !important;
	}
	
	#stacks_in_413182 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412746 {
	height: 20px;
}.spacerStack {
	height: 20px;
}

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


#stacks_in_412785 img {
	margin: 0 !important;
}




@media only screen and (max-width: 768px) {
    #stacks_in_412785 {
		text-align: left !important;
	}
	
	#stacks_in_412785 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412785 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412785 {
		text-align: center !important;
	}
	
	#stacks_in_412785 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_413175 {
	height: 20px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_412732 {
	text-align: left !important;
}


#stacks_in_412732 img {
	margin: 0 !important;
}




@media only screen and (max-width: 768px) {
    #stacks_in_412732 {
		text-align: left !important;
	}
	
	#stacks_in_412732 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412732 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412732 {
		text-align: center !important;
	}
	
	#stacks_in_412732 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412747 {
	height: 20px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_412736 {
	text-align: left !important;
}


#stacks_in_412736 img {
	margin: 0 !important;
}




@media only screen and (max-width: 768px) {
    #stacks_in_412736 {
		text-align: left !important;
	}
	
	#stacks_in_412736 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412736 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412736 {
		text-align: center !important;
	}
	
	#stacks_in_412736 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 10px;
}

#spacerStackstacks_in_412750 {
	height: 10px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412682Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_412682Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412682Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412682Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412682Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412682Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412682Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412682Calligrapher h6, .stacks_in_412682Calligrapher h5, .stacks_in_412682Calligrapher h4, .stacks_in_412682Calligrapher h3, .stacks_in_412682Calligrapher h2, .stacks_in_412682Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412682Calligrapher, .stacks_in_412682Calligrapher h1, .stacks_in_412682Calligrapher h2, .stacks_in_412682Calligrapher h3, .stacks_in_412682Calligrapher h4, .stacks_in_412682Calligrapher h5, .stacks_in_412682Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412682targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412682Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_412682Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_412682Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_412682Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_412682 {
	padding: 0px 20px 0px 20px;
}
/* -- Start Textalign Each css Template -- */
#stacks_in_412683 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412683 {
		text-align: center !important;
	}
	
	#stacks_in_412683 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412683 {
		text-align: center !important;
	}
	
	#stacks_in_412683 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 15px;
}

#spacerStackstacks_in_412686 {
	height: 15px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_413187Calligrapher{			font-size: 120% !important;			color: #0A56BE !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_413187Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413187Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413187Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413187Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413187Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413187Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413187Calligrapher h6, .stacks_in_413187Calligrapher h5, .stacks_in_413187Calligrapher h4, .stacks_in_413187Calligrapher h3, .stacks_in_413187Calligrapher h2, .stacks_in_413187Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_413187Calligrapher, .stacks_in_413187Calligrapher h1, .stacks_in_413187Calligrapher h2, .stacks_in_413187Calligrapher h3, .stacks_in_413187Calligrapher h4, .stacks_in_413187Calligrapher h5, .stacks_in_413187Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_413187targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_413187Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_413187Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_413187Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_413187Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_413188 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_413188 {
		text-align: center !important;
	}
	
	#stacks_in_413188 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_413188 {
		text-align: center !important;
	}
	
	#stacks_in_413188 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 15px;
}

#spacerStackstacks_in_413017 {
	height: 15px;
}#stacks_in_412722>.s3_row {
	margin: 0 -10px;
}

#stacks_in_412722>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_412722>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_412722>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_412722>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_412722>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}





#stacks_in_412725 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_412725 a,
#stacks_in_412725 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 56px;
  line-height: 56px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  

}


#stacks_in_412725 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_412725 a i,
#stacks_in_412725 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 56px;
  height: 56px;
  line-height: 56px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_412725 a,
  #stacks_in_412725 a:visited {
    background-color: rgba(3, 117, 216, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_412725 a:hover,
  #stacks_in_412725 a:active {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_412725 a i,
  #stacks_in_412725 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_412725 a:hover i,
  #stacks_in_412725 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }












  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_412725 a,
    #stacks_in_412725 a:visited {
      width: 100%;
    }
  }

  





#stacks_in_412725 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 0px 1px 0px 0px;
}
#stacks_in_413191 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_413191 a,
#stacks_in_413191 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 56px;
  line-height: 56px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  

}


#stacks_in_413191 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_413191 a i,
#stacks_in_413191 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 56px;
  height: 56px;
  line-height: 56px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_413191 a,
  #stacks_in_413191 a:visited {
    background-color: rgba(3, 117, 216, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_413191 a:hover,
  #stacks_in_413191 a:active {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_413191 a i,
  #stacks_in_413191 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_413191 a:hover i,
  #stacks_in_413191 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }












  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_413191 a,
    #stacks_in_413191 a:visited {
      width: 100%;
    }
  }

  




.spacerStack {
	height: 60px;
}

#spacerStackstacks_in_412727 {
	height: 60px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_413199Calligrapher{			font-size: 110% !important;			color: #0A55BF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.6em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_413199Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413199Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413199Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413199Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413199Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413199Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413199Calligrapher h6, .stacks_in_413199Calligrapher h5, .stacks_in_413199Calligrapher h4, .stacks_in_413199Calligrapher h3, .stacks_in_413199Calligrapher h2, .stacks_in_413199Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_413199Calligrapher, .stacks_in_413199Calligrapher h1, .stacks_in_413199Calligrapher h2, .stacks_in_413199Calligrapher h3, .stacks_in_413199Calligrapher h4, .stacks_in_413199Calligrapher h5, .stacks_in_413199Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_413199targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_413199Calligrapher a:link{			color: #0A55BF !important;			text-decoration: none !important;		}				.stacks_in_413199Calligrapher a:visited{			color: #0A55BF !important;		}				.stacks_in_413199Calligrapher a:active{			color: #0A55BF !important;		}				.stacks_in_413199Calligrapher a:hover{			color: #FB0009 !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_413199 {
	padding:  5px;
}
/* -- Start Textalign Each css Template -- */
#stacks_in_413200 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_413200 {
		text-align: center !important;
	}
	
	#stacks_in_413200 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_413200 {
		text-align: center !important;
	}
	
	#stacks_in_413200 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */
#stacks_in_413201 {
	font-size: 130%;
}
.spacerStack {
	height: 50px;
}

#spacerStackstacks_in_413205 {
	height: 50px;
}
#stacks_in_411952 {
	background-color: rgba(197, 234, 255, 0.55);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding: 0px 20px 0px 20px;
}
.spacerStack {
	height: 50px;
}

#spacerStackstacks_in_411953 {
	height: 50px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411954Calligrapher{			font-size: 220% !important;			color: #0A55BF !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_411954Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411954Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411954Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411954Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411954Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411954Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411954Calligrapher h6, .stacks_in_411954Calligrapher h5, .stacks_in_411954Calligrapher h4, .stacks_in_411954Calligrapher h3, .stacks_in_411954Calligrapher h2, .stacks_in_411954Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411954Calligrapher, .stacks_in_411954Calligrapher h1, .stacks_in_411954Calligrapher h2, .stacks_in_411954Calligrapher h3, .stacks_in_411954Calligrapher h4, .stacks_in_411954Calligrapher h5, .stacks_in_411954Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411954targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411954Calligrapher a:link{			color: #0A55BF !important;			text-decoration: none !important;		}				.stacks_in_411954Calligrapher a:visited{			color: #0A55BF !important;		}				.stacks_in_411954Calligrapher a:active{			color: #0A55BF !important;		}				.stacks_in_411954Calligrapher a:hover{			color: #FB0009 !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_411955 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_411955 {
		text-align: center !important;
	}
	
	#stacks_in_411955 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_411955 {
		text-align: center !important;
	}
	
	#stacks_in_411955 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */#stacks_in_411958>.s3_row {
	margin: 0 -0px;
}

#stacks_in_411958>.s3_row>.s3_column_left {
	width: 40.00%;
}

#stacks_in_411958>.s3_row>.s3_column_center {
	width: 20.000000%;
}

#stacks_in_411958>.s3_row>.s3_column_right {
	width: 40.00%;
}

#stacks_in_411958>.s3_row>.s3_column {
	padding: 0 0px;
}








@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_411958>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_411958>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



.spacerStack {
	height: 2px;
}

#spacerStackstacks_in_411964 {
	height: 2px;
}.spacerStack {
	height: 10px;
}

#spacerStackstacks_in_411962 {
	height: 10px;
}
#stacks_in_411962 {
	border: solid rgba(10, 86, 190, 1.00);
	border-width: 0px 0px 1px 0px;
}

#stacks_out_411962 {
	width: 150px;
}
.spacerStack {
	height: 2px;
}

#spacerStackstacks_in_411960 {
	height: 2px;
}.spacerStack {
	height: 50px;
}

#spacerStackstacks_in_411966 {
	height: 50px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411976Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.7em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_411976Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411976Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411976Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411976Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411976Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411976Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411976Calligrapher h6, .stacks_in_411976Calligrapher h5, .stacks_in_411976Calligrapher h4, .stacks_in_411976Calligrapher h3, .stacks_in_411976Calligrapher h2, .stacks_in_411976Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411976Calligrapher, .stacks_in_411976Calligrapher h1, .stacks_in_411976Calligrapher h2, .stacks_in_411976Calligrapher h3, .stacks_in_411976Calligrapher h4, .stacks_in_411976Calligrapher h5, .stacks_in_411976Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411976targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411976Calligrapher a:link{			color: #000000 !important;			text-decoration: none !important;		}				.stacks_in_411976Calligrapher a:visited{			color: #000000 !important;		}				.stacks_in_411976Calligrapher a:active{			color: #000000 !important;		}				.stacks_in_411976Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */
#stacks_in_411979 {
	font-size: 159%;
}

#stacks_in_413031 {
	font-size: 159%;
}
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_411980 {
	height: 20px;
}
#stacks_in_412007 {
	padding: 0px 10px 0px 0px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412009Calligrapher{			font-size: 130% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_412009Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412009Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412009Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412009Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412009Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412009Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412009Calligrapher h6, .stacks_in_412009Calligrapher h5, .stacks_in_412009Calligrapher h4, .stacks_in_412009Calligrapher h3, .stacks_in_412009Calligrapher h2, .stacks_in_412009Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412009Calligrapher, .stacks_in_412009Calligrapher h1, .stacks_in_412009Calligrapher h2, .stacks_in_412009Calligrapher h3, .stacks_in_412009Calligrapher h4, .stacks_in_412009Calligrapher h5, .stacks_in_412009Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412009targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412009Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_412009Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_412009Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_412009Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_412010 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412010 {
		text-align: center !important;
	}
	
	#stacks_in_412010 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412010 {
		text-align: center !important;
	}
	
	#stacks_in_412010 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */#stacks_in_412013 *,
#stacks_in_412013 *:before,
#stacks_in_412013 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
.spacerStack {
	height: 20px;
}

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


#stacks_in_412018 img {
	margin: 0 !important;
}




@media only screen and (max-width: 768px) {
    #stacks_in_412018 {
		text-align: left !important;
	}
	
	#stacks_in_412018 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412018 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412018 {
		text-align: left !important;
	}
	
	#stacks_in_412018 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412018 img {
		margin: 0 !important;
	}
	
	
	
}
/* -- End Textalign Each css Template -- *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412603Calligrapher{			font-size: 170% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_412603Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412603Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412603Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412603Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412603Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412603Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412603Calligrapher h6, .stacks_in_412603Calligrapher h5, .stacks_in_412603Calligrapher h4, .stacks_in_412603Calligrapher h3, .stacks_in_412603Calligrapher h2, .stacks_in_412603Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412603Calligrapher, .stacks_in_412603Calligrapher h1, .stacks_in_412603Calligrapher h2, .stacks_in_412603Calligrapher h3, .stacks_in_412603Calligrapher h4, .stacks_in_412603Calligrapher h5, .stacks_in_412603Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412603targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412603Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_412603Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_412603Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_412603Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_412605 {
	text-align: left !important;
}


#stacks_in_412605 img {
	margin: 0 !important;
}




@media only screen and (max-width: 768px) {
    #stacks_in_412605 {
		text-align: left !important;
	}
	
	#stacks_in_412605 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412605 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412605 {
		text-align: left !important;
	}
	
	#stacks_in_412605 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412605 img {
		margin: 0 !important;
	}
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 30px;
}

#spacerStackstacks_in_412021 {
	height: 30px;
}#stacks_in_413021 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_413021 a,
#stacks_in_413021 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 56px;
  line-height: 56px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  

}


#stacks_in_413021 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_413021 a i,
#stacks_in_413021 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 56px;
  height: 56px;
  line-height: 56px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_413021 a,
  #stacks_in_413021 a:visited {
    background-color: rgba(3, 117, 216, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_413021 a:hover,
  #stacks_in_413021 a:active {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_413021 a i,
  #stacks_in_413021 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_413021 a:hover i,
  #stacks_in_413021 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }












  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_413021 a,
    #stacks_in_413021 a:visited {
      width: 100%;
    }
  }

  





#stacks_in_413021 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 0px 1px 0px 0px;
}
.spacerStack {
	height: 30px;
}

#spacerStackstacks_in_412037 {
	height: 30px;
}.spacerStack {
	height: 30px;
}

#spacerStackstacks_in_412039 {
	height: 30px;
}.spacerStack {
	height: 10px;
}

#spacerStackstacks_in_412033 {
	height: 10px;
}
#stacks_in_412033 {
	border: solid rgba(10, 86, 190, 1.00);
	border-width: 0px 0px 1px 0px;
	padding: 0px 30px 0px 30px;
}
.spacerStack {
	height: 30px;
}

#spacerStackstacks_in_412038 {
	height: 30px;
}.spacerStack {
	height: 30px;
}

#spacerStackstacks_in_412040 {
	height: 30px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411968Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.7em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_411968Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411968Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411968Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411968Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411968Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411968Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411968Calligrapher h6, .stacks_in_411968Calligrapher h5, .stacks_in_411968Calligrapher h4, .stacks_in_411968Calligrapher h3, .stacks_in_411968Calligrapher h2, .stacks_in_411968Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411968Calligrapher, .stacks_in_411968Calligrapher h1, .stacks_in_411968Calligrapher h2, .stacks_in_411968Calligrapher h3, .stacks_in_411968Calligrapher h4, .stacks_in_411968Calligrapher h5, .stacks_in_411968Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411968targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411968Calligrapher a:link{			color: #000000 !important;			text-decoration: none !important;		}				.stacks_in_411968Calligrapher a:visited{			color: #000000 !important;		}				.stacks_in_411968Calligrapher a:active{			color: #000000 !important;		}				.stacks_in_411968Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */
#stacks_in_411971 {
	font-size: 159%;
}
.spacerStack {
	height: 20px;
}

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


#stacks_in_412763 img {
	margin: 0 !important;
}




@media only screen and (max-width: 768px) {
    #stacks_in_412763 {
		text-align: left !important;
	}
	
	#stacks_in_412763 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412763 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412763 {
		text-align: center !important;
	}
	
	#stacks_in_412763 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_413218 {
	height: 20px;
}.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412765 {
	height: 20px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_412766 {
	text-align: left !important;
}


#stacks_in_412766 img {
	margin: 0 !important;
}




@media only screen and (max-width: 768px) {
    #stacks_in_412766 {
		text-align: left !important;
	}
	
	#stacks_in_412766 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412766 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412766 {
		text-align: center !important;
	}
	
	#stacks_in_412766 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412773 {
	height: 20px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_413028 {
	text-align: left !important;
}


#stacks_in_413028 img {
	margin: 0 !important;
}




@media only screen and (max-width: 768px) {
    #stacks_in_413028 {
		text-align: left !important;
	}
	
	#stacks_in_413028 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_413028 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_413028 {
		text-align: center !important;
	}
	
	#stacks_in_413028 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412776 {
	height: 20px;
}.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412781 {
	height: 20px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412789Calligrapher{			font-size: 120% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_412789Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412789Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412789Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412789Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412789Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412789Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412789Calligrapher h6, .stacks_in_412789Calligrapher h5, .stacks_in_412789Calligrapher h4, .stacks_in_412789Calligrapher h3, .stacks_in_412789Calligrapher h2, .stacks_in_412789Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412789Calligrapher, .stacks_in_412789Calligrapher h1, .stacks_in_412789Calligrapher h2, .stacks_in_412789Calligrapher h3, .stacks_in_412789Calligrapher h4, .stacks_in_412789Calligrapher h5, .stacks_in_412789Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412789targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412789Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_412789Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_412789Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_412789Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_412792 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412792 {
		text-align: center !important;
	}
	
	#stacks_in_412792 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412792 {
		text-align: center !important;
	}
	
	#stacks_in_412792 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 30px;
}

#spacerStackstacks_in_412790 {
	height: 30px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412791Calligrapher{			font-size: 130% !important;			color: #0A56BE !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_412791Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412791Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412791Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412791Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412791Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412791Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412791Calligrapher h6, .stacks_in_412791Calligrapher h5, .stacks_in_412791Calligrapher h4, .stacks_in_412791Calligrapher h3, .stacks_in_412791Calligrapher h2, .stacks_in_412791Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412791Calligrapher, .stacks_in_412791Calligrapher h1, .stacks_in_412791Calligrapher h2, .stacks_in_412791Calligrapher h3, .stacks_in_412791Calligrapher h4, .stacks_in_412791Calligrapher h5, .stacks_in_412791Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412791targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412791Calligrapher a:link{			color: #124A7A !important;			text-decoration: underline !important;		}				.stacks_in_412791Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_412791Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_412791Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_412795 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412795 {
		text-align: center !important;
	}
	
	#stacks_in_412795 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412795 {
		text-align: center !important;
	}
	
	#stacks_in_412795 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 30px;
}

#spacerStackstacks_in_412005 {
	height: 30px;
}#stacks_in_412041 .flat_button_2_alignment {
  font-size: 18px;
  
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  
  text-align: center;
}


#stacks_in_412041 a,
#stacks_in_412041 a:visited {
  /* Button text alignment fix v2.0.1 */
  text-align: center;

  display: inline-block;
  
  border-radius: 4px;
  
  overflow: hidden;
  height: 56px;
  line-height: 56px;
  text-decoration: none;
    
    border-width: 0px;
    
  border-style: solid;
  border-color: rgba(0, 84, 123, 1.00);

  

}


#stacks_in_412041 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_412041 a i,
#stacks_in_412041 a:visited i {
  font-size: 20px;
  display: inline-block;
  text-align: center;
  width: 56px;
  height: 56px;
  line-height: 56px;

  
    float: left;
    
  

  

  
}







  /* Flat Color Mode */
  #stacks_in_412041 a,
  #stacks_in_412041 a:visited {
    background-color: rgba(3, 117, 216, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_412041 a:hover,
  #stacks_in_412041 a:active {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

  #stacks_in_412041 a i,
  #stacks_in_412041 a:visited i {
    background-color: rgba(2, 90, 165, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }

  #stacks_in_412041 a:hover i,
  #stacks_in_412041 a:active i {
    background-color: rgba(0, 71, 132, 1.00);
    color: rgba(255, 255, 255, 1.00);
  }












  /* Responsive Width Mode */
  @media (max-width: 47.9em) {
    #stacks_in_412041 a,
    #stacks_in_412041 a:visited {
      width: 100%;
    }
  }

  




.spacerStack {
	height: 50px;
}

#spacerStackstacks_in_412028 {
	height: 50px;
}.spacerStack {
	height: 60px;
}

#spacerStackstacks_in_412312 {
	height: 60px;
}.spacerStack {
	height: 60px;
}

#spacerStackstacks_in_413198 {
	height: 60px;
}
#stacks_in_413198 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 1px 0px 0px 0px;
}
.spacerStack {
	height: 20px;
}

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

#spacerStackstacks_in_412887 {
	height: 20px;
}.spacerStack {
	height: 2px;
}

#spacerStackstacks_in_412888 {
	height: 2px;
}
#stacks_in_412888 {
	border: solid rgba(224, 0, 17, 1.00);
	border-width: 1px 0px 0px 0px;
}

#stacks_out_412888 {
	width: 100px;
}
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412889 {
	height: 20px;
}.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412929 {
	height: 20px;
}.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412930 {
	height: 20px;
}#stacks_in_412895>.s3_row {
	margin: 0 -10px;
}

#stacks_in_412895>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_412895>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_412895>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_412895>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_412895>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}





.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412916 {
	height: 20px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412897Calligrapher{			font-size: 130% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_412897Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412897Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412897Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412897Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412897Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412897Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412897Calligrapher h6, .stacks_in_412897Calligrapher h5, .stacks_in_412897Calligrapher h4, .stacks_in_412897Calligrapher h3, .stacks_in_412897Calligrapher h2, .stacks_in_412897Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412897Calligrapher, .stacks_in_412897Calligrapher h1, .stacks_in_412897Calligrapher h2, .stacks_in_412897Calligrapher h3, .stacks_in_412897Calligrapher h4, .stacks_in_412897Calligrapher h5, .stacks_in_412897Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412897targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412897Calligrapher a:link{			color: #0000E3 !important;			text-decoration: none !important;		}				.stacks_in_412897Calligrapher a:visited{			color: #0000E3 !important;		}				.stacks_in_412897Calligrapher a:active{			color: #0000E3 !important;		}				.stacks_in_412897Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_412898 {
	text-align: justify !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412898 {
		text-align: left !important;
	}
	
	#stacks_in_412898 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412898 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412898 {
		text-align: center !important;
	}
	
	#stacks_in_412898 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412901 {
	height: 20px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412902Calligrapher{			font-size: 130% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_412902Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412902Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412902Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412902Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412902Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412902Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412902Calligrapher h6, .stacks_in_412902Calligrapher h5, .stacks_in_412902Calligrapher h4, .stacks_in_412902Calligrapher h3, .stacks_in_412902Calligrapher h2, .stacks_in_412902Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412902Calligrapher, .stacks_in_412902Calligrapher h1, .stacks_in_412902Calligrapher h2, .stacks_in_412902Calligrapher h3, .stacks_in_412902Calligrapher h4, .stacks_in_412902Calligrapher h5, .stacks_in_412902Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412902targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412902Calligrapher a:link{			color: #0000E3 !important;			text-decoration: none !important;		}				.stacks_in_412902Calligrapher a:visited{			color: #0000E3 !important;		}				.stacks_in_412902Calligrapher a:active{			color: #0000E3 !important;		}				.stacks_in_412902Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_412903 {
	text-align: justify !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412903 {
		text-align: left !important;
	}
	
	#stacks_in_412903 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_412903 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412903 {
		text-align: center !important;
	}
	
	#stacks_in_412903 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412906 {
	height: 20px;
}.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412907 {
	height: 20px;
}.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412908 {
	height: 20px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412909Calligrapher{			font-size: 180% !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_412909Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412909Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412909Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412909Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412909Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412909Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412909Calligrapher h6, .stacks_in_412909Calligrapher h5, .stacks_in_412909Calligrapher h4, .stacks_in_412909Calligrapher h3, .stacks_in_412909Calligrapher h2, .stacks_in_412909Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412909Calligrapher, .stacks_in_412909Calligrapher h1, .stacks_in_412909Calligrapher h2, .stacks_in_412909Calligrapher h3, .stacks_in_412909Calligrapher h4, .stacks_in_412909Calligrapher h5, .stacks_in_412909Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412909targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412909Calligrapher a:link{			color: #E20124 !important;			text-decoration: none !important;		}				.stacks_in_412909Calligrapher a:visited{			color: #E20124 !important;		}				.stacks_in_412909Calligrapher a:active{			color: #E20124 !important;		}				.stacks_in_412909Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */@font-face{font-family:"Ionicons";src:url("ionicons/ionicons.eot?v=4.5.9-1");src:url("ionicons/ionicons.eot?v=4.5.9-1#iefix") format("embedded-opentype"),url("ionicons/ionicons.woff2?v=4.5.9-1") format("woff2"),url("ionicons/ionicons.woff?v=4.5.9-1") format("woff"),url("ionicons/ionicons.ttf?v=4.5.9-1") format("truetype"),url("ionicons/ionicons.svg?v=4.5.9-1#Ionicons") format("svg");font-weight:normal;font-style:normal}
#stacks_in_412910_press.press-lite {
  box-sizing: border-box;
  position: relative;
  /*  */
  cursor: pointer;
  /*  */
  padding: 16px 24px;
  border-radius: 0px;
  text-decoration: none;
  display: inline-block;
  margin: 0;
  font-size: 18px;
  line-height: 18px;
  /*  */
  /*  */
  background-color: rgba(224, 0, 17, 1.00);
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  border-style: solid;
  border-width: 0px;
  border-color: rgba(0, 0, 0, 0.15);
}
#stacks_in_412910_press.press-lite:focus {outline:0;}
#stacks_in_412910_press_wrap {
  /*  */
  /*  */
  display: flex;
  justify-content: center;
  /*  */
  /*  */
  margin: 0px 0px 0px 0px;
}
#stacks_in_412910_press.press-lite {
  white-space: nowrap;
}
#stacks_in_412910_press.press-lite .press-lite-text span,
#stacks_in_412910_press.press-lite .press-lite-text:after {
  overflow: hidden;
  color: rgba(255, 255, 255, 1.00);
  /*  */
  font-weight: bold;
  /*  */
}
#stacks_in_412910_press.press-lite,
#stacks_in_412910_press.press-lite .press-lite-text,
#stacks_in_412910_press.press-lite .press-lite-text:after,
#stacks_in_412910_press.press-lite .press-lite-text > span,
#stacks_in_412910_press.press-lite .press-lite-icon i,
#stacks_in_412910_press.press-lite .press-lite-icon img,
#stacks_in_412910_press.press-lite .press-lite-icon svg,
#stacks_in_412910_press.press-lite .press-lite-icon svg path,
#stacks_in_412910_press.press-lite .press-lite-icon svg polyline,
#stacks_in_412910_press.press-lite .press-lite-icon:after {
    transition: all 200ms ease;
}
#stacks_in_412910_press.press-lite .press-lite-text {
  z-index: 1;
  position: relative;
}
#stacks_in_412910_press.press-lite .press-lite-icon i,
#stacks_in_412910_press.press-lite .press-lite-icon img {
  position: relative;
  color: rgba(255, 255, 255, 1.00);
  display: inline-block;
  /*  */
  margin-right: 8px;
  /*  */
  font-size: 18px;
  line-height: 18px;
  z-index: 1;
}
#stacks_in_412910_press.press-lite .press-lite-icon img {
  height: 18px;
  width: auto;
  vertical-align: top;
}
#stacks_in_412910_press.press-lite .press-lite-icon svg {
  display: inline-block;
  /*  */
  margin-right: 8px;
  /*  */
  height: 22.500000px;
  z-index: 1;
}
/*  */
#stacks_in_412910_press.press-lite .press-lite-icon.press-lite-icon-off svg {
  transform: translateX(5%);
}
#stacks_in_412910_press.press-lite .press-lite-icon svg path {
  fill: rgba(255, 255, 255, 1.00);
}
#stacks_in_412910_press.press-lite .press-lite-icon svg polyline {
  fill:none;
  stroke: rgba(255, 255, 255, 1.00);
  stroke-linecap:round;
  stroke-linejoin:round;
  stroke-width:48px;
}
#stacks_in_412910_press.press-lite:active,
#stacks_in_412910_press.press-lite:focus {
  transform: translate(0,0);
}
/*  */
#stacks_in_412910_press.press-lite .press-lite-icon {
  display: none;
}
/*  */
/*  */
#stacks_in_412910_press.press-lite:hover {
  background: rgba(226, 1, 36, 1.00);
}
/*  */
/*  */
/*  */
#stacks_in_412910_press.press-lite {
    padding: 0;
}
#stacks_in_412910_press.press-lite .press-lite-text {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding: 16px 24px 16px 16px;
}
#stacks_in_412910_press.press-lite .press-lite-icon i,
#stacks_in_412910_press.press-lite .press-lite-icon img,
#stacks_in_412910_press.press-lite .press-lite-icon svg {
    margin: 0;
}
#stacks_in_412910_press.press-lite .press-lite-icon {
    padding: 0px;
    display: grid;
    float:left;
    align-content: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    text-align: center;
}
#stacks_in_412910_press.press-lite .press-lite-icon:after {
  content: "";
  color: transparent;
  position: absolute;
  top: -0px;
  left: -0px;
  bottom: -0px;
  background: rgba(0, 0, 0, 0.15);
  border-radius: 0px 0px 0px 0px;
  width: 50px;
  height: 50px;
}
/*  */
/*  */
#stacks_in_412910_press.press-lite .press-lite-icon:after {
  border-radius: 0px;
}
#stacks_in_412910_press.press-lite:hover .press-lite-icon i,
#stacks_in_412910_press.press-lite:hover .press-lite-icon img,
#stacks_in_412910_press.press-lite:hover .press-lite-icon svg {
  transform: translateX(16px);
}
#stacks_in_412910_press.press-lite:hover .press-lite-icon:after {
  width: 100%;
}
/*  */
/*  */
/*  */
/*  */
/*  */
#stacks_in_412910_press.press-lite:active {
  box-shadow: inset 0px 0px 0px 300px rgba(0,0,0,0.1);
}
/*  */
#stacks_in_412910_press.press-lite .press-lite-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  display: grid;
}
#stacks_in_412910_press.press-lite .press-lite-line-t,
#stacks_in_412910_press.press-lite .press-lite-line-b {
  position: absolute;
  height: 1px;
  width: 0%;
  background: rgba(0, 0, 0, 1.00);
  transition: all 200ms ease;
}
#stacks_in_412910_press.press-lite .press-lite-line-l,
#stacks_in_412910_press.press-lite .press-lite-line-r {
  position: absolute;
  width: 1px;
  height: 0%;
  background: rgba(0, 0, 0, 1.00);
  transition: all 200ms ease;
}
#stacks_in_412910_press.press-lite .press-lite-line-t {
  top: 0;
}
#stacks_in_412910_press.press-lite .press-lite-line-b {
  bottom: 0;
  width: 100%;
}
#stacks_in_412910_press.press-lite .press-lite-line-l {
  left: 0;
}
#stacks_in_412910_press.press-lite .press-lite-line-r {
  right: 0;
}
/*  */
/*  */
/*  */
/*  */
#stacks_in_412910_press.press-lite:before {
  content: "";
  position: absolute;
  background: transparent;
  z-index: 0;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  box-shadow: 0px 0px 0px 0px rgba(10, 86, 190, 1.00);
  border-radius: 0px;
  opacity: 1;
}
#stacks_in_412910_press.press-lite:hover:before {
  box-shadow: 0px 0px 0px 20px rgba(10, 86, 190, 1.00);
  opacity: 0;
  transition: all 500ms linear;
}
/*  */
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412918 {
	height: 20px;
}.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_412920 {
	height: 40px;
}
#stacks_in_412920 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 0px 0px 1px 0px;
}

#stacks_in_412921 {
	padding: 0px 20px 0px 20px;
}
.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_412923 {
	height: 40px;
}.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412924 {
	height: 20px;
}
#stacks_in_412924 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 1px 0px 0px 0px;
}
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412926 {
	height: 20px;
}.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412928 {
	height: 20px;
}.spacerStack {
	height: 60px;
}

#spacerStackstacks_in_412927 {
	height: 60px;
}
#stacks_in_412314 {
	background-color: rgba(229, 230, 241, 1.00);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding: 40px 20px 20px 20px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412315Calligrapher{			font-size: 180% !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: center !important;		}				.stacks_in_412315Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412315Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412315Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412315Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412315Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412315Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412315Calligrapher h6, .stacks_in_412315Calligrapher h5, .stacks_in_412315Calligrapher h4, .stacks_in_412315Calligrapher h3, .stacks_in_412315Calligrapher h2, .stacks_in_412315Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412315Calligrapher, .stacks_in_412315Calligrapher h1, .stacks_in_412315Calligrapher h2, .stacks_in_412315Calligrapher h3, .stacks_in_412315Calligrapher h4, .stacks_in_412315Calligrapher h5, .stacks_in_412315Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412315targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412315Calligrapher a:link{			color: #5D5D5D !important;			text-decoration: none !important;		}				.stacks_in_412315Calligrapher a:visited{			color: #5D5D5D !important;		}				.stacks_in_412315Calligrapher a:active{			color: #5D5D5D !important;		}				.stacks_in_412315Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412319 {
	height: 20px;
}.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412320 {
	height: 20px;
}#stacks_in_412323>.s3_row {
	margin: 0 -10px;
}

#stacks_in_412323>.s3_row>.s3_column_left {
	width: 50.00%;
}

#stacks_in_412323>.s3_row>.s3_column_right {
	width: 50.000000%;
}




#stacks_in_412323>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_412323>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_412323>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}





/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412350Calligrapher{			font-size: 280% !important;			color: #0A55BF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_412350Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412350Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412350Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412350Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412350Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412350Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412350Calligrapher h6, .stacks_in_412350Calligrapher h5, .stacks_in_412350Calligrapher h4, .stacks_in_412350Calligrapher h3, .stacks_in_412350Calligrapher h2, .stacks_in_412350Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412350Calligrapher, .stacks_in_412350Calligrapher h1, .stacks_in_412350Calligrapher h2, .stacks_in_412350Calligrapher h3, .stacks_in_412350Calligrapher h4, .stacks_in_412350Calligrapher h5, .stacks_in_412350Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412350targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412350Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_412350Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_412350Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_412350Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_412351 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412351 {
		text-align: center !important;
	}
	
	#stacks_in_412351 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412351 {
		text-align: center !important;
	}
	
	#stacks_in_412351 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 10px;
}

#spacerStackstacks_in_412354 {
	height: 10px;
}#stacks_in_412355>.s3_row {
	margin: 0 -0px;
}

#stacks_in_412355>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_412355>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_412355>.s3_row>.s3_column_right {
	width: 33.33%;
}

#stacks_in_412355>.s3_row>.s3_column {
	padding: 0 0px;
}








@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_412355>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_412355>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



.spacerStack {
	height: 2px;
}

#spacerStackstacks_in_412361 {
	height: 2px;
}.spacerStack {
	height: 2px;
}

#spacerStackstacks_in_412359 {
	height: 2px;
}
#stacks_in_412359 {
	border: solid rgba(224, 0, 17, 1.00);
	border-width: 1px 0px 0px 0px;
	padding:  10px;
}

#stacks_out_412359 {
	width: 150px;
}
.spacerStack {
	height: 2px;
}

#spacerStackstacks_in_412357 {
	height: 2px;
}.spacerStack {
	height: 10px;
}

#spacerStackstacks_in_412363 {
	height: 10px;
}.spacerStack {
	height: 10px;
}

#spacerStackstacks_in_412366 {
	height: 10px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412367Calligrapher{			font-size: 150% !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: center !important;		}				.stacks_in_412367Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412367Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412367Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412367Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412367Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412367Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412367Calligrapher h6, .stacks_in_412367Calligrapher h5, .stacks_in_412367Calligrapher h4, .stacks_in_412367Calligrapher h3, .stacks_in_412367Calligrapher h2, .stacks_in_412367Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412367Calligrapher, .stacks_in_412367Calligrapher h1, .stacks_in_412367Calligrapher h2, .stacks_in_412367Calligrapher h3, .stacks_in_412367Calligrapher h4, .stacks_in_412367Calligrapher h5, .stacks_in_412367Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412367targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412367Calligrapher a:link{			color: #5D5D5D !important;			text-decoration: none !important;		}				.stacks_in_412367Calligrapher a:visited{			color: #5D5D5D !important;		}				.stacks_in_412367Calligrapher a:active{			color: #5D5D5D !important;		}				.stacks_in_412367Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412327Calligrapher{			font-size: 280% !important;			color: #0A55BF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_412327Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412327Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412327Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412327Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412327Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412327Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412327Calligrapher h6, .stacks_in_412327Calligrapher h5, .stacks_in_412327Calligrapher h4, .stacks_in_412327Calligrapher h3, .stacks_in_412327Calligrapher h2, .stacks_in_412327Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412327Calligrapher, .stacks_in_412327Calligrapher h1, .stacks_in_412327Calligrapher h2, .stacks_in_412327Calligrapher h3, .stacks_in_412327Calligrapher h4, .stacks_in_412327Calligrapher h5, .stacks_in_412327Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412327targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412327Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_412327Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_412327Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_412327Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_412328 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_412328 {
		text-align: center !important;
	}
	
	#stacks_in_412328 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_412328 {
		text-align: center !important;
	}
	
	#stacks_in_412328 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 10px;
}

#spacerStackstacks_in_412331 {
	height: 10px;
}#stacks_in_412332>.s3_row {
	margin: 0 -0px;
}

#stacks_in_412332>.s3_row>.s3_column_left {
	width: 33.33%;
}

#stacks_in_412332>.s3_row>.s3_column_center {
	width: 33.339996%;
}

#stacks_in_412332>.s3_row>.s3_column_right {
	width: 33.33%;
}

#stacks_in_412332>.s3_row>.s3_column {
	padding: 0 0px;
}








@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_412332>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_412332>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



.spacerStack {
	height: 2px;
}

#spacerStackstacks_in_412338 {
	height: 2px;
}.spacerStack {
	height: 2px;
}

#spacerStackstacks_in_412336 {
	height: 2px;
}
#stacks_in_412336 {
	border: solid rgba(224, 0, 17, 1.00);
	border-width: 1px 0px 0px 0px;
	padding:  10px;
}

#stacks_out_412336 {
	width: 150px;
}
.spacerStack {
	height: 2px;
}

#spacerStackstacks_in_412334 {
	height: 2px;
}.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412340 {
	height: 20px;
}.spacerStack {
	height: 30px;
}

#spacerStackstacks_in_412343 {
	height: 30px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_412344Calligrapher{			font-size: 150% !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: center !important;		}				.stacks_in_412344Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412344Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412344Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412344Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412344Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412344Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_412344Calligrapher h6, .stacks_in_412344Calligrapher h5, .stacks_in_412344Calligrapher h4, .stacks_in_412344Calligrapher h3, .stacks_in_412344Calligrapher h2, .stacks_in_412344Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_412344Calligrapher, .stacks_in_412344Calligrapher h1, .stacks_in_412344Calligrapher h2, .stacks_in_412344Calligrapher h3, .stacks_in_412344Calligrapher h4, .stacks_in_412344Calligrapher h5, .stacks_in_412344Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_412344targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_412344Calligrapher a:link{			color: #5D5D5D !important;			text-decoration: none !important;		}				.stacks_in_412344Calligrapher a:visited{			color: #5D5D5D !important;		}				.stacks_in_412344Calligrapher a:active{			color: #5D5D5D !important;		}				.stacks_in_412344Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_412371 {
	height: 20px;
}.spacerStack {
	height: 60px;
}

#spacerStackstacks_in_412372 {
	height: 60px;
}.spacerStack {
	height: 30px;
}

#spacerStackstacks_in_412931 {
	height: 30px;
}/* SmoothScroll stack v1.2.0 [each.css] */



/* End of SmoothScroll stack */


#stacks_in_408648 {
	background-color: rgba(231, 234, 234, 1.00);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding: 50px 20px 20px 20px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_408649Calligrapher{			font-size: 180% !important;			color: #0A56BE !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_408649Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_408649Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_408649Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_408649Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_408649Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_408649Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_408649Calligrapher h6, .stacks_in_408649Calligrapher h5, .stacks_in_408649Calligrapher h4, .stacks_in_408649Calligrapher h3, .stacks_in_408649Calligrapher h2, .stacks_in_408649Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_408649Calligrapher, .stacks_in_408649Calligrapher h1, .stacks_in_408649Calligrapher h2, .stacks_in_408649Calligrapher h3, .stacks_in_408649Calligrapher h4, .stacks_in_408649Calligrapher h5, .stacks_in_408649Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_408649targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_408649Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_408649Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_408649Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_408649Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_410388Calligrapher{			font-size: 160% !important;			color: #0A56BE !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_410388Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_410388Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_410388Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_410388Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_410388Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_410388Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_410388Calligrapher h6, .stacks_in_410388Calligrapher h5, .stacks_in_410388Calligrapher h4, .stacks_in_410388Calligrapher h3, .stacks_in_410388Calligrapher h2, .stacks_in_410388Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_410388Calligrapher, .stacks_in_410388Calligrapher h1, .stacks_in_410388Calligrapher h2, .stacks_in_410388Calligrapher h3, .stacks_in_410388Calligrapher h4, .stacks_in_410388Calligrapher h5, .stacks_in_410388Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_410388targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_410388Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_410388Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_410388Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_410388Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_410392 {
	height: 20px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_408654Calligrapher{			font-size: 150% !important;			color: #000000 !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_408654Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_408654Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_408654Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_408654Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_408654Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_408654Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_408654Calligrapher h6, .stacks_in_408654Calligrapher h5, .stacks_in_408654Calligrapher h4, .stacks_in_408654Calligrapher h3, .stacks_in_408654Calligrapher h2, .stacks_in_408654Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_408654Calligrapher, .stacks_in_408654Calligrapher h1, .stacks_in_408654Calligrapher h2, .stacks_in_408654Calligrapher h3, .stacks_in_408654Calligrapher h4, .stacks_in_408654Calligrapher h5, .stacks_in_408654Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_408654targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_408654Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_408654Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_408654Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_408654Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_410393 {
	text-align: left !important;
}


#stacks_in_410393 img {
	margin: 0 !important;
}




@media only screen and (max-width: 768px) {
    #stacks_in_410393 {
		text-align: left !important;
	}
	
	#stacks_in_410393 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_410393 img {
		margin: 0 !important;
	}
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_410393 {
		text-align: center !important;
	}
	
	#stacks_in_410393 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */
#stacks_in_410393 {
	margin:  11px;
}
.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_408658 {
	height: 40px;
}#stacks_in_412552>.s3_row {
	margin: 0 -0px;
}

#stacks_in_412552>.s3_row>.s3_column_left {
	width: 20.00%;
}

#stacks_in_412552>.s3_row>.s3_column_center {
	width: 60.000000%;
}

#stacks_in_412552>.s3_row>.s3_column_right {
	width: 20.00%;
}

#stacks_in_412552>.s3_row>.s3_column {
	padding: 0 0px;
}








@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_412552>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_412552>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}



.spacerStack {
	height: 2px;
}

#spacerStackstacks_in_412578 {
	height: 2px;
}/* 1.8.1
- fixed a bug that could the form to not submit if "Exclude Incomplete Fields" was disabled
- replaced multiple select with custom mutli-select field
----- replaced option elements, they were not supported in safari
----- more of the feature is built out
- you can now add a delay before redirecting on succssful submition
- you can now disable radio and checkbox fields
- single quotes are escaped from select fields
*/
#stacks_in_413118.sf-styles,#stacks_in_413118.sf-styles * {box-sizing: border-box;}
#stacks_in_413118.sf-styles .age-field,
#stacks_in_413118.sf-styles .agree-to-terms-field {
  overflow: hidden;
  height: 0;
  margin: 0 !important;
}
#stacks_in_413118.sf-styles label.keepIt{text-align:left;display:inline-block;width:100%;padding-left:5px}
#stacks_in_413118.sf-styles select{color:#aaa}.php{display:none}
#stacks_in_413118.sf-styles .info{color:#00529B;background-color:#BDE5F8}
#stacks_in_413118.sf-styles .success{color:#4F8A10;background-color:rgba(47, 134, 56, 1.00)}
#stacks_in_413118.sf-styles .warning{color:#9F6000;background-color:#FEEFB3}
#stacks_in_413118.sf-styles .error{color:#D8000C;background-color:rgba(216, 0, 12, 1.00)}
#stacks_in_413118.sf-styles .sf-message {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
}
#stacks_in_413118.sf-styles .submitMessage, #stacks_in_413118.sf-styles .errorMessage {
  background-size: 40px 40px;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, .05) 25%, transparent 25%,
  transparent 50%, rgba(255, 255, 255, .05) 50%, rgba(255, 255, 255, .05) 75%,
  transparent 75%, transparent);
  width: 100%;
  border: 1px solid;
  color: #fff !important;
  padding: 10px 15px;
  border-radius:3px;
  margin-right: 28px;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  z-index: 99;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.3), 0px 8px 16px rgba(0,0,0,0.2);
  animation: sf-message-in-out 5s ease-in-out forwards;
  cursor: pointer;
}
@keyframes sf-message-in-out {
  0% { transform: translateY(0%); opacity: 0 }
  5% { transform: translateY(-50%); opacity: 1 }
  95% { transform: translateY(-50%); opacity: 1}
  100% { transform: translateY(0%); opacity: 0}
}
#stacks_in_413118.sf-styles.sf-no-help-text .submitMessage  {
  margin-right: 0px;
}
#stacks_in_413118.sf-styles.sf-no-help-text .sf-help-column {
  display: none;
}
#stacks_in_413118.sf-styles .sf-help-column {
  transform: none !important;
}
#stacks_in_413118.sf-styles .info {
  background-color: #61b832;
  border-color: #3b8eb5;
}
#stacks_in_413118.sf-styles .error, #stacks_in_413118.sf-styles .errorMessage {
  background-color: rgba(216, 0, 12, 1.00);
  border-color: rgba(0,0,0,0.25);
}
#stacks_in_413118.sf-styles .warning {
  background-color: #eaaf51;
  border-color: #d99a36;
}
#stacks_in_413118.sf-styles .success {
  background-color:rgba(47, 134, 56, 1.00);
  border-color: rgba(0,0,0,0.25);
  padding: 10px 15px 5px 15px;
}
#stacks_in_413118.sf-styles .submitMessage h3 {
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
  font-weight: bold;
}
#stacks_in_413118.sf-styles .submitMessage h3:not(:last-child) {
  margin: 0 0 5px 0 !important;
}
#stacks_in_413118.sf-styles .submitMessage h3:last-child {
  margin: 0 !important;
}
#stacks_in_413118.sf-styles .submitMessage p {
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  color: #fff;
}
#g-captcha {
    position: absolute;
    pointer-events: none;
    left: 0;
    width: 50px;
    bottom: 0;
    opacity: 0;
}
#stacks_in_413118.sf-styles .g-recaptcha {
  min-width: 0;
  margin: 0;
}
/* ---------------------------------------- */
#stacks_in_413118.sf-styles form {
  background: rgba(180, 181, 181, 0.13);
  padding: 16px 32px;
  border-radius: 2px;
  margin: 0px auto;
  border: 0px solid rgba(243, 243, 243, 1.00);
  display: inline-block;
  max-width: 100%;
  
}
#stacks_in_413118.sf-styles form .note {
  display: block;
  font-size: 75%;
  line-height: 1.2;
  color: rgba(0, 0, 0, 0.80);
  margin: 0px 8px;
  opacity: .75;
}
#stacks_in_413118.sf-styles form .note p {
  margin: 0;
}
#stacks_in_413118.sf-styles .controls {
  position: relative;
  margin-bottom: 16px;
  width: 500px;
  max-width: 100%;
  display: grid;
  grid-template-columns: 80px 1fr 20px;
  align-items: center;
  align-content: flex-start;
  grid-gap: 4px 8px;
}
#stacks_in_413118.sf-styles .controls.sf-radio {
  margin-bottom: 0px;
}
#stacks_in_413118.sf-styles .controls.sf-radio + .controls:not(.sf-radio) {
  margin-top: 16px;
}
#stacks_in_413118.sf-styles .sf-radio-group .controls.sf-button-group.hidden,
#stacks_in_413118.sf-styles .controls.hidden {
  display: none !important;
  pointer-events: none;
}
#stacks_in_413118.sf-styles .controls.sf-disabled.sf-input {
  cursor: not-allowed;
}
#stacks_in_413118.sf-styles .controls.sf-disabled.sf-checkbox label, #stacks_in_413118.sf-styles .controls.sf-disabled.sf-checkbox input,
#stacks_in_413118.sf-styles .controls.sf-disabled.sf-input label, #stacks_in_413118.sf-styles .controls.sf-disabled.sf-input input {
  opacity: .5;
  pointer-events: none;
}
#stacks_in_413118.sf-styles.sf-no-help-text .controls {
  grid-template-columns: 80px 1fr;
}
#stacks_in_413118.sf-styles .deluxe-columns > div {
  min-width: 0;
}
#stacks_in_413118.sf-styles .form-group > div:nth-child(2) {
  margin-top: 16px;
}
#stacks_in_413118.sf-styles .controls.sf-checkbox {
  grid-template-columns: 80px 22px 1fr 20px;
}
#stacks_in_413118.sf-styles.sf-no-help-text .controls.sf-checkbox  {
  grid-template-columns: 80px 22px 1fr;
}
#stacks_in_413118.sf-styles .controls.sf-checkbox label {
  cursor: pointer;
}
#stacks_in_413118.sf-styles .controls.sf-submit {
  grid-template-columns: 80px min-content 20px;
  grid-gap: 0px 8px;
}
#stacks_in_413118.sf-styles .controls.sf-submit .sf-message:empty {
  display: none;
}
#stacks_in_413118.sf-styles.sf-no-help-text .controls.sf-submit  {
  grid-template-columns: 80px min-content;
}
#stacks_in_413118.sf-styles .controls.sf-file {
  grid-template-columns: 80px 1fr min-content 20px;
}
#stacks_in_413118.sf-styles.sf-no-help-text .controls.sf-file  {
  grid-template-columns: 80px 1fr min-content;
}
#stacks_in_413118.sf-styles .hiddenFormSubmit {
  display: none;
}
#stacks_in_413118.sf-styles .steps .step .controls label,
#stacks_in_413118.sf-styles .controls label {
  font-size: 16px;
  line-height: 1;
}
#stacks_in_413118.sf-styles .controls label {
  color:  rgba(0, 0, 0, 0.80);
  margin: 0;
}
#stacks_in_413118.sf-styles .controls label img {
  display: inline;
}
#stacks_in_413118.sf-styles .controls:not(.sf-checkbox) label {
  pointer-events: none;
}
#stacks_in_413118.sf-styles .controls .field-icon {
  position: absolute;
  right: 8px;
  top: 50%;
  fill:  rgba(0, 0, 0, 0.65);
  margin: 0;
  width: 16px;
  height: 16px;
  pointer-events: none;
  transform: translate(0,-50%);
}
#stacks_in_413118.sf-styles .sf-multi-select .field-icon {
  opacity: 0;
}
#stacks_in_413118.sf-styles .controls {
  font-size: 16px;
}
#stacks_in_413118.sf-styles form .controls .step-input-wrap {
  position: relative;
}
#stacks_in_413118.sf-styles .controls input,
#stacks_in_413118.sf-styles .controls > button,
#stacks_in_413118.sf-styles .controls select,
#stacks_in_413118.sf-styles .controls select + .sf-multi-select-mobile,
#stacks_in_413118.sf-styles .controls .fileUpload,
#stacks_in_413118.sf-styles .controls .fileUpload span {
  font-size: 16px;
  line-height: 16px;
  height: 34px;
  color:  rgba(0, 0, 0, 0.65);
}
#stacks_in_413118.sf-styles .controls select + .sf-multi-select-mobile {
  height: auto;
}
#stacks_in_413118.sf-styles .controls input::-webkit-calendar-picker-indicator {
  opacity: 0;
}
#stacks_in_413118.sf-styles .controls input:focus,
#stacks_in_413118.sf-styles .controls select:focus,
#stacks_in_413118.sf-styles .controls textarea:focus,
#stacks_in_413118.sf-styles .controls button:focus {
    outline: none;
}
#stacks_in_413118.sf-styles .controls.sf-checkbox label {
  font-size: 16px;
  line-height: 16px;
}
#stacks_in_413118.sf-styles .controls textarea {
  font-size: 16px;
  line-height: 16px;
  color:  rgba(0, 0, 0, 0.65);
}
#stacks_in_413118.sf-styles .controls select.is-placeholder option,
#stacks_in_413118.sf-styles .controls select.is-placeholder + .sf-multi-select-mobile .sf-option {
  color:  rgba(0, 0, 0, 0.65);
}
#stacks_in_413118.sf-styles .controls input::placeholder,
#stacks_in_413118.sf-styles .controls textarea::placeholder,
#stacks_in_413118.sf-styles .controls select.is-placeholder option[disabled] {
  
  color: rgba(0, 0, 0, 0.35);
  color: #000000;
  
  opacity: 1;
}
#stacks_in_413118.sf-placeholder .controls input::placeholder,
#stacks_in_413118.sf-placeholder .controls textarea::placeholder,
#stacks_in_413118.sf-placeholder .controls select:invalid,
#stacks_in_413118.sf-classic .controls input::placeholder,
#stacks_in_413118.sf-classic .controls textarea::placeholder,
#stacks_in_413118.sf-classic .controls select.is-placeholder {
  color: transparent;
}
#stacks_in_413118.sf-styles .controls .sf-number-wrap,
#stacks_in_413118.sf-styles .controls input,
#stacks_in_413118.sf-styles .controls textarea,
#stacks_in_413118.sf-styles .controls > button,
#stacks_in_413118.sf-styles .controls select,
#stacks_in_413118.sf-styles .controls select + .sf-multi-select-mobile,
#stacks_in_413118.sf-styles .controls .fileUpload {
  padding: 8px 8px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  width: 100%;
  margin: 0px;
  color: rgba(0, 0, 0, 0.65);
  background-color: rgba(255, 255, 255, 1.00);
  border-radius: 2px;
  transition: all 0.3s;
}
#stacks_in_413118.sf-styles .controls select + .sf-multi-select-mobile {
  padding: 8px 0px;
}
#stacks_in_413118.sf-styles .controls .sf-number-wrap {
  padding: 0;
  color: rgba(0, 0, 0, 0.65);
}
#stacks_in_413118.sf-styles .controls input[type="number"] {
  border-color: transparent !important;
  background-color: transparent !important;
}
#stacks_in_413118.sf-styles .controls .sf-number-wrap {
  display: grid;
  grid-template-columns: 1fr min-content;
  align-items: center;
  grid-gap: 0px;
  position: relative;
}
#stacks_in_413118.sf-styles .controls input::-webkit-outer-spin-button,
#stacks_in_413118.sf-styles .controls input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
#stacks_in_413118.sf-styles .controls input[type=number] {
  -moz-appearance: textfield;
}
#stacks_in_413118.sf-styles .quantity-nav {
  height: 24px;
  display: grid;
  grid-gap: 2px;
  margin-left: 8px;
  margin-right: 4px;
  grid-template-columns: 1fr 1fr;
}
#stacks_in_413118.sf-styles .quantity-button {
  font-family: "helvetica-Neue",helvetica;
  font-weight: 400;
  position: relative;
  cursor: pointer;
  border: none;
  width: 24px;
  text-align: center;
  font-size: 14px;
  line-height: 22px;
  height: 24px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
  background-color: rgba(0,0,0,0.05);
}
#stacks_in_413118.sf-styles .quantity-button.quantity-up:before {
  content: "+";
}
#stacks_in_413118.sf-styles .quantity-button.quantity-down:before {
  content: "-";
}
#stacks_in_413118.sf-styles .quantity-button:active:after {
  content: "";
  position: absolute;
  left:0;top:0;right:0;bottom:0;
  background: rgba(0,0,0,0.05);
  pointer-events: none;
}
#stacks_in_413118.sf-styles .controls input[type="checkbox"],
#stacks_in_413118.sf-styles .controls input[type="radio"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
}
#stacks_in_413118.sf-styles .controls select,
#stacks_in_413118.sf-styles .controls select + .sf-multi-select-mobile {
  line-height: 20px;
  padding: 6px 8px;
}
#stacks_in_413118.sf-styles .controls select + .sf-multi-select-mobile {
  padding: 6px 0;
}
#stacks_in_413118.sf-styles .controls > button {
  position: relative;
  white-space: nowrap;
}
#stacks_in_413118.sf-styles .controls > button.sf-submitting {
  color: transparent;
}
#stacks_in_413118.sf-styles .controls > button svg {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  width: 16px;
  height: 16px;
  left: 50%;
  top: 50%;
  margin-left: -8px;
  margin-top: -8px;
}
#stacks_in_413118.sf-styles .controls > button.sf-submitting svg {
  opacity: 1;
  transition: opacity 300ms ease;
  animation: sf-loading 1000ms linear infinite;
  transform-origin: 8px 9px;
}
#stacks_in_413118.sf-styles .controls > button svg path {
  stroke: #fff;
}
#stacks_in_413118.sf-styles .controls > button,
#stacks_in_413118.sf-styles .controls .fileUpload {
  padding: 8px 16px;
}
@-webkit-keyframes sf-loading {
	0% {
		-webkit-transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
	}
}
@keyframes sf-loading {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
#stacks_in_413118.sf-styles .controls .fileUpload {
  border-color: transparent;
}
#stacks_in_413118.sf-styles form .hint,
#stacks_in_413118.sf-styles form .message {
  font-size: 14px;
  line-height: 1.3;
  position: relative;
  left: 0;
  color: #6f6f6f;
  padding: 12px;
  margin: 0px;
  background: -moz-linear-gradient(#ffffff, #f7f7f6 30%);
  background: -webkit-linear-gradient(#ffffff, #f7f7f6 30%);
  background: linear-gradient(#ffffff, #f7f7f6 30%);
  border-radius: 3px;
  vertical-align: top;
  pointer-events: none;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
}
#stacks_in_413118.sf-styles form .hint:before, #stacks_in_413118.sf-styles form .hint:after,
#stacks_in_413118.sf-styles form .message:before,
#stacks_in_413118.sf-styles form .message:after {
  content: "";
  display: block;
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 8px 8px 8px 8px;
  border-color: #f7f7f6 rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) rgba(255, 255, 255, 0);
  position: absolute;
  top: auto;
  left: 8px;
  margin-top: -8px;
  z-index: 2;
  bottom: -14px;
}
#stacks_in_413118.sf-styles form .hint:after,
#stacks_in_413118.sf-styles form .message:after {
  z-index: 1;
  bottom: -15px;
}
#stacks_in_413118.sf-styles form .hint {
  opacity: 0;
  position: absolute;
  left: calc(80px + 8px);
  right: 28px;
  bottom: 0%;
  top: auto;
}
#stacks_in_413118.sf-styles.sf-no-help-text form .hint {
  right: 0px;
}
#stacks_in_413118.sf-styles form .message ~ .hint {
  display: none;
}
#stacks_in_413118.sf-styles form .controls .sf-focused ~ .hint {
  transition: all 300ms ease;
  opacity: 1;
  bottom: calc(100% + 8px);
}
#stacks_in_413118.sf-styles form .help {
  height: 20px;
}
#stacks_in_413118.sf-styles form .help i {
  display: block;
  position: relative;
  height: 20px;
  width: 20px;
  line-height: 16px;
  font-size: 16px;
  padding-top: 1px;
  text-align: center;
  color: #a2a2a2;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.3);
  background: #f7f7f6 -moz-linear-gradient(#ffffff, #ededec);
  background: #f7f7f6 -webkit-linear-gradient(#ffffff, #ededec);
  background: #f7f7f6 linear-gradient(#ffffff, #ededec);
  cursor: help;
  font-style: normal;
}
#stacks_in_413118.sf-styles form .help i:hover {
  color: white;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
  border-color: #585854;
  background: #585854 -moz-linear-gradient(#6d6d67, #60605b);
  background: #585854 -webkit-linear-gradient(#6d6d67, #60605b);
  background: #585854 linear-gradient(#6d6d67, #60605b);
}
#stacks_in_413118.sf-styles form .help i:after {
  display: none;
  opacity: 0.97;
  content: "";
  height: 0;
  width: 0;
  border-style: solid;
  border-width: 0 9px 8px 9px;
  border-color: rgba(255, 255, 255, 0) rgba(255, 255, 255, 0) #6d6d67;
  position: absolute;
  bottom: -11px;
  left: 0px;
  z-index: 11;
}
#stacks_in_413118.sf-styles form .help > span {
  display: none;
  opacity: 0.97;
  position: absolute;
  right: -2px;
  left: calc(80px + 8px);
  top: calc(8px + 8px + 16px);
  z-index: 10;
  padding: 7px 10px 9px 10px;
  margin: 0;
  border-radius: 3px;
  background: -moz-linear-gradient(#6d6d67, #585854 20%);
  background: -webkit-linear-gradient(#6d6d67, #585854 20%);
  background: linear-gradient(#6d6d67, #585854 20%);
  color: white;
  border-color: #585854;
  text-align: left;
  line-height: 1.2;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  font-size: 16px;
  line-height: 1.4;
}
#stacks_in_413118.sf-styles form .help i:hover:after {
  display: block;
}
#stacks_in_413118.sf-styles form .help i:hover ~ span {
  display: block;
  white-space: normal;
}
#stacks_in_413118.sf-styles .controls.sf-checkbox .note,
#stacks_in_413118.sf-styles .controls.sf-file .note {
  grid-column: span 2;
}
#stacks_in_413118.sf-styles .controls.sf-textarea,
#stacks_in_413118.sf-styles .controls.sf-multi-select {
  align-items: flex-start;
}
#stacks_in_413118.sf-styles form .controls.sf-textarea .help,
#stacks_in_413118.sf-styles form .controls.sf-multi-select .help {
  margin-top: 8px;
}
/* left */
#stacks_in_413118.sf-left .controls {
  width: calc(80px + 500px);
}
#stacks_in_413118.sf-left .controls:not(.sf-checkbox) label {
  font-weight: 600;
}
#stacks_in_413118.sf-left .controls.sf-textarea label,
#stacks_in_413118.sf-left .controls.sf-multi-select label {
  margin-top: 8px;
}
@media all and (max-width: 500px) {
  #stacks_in_413118.sf-left .controls {
    width: 500px;
  }
  #stacks_in_413118.sf-left form .controls .sf-focused ~ .hint {
    margin-top: 16px;
  }
  #stacks_in_413118.sf-left form .controls:not(.sf-checkbox) .help > span {
    margin-top: 22px;
  }
  #stacks_in_413118.sf-left form .hint,
  #stacks_in_413118.sf-left form .help > span {
    left: 0px;
  }
  #stacks_in_413118.sf-left .controls.sf-textarea label,
    #stacks_in_413118.sf-left .controls.sf-multi-select label {
    margin-top: 0px;
  }
  #stacks_in_413118.sf-left .controls {
    grid-template-columns: 1fr 20px;
    grid-gap: 4px 8px;
  }
  #stacks_in_413118.sf-left.sf-no-help-text .controls  {
    grid-template-columns: 1fr;
  }
  #stacks_in_413118.sf-left .dropdown-menu {
    margin-left: 0px;
  }
  #stacks_in_413118.sf-left .controls.sf-checkbox {
    grid-template-columns: 22px 1fr 20px;
  }
  #stacks_in_413118.sf-left.sf-no-help-text .controls.sf-checkbox {
    grid-template-columns: 22px 1fr;
  }
  #stacks_in_413118.sf-left .controls.sf-submit {
    grid-template-columns: min-content 20px;
  }
  #stacks_in_413118.sf-left.sf-no-help-text .controls.sf-submit {
    grid-template-columns: min-content;
  }
  #stacks_in_413118.sf-left .controls .sf-empty-column {
    display: none;
  }
  #stacks_in_413118.sf-left .controls.sf-file {
    grid-template-columns: 1fr min-content 20px;
  }
  #stacks_in_413118.sf-left.sf-no-help-text .controls.sf-file {
    grid-template-columns: 1fr min-content;
  }
  #stacks_in_413118.sf-left .controls:not(.sf-checkbox) label {
    grid-column: 1/-1;
    padding: 0;
    font-weight: 600;
  }
}
/* end left */
/* top */
#stacks_in_413118.sf-top form .controls .sf-focused ~ .hint {
  margin-top: 16px;
}
#stacks_in_413118.sf-top .controls .note,
#stacks_in_413118.sf-top .controls.sf-checkbox .note,
#stacks_in_413118.sf-top .controls.sf-file .note {
  grid-column: 1/-1;
}
#stacks_in_413118.sf-top form .controls:not(.sf-checkbox) .help > span {
  margin-top: 22px;
}
#stacks_in_413118.sf-top form .hint,
#stacks_in_413118.sf-top form .help > span {
  left: 0px;
}
#stacks_in_413118.sf-top .controls.sf-textarea label,
#stacks_in_413118.sf-top .controls.sf-multi-select label {
  margin-top: 0px;
}
#stacks_in_413118.sf-top .controls {
  grid-template-columns: 1fr 20px;
  grid-gap: 4px 8px;
}
#stacks_in_413118.sf-top.sf-no-help-text .controls {
  grid-template-columns: 1fr;
}
#stacks_in_413118.sf-top .dropdown-menu {
  margin-left: 0px;
}
#stacks_in_413118.sf-top .controls.sf-checkbox {
  grid-template-columns: 22px 1fr 20px;
}
#stacks_in_413118.sf-top.sf-no-help-text .controls.sf-checkbox {
  grid-template-columns: 22px 1fr;
}
#stacks_in_413118.sf-top .controls.sf-submit {
  grid-template-columns: min-content 20px;
}
#stacks_in_413118.sf-top.sf-no-help-text .controls.sf-submit {
  grid-template-columns: min-content;
}
#stacks_in_413118.sf-top .controls .sf-empty-column {
  display: none;
}
#stacks_in_413118.sf-top .controls.sf-file {
  grid-template-columns: 1fr min-content 20px;
}
#stacks_in_413118.sf-top.sf-no-help-text .controls.sf-file {
  grid-template-columns: 1fr min-content;
}
#stacks_in_413118.sf-top .controls:not(.sf-checkbox) label {
  grid-column: 1/-1;
  padding: 0;
  font-weight: 600;
}
/* end top */
/* placeholder */
#stacks_in_413118.sf-placeholder form .hint,
#stacks_in_413118.sf-placeholder form .help > span {
  left: 0px;
}
#stacks_in_413118.sf-placeholder .controls .note,
#stacks_in_413118.sf-placeholder .controls.sf-checkbox .note,
#stacks_in_413118.sf-placeholder .controls.sf-file .note {
  grid-column: 1/-1;
}
#stacks_in_413118.sf-placeholder .controls {
  grid-template-columns: 1fr 20px;
  grid-gap: 4px 8px;
}
#stacks_in_413118.sf-placeholder.sf-no-help-text .controls {
  grid-template-columns: 1fr;
}
#stacks_in_413118.sf-placeholder .dropdown-menu {
  margin-left: 0px;
}
#stacks_in_413118.sf-placeholder .controls.sf-checkbox {
  grid-template-columns: 22px 1fr 20px;
}
#stacks_in_413118.sf-placeholder.sf-no-help-text .controls.sf-checkbox {
  grid-template-columns: 22px 1fr;
}
#stacks_in_413118.sf-placeholder .controls.sf-submit {
  grid-template-columns: min-content 20px;
}
#stacks_in_413118.sf-placeholder.sf-no-help-text .controls.sf-submit {
  grid-template-columns: min-content;
}
#stacks_in_413118.sf-placeholder .controls .sf-empty-column {
  display: none;
}
#stacks_in_413118.sf-placeholder .controls.sf-file {
  grid-template-columns: 1fr min-content 20px;
}
#stacks_in_413118.sf-placeholder.sf-no-help-text .controls.sf-file {
  grid-template-columns: 1fr min-content;
}
#stacks_in_413118.sf-placeholder .controls:not(.sf-checkbox) label {
  grid-column: 1/-1;
  padding: 0;
}
#stacks_in_413118.sf-placeholder .controls:not(.sf-checkbox) label {
  position: absolute;
  left: 4px;
  top: 8px;
  display: inline-block;
  padding: 0px 4px;
  transition: opacity 0.3s;
  pointer-events: none;
  opacity: 1;
  z-index: 1;
}
#stacks_in_413118.sf-placeholder .controls.sf-checkbox label {
  display: block;
}
#stacks_in_413118.sf-placeholder .controls:not(.sf-checkbox) label.sf-active {
  opacity: 0;
}
#stacks_in_413118.sf-placeholder .controls:not(.sf-checkbox) label:not(.sf-active) + div input {
  color: transparent;
}
/* end placeholder */
/* classic */
#stacks_in_413118.sf-classic form .controls .sf-focused ~ .hint {
  bottom: calc(100% + 16px);
}
#stacks_in_413118.sf-classic .controls .note,
#stacks_in_413118.sf-classic .controls.sf-checkbox .note,
#stacks_in_413118.sf-classic .controls.sf-file .note {
  grid-column: 1/-1;
}
#stacks_in_413118.sf-classic form .hint,
#stacks_in_413118.sf-classic form .help > span {
  left: 0px;
}
#stacks_in_413118.sf-classic form .controls:not(.sf-checkbox) .help > span {
  margin-top: 4px;
}
#stacks_in_413118.sf-classic .controls {
  grid-template-columns: 1fr 20px;
  grid-gap: 4px 8px;
}
#stacks_in_413118.sf-classic.sf-no-help-text .controls {
  grid-template-columns: 1fr;
}
#stacks_in_413118.sf-classic .dropdown-menu {
  margin-left: 0px;
}
#stacks_in_413118.sf-classic .controls.sf-checkbox {
  grid-template-columns: 22px 1fr 20px;
}
#stacks_in_413118.sf-classic.sf-no-help-text .controls.sf-checkbox {
  grid-template-columns: 22px 1fr;
}
#stacks_in_413118.sf-classic .controls.sf-submit {
  grid-template-columns: min-content 20px;
}
#stacks_in_413118.sf-classic.sf-no-help-text .controls.sf-submit {
  grid-template-columns: min-content;
}
#stacks_in_413118.sf-classic .controls .sf-empty-column {
  display: none;
}
#stacks_in_413118.sf-classic .controls.sf-file {
  grid-template-columns: 1fr min-content 20px;
}
#stacks_in_413118.sf-classic.sf-no-help-text .controls.sf-file {
  grid-template-columns: 1fr min-content;
}
#stacks_in_413118.sf-classic .controls:not(.sf-checkbox) label {
  grid-column: 1/-1;
  padding: 0;
}
#stacks_in_413118.sf-classic .controls:not(.sf-checkbox) label {
  position: absolute;
  left: 6px;
  top: 12px;
  border-radius: 2px;
  display: inline-block;
  padding: 0px 6px;
  background-color: rgba(255, 255, 255, 0);
  transition: color 0.3s, top 0.3s, background-color 0.8s;
  z-index: 1;
}
#stacks_in_413118.sf-classic .controls.sf-checkbox label {
  display: block;
}
#stacks_in_413118.sf-classic .controls:not(.sf-checkbox) label.sf-active {
  top: -8px;
  z-index: 2;
  background-color: rgba(180, 181, 181, 0.13);
}
#stacks_in_413118.sf-classic .controls:not(.sf-checkbox) label:not(.sf-active) + div input {
  color: transparent;
}
#stacks_in_413118.sf-classic .controls input,
#stacks_in_413118.sf-classic .controls > button,
#stacks_in_413118.sf-classic .controls select,
#stacks_in_413118.sf-classic .controls select + .sf-multi-select-mobile,
#stacks_in_413118.sf-classic .controls .fileUpload,
#stacks_in_413118.sf-classic .controls .fileUpload span {
  padding: 12px;
  height: 42px;
}
#stacks_in_413118.sf-classic .controls select + .sf-multi-select-mobile {
  padding: 12px 0;
}
#stacks_in_413118.sf-classic .controls select + .sf-multi-select-mobile {
  height: auto;
}
#stacks_in_413118.sf-classic .controls input[type="checkbox"],
#stacks_in_413118.sf-classic .controls input[type="radio"] {
  padding: 0;
}
#stacks_in_413118.sf-classic .controls textarea {
  padding: 12px;
}
#stacks_in_413118.sf-classic .controls > button {
  padding: 12px 24px;
}
/* end classic */
#stacks_in_413118.sf-styles .controls input,
#stacks_in_413118.sf-styles .controls textarea,
#stacks_in_413118.sf-styles .controls button,
#stacks_in_413118.sf-styles .controls select,
#stacks_in_413118.sf-styles .controls select + .sf-multi-select-mobile,
#stacks_in_413118.sf-styles .controls input[type="checkbox"]:after,
#stacks_in_413118.sf-styles .controls input[type="radio"]:after,
#stacks_in_413118.sf-styles input[type="checkbox"] + .sf-captcha > .g-recaptcha iframe {
  box-shadow: none;
}
#stacks_in_413118.sf-styles .controls input[type="number"].hasError + input,
#stacks_in_413118.sf-styles .controls input:not([type="radio"]):not([type="checkbox"]):not([type="number"]).hasError,
#stacks_in_413118.sf-styles .controls input.sf-upload + label,
#stacks_in_413118.sf-styles .controls textarea.hasError,
#stacks_in_413118.sf-styles .controls button.hasError,
#stacks_in_413118.sf-styles .controls select.hasError,
#stacks_in_413118.sf-styles .controls select.hasError + .sf-multi-select-mobile,
#stacks_in_413118.sf-styles input[type="checkbox"].hasError + .sf-captcha > .g-recaptcha iframe {
  box-shadow: inset 0 0 0 1000px rgba(249,217,73,0.33);
}
#stacks_in_413118.sf-styles .controls input[type="checkbox"]:not(:checked).hasError:after,
#stacks_in_413118.sf-styles .controls input[type="radio"]:not(:checked).hasError:after {
  box-shadow: none;
  background-color: rgba(249,217,73,0.33);
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  left: 1px;
  top: 1px;
  border-radius: 50%;
}
#stacks_in_413118.sf-styles .controls input[type="checkbox"]:not(:checked).hasError:after {
  border-radius: 0px;
}


#stacks_in_413118.sf-styles .controls select,
#stacks_in_413118.sf-styles .controls select + .sf-multi-select-mobile .sf-option,
#stacks_in_413118.sf-styles .controls.sf-date input {
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
}
#stacks_in_413118.sf-styles .controls textarea {
  white-space: pre-line;
  line-height: 1.2;
}
#stacks_in_413118.sf-styles .controls input[type=checkbox],
#stacks_in_413118.sf-styles .controls input[type=radio] {
  position: relative;
  left: 0px;
  width: 22px;
  height: 22px;
  margin: 4px 0px;
  background: transparent;
  border-color: transparent;
}
#stacks_in_413118.sf-styles .controls input[type=checkbox]:after,
#stacks_in_413118.sf-styles .controls input[type=radio]:before {
  cursor: pointer;
  content: " ";
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 2px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  line-height: 20px;
  text-align: center;
  position: relative;
  left: 0px;
  background-image: linear-gradient(rgba(255, 255, 255, 1.00), rgba(255, 255, 255, 1.00));
}
#stacks_in_413118.sf-styles .controls input[type=radio]:before {
  border-radius: 50%;
}
#stacks_in_413118.sf-styles .controls input[type=checkbox]:checked:after {
  content: "\2714";
  /*#000000*/
  
  color: rgba(31, 125, 193, 1.00);
  color: rgba(0, 0, 0, 0.65);
  
}
#stacks_in_413118.sf-styles .controls input[type=radio]:checked:after {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  left: 5px;
  top: 5px;
  border-radius: 50%;
  
  background-color: rgba(31, 125, 193, 1.00);
  background-color: rgba(0, 0, 0, 0.65);
  
}
#stacks_in_413118.sf-styles .controls .fileUpload,
#stacks_in_413118.sf-styles .controls button {
  overflow: hidden;
  background-color: rgba(31, 125, 193, 1.00);
  border: 1px solid rgba(31, 125, 193, 1.00);
  color: rgba(255, 255, 255, 1.00);
}
#stacks_in_413118.sf-styles .controls .fileUpload:active,
#stacks_in_413118.sf-styles .controls button:active {
  box-shadow: 0 0 0 2000px rgba(0,0,0,0.22) inset;
}
#stacks_in_413118.sf-styles .controls .fileUpload span {
  white-space: nowrap;
  color: rgba(255, 255, 255, 1.00);
}
#stacks_in_413118.sf-styles .controls .fileUpload input.upload {
  position: absolute;
  top: 0;
  bottom :0;
  right: 0;
  margin: 0;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  height: 100%;
}
#stacks_in_413118.sf-styles form,
#stacks_in_413118.sf-styles .controls input,
#stacks_in_413118.sf-styles .controls textarea {
  font-family: inherit;
}
/*  */
#stacks_in_413118.sf-styles form {
  font-family: inherit;
  padding: 16px 32px;
  border-radius: 2px;
  border-width: 0px;
  
  margin: 0px 0;
  
}
#stacks_in_413118.sf-styles .controls input,
#stacks_in_413118.sf-styles .controls textarea {
  font-family: inherit;
}

/*  */
/*  */
#stacks_in_413118.sf-styles .steps .step .controls:not(.sf-checkbox) label,
#stacks_in_413118.sf-styles .controls:not(.sf-checkbox) label {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  width: calc(100% - 28px);
  
  text-align: left;
  
  
  
}
#stacks_in_413118.sf-styles .sf-radio-group .controls.sf-button-group label {
  font-size: 14px;
  line-height: 1.1;
}
#stacks_in_413118.sf-styles .controls:not(.sf-checkbox) label img {
  height: 16px;
}
#stacks_in_413118.sf-styles.sf-no-help-text .controls:not(.sf-checkbox) label  {
  width: 100%;
}
@media all and (max-width: 500px) {
  #stacks_in_413118.sf-left form .controls .sf-focused ~ .hint {
    margin-top: 16px;
  }
  #stacks_in_413118.sf-left form .controls:not(.sf-checkbox) .help > span {
    margin-top: calc(16px + 8px);
  }
}
#stacks_in_413118.sf-top form .controls:not(.sf-checkbox) .help > span {
  margin-top: calc(16px + 8px);
}
#stacks_in_413118.sf-top form .controls .sf-focused ~ .hint,
#stacks_in_413118.sf-top .controls .fileUpload {
  margin-top: 16px;
}
#stacks_in_413118.sf-placeholder .form-group .controls:not(.sf-checkbox) label {
  width: auto;
  line-height: 16px;
}
#stacks_in_413118.sf-classic .form-group .controls:not(.sf-checkbox) label {
  width: auto;
  line-height: 16px;
}
/*  */
/*  */
#stacks_in_413118.sf-styles .sf-radio-group {
  margin-bottom: 16px;
}
#stacks_in_413118.sf-styles .controls {
  margin-bottom: 16px;
  margin-top: 0px;
  grid-gap: 4px 8px;
}
#stacks_in_413118.sf-styles .controls.sf-radio {
  margin-bottom: 0px;
}
#stacks_in_413118.sf-styles .controls.sf-radio + .controls:not(.sf-radio) {
  margin-top: 16px;
}
#stacks_in_413118.sf-styles .controls.sf-submit {
  margin-bottom: 0px;
}
#stacks_in_413118.sf-styles .controls.sf-captcha {
  margin-bottom: 16px;
}
#stacks_in_413118.sf-styles .form-group > div:nth-child(2) {
  margin-top: 16px;
}
#stacks_in_413118.sf-styles .controls {
  font-size: 16px;
}
#stacks_in_413118.sf-styles form .controls input,
#stacks_in_413118.sf-styles form .controls textarea,
#stacks_in_413118.sf-styles form .controls > button,
#stacks_in_413118.sf-styles form .controls select,
#stacks_in_413118.sf-styles form .controls select + .sf-multi-select-mobile,
#stacks_in_413118.sf-styles form .controls .fileUpload {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  border-radius: 2px;
  border-width: 1px;
  padding: 8px 8px;
}
#stacks_in_413118.sf-styles form .controls .step-input-wrap:before {
  border-radius: 2px;
  border-width: 1px;
}
#stacks_in_413118.sf-styles .controls input[type="checkbox"],
#stacks_in_413118.sf-styles .controls input[type="radio"] {
  padding: 0;
}
#stacks_in_413118.sf-styles form .controls select,
#stacks_in_413118.sf-styles form .controls select + .sf-multi-select-mobile {
  line-height: 20px;
  padding: 6px 8px;
}
#stacks_in_413118.sf-styles form .controls select + .sf-multi-select-mobile {
  padding: 6px 0;
}
#stacks_in_413118.sf-styles form .controls .step-input-wrap:before,
#stacks_in_413118.sf-styles form .controls input,
#stacks_in_413118.sf-styles form .controls textarea,
#stacks_in_413118.sf-styles form .controls select,
#stacks_in_413118.sf-styles form .controls select + .sf-multi-select-mobile,
#stacks_in_413118.sf-styles form .controls .fileUpload {
  
}
#stacks_in_413118.sf-styles form .controls .fileUpload span,
#stacks_in_413118.sf-styles form .controls.sf-checkbox label {
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
}
#stacks_in_413118.sf-styles form .submitMessage h3,
#stacks_in_413118.sf-styles form .submitMessage p {
  font-size: 16px;
}
#stacks_in_413118.sf-styles form .note {
  margin: 0px 8px;
}
#stacks_in_413118.sf-styles form .message,
#stacks_in_413118.sf-styles form .help > span {
  font-size: 16px;
  line-height: 1.4;
}
#stacks_in_413118.sf-styles .controls > button,
#stacks_in_413118.sf-styles .controls .fileUpload {
  padding: 8px 16px;
  border-width: 1px;
}
#stacks_in_413118.sf-styles .controls textarea {
  line-height: 1.2;
}
#stacks_in_413118.sf-styles form .controls input,
#stacks_in_413118.sf-styles form .controls > button,
#stacks_in_413118.sf-styles form .controls select,
#stacks_in_413118.sf-styles form .controls .fileUpload {
  height: calc(16px + 8px + 8px + 2px);
}
#stacks_in_413118.sf-styles form .help > span {
  top: 34.000000px;
}
#stacks_in_413118.sf-styles form .sf-textarea .help > span,
#stacks_in_413118.sf-styles form .sf-multi-select .help > span {
  top: 34px;
}
#stacks_in_413118.sf-styles form .controls .field-icon {
  width: 16px;
  height: 16px;
  right: 8px;
}
/*  */
#stacks_in_413118.sf-styles .controls:not(.sf-checkbox) label {
  line-height: 16px;
}
/*  */
#stacks_in_413118.sf-placeholder .controls:not(.sf-checkbox) label {
  line-height: 16px;
  top: 8px;
  left: calc(8px - 2px);
}
#stacks_in_413118.sf-classic .controls:not(.sf-checkbox) label {
  line-height: 16px;
  top: 8px;
  left: calc(8px - 4px);
}
/*  */
#stacks_in_413118.sf-styles .controls.sf-submit.sf-full-button-True {
  grid-template-columns: 1fr 20px;
}
#stacks_in_413118.sf-styles.sf-no-help-text .controls.sf-submit.sf-full-button-True {
  grid-template-columns: 1fr;
}
#stacks_in_413118.sf-left .controls.sf-submit.sf-full-button-True  {
  grid-template-columns: 80px 1fr 20px;
}
#stacks_in_413118.sf-left.sf-no-help-text .controls.sf-submit.sf-full-button-True {
  grid-template-columns: 80px 1fr;
}
#stacks_in_413118.sf-styles .controls select[multiple] {
  height: auto;
}
#stacks_in_413118.sf-styles .controls select[multiple] option,
#stacks_in_413118.sf-styles .controls select[multiple] + .sf-multi-select-mobile .sf-option {
  padding: 2px 0px;
}
#stacks_in_413118.sf-styles .controls select[multiple] + .sf-multi-select-mobile .sf-option {
  padding: 2px 8px;
}
#stacks_in_413118.sf-styles form .controls select + .sf-multi-select-mobile .sf-option.sf-msm-active {
  background: rgba(31, 125, 193, 1.00);
  color: rgba(255, 255, 255, 1.00);
}
#stacks_in_413118.sf-styles .form-group .controls select[multiple] option:empty[disabled],
#stacks_in_413118.sf-styles .form-group .controls.sf-multi-select svg {
  display: none;
}
#stacks_in_413118.sf-placeholder .form-group .controls.sf-multi-select label,
#stacks_in_413118.sf-classic .form-group .controls.sf-multi-select label {
  position: static;
}
#stacks_in_413118.sf-styles .sf-radio-group {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  grid-gap: 4px;
  margin-bottom: 16px;
}
#stacks_in_413118.sf-styles .sf-radio-group .controls.sf-button-group {
  flex: 0 0 auto;
  margin: 0 0 4px 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
  align-items: stretch;
  justify-content: center;
}
#stacks_in_413118.sf-styles .sf-radio-group .controls.sf-button-group.sf-help-text {
  grid-template-columns: 1fr 20px;
}
#stacks_in_413118.sf-styles form .controls.sf-button-group.sf-help-text .help > span {
  transform: translate(0,-50%);
  top: calc(50% + 52px);
}
#stacks_in_413118.sf-styles .sf-radio-group .controls input[type]:after,
#stacks_in_413118.sf-styles .sf-radio-group .controls input[type]:before,
#stacks_in_413118.sf-styles .sf-radio-group .controls input[type] {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: auto;
  height: auto;
  margin: 0;
  background: transparent;
  cursor: pointer;
}
#stacks_in_413118.sf-styles .sf-radio-group .controls input[type]:after,
#stacks_in_413118.sf-styles .sf-radio-group .controls input[type]:before {
  pointer-events: none;
}
#stacks_in_413118.sf-styles .sf-radio-group .controls input:checked:after {
  content: "";
  background: transparent;
  border: 2px solid rgba(31, 125, 193, 1.00);
}
#stacks_in_413118.sf-styles .sf-radio-group .controls input[type]:checked:after,
#stacks_in_413118.sf-styles .sf-radio-group .controls input[type]:before,
#stacks_in_413118 .step .sf-radio-group .controls input.hasError[type]:after {
  border-radius: 4px;
}
#stacks_in_413118.sf-styles .sf-radio-group .controls.sf-button-group label {
  display: grid;
  padding: 16px 8px;
  grid-template-columns: auto;
  grid-template-rows: min-content;
  justify-items: center;
  align-items: center;
  text-align: center;
  line-height: 1.1;
  font-size: 14px;
  z-index: 1;
  grid-gap: 8px;
  user-select: none;
}
#stacks_in_413118.sf-styles .sf-radio-group .controls.sf-button-group label > div img {
  display: block;
}
#stacks_in_413118.sf-styles .sf-radio-group .controls.sf-button-group label div:empty,
#stacks_in_413118.sf-styles .sf-radio-group .controls.sf-button-group label div.empty {
  display: none;
}
#stacks_in_413118.sf-styles .sf-radio-group .controls.sf-button-group .sf-button-wrap {
  position: relative;
  justify-content: center;
  align-items: center;
  display: flex;
}
/*!
* Datepicker for Bootstrap
*
* Copyright 2012 Stefan Petre
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
*/.clearfix{*zoom:1}.clearfix:before,.clearfix:after{display:table;content:"";line-height:0}.clearfix:after{clear:both}.hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}.bootstrap-datetimepicker-widget{top:0;left:0;width:250px;padding:4px;margin-top:1px;z-index:3000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.bootstrap-datetimepicker-widget:before{content:'';display:inline-block;border-left:7px solid transparent;border-right:7px solid transparent;border-bottom:7px solid #ccc;border-bottom-color:rgba(0,0,0,0.2);position:absolute;top:-7px;left:6px}.bootstrap-datetimepicker-widget:after{content:'';display:inline-block;border-left:6px solid transparent;border-right:6px solid transparent;border-bottom:6px solid #fff;position:absolute;top:-6px;left:7px}.bootstrap-datetimepicker-widget.pull-right:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.pull-right:after{left:auto;right:7px}.bootstrap-datetimepicker-widget>ul{list-style-type:none;margin:0}.bootstrap-datetimepicker-widget .timepicker-hour,.bootstrap-datetimepicker-widget .timepicker-minute,.bootstrap-datetimepicker-widget .timepicker-second{width:100%;font-weight:bold;font-size:1.2em}.bootstrap-datetimepicker-widget table[data-hour-format="12"] .separator{width:4px;padding:0;margin:0}.bootstrap-datetimepicker-widget .datepicker>div{display:none}.bootstrap-datetimepicker-widget .picker-switch{text-align:center}.bootstrap-datetimepicker-widget table{width:100%;margin:0}.bootstrap-datetimepicker-widget td,.bootstrap-datetimepicker-widget th{text-align:center;width:20px;height:20px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.bootstrap-datetimepicker-widget td.day:hover,.bootstrap-datetimepicker-widget td.hour:hover,.bootstrap-datetimepicker-widget td.minute:hover,.bootstrap-datetimepicker-widget td.second:hover{background:#eee;cursor:pointer}.bootstrap-datetimepicker-widget td.old,.bootstrap-datetimepicker-widget td.new{color:#999}.bootstrap-datetimepicker-widget td.active,.bootstrap-datetimepicker-widget td.active:hover{color:#fff;background-color:#006dcc;background-image:-moz-linear-gradient(top,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(top,#08c,#04c);background-image:-o-linear-gradient(top,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0044cc',GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#04c;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.bootstrap-datetimepicker-widget td.active:hover,.bootstrap-datetimepicker-widget td.active:hover:hover,.bootstrap-datetimepicker-widget td.active:active,.bootstrap-datetimepicker-widget td.active:hover:active,.bootstrap-datetimepicker-widget td.active.active,.bootstrap-datetimepicker-widget td.active:hover.active,.bootstrap-datetimepicker-widget td.active.disabled,.bootstrap-datetimepicker-widget td.active:hover.disabled,.bootstrap-datetimepicker-widget td.active[disabled],.bootstrap-datetimepicker-widget td.active:hover[disabled]{color:#fff;background-color:#04c;*background-color:#003bb3}.bootstrap-datetimepicker-widget td.active:active,.bootstrap-datetimepicker-widget td.active:hover:active,.bootstrap-datetimepicker-widget td.active.active,.bootstrap-datetimepicker-widget td.active:hover.active{background-color:#039 \9}.bootstrap-datetimepicker-widget td.disabled,.bootstrap-datetimepicker-widget td.disabled:hover{background:0;color:#999;cursor:not-allowed}.bootstrap-datetimepicker-widget td span{display:block;width:47px;height:54px;line-height:54px;float:left;margin:2px;cursor:pointer;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.bootstrap-datetimepicker-widget td span:hover{background:#eee}.bootstrap-datetimepicker-widget td span.active{color:#fff;background-color:#006dcc;background-image:-moz-linear-gradient(top,#08c,#04c);background-image:-webkit-gradient(linear,0 0,0 100%,from(#08c),to(#04c));background-image:-webkit-linear-gradient(top,#08c,#04c);background-image:-o-linear-gradient(top,#08c,#04c);background-image:linear-gradient(to bottom,#08c,#04c);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc',endColorstr='#ff0044cc',GradientType=0);border-color:#04c #04c #002a80;border-color:rgba(0,0,0,0.1) rgba(0,0,0,0.1) rgba(0,0,0,0.25);*background-color:#04c;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);color:#fff;text-shadow:0 -1px 0 rgba(0,0,0,0.25)}.bootstrap-datetimepicker-widget td span.active:hover,.bootstrap-datetimepicker-widget td span.active:active,.bootstrap-datetimepicker-widget td span.active.active,.bootstrap-datetimepicker-widget td span.active.disabled,.bootstrap-datetimepicker-widget td span.active[disabled]{color:#fff;background-color:#04c;*background-color:#003bb3}.bootstrap-datetimepicker-widget td span.active:active,.bootstrap-datetimepicker-widget td span.active.active{background-color:#039 \9}.bootstrap-datetimepicker-widget td span.old{color:#999}.bootstrap-datetimepicker-widget td span.disabled,.bootstrap-datetimepicker-widget td span.disabled:hover{background:0;color:#999;cursor:not-allowed}.bootstrap-datetimepicker-widget th.switch{width:145px}.bootstrap-datetimepicker-widget th.next,.bootstrap-datetimepicker-widget th.prev{font-size:21px}.bootstrap-datetimepicker-widget th.disabled,.bootstrap-datetimepicker-widget th.disabled:hover{background:0;color:#999;cursor:not-allowed}.bootstrap-datetimepicker-widget thead tr:first-child th{cursor:pointer}.bootstrap-datetimepicker-widget thead tr:first-child th:hover{background:#eee}.input-append.date .add-on i,.input-prepend.date .add-on i{display:block;cursor:pointer;width:16px;height:16px}.bootstrap-datetimepicker-widget.left-oriented:before{left:auto;right:6px}.bootstrap-datetimepicker-widget.left-oriented:after{left:auto;right:7px}
#stacks_in_413118.sf-styles .dropdown-menu {
  position: absolute;
  top: 100%;
  z-index: 1000;
  display: none;
  float: none;
  width: 500px;
  max-width: 100%;
  padding: 5px 0;
  list-style: none;
  background-color: #ffffff;
  color: #676767;
  border-radius: 3px;
  box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
  -webkit-background-clip: padding-box;
  -moz-background-clip: padding;
  background-clip: padding-box;
}
#stacks_in_413118.sf-styles .bootstrap-datetimepicker-widget:before,
#stacks_in_413118.sf-styles .bootstrap-datetimepicker-widget:after {
  display: none;
}
#stacks_in_413118.sf-styles .bootstrap-datetimepicker-widget ul {
  padding: 0px 8px;
}
#stacks_in_413118.sf-styles .bootstrap-datetimepicker-widget td [data-action="togglePicker"] span {
  display: block;
  width: auto;
  height: auto;
  line-height: 22px;
  float: none;
  margin: 0;
  padding: 8px;
  border-radius: 0px;
}
#stacks_in_413118.sf-styles .bootstrap-datetimepicker-widget td [data-action="togglePicker"] {
  display: block;
  width: 100%;
  border: 1px solid rgba(0,0,0,0.1);
  padding: 0px;
  margin: 8px 0;
}
#stacks_in_413118.sf-styles .bootstrap-datetimepicker-widget .datepicker {
  margin-top: 8px;
}
#stacks_in_413118.sf-styles .bootstrap-datetimepicker-widget .timepicker {
  margin-bottom: 8px;
}
#stacks_in_413118.sf-styles table {
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}
#stacks_in_413118.sf-styles .bootstrap-datetimepicker-widget .collapse.in {
  display: block;
}
#stacks_in_413118.sf-styles .bootstrap-datetimepicker-widget .collapse {
  position: relative;
  display: none;
  overflow: visible;
}
#stacks_in_413118.sf-styles .bootstrap-datetimepicker-widget .btn {
  display: inline-block;
  padding: 6px 12px;
  margin-bottom: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 4px;
}
#stacks_in_413118.sf-styles .hiddenFormSubmit {
  display: none;
}
#stacks_in_413118.sf-styles .hideSlice {
 display: none !important;
}
#stacks_in_413118 .autoreply {display: none;}
#stacks_in_413118 .sf-debug-output.has-output > div {
  padding: 16px;
  background: #fff;
  color: #555 !important;
  font-size: 16px;
  line-height: 1.3 !important;
  max-width: 540px;
  margin: 16px auto;
  border: 1px solid rgba(0,0,0,0.15);
  border-radius: 2px;
}
#stacks_in_413118 .sf-debug-output.has-output h2,
#stacks_in_413118 .sf-debug-output.has-output h3 {
  margin: 16px 0px 24px 0px;
  font-size: 20px;
  font-weight: bold;
  color: #333 !important;
}
#stacks_in_413118 .sf-debug-output.has-output h3 {
  font-size: 18px;
}
#stacks_in_413118 .sf-debug-output.has-output p {
  margin: 16px 0px;
}

#stacks_in_413118.sf-styles .step-stack-wrap .controls .sf-number-wrap {
  border-width: 0px;
}
#stacks_in_413118 .step-stack-wrap .controls.sf-input {
  display: grid;
}
#stacks_in_413118.sf-styles form .step-stack-wrap .note {
  color: inherit;
}
#stacks_in_413118.sf-styles  .step-stack-wrap .steps .step-content {
  z-index: 3;
}
/*  */
#stacks_in_413118 .step-stack-wrap .step-slice {
  display: none;
}
#stacks_in_413118 .step-stack-wrap .step-submit ~ .step .step-slice {
  display: block;
}
/*  */
/*  */
/*  */
textarea#input-stacks_in_413120 {
  height: 200px;
  resize: none;
  /*  */
}
/*  */
#sf-radio-stacks_in_413120.controls.sf-button-group {
  width: 120px;
}
#sf-radio-stacks_in_413120.controls.sf-button-group.sf-help-text {
  width: inherit;
}


/*  */
/*  */
textarea#input-stacks_in_413122 {
  height: 200px;
  resize: none;
  /*  */
}
/*  */
#sf-radio-stacks_in_413122.controls.sf-button-group {
  width: 120px;
}
#sf-radio-stacks_in_413122.controls.sf-button-group.sf-help-text {
  width: inherit;
}


/*  */
/*  */
textarea#input-stacks_in_413123 {
  height: 200px;
  resize: none;
  /*  */
}
/*  */
#sf-radio-stacks_in_413123.controls.sf-button-group {
  width: 120px;
}
#sf-radio-stacks_in_413123.controls.sf-button-group.sf-help-text {
  width: inherit;
}


/*  */
/*  */
textarea#input-stacks_in_413124 {
  height: 200px;
  resize: none;
  /*  */
}
/*  */
#sf-radio-stacks_in_413124.controls.sf-button-group {
  width: 120px;
}
#sf-radio-stacks_in_413124.controls.sf-button-group.sf-help-text {
  width: inherit;
}


/*  */
/*  */
textarea#input-stacks_in_413125 {
  height: 200px;
  resize: none;
  /*  */
}
/*  */
#sf-radio-stacks_in_413125.controls.sf-button-group {
  width: 120px;
}
#sf-radio-stacks_in_413125.controls.sf-button-group.sf-help-text {
  width: inherit;
}


/*  */
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_413126 {
	height: 20px;
}/*
 * Super Forms - Textarea
 * Author: Jonathan Meadows
 * Website: http://onelittledesigner.com
 * Support: http://forum.onelittledesigner.com
 * Verson: 1.0.3
 */
#stacks_in_413127 {
  overflow: visible;
  display: inline-block;
  width: 100%;
}


.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_413128 {
	height: 20px;
}/*  */
textarea#input-stacks_in_413129 {
  height: 200px;
  resize: none;
  /*  */
}
/*  */
#sf-radio-stacks_in_413129.controls.sf-button-group {
  width: 120px;
}
#sf-radio-stacks_in_413129.controls.sf-button-group.sf-help-text {
  width: inherit;
}


/*  */
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_413130 {
	height: 20px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_413131Calligrapher{			font-size: 100% !important;			color: #000000 !important;			font-weight:   lighter !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: center !important;		}				.stacks_in_413131Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413131Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413131Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413131Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413131Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413131Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_413131Calligrapher h6, .stacks_in_413131Calligrapher h5, .stacks_in_413131Calligrapher h4, .stacks_in_413131Calligrapher h3, .stacks_in_413131Calligrapher h2, .stacks_in_413131Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_413131Calligrapher, .stacks_in_413131Calligrapher h1, .stacks_in_413131Calligrapher h2, .stacks_in_413131Calligrapher h3, .stacks_in_413131Calligrapher h4, .stacks_in_413131Calligrapher h5, .stacks_in_413131Calligrapher h6{	font-family: "Abel" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_413131targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_413131Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_413131Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_413131Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_413131Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_413131 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
	padding:  7px;
}
/* -- Start Textalign Each css Template -- */
#stacks_in_413132 {
	text-align: center !important;
}





@media only screen and (max-width: 768px) {
    #stacks_in_413132 {
		text-align: center !important;
	}
	
	#stacks_in_413132 img {
		margin: 0 auto !important;
	}
	
	
	
	
}

@media only screen and (max-width: 480px) {
    #stacks_in_413132 {
		text-align: center !important;
	}
	
	#stacks_in_413132 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- */.spacerStack {
	height: 2px;
}

#spacerStackstacks_in_412553 {
	height: 2px;
}.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_408673 {
	height: 40px;
}.spacerStack {
	height: 60px;
}

#spacerStackstacks_in_408487 {
	height: 60px;
}#stacks_in_411303.aspen_split{
	position: relative;
	font-size: 13px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_411303.aspen_split{
		padding: 0px 0px 0px 0px;
	}
}
#stacks_in_411303.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_411303.aspen_split .bg-wrap {clip: rect(0, auto, auto, 0);position: absolute;top: 0;left: 0;width: 100%;height: 100%;z-index: 0;}
#stacks_in_411303.aspen_split .bg{
	position: absolute; display: block;
	top: 0;left: 0; width: 100%; height: 100%;
	background-repeat: no-repeat;
	background-position: center;
	transform: translateZ(0);
	will-change: transform;
	
	opacity: 0.3;
	
	
}

#stacks_in_411303.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_411303 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_411303.aspen_split .max_width_wrap_content{
	max-width: 1100px;
	margin: 0 auto;
}

#stacks_in_411303.aspen_split{
	text-align:center;
	background-image: linear-gradient(to bottom, rgba(0, 0, 0, 1.00), rgba(5, 55, 120, 1.00));
}

 
#stacks_in_411303.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_411303.aspen_split h1, 
#stacks_in_411303.aspen_split h2,
#stacks_in_411303.aspen_split h3, 
#stacks_in_411303.aspen_split h4, 
#stacks_in_411303.aspen_split h5, 
#stacks_in_411303.aspen_split h6{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_411303.aspen_split a{color: rgba(128, 80, 175, 1.00);} 
#stacks_in_411303.aspen_split a:hover{color: rgba(161, 101, 222, 1.00);}.spacerStack {
	height: 50px;
}

#spacerStackstacks_in_411304_9 {
	height: 50px;
}/*
* Responsive Bigfoot 1 Column
* Adapted for Responsive Bigfoot by RapidWeaver Central 
*/

/*
*
* Lemonade v1.1
* Copyright 2013, Joey
* lemonade.im
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
*
*/


/* Targets all elements */

[#stacks_in_411304_10 class*='bit-'] {
	float: left;
	padding: 10px;
}

/* Floats last ".bit-" to the right */

[#stacks_in_411304_10 class*='bit-']:last-of-type {
	padding-right: 10px;
	float: right;
}

/* Clearfix */

#stacks_in_411304_10 .frameThing:after {
	content: "";
	display: table;
	clear: both;
}

/* Main Widths */

#stacks_in_411304_10 .bit-1 {
	width: 100%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}

#stacks_in_411304_10 .bit-2 {
	width: 50%;
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;}

#stacks_in_411304_10 .bit-3 {
	width: 33.33%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}

#stacks_in_411304_10 .bit-4 {
	width: 25%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}

#stacks_in_411304_10 .bit-5 {
	width: 20%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}

#stacks_in_411304_10 .bit-6 {
	width: 16.6666666667%;
  	-webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
          	box-sizing: border-box;
}


/* Landscape mobile & down
===============================*/

@media (max-width: 480px) {

#stacks_in_411304_10 .bit-1,
#stacks_in_411304_10 .bit-2,
#stacks_in_411304_10 .bit-3,
#stacks_in_411304_10 .bit-4,
#stacks_in_411304_10 .bit-5,
#stacks_in_411304_10 .bit-6 {
	width: 100%;
}

#stacks_in_411304_10 .frameThing .bit-4:nth-child(2) {
	float: right;
}

#stacks_in_411304_10 .frameThing .bit-4:nth-child(3) {
	clear: both;
	float: left;
}

#stacks_in_411304_10 .frameThing .bit-4:nth-child(4) {
	float: right;
  }
}

/* Mobile to Tablet Portrait
===============================*/

@media (min-width: 480px) and (max-width: 800px) {

#stacks_in_411304_10 .bit-4,
#stacks_in_411304_10 .bit-6 {
	width: 50%;
}

#stacks_in_411304_10 .bit-1,
#stacks_in_411304_10 .bit-2,
#stacks_in_411304_10 .bit-3,
#stacks_in_411304_10 .bit-5 {
	width: 100%;
}

}

/* Landscape Tablet to Desktop
===============================*/

@media (min-width: 800px) and (max-width: 1200px) {

#stacks_in_411304_10 .bit-2 {
	width: 100%;
}

#stacks_in_411304_10 .bit-4 {
	width: 50%;
}

}

#stacks_in_411304_10 {
	padding: 0px 0px 0px 40px;
}
:root {
  --multi_columns_stacks_in_411304_13:minmax(300px,min-content) minmax(270px,min-content) minmax(200px,min-content) minmax(290px,min-content);
}
#multi_columns_stacks_in_411304_13 {
  display: grid;
  grid-auto-flow: dense;
  grid-template-columns: var(--multi_columns_stacks_in_411304_13);
  grid-gap: 8px;
  align-items: flex-start;
  
  
  justify-content: space-between;
  
  
}
#multi_columns_stacks_in_411304_13 > div {
  min-width: 0;
}
#multi_columns_stacks_in_411304_13 + .deluxe-columns {
  margin-top: 8px;
}
#multi_columns_stacks_in_411304_13 > div img {
  max-width: 100%;
}
#multi_columns_stacks_in_411304_13 > div:not(.nav-column):not(.column-sticky) {
  position: relative;
}


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

#spacerStackstacks_in_411304_23 {
	height: 20px;
}
#stacks_in_411304_23 {
	border: solid rgba(253, 255, 255, 1.00);
	border-width: 1px 0px 0px 0px;
}

#stacks_out_411304_23 {
	width: 100px;
	margin-left:0;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411304_25Calligrapher{			font-size: 140% !important;			color: #CFD1DA !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_411304_25Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_25Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_25Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_25Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_25Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_25Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_25Calligrapher h6, .stacks_in_411304_25Calligrapher h5, .stacks_in_411304_25Calligrapher h4, .stacks_in_411304_25Calligrapher h3, .stacks_in_411304_25Calligrapher h2, .stacks_in_411304_25Calligrapher h1{			color: #D6D8E0 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411304_25Calligrapher, .stacks_in_411304_25Calligrapher h1, .stacks_in_411304_25Calligrapher h2, .stacks_in_411304_25Calligrapher h3, .stacks_in_411304_25Calligrapher h4, .stacks_in_411304_25Calligrapher h5, .stacks_in_411304_25Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411304_25targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411304_25Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_411304_25Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_411304_25Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_411304_25Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411304_33Calligrapher{			font-size: 120% !important;			color: #CFD1DA !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_411304_33Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_33Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_33Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_33Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_33Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_33Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_33Calligrapher h6, .stacks_in_411304_33Calligrapher h5, .stacks_in_411304_33Calligrapher h4, .stacks_in_411304_33Calligrapher h3, .stacks_in_411304_33Calligrapher h2, .stacks_in_411304_33Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411304_33Calligrapher, .stacks_in_411304_33Calligrapher h1, .stacks_in_411304_33Calligrapher h2, .stacks_in_411304_33Calligrapher h3, .stacks_in_411304_33Calligrapher h4, .stacks_in_411304_33Calligrapher h5, .stacks_in_411304_33Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411304_33targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411304_33Calligrapher a:link{			color: #FDFFFF !important;			text-decoration: none !important;		}				.stacks_in_411304_33Calligrapher a:visited{			color: #FDFFFF !important;		}				.stacks_in_411304_33Calligrapher a:active{			color: #FDFFFF !important;		}				.stacks_in_411304_33Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 15px;
}

#spacerStackstacks_in_411304_295 {
	height: 15px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411304_287Calligrapher{			font-size: 160% !important;			color: #F2F4FF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_411304_287Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_287Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_287Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_287Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_287Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_287Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_287Calligrapher h6, .stacks_in_411304_287Calligrapher h5, .stacks_in_411304_287Calligrapher h4, .stacks_in_411304_287Calligrapher h3, .stacks_in_411304_287Calligrapher h2, .stacks_in_411304_287Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411304_287Calligrapher, .stacks_in_411304_287Calligrapher h1, .stacks_in_411304_287Calligrapher h2, .stacks_in_411304_287Calligrapher h3, .stacks_in_411304_287Calligrapher h4, .stacks_in_411304_287Calligrapher h5, .stacks_in_411304_287Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411304_287targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411304_287Calligrapher a:link{			color: #FDFFFF !important;			text-decoration: none !important;		}				.stacks_in_411304_287Calligrapher a:visited{			color: #FDFFFF !important;		}				.stacks_in_411304_287Calligrapher a:active{			color: #FDFFFF !important;		}				.stacks_in_411304_287Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 7px;
}

#spacerStackstacks_in_411304_296 {
	height: 7px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411304_291Calligrapher{			font-size: 100% !important;			color: #CFD1DA !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_411304_291Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_291Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_291Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_291Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_291Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_291Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_291Calligrapher h6, .stacks_in_411304_291Calligrapher h5, .stacks_in_411304_291Calligrapher h4, .stacks_in_411304_291Calligrapher h3, .stacks_in_411304_291Calligrapher h2, .stacks_in_411304_291Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411304_291Calligrapher, .stacks_in_411304_291Calligrapher h1, .stacks_in_411304_291Calligrapher h2, .stacks_in_411304_291Calligrapher h3, .stacks_in_411304_291Calligrapher h4, .stacks_in_411304_291Calligrapher h5, .stacks_in_411304_291Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411304_291targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411304_291Calligrapher a:link{			color: #FDFFFF !important;			text-decoration: none !important;		}				.stacks_in_411304_291Calligrapher a:visited{			color: #FDFFFF !important;		}				.stacks_in_411304_291Calligrapher a:active{			color: #FDFFFF !important;		}				.stacks_in_411304_291Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_411304_39 {
	height: 20px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411304_41Calligrapher{			font-size: 120% !important;			color: #FDFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_411304_41Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_41Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_41Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_41Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_41Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_41Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_41Calligrapher h6, .stacks_in_411304_41Calligrapher h5, .stacks_in_411304_41Calligrapher h4, .stacks_in_411304_41Calligrapher h3, .stacks_in_411304_41Calligrapher h2, .stacks_in_411304_41Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411304_41Calligrapher, .stacks_in_411304_41Calligrapher h1, .stacks_in_411304_41Calligrapher h2, .stacks_in_411304_41Calligrapher h3, .stacks_in_411304_41Calligrapher h4, .stacks_in_411304_41Calligrapher h5, .stacks_in_411304_41Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411304_41targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411304_41Calligrapher a:link{			color: #FDFFFF !important;			text-decoration: none !important;		}				.stacks_in_411304_41Calligrapher a:visited{			color: #FDFFFF !important;		}				.stacks_in_411304_41Calligrapher a:active{			color: #FDFFFF !important;		}				.stacks_in_411304_41Calligrapher a:hover{			color: #5CA9FF !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411304_51Calligrapher{			font-size: 200% !important;			color: #FDFFFF !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_411304_51Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_51Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_51Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_51Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_51Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_51Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_51Calligrapher h6, .stacks_in_411304_51Calligrapher h5, .stacks_in_411304_51Calligrapher h4, .stacks_in_411304_51Calligrapher h3, .stacks_in_411304_51Calligrapher h2, .stacks_in_411304_51Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411304_51Calligrapher, .stacks_in_411304_51Calligrapher h1, .stacks_in_411304_51Calligrapher h2, .stacks_in_411304_51Calligrapher h3, .stacks_in_411304_51Calligrapher h4, .stacks_in_411304_51Calligrapher h5, .stacks_in_411304_51Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411304_51targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411304_51Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_411304_51Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_411304_51Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_411304_51Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 25px;
}

#spacerStackstacks_in_411304_59 {
	height: 25px;
}
#stacks_in_411304_59 {
	border: solid rgba(253, 255, 255, 1.00);
	border-width: 1px 0px 0px 0px;
}

#stacks_out_411304_59 {
	width: 100px;
	margin-left:0;
}
.spacerStack {
	height: 15px;
}

#spacerStackstacks_in_411304_324 {
	height: 15px;
}
#stacks_out_411304_324 {
	width: 100px;
	margin-left:0;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411304_75Calligrapher{			font-size: 140% !important;			color: #CFD1DA !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_411304_75Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_75Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_75Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_75Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_75Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_75Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_75Calligrapher h6, .stacks_in_411304_75Calligrapher h5, .stacks_in_411304_75Calligrapher h4, .stacks_in_411304_75Calligrapher h3, .stacks_in_411304_75Calligrapher h2, .stacks_in_411304_75Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411304_75Calligrapher, .stacks_in_411304_75Calligrapher h1, .stacks_in_411304_75Calligrapher h2, .stacks_in_411304_75Calligrapher h3, .stacks_in_411304_75Calligrapher h4, .stacks_in_411304_75Calligrapher h5, .stacks_in_411304_75Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411304_75targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411304_75Calligrapher a:link{			color: #CFD1DA !important;			text-decoration: none !important;		}				.stacks_in_411304_75Calligrapher a:visited{			color: #CFD1DA !important;		}				.stacks_in_411304_75Calligrapher a:active{			color: #CFD1DA !important;		}				.stacks_in_411304_75Calligrapher a:hover{			color: #F4F2F6 !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */#stacks_in_411304_77>.s3_row {
	margin: 0 -10px;
}

#stacks_in_411304_77>.s3_row>.s3_column_left {
	width: 61.28%;
}

#stacks_in_411304_77>.s3_row>.s3_column_right {
	width: 38.720001%;
}




#stacks_in_411304_77>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_411304_77>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_411304_77>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}





/* LinkListerThing Stack— B3: Bigfoot Responsive by RapidWeaver Central */




/* LINK LISTS 
====================== */


#stacks_in_411304_79 #linklisterThingstacks_in_411304_79 {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
  	-webkit-backface-visibility: hidden;
  	-webkit-transform: rotate(0deg) skewY(0deg);
}

#stacks_in_411304_79 #listthingstacks_in_411304_79 {
	display: block;
	position: relative;
}

#stacks_in_411304_79 #listthingstacks_in_411304_79 ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

#stacks_in_411304_79 #listthingstacks_in_411304_79 li {
		
	color: #5CA9FF;
	font-size: 100%;
	margin: 0;
	padding: 0 0 0 0px;
	position: relative;
	text-decoration:none;
	line-height: 30px;
}

#stacks_in_411304_79 #listthingstacks_in_411304_79 li a {
	color: #5CA9FF;
	text-decoration:none;
}

#stacks_in_411304_79 #listthingstacks_in_411304_79 li:hover, #stacks_in_411304_79 #listthingstacks_in_411304_79 li a:hover, #stacks_in_411304_79 #listthingstacks_in_411304_79 li:hover a  {
	text-decoration:none;
	color: #5CA9FF !important;
}

#stacks_in_411304_79 .icon-mail {
	
	color:  #5CA9FF !important;
	font-size: 100%;
 		
}

#stacks_in_411304_79  .text_padding_left a {
	padding-left: 0px;
	color:  #5CA9FF;
}

#stacks_in_411304_79 #listthingstacks_in_411304_79 li:hover span.icon-mail, #stacks_in_411304_79 #listthingstacks_in_411304_79 li:hover  span.text_padding_left    {
	color: #5CA9FF !important;
}

/* LINK EFFECTS 
====================== */

/*  0. No Background  */

.hover_effect0stacks_in_411304_79 {
	background: transparent;
}

/*  1. Rollover   */

.hover_effect1stacks_in_411304_79 {
	background: #A1EBF9;
}

.hover_effect1stacks_in_411304_79:hover {
	background: #DA4453;
}



/*  4.  Brackets Effect  */

.hover_effect4stacks_in_411304_79  {
	position: relative;
	padding: 0;
 	-webkit-backface-visibility: hidden;
  	-webkit-transform: rotate(0deg) skewY(0deg);
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
    		 box-sizing: border-box;
}

.hover_effect4stacks_in_411304_79 a::before,
.hover_effect4stacks_in_411304_79 a::after {
	display: inline-block;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
	   -moz-transition: -moz-transform 0.3s, opacity 0.2s;
			transition: transform 0.3s, opacity 0.2s;
}

.hover_effect4stacks_in_411304_79 a::before {
	margin-right: 10px;
	content: '[';
	-webkit-transform: translateX(20px);
	   -moz-transform: translateX(20px);
			transform: translateX(20px);
}

.hover_effect4stacks_in_411304_79 a::after {
	margin-left: 10px;
	content: ']';
	-webkit-transform: translateX(-20px);
	   -moz-transform: translateX(-20px);
			transform: translateX(-20px);
}

.hover_effect4stacks_in_411304_79 a:hover::before,
.hover_effect4stacks_in_411304_79 a:hover::after,
.hover_effect4stacks_in_411304_79 a:focus::before,
.hover_effect4stacks_in_411304_79 a:focus::after {
	opacity: 1;
	color: ;
	-webkit-transform: translateX(0px);
	   -moz-transform: translateX(0px);
			transform: translateX(0px);
}

/*  5. Animated  Slide Effect */

.hover_effect5stacks_in_411304_79 a:hover {
 	text-decoration: none;
}

.hover_effect5stacks_in_411304_79 a:active {
 	text-decoration: none;
}

.hover_effect5stacks_in_411304_79 a:before, 
.hover_effect5stacks_in_411304_79 a:after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 100%;
	width: 0;
	height: 100%;
	background: #DA4453;
	-webkit-transition: width 300ms ease;
	transition: width 300ms ease;
	z-index: -1;
}

.hover_effect5stacks_in_411304_79 a:after {
	left: 100%;
	left: 0;
}

.hover_effect5stacks_in_411304_79 a:hover:before, 
.hover_effect5stacks_in_411304_79 a:hover:after {
	width: 100%;
}

/*  6 Sandwich  Effect */

.hover_effect6stacks_in_411304_79 {
}

.hover_effect6stacks_in_411304_79 a {
	padding: 10px 10px 10px 0;
	color: #5CA9FF;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

.hover_effect6stacks_in_411304_79 a::before,
.hover_effect6stacks_in_411304_79 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #5CA9FF;
	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);
}

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

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

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

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

/*
*
* ## Entypo 
* Copyright (C) 2012 by Daniel Bruce
* Author:    Daniel Bruce
* License:  CC BY-SA (http://creativecommons.org/licenses/by-sa/2.0/)
* Homepage:  http://www.entypo.com
*
* ## Zocial 
* Copyright (C) 2012 by Sam Collins
* Author:    Sam Collins
* License:   MIT (http://opensource.org/licenses/mit-license.php)
* Homepage:  http://zocial.smcllns.com/
*
*/

/* EntypoThing Fonts */         


@font-face {
  font-family: 'entypothing';
  src: url('../files/font/entypothing.eot?24089826');
  src: url('../files/font/entypothing.eot?24089826#iefix') format('embedded-opentype'),
       url('../files/font/entypothing.woff?24089826') format('woff'),
       url('../files/font/entypothing.ttf?24089826') format('truetype'),
       url('../files/font/entypothing.svg?24089826#entypothing') format('svg');
  font-weight: normal;
  font-style: normal;
}
 
  #stacks_in_411304_79 [class^="icon-mail"]:before, #stacks_in_411304_79 [class*="icon-mail"]:before {
  font-family: "entypothing";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height:  30px;
  margin-left: .2em;
}
 
.icon-note:before { content: '\e83d'; } /* 'Ó†Ω' */
.icon-stackoverflow:before { content: '\e83c'; } /* 'Ó†º' */
.icon-music:before { content: '\e84a'; } /* 'Ó°ä' */
.icon-search:before { content: '\e84b'; } /* 'Ó°ã' */
.icon-flashlight:before { content: '\e84c'; } /* 'Ó°å' */
.icon-mail:before { content: '\e84d'; } /* 'Ó°ç' */
.icon-heart:before { content: '\e84e'; } /* 'Ó°é' */
.icon-heart-empty:before { content: '\e84f'; } /* 'Ó°è' */
.icon-star:before { content: '\e850'; } /* 'Ó°ê' */
.icon-star-empty:before { content: '\e851'; } /* 'Ó°ë' */
.icon-user:before { content: '\e852'; } /* 'Ó°í' */
.icon-users:before { content: '\e853'; } /* 'Ó°ì' */
.icon-user-add:before { content: '\e854'; } /* 'Ó°î' */
.icon-video:before { content: '\e855'; } /* 'Ó°ï' */
.icon-picture:before { content: '\e856'; } /* 'Ó°ñ' */
.icon-camera:before { content: '\e848'; } /* 'Ó°à' */
.icon-layout:before { content: '\e845'; } /* 'Ó°Ö' */
.icon-menu:before { content: '\e844'; } /* 'Ó°Ñ' */
.icon-check:before { content: '\e841'; } /* 'Ó°Å' */
.icon-cancel:before { content: '\e83f'; } /* 'Ó†ø' */
.icon-cancel-circled:before { content: '\e865'; } /* 'Ó°•' */
.icon-cancel-squared:before { content: '\e864'; } /* 'Ó°§' */
.icon-plus:before { content: '\e863'; } /* 'Ó°£' */
.icon-plus-circled:before { content: '\e862'; } /* 'Ó°¢' */
.icon-plus-squared:before { content: '\e861'; } /* 'Ó°°' */
.icon-minus:before { content: '\e860'; } /* 'Ó°†' */
.icon-minus-circled:before { content: '\e85f'; } /* 'Ó°ü' */
.icon-minus-squared:before { content: '\e85e'; } /* 'Ó°û' */
.icon-help:before { content: '\e85d'; } /* 'Ó°ù' */
.icon-help-circled:before { content: '\e85c'; } /* 'Ó°ú' */
.icon-info:before { content: '\e85b'; } /* 'Ó°õ' */
.icon-info-circled:before { content: '\e85a'; } /* 'Ó°ö' */
.icon-back:before { content: '\e859'; } /* 'Ó°ô' */
.icon-home:before { content: '\e858'; } /* 'Ó°ò' */
.icon-link:before { content: '\e857'; } /* 'Ó°ó' */
.icon-attach:before { content: '\e847'; } /* 'Ó°á' */
.icon-lock:before { content: '\e846'; } /* 'Ó°Ü' */
.icon-lock-open:before { content: '\e843'; } /* 'Ó°É' */
.icon-eye:before { content: '\e842'; } /* 'Ó°Ç' */
.icon-tag:before { content: '\e840'; } /* 'Ó°Ä' */
.icon-bookmark:before { content: '\e866'; } /* 'Ó°¶' */
.icon-bookmarks:before { content: '\e867'; } /* 'Ó°ß' */
.icon-flag:before { content: '\e868'; } /* 'Ó°®' */
.icon-thumbs-up:before { content: '\e869'; } /* 'Ó°©' */
.icon-thumbs-down:before { content: '\e874'; } /* 'Ó°¥' */
.icon-download:before { content: '\e877'; } /* 'Ó°∑' */
.icon-upload:before { content: '\e878'; } /* 'Ó°∏' */
.icon-upload-cloud:before { content: '\e87c'; } /* 'Ó°º' */
.icon-reply:before { content: '\e87d'; } /* 'Ó°Ω' */
.icon-reply-all:before { content: '\e883'; } /* 'Ó¢É' */
.icon-forward:before { content: '\e886'; } /* 'Ó¢Ü' */
.icon-quote:before { content: '\e887'; } /* 'Ó¢á' */
.icon-code:before { content: '\e88c'; } /* 'Ó¢å' */
.icon-export:before { content: '\e88d'; } /* 'Ó¢ç' */
.icon-pencil:before { content: '\e892'; } /* 'Ó¢í' */
.icon-feather:before { content: '\e893'; } /* 'Ó¢ì' */
.icon-print-1:before { content: '\e898'; } /* 'Ó¢ò' */
.icon-retweet:before { content: '\e899'; } /* 'Ó¢ô' */
.icon-keyboard:before { content: '\e89e'; } /* 'Ó¢û' */
.icon-comment:before { content: '\e89f'; } /* 'Ó¢ü' */
.icon-chat:before { content: '\e86a'; } /* 'Ó°™' */
.icon-bell:before { content: '\e871'; } /* 'Ó°±' */
.icon-attention:before { content: '\e86d'; } /* 'Ó°≠' */
.icon-alert:before { content: '\e870'; } /* 'Ó°∞' */
.icon-vcard:before { content: '\e873'; } /* 'Ó°≥' */
.icon-address:before { content: '\e872'; } /* 'Ó°≤' */
.icon-location:before { content: '\e879'; } /* 'Ó°π' */
.icon-map:before { content: '\e87e'; } /* 'Ó°æ' */
.icon-direction:before { content: '\e87f'; } /* 'Ó°ø' */
.icon-compass:before { content: '\e882'; } /* 'Ó¢Ç' */
.icon-cup:before { content: '\e884'; } /* 'Ó¢Ñ' */
.icon-trash:before { content: '\e888'; } /* 'Ó¢à' */
.icon-doc:before { content: '\e88b'; } /* 'Ó¢ã' */
.icon-docs:before { content: '\e88e'; } /* 'Ó¢é' */
.icon-doc-landscape:before { content: '\e891'; } /* 'Ó¢ë' */
.icon-doc-text:before { content: '\e894'; } /* 'Ó¢î' */
.icon-doc-text-inv:before { content: '\e897'; } /* 'Ó¢ó' */
.icon-newspaper:before { content: '\e89a'; } /* 'Ó¢ö' */
.icon-book-open:before { content: '\e89d'; } /* 'Ó¢ù' */
.icon-book:before { content: '\e8a0'; } /* 'Ó¢†' */
.icon-folder:before { content: '\e86b'; } /* 'Ó°´' */
.icon-archive:before { content: '\e86c'; } /* 'Ó°¨' */
.icon-box:before { content: '\e86e'; } /* 'Ó°Æ' */
.icon-rss-1:before { content: '\e86f'; } /* 'Ó°Ø' */
.icon-phone:before { content: '\e875'; } /* 'Ó°µ' */
.icon-cog:before { content: '\e876'; } /* 'Ó°∂' */
.icon-tools:before { content: '\e87b'; } /* 'Ó°ª' */
.icon-share:before { content: '\e87a'; } /* 'Ó°∫' */
.icon-shareable:before { content: '\e880'; } /* 'Ó¢Ä' */
.icon-basket:before { content: '\e881'; } /* 'Ó¢Å' */
.icon-bag:before { content: '\e885'; } /* 'Ó¢Ö' */
.icon-calendar-1:before { content: '\e889'; } /* 'Ó¢â' */
.icon-login:before { content: '\e88a'; } /* 'Ó¢ä' */
.icon-logout:before { content: '\e88f'; } /* 'Ó¢è' */
.icon-mic:before { content: '\e890'; } /* 'Ó¢ê' */
.icon-mute:before { content: '\e895'; } /* 'Ó¢ï' */
.icon-sound:before { content: '\e896'; } /* 'Ó¢ñ' */
.icon-volume:before { content: '\e89b'; } /* 'Ó¢õ' */
.icon-clock:before { content: '\e89c'; } /* 'Ó¢ú' */
.icon-hourglass:before { content: '\e8a1'; } /* 'Ó¢°' */
.icon-lamp:before { content: '\e8b5'; } /* 'Ó¢µ' */
.icon-light-down:before { content: '\e8b4'; } /* 'Ó¢¥' */
.icon-light-up:before { content: '\e8b3'; } /* 'Ó¢≥' */
.icon-adjust:before { content: '\e8b2'; } /* 'Ó¢≤' */
.icon-block:before { content: '\e8b1'; } /* 'Ó¢±' */
.icon-resize-full:before { content: '\e8b0'; } /* 'Ó¢∞' */
.icon-resize-small:before { content: '\e8af'; } /* 'Ó¢Ø' */
.icon-popup:before { content: '\e8ae'; } /* 'Ó¢Æ' */
.icon-publish:before { content: '\e8ad'; } /* 'Ó¢≠' */
.icon-window:before { content: '\e8ac'; } /* 'Ó¢¨' */
.icon-arrow-combo:before { content: '\e8ab'; } /* 'Ó¢´' */
.icon-down-circled:before { content: '\e8aa'; } /* 'Ó¢™' */
.icon-left-circled:before { content: '\e8a9'; } /* 'Ó¢©' */
.icon-right-circled:before { content: '\e8a8'; } /* 'Ó¢®' */
.icon-up-circled:before { content: '\e8a7'; } /* 'Ó¢ß' */
.icon-down-open:before { content: '\e8a6'; } /* 'Ó¢¶' */
.icon-left-open:before { content: '\e8a5'; } /* 'Ó¢•' */
.icon-right-open:before { content: '\e8a4'; } /* 'Ó¢§' */
.icon-up-open:before { content: '\e8a3'; } /* 'Ó¢£' */
.icon-down-open-mini:before { content: '\e8a2'; } /* 'Ó¢¢' */
.icon-left-open-mini:before { content: '\e8b6'; } /* 'Ó¢∂' */
.icon-right-open-mini:before { content: '\e8b7'; } /* 'Ó¢∑' */
.icon-up-open-mini:before { content: '\e8b8'; } /* 'Ó¢∏' */
.icon-down-open-big:before { content: '\e8b9'; } /* 'Ó¢π' */
.icon-left-open-big:before { content: '\e8ba'; } /* 'Ó¢∫' */
.icon-right-open-big:before { content: '\e8bb'; } /* 'Ó¢ª' */
.icon-up-open-big:before { content: '\e8bc'; } /* 'Ó¢º' */
.icon-down:before { content: '\e8bd'; } /* 'Ó¢Ω' */
.icon-left:before { content: '\e8be'; } /* 'Ó¢æ' */
.icon-right:before { content: '\e8bf'; } /* 'Ó¢ø' */
.icon-up:before { content: '\e8c0'; } /* 'Ó£Ä' */
.icon-down-dir:before { content: '\e8c1'; } /* 'Ó£Å' */
.icon-left-dir:before { content: '\e8c2'; } /* 'Ó£Ç' */
.icon-right-dir:before { content: '\e8c3'; } /* 'Ó£É' */
.icon-up-dir:before { content: '\e8c4'; } /* 'Ó£Ñ' */
.icon-down-bold:before { content: '\e8c5'; } /* 'Ó£Ö' */
.icon-left-bold:before { content: '\e8c6'; } /* 'Ó£Ü' */
.icon-right-bold:before { content: '\e8c7'; } /* 'Ó£á' */
.icon-up-bold:before { content: '\e8c8'; } /* 'Ó£à' */
.icon-down-thin:before { content: '\e8c9'; } /* 'Ó£â' */
.icon-left-thin:before { content: '\e8dd'; } /* 'Ó£ù' */
.icon-right-thin:before { content: '\e8dc'; } /* 'Ó£ú' */
.icon-up-thin:before { content: '\e8db'; } /* 'Ó£õ' */
.icon-ccw:before { content: '\e8da'; } /* 'Ó£ö' */
.icon-cw:before { content: '\e8d9'; } /* 'Ó£ô' */
.icon-arrows-ccw:before { content: '\e8d8'; } /* 'Ó£ò' */
.icon-level-down:before { content: '\e8d7'; } /* 'Ó£ó' */
.icon-level-up:before { content: '\e8d6'; } /* 'Ó£ñ' */
.icon-shuffle:before { content: '\e8d5'; } /* 'Ó£ï' */
.icon-loop:before { content: '\e8d4'; } /* 'Ó£î' */
.icon-switch:before { content: '\e8d3'; } /* 'Ó£ì' */
.icon-play:before { content: '\e8d2'; } /* 'Ó£í' */
.icon-stop:before { content: '\e8d1'; } /* 'Ó£ë' */
.icon-pause:before { content: '\e8d0'; } /* 'Ó£ê' */
.icon-record:before { content: '\e8cf'; } /* 'Ó£è' */
.icon-to-end:before { content: '\e8ce'; } /* 'Ó£é' */
.icon-to-start:before { content: '\e8cd'; } /* 'Ó£ç' */
.icon-fast-forward:before { content: '\e8cc'; } /* 'Ó£å' */
.icon-fast-backward:before { content: '\e8cb'; } /* 'Ó£ã' */
.icon-progress-0:before { content: '\e8ca'; } /* 'Ó£ä' */
.icon-progress-1:before { content: '\e8de'; } /* 'Ó£û' */
.icon-progress-2:before { content: '\e8df'; } /* 'Ó£ü' */
.icon-progress-3:before { content: '\e8e0'; } /* 'Ó£†' */
.icon-target:before { content: '\e8e1'; } /* 'Ó£°' */
.icon-palette:before { content: '\e8e2'; } /* 'Ó£¢' */
.icon-list:before { content: '\e8e3'; } /* 'Ó££' */
.icon-list-add:before { content: '\e8e4'; } /* 'Ó£§' */
.icon-signal:before { content: '\e8e5'; } /* 'Ó£•' */
.icon-trophy:before { content: '\e8e6'; } /* 'Ó£¶' */
.icon-battery:before { content: '\e8e7'; } /* 'Ó£ß' */
.icon-back-in-time:before { content: '\e8e8'; } /* 'Ó£®' */
.icon-monitor:before { content: '\e8e9'; } /* 'Ó£©' */
.icon-note-beamed:before { content: '\e849'; } /* 'Ó°â' */
.icon-network:before { content: '\e8eb'; } /* 'Ó£´' */
.icon-cd:before { content: '\e8ec'; } /* 'Ó£¨' */
.icon-inbox:before { content: '\e8ed'; } /* 'Ó£≠' */
.icon-install:before { content: '\e8ee'; } /* 'Ó£Æ' */
.icon-globe:before { content: '\e8ef'; } /* 'Ó£Ø' */
.icon-cloud:before { content: '\e8f0'; } /* 'Ó£∞' */
.icon-cloud-thunder:before { content: '\e8f1'; } /* 'Ó£±' */
.icon-flash:before { content: '\e905'; } /* 'Ó§Ö' */
.icon-moon:before { content: '\e904'; } /* 'Ó§Ñ' */
.icon-flight:before { content: '\e903'; } /* 'Ó§É' */
.icon-paper-plane:before { content: '\e902'; } /* 'Ó§Ç' */
.icon-leaf:before { content: '\e901'; } /* 'Ó§Å' */
.icon-lifebuoy:before { content: '\e900'; } /* 'Ó§Ä' */
.icon-mouse:before { content: '\e8ff'; } /* 'Ó£ø' */
.icon-briefcase:before { content: '\e8fe'; } /* 'Ó£æ' */
.icon-suitcase:before { content: '\e8fd'; } /* 'Ó£Ω' */
.icon-dot:before { content: '\e8fb'; } /* 'Ó£ª' */
.icon-dot-2:before { content: '\e8fc'; } /* 'Ó£º' */
.icon-dot-3:before { content: '\e8fa'; } /* 'Ó£∫' */
.icon-brush:before { content: '\e8f9'; } /* 'Ó£π' */
.icon-magnet:before { content: '\e8f8'; } /* 'Ó£∏' */
.icon-infinity:before { content: '\e8f7'; } /* 'Ó£∑' */
.icon-erase:before { content: '\e8f6'; } /* 'Ó£∂' */
.icon-chart-pie:before { content: '\e8f5'; } /* 'Ó£µ' */
.icon-chart-line:before { content: '\e8f4'; } /* 'Ó£¥' */
.icon-chart-bar:before { content: '\e8f3'; } /* 'Ó£≥' */
.icon-chart-area:before { content: '\e8f2'; } /* 'Ó£≤' */
.icon-tape:before { content: '\e906'; } /* 'Ó§Ü' */
.icon-graduation-cap:before { content: '\e907'; } /* 'Ó§á' */
.icon-language:before { content: '\e908'; } /* 'Ó§à' */
.icon-ticket:before { content: '\e909'; } /* 'Ó§â' */
.icon-water:before { content: '\e90a'; } /* 'Ó§ä' */
.icon-droplet:before { content: '\e90b'; } /* 'Ó§ã' */
.icon-air:before { content: '\e90c'; } /* 'Ó§å' */
.icon-credit-card:before { content: '\e90d'; } /* 'Ó§ç' */
.icon-floppy:before { content: '\e90e'; } /* 'Ó§é' */
.icon-clipboard:before { content: '\e90f'; } /* 'Ó§è' */
.icon-megaphone:before { content: '\e910'; } /* 'Ó§ê' */
.icon-database:before { content: '\e911'; } /* 'Ó§ë' */
.icon-drive:before { content: '\e912'; } /* 'Ó§í' */
.icon-bucket:before { content: '\e913'; } /* 'Ó§ì' */
.icon-thermometer:before { content: '\e914'; } /* 'Ó§î' */
.icon-key:before { content: '\e915'; } /* 'Ó§ï' */
.icon-flow-cascade:before { content: '\e916'; } /* 'Ó§ñ' */
.icon-flow-branch:before { content: '\e917'; } /* 'Ó§ó' */
.icon-flow-tree:before { content: '\e918'; } /* 'Ó§ò' */
.icon-flow-line:before { content: '\e919'; } /* 'Ó§ô' */
.icon-flow-parallel:before { content: '\e92d'; } /* 'Ó§≠' */
.icon-rocket:before { content: '\e92c'; } /* 'Ó§¨' */
.icon-gauge:before { content: '\e92b'; } /* 'Ó§´' */
.icon-traffic-cone:before { content: '\e92a'; } /* 'Ó§™' */
.icon-cc-1:before { content: '\e929'; } /* 'Ó§©' */
.icon-cc-by:before { content: '\e928'; } /* 'Ó§®' */
.icon-cc-nc:before { content: '\e927'; } /* 'Ó§ß' */
.icon-cc-nc-eu:before { content: '\e926'; } /* 'Ó§¶' */
.icon-cc-nc-jp:before { content: '\e925'; } /* 'Ó§•' */
.icon-cc-sa:before { content: '\e924'; } /* 'Ó§§' */
.icon-cc-nd:before { content: '\e923'; } /* 'Ó§£' */
.icon-cc-pd:before { content: '\e922'; } /* 'Ó§¢' */
.icon-cc-zero:before { content: '\e921'; } /* 'Ó§°' */
.icon-cc-share:before { content: '\e920'; } /* 'Ó§†' */
.icon-cc-remix:before { content: '\e91f'; } /* 'Ó§ü' */
.icon-github-1:before { content: '\e91e'; } /* 'Ó§û' */
.icon-github-circled-1:before { content: '\e91d'; } /* 'Ó§ù' */
.icon-flickr-1:before { content: '\e91c'; } /* 'Ó§ú' */
.icon-flickr-circled:before { content: '\e91b'; } /* 'Ó§õ' */
.icon-vimeo-1:before { content: '\e91a'; } /* 'Ó§ö' */
.icon-vimeo-circled:before { content: '\e92e'; } /* 'Ó§Æ' */
.icon-twitter-1:before { content: '\e92f'; } /* 'Ó§Ø' */
.icon-twitter-circled:before { content: '\e930'; } /* 'Ó§∞' */
.icon-facebook-1:before { content: '\e931'; } /* 'Ó§±' */
.icon-facebook-circled:before { content: '\e932'; } /* 'Ó§≤' */
.icon-facebook-squared:before { content: '\e933'; } /* 'Ó§≥' */
.icon-gplus-1:before { content: '\e934'; } /* 'Ó§¥' */
.icon-gplus-circled:before { content: '\e935'; } /* 'Ó§µ' */
.icon-pinterest-1:before { content: '\e936'; } /* 'Ó§∂' */
.icon-pinterest-circled:before { content: '\e937'; } /* 'Ó§∑' */
.icon-tumblr-1:before { content: '\e938'; } /* 'Ó§∏' */
.icon-tumblr-circled:before { content: '\e939'; } /* 'Ó§π' */
.icon-linkedin-1:before { content: '\e93a'; } /* 'Ó§∫' */
.icon-linkedin-circled:before { content: '\e93b'; } /* 'Ó§ª' */
.icon-dribbble-1:before { content: '\e93c'; } /* 'Ó§º' */
.icon-dribbble-circled:before { content: '\e93d'; } /* 'Ó§Ω' */
.icon-stumbleupon-1:before { content: '\e93e'; } /* 'Ó§æ' */
.icon-stumbleupon-circled:before { content: '\e93f'; } /* 'Ó§ø' */
.icon-lastfm:before { content: '\e940'; } /* 'Ó•Ä' */
.icon-lastfm-circled:before { content: '\e941'; } /* 'Ó•Å' */
.icon-rdio:before { content: '\e954'; } /* 'Ó•î' */
.icon-rdio-circled:before { content: '\e953'; } /* 'Ó•ì' */
.icon-spotify:before { content: '\e952'; } /* 'Ó•í' */
.icon-qq:before { content: '\e951'; } /* 'Ó•ë' */
.icon-instagram-1:before { content: '\e950'; } /* 'Ó•ê' */
.icon-dropbox-1:before { content: '\e94f'; } /* 'Ó•è' */
.icon-evernote-1:before { content: '\e94e'; } /* 'Ó•é' */
.icon-flattr:before { content: '\e94d'; } /* 'Ó•ç' */
.icon-skype-1:before { content: '\e94c'; } /* 'Ó•å' */
.icon-skype-circled:before { content: '\e94b'; } /* 'Ó•ã' */
.icon-renren:before { content: '\e94a'; } /* 'Ó•ä' */
.icon-sina-weibo:before { content: '\e949'; } /* 'Ó•â' */
.icon-paypal-1:before { content: '\e948'; } /* 'Ó•à' */
.icon-picasa:before { content: '\e947'; } /* 'Ó•á' */
.icon-soundcloud-1:before { content: '\e946'; } /* 'Ó•Ü' */
.icon-mixi:before { content: '\e945'; } /* 'Ó•Ö' */
.icon-behance:before { content: '\e944'; } /* 'Ó•Ñ' */
.icon-google-circles:before { content: '\e943'; } /* 'Ó•É' */
.icon-vkontakte:before { content: '\e942'; } /* 'Ó•Ç' */
.icon-smashing:before { content: '\e955'; } /* 'Ó•ï' */
.icon-sweden:before { content: '\e956'; } /* 'Ó•ñ' */
.icon-db-shape:before { content: '\e957'; } /* 'Ó•ó' */
.icon-logo-db:before { content: '\e83e'; } /* 'Ó†æ' */
.icon-paypal:before { content: '\e800'; } /* 'Ó†Ä' */
.icon-eventful:before { content: '\e801'; } /* 'Ó†Å' */
.icon-smashmag:before { content: '\e802'; } /* 'Ó†Ç' */
.icon-gplus:before { content: '\e803'; } /* 'Ó†É' */
.icon-wikipedia:before { content: '\e804'; } /* 'Ó†Ñ' */
.icon-calendar:before { content: '\e805'; } /* 'Ó†Ö' */
.icon-stumbleupon:before { content: '\e806'; } /* 'Ó†Ü' */
.icon-fivehundredpx:before { content: '\e807'; } /* 'Ó†á' */
.icon-pinterest:before { content: '\e808'; } /* 'Ó†à' */
.icon-w3c:before { content: '\e809'; } /* 'Ó†â' */
.icon-foursquare:before { content: '\e80a'; } /* 'Ó†ä' */
.icon-html5:before { content: '\e80b'; } /* 'Ó†ã' */
.icon-ie:before { content: '\e80c'; } /* 'Ó†å' */
.icon-call:before { content: '\e80d'; } /* 'Ó†ç' */
.icon-digg:before { content: '\e80e'; } /* 'Ó†é' */
.icon-reddit:before { content: '\e80f'; } /* 'Ó†è' */
.icon-appstore:before { content: '\e810'; } /* 'Ó†ê' */
.icon-blogger:before { content: '\e811'; } /* 'Ó†ë' */
.icon-cc:before { content: '\e812'; } /* 'Ó†í' */
.icon-dribbble:before { content: '\e813'; } /* 'Ó†ì' */
.icon-evernote:before { content: '\e814'; } /* 'Ó†î' */
.icon-flickr:before { content: '\e815'; } /* 'Ó†ï' */
.icon-google:before { content: '\e816'; } /* 'Ó†ñ' */
.icon-instapaper:before { content: '\e817'; } /* 'Ó†ó' */
.icon-weibo:before { content: '\e818'; } /* 'Ó†ò' */
.icon-linkedin:before { content: '\e826'; } /* 'Ó†¶' */
.icon-disqus:before { content: '\e825'; } /* 'Ó†•' */
.icon-rss:before { content: '\e824'; } /* 'Ó†§' */
.icon-skype:before { content: '\e823'; } /* 'Ó†£' */
.icon-twitter:before { content: '\e822'; } /* 'Ó†¢' */
.icon-youtube:before { content: '\e821'; } /* 'Ó†°' */
.icon-vimeo:before { content: '\e820'; } /* 'Ó††' */
.icon-windows:before { content: '\e81f'; } /* 'Ó†ü' */
.icon-xing:before { content: '\e81e'; } /* 'Ó†û' */
.icon-yahoo:before { content: '\e81d'; } /* 'Ó†ù' */
.icon-email:before { content: '\e81c'; } /* 'Ó†ú' */
.icon-macstore:before { content: '\e81b'; } /* 'Ó†õ' */
.icon-podcast:before { content: '\e81a'; } /* 'Ó†ö' */
.icon-amazon:before { content: '\e819'; } /* 'Ó†ô' */
.icon-cloudapp:before { content: '\e827'; } /* 'Ó†ß' */
.icon-dropbox:before { content: '\e828'; } /* 'Ó†®' */
.icon-ebay:before { content: '\e829'; } /* 'Ó†©' */
.icon-facebook:before { content: '\e82a'; } /* 'Ó†™' */
.icon-github:before { content: '\e82b'; } /* 'Ó†´' */
.icon-github-circled:before { content: '\e82c'; } /* 'Ó†¨' */
.icon-googleplay:before { content: '\e82d'; } /* 'Ó†≠' */
.icon-itunes:before { content: '\e82e'; } /* 'Ó†Æ' */
.icon-gmail:before { content: '\e82f'; } /* 'Ó†Ø' */
.icon-soundcloud:before { content: '\e830'; } /* 'Ó†∞' */
.icon-tumblr:before { content: '\e831'; } /* 'Ó†±' */
.icon-eventbrite:before { content: '\e83b'; } /* 'Ó†ª' */
.icon-scribd:before { content: '\e83a'; } /* 'Ó†∫' */
.icon-posterous:before { content: '\e839'; } /* 'Ó†π' */
.icon-stripe:before { content: '\e838'; } /* 'Ó†∏' */
.icon-cart:before { content: '\e837'; } /* 'Ó†∑' */
.icon-print:before { content: '\e836'; } /* 'Ó†∂' */
.icon-instagram:before { content: '\e835'; } /* 'Ó†µ' */
.icon-appnet:before { content: '\e834'; } /* 'Ó†¥' */
.icon-buffer:before { content: '\e833'; } /* 'Ó†≥' */
.icon-pocket:before { content: '\e832'; } /* 'Ó†≤' */
.icon-mobile:before { content: '\e8ea'; } /* 'Ó£™' */
#stacks_in_411304_80 {
	font-size: 110%;
}
.spacerStack {
	height: 10px;
}

#spacerStackstacks_in_411304_87 {
	height: 10px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411304_88Calligrapher{			font-size: 140% !important;			color: #FDFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_411304_88Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_88Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_88Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_88Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_88Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_88Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_88Calligrapher h6, .stacks_in_411304_88Calligrapher h5, .stacks_in_411304_88Calligrapher h4, .stacks_in_411304_88Calligrapher h3, .stacks_in_411304_88Calligrapher h2, .stacks_in_411304_88Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411304_88Calligrapher, .stacks_in_411304_88Calligrapher h1, .stacks_in_411304_88Calligrapher h2, .stacks_in_411304_88Calligrapher h3, .stacks_in_411304_88Calligrapher h4, .stacks_in_411304_88Calligrapher h5, .stacks_in_411304_88Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411304_88targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411304_88Calligrapher a:link{			color: #CFD1DA !important;			text-decoration: none !important;		}				.stacks_in_411304_88Calligrapher a:visited{			color: #CFD1DA !important;		}				.stacks_in_411304_88Calligrapher a:active{			color: #CFD1DA !important;		}				.stacks_in_411304_88Calligrapher a:hover{			color: #F4F2F6 !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */#stacks_in_411304_90>.s3_row {
	margin: 0 -10px;
}

#stacks_in_411304_90>.s3_row>.s3_column_left {
	width: 61.28%;
}

#stacks_in_411304_90>.s3_row>.s3_column_right {
	width: 38.720001%;
}




#stacks_in_411304_90>.s3_row>.s3_column {
	padding: 0 10px;
}










@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_411304_90>.s3_row  {
		margin: -10px 0;
	}
	#stacks_in_411304_90>.s3_row>.s3_column {
		padding: 10px 0;
		width:100%;
	}


}





/* LinkListerThing Stack— B3: Bigfoot Responsive by RapidWeaver Central */




/* LINK LISTS 
====================== */


#stacks_in_411304_92 #linklisterThingstacks_in_411304_92 {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
  	-webkit-backface-visibility: hidden;
  	-webkit-transform: rotate(0deg) skewY(0deg);
}

#stacks_in_411304_92 #listthingstacks_in_411304_92 {
	display: block;
	position: relative;
}

#stacks_in_411304_92 #listthingstacks_in_411304_92 ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

#stacks_in_411304_92 #listthingstacks_in_411304_92 li {
		
	color: #5CA9FF;
	font-size: 100%;
	margin: 0;
	padding: 0 0 0 0px;
	position: relative;
	text-decoration:none;
	line-height: 30px;
}

#stacks_in_411304_92 #listthingstacks_in_411304_92 li a {
	color: #5CA9FF;
	text-decoration:none;
}

#stacks_in_411304_92 #listthingstacks_in_411304_92 li:hover, #stacks_in_411304_92 #listthingstacks_in_411304_92 li a:hover, #stacks_in_411304_92 #listthingstacks_in_411304_92 li:hover a  {
	text-decoration:none;
	color: #5CA9FF !important;
}

#stacks_in_411304_92 .icon-newspaper {
	
	color:  #5CA9FF !important;
	font-size: 100%;
 		
}

#stacks_in_411304_92  .text_padding_left a {
	padding-left: 0px;
	color:  #5CA9FF;
}

#stacks_in_411304_92 #listthingstacks_in_411304_92 li:hover span.icon-newspaper, #stacks_in_411304_92 #listthingstacks_in_411304_92 li:hover  span.text_padding_left    {
	color: #5CA9FF !important;
}

/* LINK EFFECTS 
====================== */

/*  0. No Background  */

.hover_effect0stacks_in_411304_92 {
	background: transparent;
}

/*  1. Rollover   */

.hover_effect1stacks_in_411304_92 {
	background: #A1EBF9;
}

.hover_effect1stacks_in_411304_92:hover {
	background: #DA4453;
}



/*  4.  Brackets Effect  */

.hover_effect4stacks_in_411304_92  {
	position: relative;
	padding: 0;
 	-webkit-backface-visibility: hidden;
  	-webkit-transform: rotate(0deg) skewY(0deg);
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
    		 box-sizing: border-box;
}

.hover_effect4stacks_in_411304_92 a::before,
.hover_effect4stacks_in_411304_92 a::after {
	display: inline-block;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
	   -moz-transition: -moz-transform 0.3s, opacity 0.2s;
			transition: transform 0.3s, opacity 0.2s;
}

.hover_effect4stacks_in_411304_92 a::before {
	margin-right: 10px;
	content: '[';
	-webkit-transform: translateX(20px);
	   -moz-transform: translateX(20px);
			transform: translateX(20px);
}

.hover_effect4stacks_in_411304_92 a::after {
	margin-left: 10px;
	content: ']';
	-webkit-transform: translateX(-20px);
	   -moz-transform: translateX(-20px);
			transform: translateX(-20px);
}

.hover_effect4stacks_in_411304_92 a:hover::before,
.hover_effect4stacks_in_411304_92 a:hover::after,
.hover_effect4stacks_in_411304_92 a:focus::before,
.hover_effect4stacks_in_411304_92 a:focus::after {
	opacity: 1;
	color: ;
	-webkit-transform: translateX(0px);
	   -moz-transform: translateX(0px);
			transform: translateX(0px);
}

/*  5. Animated  Slide Effect */

.hover_effect5stacks_in_411304_92 a:hover {
 	text-decoration: none;
}

.hover_effect5stacks_in_411304_92 a:active {
 	text-decoration: none;
}

.hover_effect5stacks_in_411304_92 a:before, 
.hover_effect5stacks_in_411304_92 a:after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 100%;
	width: 0;
	height: 100%;
	background: #DA4453;
	-webkit-transition: width 300ms ease;
	transition: width 300ms ease;
	z-index: -1;
}

.hover_effect5stacks_in_411304_92 a:after {
	left: 100%;
	left: 0;
}

.hover_effect5stacks_in_411304_92 a:hover:before, 
.hover_effect5stacks_in_411304_92 a:hover:after {
	width: 100%;
}

/*  6 Sandwich  Effect */

.hover_effect6stacks_in_411304_92 {
}

.hover_effect6stacks_in_411304_92 a {
	padding: 10px 10px 10px 0;
	color: #5CA9FF;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

.hover_effect6stacks_in_411304_92 a::before,
.hover_effect6stacks_in_411304_92 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #5CA9FF;
	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);
}

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

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

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

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

/*
*
* ## Entypo 
* Copyright (C) 2012 by Daniel Bruce
* Author:    Daniel Bruce
* License:  CC BY-SA (http://creativecommons.org/licenses/by-sa/2.0/)
* Homepage:  http://www.entypo.com
*
* ## Zocial 
* Copyright (C) 2012 by Sam Collins
* Author:    Sam Collins
* License:   MIT (http://opensource.org/licenses/mit-license.php)
* Homepage:  http://zocial.smcllns.com/
*
*/

/* EntypoThing Fonts */         


@font-face {
  font-family: 'entypothing';
  src: url('../files/font/entypothing.eot?24089826');
  src: url('../files/font/entypothing.eot?24089826#iefix') format('embedded-opentype'),
       url('../files/font/entypothing.woff?24089826') format('woff'),
       url('../files/font/entypothing.ttf?24089826') format('truetype'),
       url('../files/font/entypothing.svg?24089826#entypothing') format('svg');
  font-weight: normal;
  font-style: normal;
}
 
  #stacks_in_411304_92 [class^="icon-newspaper"]:before, #stacks_in_411304_92 [class*="icon-newspaper"]:before {
  font-family: "entypothing";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height:  30px;
  margin-left: .2em;
}
 
.icon-note:before { content: '\e83d'; } /* 'Ó†Ω' */
.icon-stackoverflow:before { content: '\e83c'; } /* 'Ó†º' */
.icon-music:before { content: '\e84a'; } /* 'Ó°ä' */
.icon-search:before { content: '\e84b'; } /* 'Ó°ã' */
.icon-flashlight:before { content: '\e84c'; } /* 'Ó°å' */
.icon-mail:before { content: '\e84d'; } /* 'Ó°ç' */
.icon-heart:before { content: '\e84e'; } /* 'Ó°é' */
.icon-heart-empty:before { content: '\e84f'; } /* 'Ó°è' */
.icon-star:before { content: '\e850'; } /* 'Ó°ê' */
.icon-star-empty:before { content: '\e851'; } /* 'Ó°ë' */
.icon-user:before { content: '\e852'; } /* 'Ó°í' */
.icon-users:before { content: '\e853'; } /* 'Ó°ì' */
.icon-user-add:before { content: '\e854'; } /* 'Ó°î' */
.icon-video:before { content: '\e855'; } /* 'Ó°ï' */
.icon-picture:before { content: '\e856'; } /* 'Ó°ñ' */
.icon-camera:before { content: '\e848'; } /* 'Ó°à' */
.icon-layout:before { content: '\e845'; } /* 'Ó°Ö' */
.icon-menu:before { content: '\e844'; } /* 'Ó°Ñ' */
.icon-check:before { content: '\e841'; } /* 'Ó°Å' */
.icon-cancel:before { content: '\e83f'; } /* 'Ó†ø' */
.icon-cancel-circled:before { content: '\e865'; } /* 'Ó°•' */
.icon-cancel-squared:before { content: '\e864'; } /* 'Ó°§' */
.icon-plus:before { content: '\e863'; } /* 'Ó°£' */
.icon-plus-circled:before { content: '\e862'; } /* 'Ó°¢' */
.icon-plus-squared:before { content: '\e861'; } /* 'Ó°°' */
.icon-minus:before { content: '\e860'; } /* 'Ó°†' */
.icon-minus-circled:before { content: '\e85f'; } /* 'Ó°ü' */
.icon-minus-squared:before { content: '\e85e'; } /* 'Ó°û' */
.icon-help:before { content: '\e85d'; } /* 'Ó°ù' */
.icon-help-circled:before { content: '\e85c'; } /* 'Ó°ú' */
.icon-info:before { content: '\e85b'; } /* 'Ó°õ' */
.icon-info-circled:before { content: '\e85a'; } /* 'Ó°ö' */
.icon-back:before { content: '\e859'; } /* 'Ó°ô' */
.icon-home:before { content: '\e858'; } /* 'Ó°ò' */
.icon-link:before { content: '\e857'; } /* 'Ó°ó' */
.icon-attach:before { content: '\e847'; } /* 'Ó°á' */
.icon-lock:before { content: '\e846'; } /* 'Ó°Ü' */
.icon-lock-open:before { content: '\e843'; } /* 'Ó°É' */
.icon-eye:before { content: '\e842'; } /* 'Ó°Ç' */
.icon-tag:before { content: '\e840'; } /* 'Ó°Ä' */
.icon-bookmark:before { content: '\e866'; } /* 'Ó°¶' */
.icon-bookmarks:before { content: '\e867'; } /* 'Ó°ß' */
.icon-flag:before { content: '\e868'; } /* 'Ó°®' */
.icon-thumbs-up:before { content: '\e869'; } /* 'Ó°©' */
.icon-thumbs-down:before { content: '\e874'; } /* 'Ó°¥' */
.icon-download:before { content: '\e877'; } /* 'Ó°∑' */
.icon-upload:before { content: '\e878'; } /* 'Ó°∏' */
.icon-upload-cloud:before { content: '\e87c'; } /* 'Ó°º' */
.icon-reply:before { content: '\e87d'; } /* 'Ó°Ω' */
.icon-reply-all:before { content: '\e883'; } /* 'Ó¢É' */
.icon-forward:before { content: '\e886'; } /* 'Ó¢Ü' */
.icon-quote:before { content: '\e887'; } /* 'Ó¢á' */
.icon-code:before { content: '\e88c'; } /* 'Ó¢å' */
.icon-export:before { content: '\e88d'; } /* 'Ó¢ç' */
.icon-pencil:before { content: '\e892'; } /* 'Ó¢í' */
.icon-feather:before { content: '\e893'; } /* 'Ó¢ì' */
.icon-print-1:before { content: '\e898'; } /* 'Ó¢ò' */
.icon-retweet:before { content: '\e899'; } /* 'Ó¢ô' */
.icon-keyboard:before { content: '\e89e'; } /* 'Ó¢û' */
.icon-comment:before { content: '\e89f'; } /* 'Ó¢ü' */
.icon-chat:before { content: '\e86a'; } /* 'Ó°™' */
.icon-bell:before { content: '\e871'; } /* 'Ó°±' */
.icon-attention:before { content: '\e86d'; } /* 'Ó°≠' */
.icon-alert:before { content: '\e870'; } /* 'Ó°∞' */
.icon-vcard:before { content: '\e873'; } /* 'Ó°≥' */
.icon-address:before { content: '\e872'; } /* 'Ó°≤' */
.icon-location:before { content: '\e879'; } /* 'Ó°π' */
.icon-map:before { content: '\e87e'; } /* 'Ó°æ' */
.icon-direction:before { content: '\e87f'; } /* 'Ó°ø' */
.icon-compass:before { content: '\e882'; } /* 'Ó¢Ç' */
.icon-cup:before { content: '\e884'; } /* 'Ó¢Ñ' */
.icon-trash:before { content: '\e888'; } /* 'Ó¢à' */
.icon-doc:before { content: '\e88b'; } /* 'Ó¢ã' */
.icon-docs:before { content: '\e88e'; } /* 'Ó¢é' */
.icon-doc-landscape:before { content: '\e891'; } /* 'Ó¢ë' */
.icon-doc-text:before { content: '\e894'; } /* 'Ó¢î' */
.icon-doc-text-inv:before { content: '\e897'; } /* 'Ó¢ó' */
.icon-newspaper:before { content: '\e89a'; } /* 'Ó¢ö' */
.icon-book-open:before { content: '\e89d'; } /* 'Ó¢ù' */
.icon-book:before { content: '\e8a0'; } /* 'Ó¢†' */
.icon-folder:before { content: '\e86b'; } /* 'Ó°´' */
.icon-archive:before { content: '\e86c'; } /* 'Ó°¨' */
.icon-box:before { content: '\e86e'; } /* 'Ó°Æ' */
.icon-rss-1:before { content: '\e86f'; } /* 'Ó°Ø' */
.icon-phone:before { content: '\e875'; } /* 'Ó°µ' */
.icon-cog:before { content: '\e876'; } /* 'Ó°∂' */
.icon-tools:before { content: '\e87b'; } /* 'Ó°ª' */
.icon-share:before { content: '\e87a'; } /* 'Ó°∫' */
.icon-shareable:before { content: '\e880'; } /* 'Ó¢Ä' */
.icon-basket:before { content: '\e881'; } /* 'Ó¢Å' */
.icon-bag:before { content: '\e885'; } /* 'Ó¢Ö' */
.icon-calendar-1:before { content: '\e889'; } /* 'Ó¢â' */
.icon-login:before { content: '\e88a'; } /* 'Ó¢ä' */
.icon-logout:before { content: '\e88f'; } /* 'Ó¢è' */
.icon-mic:before { content: '\e890'; } /* 'Ó¢ê' */
.icon-mute:before { content: '\e895'; } /* 'Ó¢ï' */
.icon-sound:before { content: '\e896'; } /* 'Ó¢ñ' */
.icon-volume:before { content: '\e89b'; } /* 'Ó¢õ' */
.icon-clock:before { content: '\e89c'; } /* 'Ó¢ú' */
.icon-hourglass:before { content: '\e8a1'; } /* 'Ó¢°' */
.icon-lamp:before { content: '\e8b5'; } /* 'Ó¢µ' */
.icon-light-down:before { content: '\e8b4'; } /* 'Ó¢¥' */
.icon-light-up:before { content: '\e8b3'; } /* 'Ó¢≥' */
.icon-adjust:before { content: '\e8b2'; } /* 'Ó¢≤' */
.icon-block:before { content: '\e8b1'; } /* 'Ó¢±' */
.icon-resize-full:before { content: '\e8b0'; } /* 'Ó¢∞' */
.icon-resize-small:before { content: '\e8af'; } /* 'Ó¢Ø' */
.icon-popup:before { content: '\e8ae'; } /* 'Ó¢Æ' */
.icon-publish:before { content: '\e8ad'; } /* 'Ó¢≠' */
.icon-window:before { content: '\e8ac'; } /* 'Ó¢¨' */
.icon-arrow-combo:before { content: '\e8ab'; } /* 'Ó¢´' */
.icon-down-circled:before { content: '\e8aa'; } /* 'Ó¢™' */
.icon-left-circled:before { content: '\e8a9'; } /* 'Ó¢©' */
.icon-right-circled:before { content: '\e8a8'; } /* 'Ó¢®' */
.icon-up-circled:before { content: '\e8a7'; } /* 'Ó¢ß' */
.icon-down-open:before { content: '\e8a6'; } /* 'Ó¢¶' */
.icon-left-open:before { content: '\e8a5'; } /* 'Ó¢•' */
.icon-right-open:before { content: '\e8a4'; } /* 'Ó¢§' */
.icon-up-open:before { content: '\e8a3'; } /* 'Ó¢£' */
.icon-down-open-mini:before { content: '\e8a2'; } /* 'Ó¢¢' */
.icon-left-open-mini:before { content: '\e8b6'; } /* 'Ó¢∂' */
.icon-right-open-mini:before { content: '\e8b7'; } /* 'Ó¢∑' */
.icon-up-open-mini:before { content: '\e8b8'; } /* 'Ó¢∏' */
.icon-down-open-big:before { content: '\e8b9'; } /* 'Ó¢π' */
.icon-left-open-big:before { content: '\e8ba'; } /* 'Ó¢∫' */
.icon-right-open-big:before { content: '\e8bb'; } /* 'Ó¢ª' */
.icon-up-open-big:before { content: '\e8bc'; } /* 'Ó¢º' */
.icon-down:before { content: '\e8bd'; } /* 'Ó¢Ω' */
.icon-left:before { content: '\e8be'; } /* 'Ó¢æ' */
.icon-right:before { content: '\e8bf'; } /* 'Ó¢ø' */
.icon-up:before { content: '\e8c0'; } /* 'Ó£Ä' */
.icon-down-dir:before { content: '\e8c1'; } /* 'Ó£Å' */
.icon-left-dir:before { content: '\e8c2'; } /* 'Ó£Ç' */
.icon-right-dir:before { content: '\e8c3'; } /* 'Ó£É' */
.icon-up-dir:before { content: '\e8c4'; } /* 'Ó£Ñ' */
.icon-down-bold:before { content: '\e8c5'; } /* 'Ó£Ö' */
.icon-left-bold:before { content: '\e8c6'; } /* 'Ó£Ü' */
.icon-right-bold:before { content: '\e8c7'; } /* 'Ó£á' */
.icon-up-bold:before { content: '\e8c8'; } /* 'Ó£à' */
.icon-down-thin:before { content: '\e8c9'; } /* 'Ó£â' */
.icon-left-thin:before { content: '\e8dd'; } /* 'Ó£ù' */
.icon-right-thin:before { content: '\e8dc'; } /* 'Ó£ú' */
.icon-up-thin:before { content: '\e8db'; } /* 'Ó£õ' */
.icon-ccw:before { content: '\e8da'; } /* 'Ó£ö' */
.icon-cw:before { content: '\e8d9'; } /* 'Ó£ô' */
.icon-arrows-ccw:before { content: '\e8d8'; } /* 'Ó£ò' */
.icon-level-down:before { content: '\e8d7'; } /* 'Ó£ó' */
.icon-level-up:before { content: '\e8d6'; } /* 'Ó£ñ' */
.icon-shuffle:before { content: '\e8d5'; } /* 'Ó£ï' */
.icon-loop:before { content: '\e8d4'; } /* 'Ó£î' */
.icon-switch:before { content: '\e8d3'; } /* 'Ó£ì' */
.icon-play:before { content: '\e8d2'; } /* 'Ó£í' */
.icon-stop:before { content: '\e8d1'; } /* 'Ó£ë' */
.icon-pause:before { content: '\e8d0'; } /* 'Ó£ê' */
.icon-record:before { content: '\e8cf'; } /* 'Ó£è' */
.icon-to-end:before { content: '\e8ce'; } /* 'Ó£é' */
.icon-to-start:before { content: '\e8cd'; } /* 'Ó£ç' */
.icon-fast-forward:before { content: '\e8cc'; } /* 'Ó£å' */
.icon-fast-backward:before { content: '\e8cb'; } /* 'Ó£ã' */
.icon-progress-0:before { content: '\e8ca'; } /* 'Ó£ä' */
.icon-progress-1:before { content: '\e8de'; } /* 'Ó£û' */
.icon-progress-2:before { content: '\e8df'; } /* 'Ó£ü' */
.icon-progress-3:before { content: '\e8e0'; } /* 'Ó£†' */
.icon-target:before { content: '\e8e1'; } /* 'Ó£°' */
.icon-palette:before { content: '\e8e2'; } /* 'Ó£¢' */
.icon-list:before { content: '\e8e3'; } /* 'Ó££' */
.icon-list-add:before { content: '\e8e4'; } /* 'Ó£§' */
.icon-signal:before { content: '\e8e5'; } /* 'Ó£•' */
.icon-trophy:before { content: '\e8e6'; } /* 'Ó£¶' */
.icon-battery:before { content: '\e8e7'; } /* 'Ó£ß' */
.icon-back-in-time:before { content: '\e8e8'; } /* 'Ó£®' */
.icon-monitor:before { content: '\e8e9'; } /* 'Ó£©' */
.icon-note-beamed:before { content: '\e849'; } /* 'Ó°â' */
.icon-network:before { content: '\e8eb'; } /* 'Ó£´' */
.icon-cd:before { content: '\e8ec'; } /* 'Ó£¨' */
.icon-inbox:before { content: '\e8ed'; } /* 'Ó£≠' */
.icon-install:before { content: '\e8ee'; } /* 'Ó£Æ' */
.icon-globe:before { content: '\e8ef'; } /* 'Ó£Ø' */
.icon-cloud:before { content: '\e8f0'; } /* 'Ó£∞' */
.icon-cloud-thunder:before { content: '\e8f1'; } /* 'Ó£±' */
.icon-flash:before { content: '\e905'; } /* 'Ó§Ö' */
.icon-moon:before { content: '\e904'; } /* 'Ó§Ñ' */
.icon-flight:before { content: '\e903'; } /* 'Ó§É' */
.icon-paper-plane:before { content: '\e902'; } /* 'Ó§Ç' */
.icon-leaf:before { content: '\e901'; } /* 'Ó§Å' */
.icon-lifebuoy:before { content: '\e900'; } /* 'Ó§Ä' */
.icon-mouse:before { content: '\e8ff'; } /* 'Ó£ø' */
.icon-briefcase:before { content: '\e8fe'; } /* 'Ó£æ' */
.icon-suitcase:before { content: '\e8fd'; } /* 'Ó£Ω' */
.icon-dot:before { content: '\e8fb'; } /* 'Ó£ª' */
.icon-dot-2:before { content: '\e8fc'; } /* 'Ó£º' */
.icon-dot-3:before { content: '\e8fa'; } /* 'Ó£∫' */
.icon-brush:before { content: '\e8f9'; } /* 'Ó£π' */
.icon-magnet:before { content: '\e8f8'; } /* 'Ó£∏' */
.icon-infinity:before { content: '\e8f7'; } /* 'Ó£∑' */
.icon-erase:before { content: '\e8f6'; } /* 'Ó£∂' */
.icon-chart-pie:before { content: '\e8f5'; } /* 'Ó£µ' */
.icon-chart-line:before { content: '\e8f4'; } /* 'Ó£¥' */
.icon-chart-bar:before { content: '\e8f3'; } /* 'Ó£≥' */
.icon-chart-area:before { content: '\e8f2'; } /* 'Ó£≤' */
.icon-tape:before { content: '\e906'; } /* 'Ó§Ü' */
.icon-graduation-cap:before { content: '\e907'; } /* 'Ó§á' */
.icon-language:before { content: '\e908'; } /* 'Ó§à' */
.icon-ticket:before { content: '\e909'; } /* 'Ó§â' */
.icon-water:before { content: '\e90a'; } /* 'Ó§ä' */
.icon-droplet:before { content: '\e90b'; } /* 'Ó§ã' */
.icon-air:before { content: '\e90c'; } /* 'Ó§å' */
.icon-credit-card:before { content: '\e90d'; } /* 'Ó§ç' */
.icon-floppy:before { content: '\e90e'; } /* 'Ó§é' */
.icon-clipboard:before { content: '\e90f'; } /* 'Ó§è' */
.icon-megaphone:before { content: '\e910'; } /* 'Ó§ê' */
.icon-database:before { content: '\e911'; } /* 'Ó§ë' */
.icon-drive:before { content: '\e912'; } /* 'Ó§í' */
.icon-bucket:before { content: '\e913'; } /* 'Ó§ì' */
.icon-thermometer:before { content: '\e914'; } /* 'Ó§î' */
.icon-key:before { content: '\e915'; } /* 'Ó§ï' */
.icon-flow-cascade:before { content: '\e916'; } /* 'Ó§ñ' */
.icon-flow-branch:before { content: '\e917'; } /* 'Ó§ó' */
.icon-flow-tree:before { content: '\e918'; } /* 'Ó§ò' */
.icon-flow-line:before { content: '\e919'; } /* 'Ó§ô' */
.icon-flow-parallel:before { content: '\e92d'; } /* 'Ó§≠' */
.icon-rocket:before { content: '\e92c'; } /* 'Ó§¨' */
.icon-gauge:before { content: '\e92b'; } /* 'Ó§´' */
.icon-traffic-cone:before { content: '\e92a'; } /* 'Ó§™' */
.icon-cc-1:before { content: '\e929'; } /* 'Ó§©' */
.icon-cc-by:before { content: '\e928'; } /* 'Ó§®' */
.icon-cc-nc:before { content: '\e927'; } /* 'Ó§ß' */
.icon-cc-nc-eu:before { content: '\e926'; } /* 'Ó§¶' */
.icon-cc-nc-jp:before { content: '\e925'; } /* 'Ó§•' */
.icon-cc-sa:before { content: '\e924'; } /* 'Ó§§' */
.icon-cc-nd:before { content: '\e923'; } /* 'Ó§£' */
.icon-cc-pd:before { content: '\e922'; } /* 'Ó§¢' */
.icon-cc-zero:before { content: '\e921'; } /* 'Ó§°' */
.icon-cc-share:before { content: '\e920'; } /* 'Ó§†' */
.icon-cc-remix:before { content: '\e91f'; } /* 'Ó§ü' */
.icon-github-1:before { content: '\e91e'; } /* 'Ó§û' */
.icon-github-circled-1:before { content: '\e91d'; } /* 'Ó§ù' */
.icon-flickr-1:before { content: '\e91c'; } /* 'Ó§ú' */
.icon-flickr-circled:before { content: '\e91b'; } /* 'Ó§õ' */
.icon-vimeo-1:before { content: '\e91a'; } /* 'Ó§ö' */
.icon-vimeo-circled:before { content: '\e92e'; } /* 'Ó§Æ' */
.icon-twitter-1:before { content: '\e92f'; } /* 'Ó§Ø' */
.icon-twitter-circled:before { content: '\e930'; } /* 'Ó§∞' */
.icon-facebook-1:before { content: '\e931'; } /* 'Ó§±' */
.icon-facebook-circled:before { content: '\e932'; } /* 'Ó§≤' */
.icon-facebook-squared:before { content: '\e933'; } /* 'Ó§≥' */
.icon-gplus-1:before { content: '\e934'; } /* 'Ó§¥' */
.icon-gplus-circled:before { content: '\e935'; } /* 'Ó§µ' */
.icon-pinterest-1:before { content: '\e936'; } /* 'Ó§∂' */
.icon-pinterest-circled:before { content: '\e937'; } /* 'Ó§∑' */
.icon-tumblr-1:before { content: '\e938'; } /* 'Ó§∏' */
.icon-tumblr-circled:before { content: '\e939'; } /* 'Ó§π' */
.icon-linkedin-1:before { content: '\e93a'; } /* 'Ó§∫' */
.icon-linkedin-circled:before { content: '\e93b'; } /* 'Ó§ª' */
.icon-dribbble-1:before { content: '\e93c'; } /* 'Ó§º' */
.icon-dribbble-circled:before { content: '\e93d'; } /* 'Ó§Ω' */
.icon-stumbleupon-1:before { content: '\e93e'; } /* 'Ó§æ' */
.icon-stumbleupon-circled:before { content: '\e93f'; } /* 'Ó§ø' */
.icon-lastfm:before { content: '\e940'; } /* 'Ó•Ä' */
.icon-lastfm-circled:before { content: '\e941'; } /* 'Ó•Å' */
.icon-rdio:before { content: '\e954'; } /* 'Ó•î' */
.icon-rdio-circled:before { content: '\e953'; } /* 'Ó•ì' */
.icon-spotify:before { content: '\e952'; } /* 'Ó•í' */
.icon-qq:before { content: '\e951'; } /* 'Ó•ë' */
.icon-instagram-1:before { content: '\e950'; } /* 'Ó•ê' */
.icon-dropbox-1:before { content: '\e94f'; } /* 'Ó•è' */
.icon-evernote-1:before { content: '\e94e'; } /* 'Ó•é' */
.icon-flattr:before { content: '\e94d'; } /* 'Ó•ç' */
.icon-skype-1:before { content: '\e94c'; } /* 'Ó•å' */
.icon-skype-circled:before { content: '\e94b'; } /* 'Ó•ã' */
.icon-renren:before { content: '\e94a'; } /* 'Ó•ä' */
.icon-sina-weibo:before { content: '\e949'; } /* 'Ó•â' */
.icon-paypal-1:before { content: '\e948'; } /* 'Ó•à' */
.icon-picasa:before { content: '\e947'; } /* 'Ó•á' */
.icon-soundcloud-1:before { content: '\e946'; } /* 'Ó•Ü' */
.icon-mixi:before { content: '\e945'; } /* 'Ó•Ö' */
.icon-behance:before { content: '\e944'; } /* 'Ó•Ñ' */
.icon-google-circles:before { content: '\e943'; } /* 'Ó•É' */
.icon-vkontakte:before { content: '\e942'; } /* 'Ó•Ç' */
.icon-smashing:before { content: '\e955'; } /* 'Ó•ï' */
.icon-sweden:before { content: '\e956'; } /* 'Ó•ñ' */
.icon-db-shape:before { content: '\e957'; } /* 'Ó•ó' */
.icon-logo-db:before { content: '\e83e'; } /* 'Ó†æ' */
.icon-paypal:before { content: '\e800'; } /* 'Ó†Ä' */
.icon-eventful:before { content: '\e801'; } /* 'Ó†Å' */
.icon-smashmag:before { content: '\e802'; } /* 'Ó†Ç' */
.icon-gplus:before { content: '\e803'; } /* 'Ó†É' */
.icon-wikipedia:before { content: '\e804'; } /* 'Ó†Ñ' */
.icon-calendar:before { content: '\e805'; } /* 'Ó†Ö' */
.icon-stumbleupon:before { content: '\e806'; } /* 'Ó†Ü' */
.icon-fivehundredpx:before { content: '\e807'; } /* 'Ó†á' */
.icon-pinterest:before { content: '\e808'; } /* 'Ó†à' */
.icon-w3c:before { content: '\e809'; } /* 'Ó†â' */
.icon-foursquare:before { content: '\e80a'; } /* 'Ó†ä' */
.icon-html5:before { content: '\e80b'; } /* 'Ó†ã' */
.icon-ie:before { content: '\e80c'; } /* 'Ó†å' */
.icon-call:before { content: '\e80d'; } /* 'Ó†ç' */
.icon-digg:before { content: '\e80e'; } /* 'Ó†é' */
.icon-reddit:before { content: '\e80f'; } /* 'Ó†è' */
.icon-appstore:before { content: '\e810'; } /* 'Ó†ê' */
.icon-blogger:before { content: '\e811'; } /* 'Ó†ë' */
.icon-cc:before { content: '\e812'; } /* 'Ó†í' */
.icon-dribbble:before { content: '\e813'; } /* 'Ó†ì' */
.icon-evernote:before { content: '\e814'; } /* 'Ó†î' */
.icon-flickr:before { content: '\e815'; } /* 'Ó†ï' */
.icon-google:before { content: '\e816'; } /* 'Ó†ñ' */
.icon-instapaper:before { content: '\e817'; } /* 'Ó†ó' */
.icon-weibo:before { content: '\e818'; } /* 'Ó†ò' */
.icon-linkedin:before { content: '\e826'; } /* 'Ó†¶' */
.icon-disqus:before { content: '\e825'; } /* 'Ó†•' */
.icon-rss:before { content: '\e824'; } /* 'Ó†§' */
.icon-skype:before { content: '\e823'; } /* 'Ó†£' */
.icon-twitter:before { content: '\e822'; } /* 'Ó†¢' */
.icon-youtube:before { content: '\e821'; } /* 'Ó†°' */
.icon-vimeo:before { content: '\e820'; } /* 'Ó††' */
.icon-windows:before { content: '\e81f'; } /* 'Ó†ü' */
.icon-xing:before { content: '\e81e'; } /* 'Ó†û' */
.icon-yahoo:before { content: '\e81d'; } /* 'Ó†ù' */
.icon-email:before { content: '\e81c'; } /* 'Ó†ú' */
.icon-macstore:before { content: '\e81b'; } /* 'Ó†õ' */
.icon-podcast:before { content: '\e81a'; } /* 'Ó†ö' */
.icon-amazon:before { content: '\e819'; } /* 'Ó†ô' */
.icon-cloudapp:before { content: '\e827'; } /* 'Ó†ß' */
.icon-dropbox:before { content: '\e828'; } /* 'Ó†®' */
.icon-ebay:before { content: '\e829'; } /* 'Ó†©' */
.icon-facebook:before { content: '\e82a'; } /* 'Ó†™' */
.icon-github:before { content: '\e82b'; } /* 'Ó†´' */
.icon-github-circled:before { content: '\e82c'; } /* 'Ó†¨' */
.icon-googleplay:before { content: '\e82d'; } /* 'Ó†≠' */
.icon-itunes:before { content: '\e82e'; } /* 'Ó†Æ' */
.icon-gmail:before { content: '\e82f'; } /* 'Ó†Ø' */
.icon-soundcloud:before { content: '\e830'; } /* 'Ó†∞' */
.icon-tumblr:before { content: '\e831'; } /* 'Ó†±' */
.icon-eventbrite:before { content: '\e83b'; } /* 'Ó†ª' */
.icon-scribd:before { content: '\e83a'; } /* 'Ó†∫' */
.icon-posterous:before { content: '\e839'; } /* 'Ó†π' */
.icon-stripe:before { content: '\e838'; } /* 'Ó†∏' */
.icon-cart:before { content: '\e837'; } /* 'Ó†∑' */
.icon-print:before { content: '\e836'; } /* 'Ó†∂' */
.icon-instagram:before { content: '\e835'; } /* 'Ó†µ' */
.icon-appnet:before { content: '\e834'; } /* 'Ó†¥' */
.icon-buffer:before { content: '\e833'; } /* 'Ó†≥' */
.icon-pocket:before { content: '\e832'; } /* 'Ó†≤' */
.icon-mobile:before { content: '\e8ea'; } /* 'Ó£™' */
#stacks_in_411304_93 {
	font-size: 110%;
}
.spacerStack {
	height: 15px;
}

#spacerStackstacks_in_411304_272 {
	height: 15px;
}#stacks_in_411304_263>.s3_row {
	margin: 0 -0px;
}

#stacks_in_411304_263>.s3_row>.s3_column_left {
	width: 40.00%;
}

#stacks_in_411304_263>.s3_row>.s3_column_center {
	width: 40.000000%;
}

#stacks_in_411304_263>.s3_row>.s3_column_right {
	width: 20.00%;
}

#stacks_in_411304_263>.s3_row>.s3_column {
	padding: 0 0px;
}








@media only screen and (max-width: 770px) {



}



@media only screen and (max-width: 400px) {


	#stacks_in_411304_263>.s3_row  {
		margin: -0px 0;
	}
	#stacks_in_411304_263>.s3_row>.s3_column {
		padding: 0px 0;
		width:100%;
	}


}




#stacks_in_411304_263 {
	margin: 0px 0px 0px 30px;
}
/*******************************    GENERAL STYLING ************************************/


#CHAuImage_stacks_in_411304_267 {
		
}




#AuImage_stacks_in_411304_267, #CHAuImage_stacks_in_411304_267 {
	width: 100%;
	height:100%;
	max-width:500px;
	max-height: 500px;	
	text-align:center;
	/*margin: 0 auto;*/
	overflow: hidden;
	margin: 1% auto;
	position: relative;
	border-radius:%;
	
	-webkit-mask-position: 0 0;
-webkit-mask-size: 100% 100%;
-webkit-mask-image:-webkit-radial-gradient(center, ellipse cover, #ffffff 0%,#ffffff 71%,#000000 71%,#000000 100%);
}

#AuImage_stacks_in_411304_267 img, #CHAuImage_stacks_in_411304_267 img {
	width: 100%;
	height: 100%;
	text-align:center;
	margin: 0 auto;
	
	
}

#AuImage_stacks_in_411304_267.hexagon{
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

#AuImage_stacks_in_411304_267.circle{
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
}

#AuImage_stacks_in_411304_267.message{
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
}

#AuImage_stacks_in_411304_267.rhombas{
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}


.AuPShadow {
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);

}

/*================== CAPTION ======================*/

.AuCaption_stacks_in_411304_267 {
	
	
	position:absolute; 
	background-color: #861123 ; 
	color: white; 
	width: 100%;
	margin: 0% 0 6% 0; 
	max-width: 104%;
	max-height: 100%;	
	height:auto;width: 80%;
	padding:10%;
	display: none;
    bottom:0;
    
}

.AuCaption_stacks_in_411304_267.top{
    top: 0 ; 
    bottom:auto;
}

.AuCaption_stacks_in_411304_267 img{
		-webkit-filter: none !important;
		-moz-filter: none !important;
		-o-filter: none !important;
		-ms-filter:none !important;
		filter:none !important;
		width: auto !important;
		height: auto;
		-webkit-transform: translate3d(0,0,0);
-moz-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
-o-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
    
		
}

#AuImage_stacks_in_411304_267 .BC {
	bottom: 0;	
}

#AuImage_stacks_in_411304_267 .top{
	top: 0;
}

/*/#AuImage_stacks_in_411304_267:hover #AuCaption_stacks_in_411304_267, #CHAuImage_stacks_in_411304_267:hover #AuCaption_stacks_in_411304_267 {
	opacity: 1;
	left: 0;
}*/

#AuImage_stacks_in_411304_267 .AuCaption_stacks_in_411304_267 .stacks_out:first-of-type {
	padding: 5% 0 0 0 !important;
}

/*******************************  HOVER ************************************/


#AuImage_stacks_in_411304_267 img {
	margin: 0 auto;
	Heigh:145%; 
	Widh:145%;
	-webkit-filter:           ;
	
    -moz-filter:           ;
	   
    -o-filter:           ;
		 
    -ms-filter:           ;
		
    filter:           ;
	transform:(100deg);
	-ms-transform:(100deg); /* IE 9 */
	-webkit-transform:(100deg); /* Safari and Chrome */
 	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	
	
}

#AuImage_stacks_in_411304_267:hover img, #AuImage_stacks_in_411304_267 .AuImgHoverPreview img{
	-webkit-filter:  brightness(178%)        ;
	
    -moz-filter: brightness(178%)       ;
	   
    -o-filter: brightness(178%)        ;
		 
    -ms-filter: brightness(178%)        ;
	
    filter: brightness(178%)       ; 
	transform:(100deg);
	-ms-transform:(100deg); /* IE 9 */
	-webkit-transform:(100deg); /* Safari and Chrome */
	Heigh:0%; 
	Widh:0%;
}

#CHAuImage_stacks_in_411304_267:hover img {
	-webkit-filter: blur(1px) brightness(278%) contrast(100%) grayscale(0%) hue-rotate(157deg) invert(39%) opacity(100%) saturate(100%) sepia(0%)  ;
} 

#CHAuImage_stacks_in_411304_267 img {
	-webkit-filter: blur(0px) brightness(200%) contrast(100%) grayscale(0%) hue-rotate(0deg) invert(0%) opacity(100%) saturate(100%) sepia(17%)  ;
	
	 -webkit-transition: all 1s ease-in-out;
	  -moz-transition: all 1s ease-in-out;
	  -o-transition: all 1s ease-in-out;
	  transition: all %i=HAuTrans%s ease-in-out;	
}


/*================== BACKEND ======================*/


/*================== CAPTION OPTION ======================*/
	

/*	BOTTOM SLIDE LEFT*/

/*.BSLCaption_stacks_in_411304_267 {
	opacity: 0;
	bottom: .75%; 
	left: -100%;
}

#AuImage_stacks_in_411304_267:hover .BSLCaption_stacks_in_411304_267 , #CHAuImage_stacks_in_411304_267:hover .BSLCaption_stacks_in_411304_267{
	opacity: 1;
	left: 0;
}*/

/*	BOTTOM SLIDE BOTTOM*/

/*.BSBCaption_stacks_in_411304_267 {
	opacity:1;
	display:none;
	bottom: -200%; 
	height:80%;
	width: 80%;
	padding:10%;
	
	margin: 0 auto;
}


#AuImage_stacks_in_411304_267:hover .BSBCaption_stacks_in_411304_267 , #CHAuImage_stacks_in_411304_267:hover .BSBCaption_stacks_in_411304_267{
	opacity: 1;
	left: 0;
    bottom: 0;
}

#AuImage_stacks_in_411304_267 .BSBCaption_stacks_in_411304_267 .stacks_out {
	padding: 30% 0 !important;
}
*/
/*	BOTTOM SLIDE RIGHT*/

/*.BSRCaption_stacks_in_411304_267 {
	opacity: 0;
	right: -100%; 
	bottom:.75%;
}

#AuImage_stacks_in_411304_267:hover .BSRCaption_stacks_in_411304_267 , #CHAuImage_stacks_in_411304_267:hover .BSRCaption_stacks_in_411304_267{
	opacity: 1;
	right: 0;
}
*/
	/*	TOP SLIDE LEFT*/

/*.TSLCaption_stacks_in_411304_267 {
	opacity: 0;
	top: 0; 
	left: -100%;
}

#AuImage_stacks_in_411304_267:hover .TSLCaption_stacks_in_411304_267 , #CHAuImage_stacks_in_411304_267:hover .TSLCaption_stacks_in_411304_267{
	opacity: 1;
	left: 0;
}*/

/*	TOP SLIDE TOP*/

/*.TSTCaption_stacks_in_411304_267 {
	opacity: 0;
	top: -100%; 
	left: 0;
}

#AuImage_stacks_in_411304_267:hover .TSTCaption_stacks_in_411304_267 , #CHAuImage_stacks_in_411304_267:hover .TSTCaption_stacks_in_411304_267{
	opacity: 1;
	top: 0;
}
*/
/*	TOP SLIDE RIGHT*/

/*.TSRCaption_stacks_in_411304_267 {
	opacity: 0;
	right: -100%; 
	top: 0;
}

#AuImage_stacks_in_411304_267:hover .TSRCaption_stacks_in_411304_267 , #CHAuImage_stacks_in_411304_267:hover .TSRCaption_stacks_in_411304_267{
	opacity: 1;
	right: 0;
}*/

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {

	
	
	.AuCaption_stacks_in_411304_267  {
	opacity: 0;
	bottom: .75%; 
	left: 0;
	}
	
	/*	BOTTOM SLIDE BOTTOM*/
	
	.BSBCaption_stacks_in_411304_267 {
	opacity: 0;
	bottom: 0; 
	left: 0;
	}
	
	
	/*	BOTTOM SLIDE RIGHT*/
	
	.BSRCaption_stacks_in_411304_267 {
	opacity: 0;
	right: 0; 
	bottom:.75%;
	}
	
	/*	TOP SLIDE LEFT*/
	
	.TSLCaption_stacks_in_411304_267 {
	opacity: 0;
	top: 0; 
	left: 0;
	}
	
	/*	TOP SLIDE TOP*/
	
	.TSTCaption_stacks_in_411304_267 {
	opacity: 0;
	top: 0; 
	left: 0;
	}
	
	/*	TOP SLIDE RIGHT*/
	
	.TSRCaption_stacks_in_411304_267 {
	opacity: 0;
	right:0; 
	top: 0;
	}


	
}


@media (max-width: 600px){
	
	#AuImage_stacks_in_411304_267, #CHAuImage_stacks_in_411304_267 {
	margin: 0 auto;
	text-align:center;
	margin-bottom: 10px;
}
	
	
	/*	BOTTOM SLIDE LEFT*/
	
	.BSLCaption_stacks_in_411304_267 {
	opacity: 0;
	bottom: .75%; 
	left: 0;
	}
	
	/*	BOTTOM SLIDE BOTTOM*/
	
	.BSBCaption_stacks_in_411304_267 {
	opacity: 0;
	bottom: 0; 
	left: 0;
	}
	
	
	/*	BOTTOM SLIDE RIGHT*/
	
	.BSRCaption_stacks_in_411304_267 {
	opacity: 0;
	right: 0; 
	bottom:.75%;
	}
	
	/*	TOP SLIDE LEFT*/
	
	.TSLCaption_stacks_in_411304_267 {
	opacity: 0;
	top: 0; 
	left: 0;
	}
	
	/*	TOP SLIDE TOP*/
	
	.TSTCaption_stacks_in_411304_267 {
	opacity: 0;
	top: 0; 
	left: 0;
	}
	
	/*	TOP SLIDE RIGHT*/
	
	.TSRCaption_stacks_in_411304_267 {
	opacity: 0;
	right:0; 
	top: 0;
	}


	
}
	
	




.spacerStack {
	height: 1px;
}

#spacerStackstacks_in_411304_285 {
	height: 1px;
}.spacerStack {
	height: 1px;
}

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

#spacerStackstacks_in_411304_110 {
	height: 20px;
}
#stacks_in_411304_110 {
	border: solid rgba(253, 255, 255, 1.00);
	border-width: 1px 0px 0px 0px;
}

#stacks_out_411304_110 {
	width: 100px;
	margin-left:0;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411304_112Calligrapher{			font-size: 140% !important;			color: #CFD1DA !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.9em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: left !important;		}				.stacks_in_411304_112Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_112Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_112Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_112Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_112Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_112Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_112Calligrapher h6, .stacks_in_411304_112Calligrapher h5, .stacks_in_411304_112Calligrapher h4, .stacks_in_411304_112Calligrapher h3, .stacks_in_411304_112Calligrapher h2, .stacks_in_411304_112Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411304_112Calligrapher, .stacks_in_411304_112Calligrapher h1, .stacks_in_411304_112Calligrapher h2, .stacks_in_411304_112Calligrapher h3, .stacks_in_411304_112Calligrapher h4, .stacks_in_411304_112Calligrapher h5, .stacks_in_411304_112Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411304_112targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411304_112Calligrapher a:link{			color: #CFD1DA !important;			text-decoration: none !important;		}				.stacks_in_411304_112Calligrapher a:visited{			color: #CFD1DA !important;		}				.stacks_in_411304_112Calligrapher a:active{			color: #CFD1DA !important;		}				.stacks_in_411304_112Calligrapher a:hover{			color: #5CA9FF !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code *//* LinkListerThing Stack— B3: Bigfoot Responsive by RapidWeaver Central */




/* LINK LISTS 
====================== */


#stacks_in_411304_115 #linklisterThingstacks_in_411304_115 {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
  	-webkit-backface-visibility: hidden;
  	-webkit-transform: rotate(0deg) skewY(0deg);
}

#stacks_in_411304_115 #listthingstacks_in_411304_115 {
	display: block;
	position: relative;
}

#stacks_in_411304_115 #listthingstacks_in_411304_115 ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

#stacks_in_411304_115 #listthingstacks_in_411304_115 li {
		
	color: #5CA9FF;
	font-size: 110%;
	margin: 0;
	padding: 0 0 0 0px;
	position: relative;
	text-decoration:none;
	line-height: 30px;
}

#stacks_in_411304_115 #listthingstacks_in_411304_115 li a {
	color: #5CA9FF;
	text-decoration:none;
}

#stacks_in_411304_115 #listthingstacks_in_411304_115 li:hover, #stacks_in_411304_115 #listthingstacks_in_411304_115 li a:hover, #stacks_in_411304_115 #listthingstacks_in_411304_115 li:hover a  {
	text-decoration:none;
	color: #5CA9FF !important;
}

#stacks_in_411304_115 .icon-dot {
	
	color:  #5CA9FF !important;
	font-size: 110%;
 		
}

#stacks_in_411304_115  .text_padding_left a {
	padding-left: 0px;
	color:  #5CA9FF;
}

#stacks_in_411304_115 #listthingstacks_in_411304_115 li:hover span.icon-dot, #stacks_in_411304_115 #listthingstacks_in_411304_115 li:hover  span.text_padding_left    {
	color: #5CA9FF !important;
}

/* LINK EFFECTS 
====================== */

/*  0. No Background  */

.hover_effect0stacks_in_411304_115 {
	background: transparent;
}

/*  1. Rollover   */

.hover_effect1stacks_in_411304_115 {
	background: #A1EBF9;
}

.hover_effect1stacks_in_411304_115:hover {
	background: #DA4453;
}



/*  4.  Brackets Effect  */

.hover_effect4stacks_in_411304_115  {
	position: relative;
	padding: 0;
 	-webkit-backface-visibility: hidden;
  	-webkit-transform: rotate(0deg) skewY(0deg);
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
    		 box-sizing: border-box;
}

.hover_effect4stacks_in_411304_115 a::before,
.hover_effect4stacks_in_411304_115 a::after {
	display: inline-block;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
	   -moz-transition: -moz-transform 0.3s, opacity 0.2s;
			transition: transform 0.3s, opacity 0.2s;
}

.hover_effect4stacks_in_411304_115 a::before {
	margin-right: 10px;
	content: '[';
	-webkit-transform: translateX(20px);
	   -moz-transform: translateX(20px);
			transform: translateX(20px);
}

.hover_effect4stacks_in_411304_115 a::after {
	margin-left: 10px;
	content: ']';
	-webkit-transform: translateX(-20px);
	   -moz-transform: translateX(-20px);
			transform: translateX(-20px);
}

.hover_effect4stacks_in_411304_115 a:hover::before,
.hover_effect4stacks_in_411304_115 a:hover::after,
.hover_effect4stacks_in_411304_115 a:focus::before,
.hover_effect4stacks_in_411304_115 a:focus::after {
	opacity: 1;
	color: ;
	-webkit-transform: translateX(0px);
	   -moz-transform: translateX(0px);
			transform: translateX(0px);
}

/*  5. Animated  Slide Effect */

.hover_effect5stacks_in_411304_115 a:hover {
 	text-decoration: none;
}

.hover_effect5stacks_in_411304_115 a:active {
 	text-decoration: none;
}

.hover_effect5stacks_in_411304_115 a:before, 
.hover_effect5stacks_in_411304_115 a:after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 100%;
	width: 0;
	height: 100%;
	background: #DA4453;
	-webkit-transition: width 300ms ease;
	transition: width 300ms ease;
	z-index: -1;
}

.hover_effect5stacks_in_411304_115 a:after {
	left: 100%;
	left: 0;
}

.hover_effect5stacks_in_411304_115 a:hover:before, 
.hover_effect5stacks_in_411304_115 a:hover:after {
	width: 100%;
}

/*  6 Sandwich  Effect */

.hover_effect6stacks_in_411304_115 {
}

.hover_effect6stacks_in_411304_115 a {
	padding: 10px 10px 10px 0;
	color: #5CA9FF;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

.hover_effect6stacks_in_411304_115 a::before,
.hover_effect6stacks_in_411304_115 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #5CA9FF;
	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);
}

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

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

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

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

/*
*
* ## Entypo 
* Copyright (C) 2012 by Daniel Bruce
* Author:    Daniel Bruce
* License:  CC BY-SA (http://creativecommons.org/licenses/by-sa/2.0/)
* Homepage:  http://www.entypo.com
*
* ## Zocial 
* Copyright (C) 2012 by Sam Collins
* Author:    Sam Collins
* License:   MIT (http://opensource.org/licenses/mit-license.php)
* Homepage:  http://zocial.smcllns.com/
*
*/

/* EntypoThing Fonts */         


@font-face {
  font-family: 'entypothing';
  src: url('../files/font/entypothing.eot?24089826');
  src: url('../files/font/entypothing.eot?24089826#iefix') format('embedded-opentype'),
       url('../files/font/entypothing.woff?24089826') format('woff'),
       url('../files/font/entypothing.ttf?24089826') format('truetype'),
       url('../files/font/entypothing.svg?24089826#entypothing') format('svg');
  font-weight: normal;
  font-style: normal;
}
 
  #stacks_in_411304_115 [class^="icon-dot"]:before, #stacks_in_411304_115 [class*="icon-dot"]:before {
  font-family: "entypothing";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height:  30px;
  margin-left: .2em;
}
 
.icon-note:before { content: '\e83d'; } /* 'Ó†Ω' */
.icon-stackoverflow:before { content: '\e83c'; } /* 'Ó†º' */
.icon-music:before { content: '\e84a'; } /* 'Ó°ä' */
.icon-search:before { content: '\e84b'; } /* 'Ó°ã' */
.icon-flashlight:before { content: '\e84c'; } /* 'Ó°å' */
.icon-mail:before { content: '\e84d'; } /* 'Ó°ç' */
.icon-heart:before { content: '\e84e'; } /* 'Ó°é' */
.icon-heart-empty:before { content: '\e84f'; } /* 'Ó°è' */
.icon-star:before { content: '\e850'; } /* 'Ó°ê' */
.icon-star-empty:before { content: '\e851'; } /* 'Ó°ë' */
.icon-user:before { content: '\e852'; } /* 'Ó°í' */
.icon-users:before { content: '\e853'; } /* 'Ó°ì' */
.icon-user-add:before { content: '\e854'; } /* 'Ó°î' */
.icon-video:before { content: '\e855'; } /* 'Ó°ï' */
.icon-picture:before { content: '\e856'; } /* 'Ó°ñ' */
.icon-camera:before { content: '\e848'; } /* 'Ó°à' */
.icon-layout:before { content: '\e845'; } /* 'Ó°Ö' */
.icon-menu:before { content: '\e844'; } /* 'Ó°Ñ' */
.icon-check:before { content: '\e841'; } /* 'Ó°Å' */
.icon-cancel:before { content: '\e83f'; } /* 'Ó†ø' */
.icon-cancel-circled:before { content: '\e865'; } /* 'Ó°•' */
.icon-cancel-squared:before { content: '\e864'; } /* 'Ó°§' */
.icon-plus:before { content: '\e863'; } /* 'Ó°£' */
.icon-plus-circled:before { content: '\e862'; } /* 'Ó°¢' */
.icon-plus-squared:before { content: '\e861'; } /* 'Ó°°' */
.icon-minus:before { content: '\e860'; } /* 'Ó°†' */
.icon-minus-circled:before { content: '\e85f'; } /* 'Ó°ü' */
.icon-minus-squared:before { content: '\e85e'; } /* 'Ó°û' */
.icon-help:before { content: '\e85d'; } /* 'Ó°ù' */
.icon-help-circled:before { content: '\e85c'; } /* 'Ó°ú' */
.icon-info:before { content: '\e85b'; } /* 'Ó°õ' */
.icon-info-circled:before { content: '\e85a'; } /* 'Ó°ö' */
.icon-back:before { content: '\e859'; } /* 'Ó°ô' */
.icon-home:before { content: '\e858'; } /* 'Ó°ò' */
.icon-link:before { content: '\e857'; } /* 'Ó°ó' */
.icon-attach:before { content: '\e847'; } /* 'Ó°á' */
.icon-lock:before { content: '\e846'; } /* 'Ó°Ü' */
.icon-lock-open:before { content: '\e843'; } /* 'Ó°É' */
.icon-eye:before { content: '\e842'; } /* 'Ó°Ç' */
.icon-tag:before { content: '\e840'; } /* 'Ó°Ä' */
.icon-bookmark:before { content: '\e866'; } /* 'Ó°¶' */
.icon-bookmarks:before { content: '\e867'; } /* 'Ó°ß' */
.icon-flag:before { content: '\e868'; } /* 'Ó°®' */
.icon-thumbs-up:before { content: '\e869'; } /* 'Ó°©' */
.icon-thumbs-down:before { content: '\e874'; } /* 'Ó°¥' */
.icon-download:before { content: '\e877'; } /* 'Ó°∑' */
.icon-upload:before { content: '\e878'; } /* 'Ó°∏' */
.icon-upload-cloud:before { content: '\e87c'; } /* 'Ó°º' */
.icon-reply:before { content: '\e87d'; } /* 'Ó°Ω' */
.icon-reply-all:before { content: '\e883'; } /* 'Ó¢É' */
.icon-forward:before { content: '\e886'; } /* 'Ó¢Ü' */
.icon-quote:before { content: '\e887'; } /* 'Ó¢á' */
.icon-code:before { content: '\e88c'; } /* 'Ó¢å' */
.icon-export:before { content: '\e88d'; } /* 'Ó¢ç' */
.icon-pencil:before { content: '\e892'; } /* 'Ó¢í' */
.icon-feather:before { content: '\e893'; } /* 'Ó¢ì' */
.icon-print-1:before { content: '\e898'; } /* 'Ó¢ò' */
.icon-retweet:before { content: '\e899'; } /* 'Ó¢ô' */
.icon-keyboard:before { content: '\e89e'; } /* 'Ó¢û' */
.icon-comment:before { content: '\e89f'; } /* 'Ó¢ü' */
.icon-chat:before { content: '\e86a'; } /* 'Ó°™' */
.icon-bell:before { content: '\e871'; } /* 'Ó°±' */
.icon-attention:before { content: '\e86d'; } /* 'Ó°≠' */
.icon-alert:before { content: '\e870'; } /* 'Ó°∞' */
.icon-vcard:before { content: '\e873'; } /* 'Ó°≥' */
.icon-address:before { content: '\e872'; } /* 'Ó°≤' */
.icon-location:before { content: '\e879'; } /* 'Ó°π' */
.icon-map:before { content: '\e87e'; } /* 'Ó°æ' */
.icon-direction:before { content: '\e87f'; } /* 'Ó°ø' */
.icon-compass:before { content: '\e882'; } /* 'Ó¢Ç' */
.icon-cup:before { content: '\e884'; } /* 'Ó¢Ñ' */
.icon-trash:before { content: '\e888'; } /* 'Ó¢à' */
.icon-doc:before { content: '\e88b'; } /* 'Ó¢ã' */
.icon-docs:before { content: '\e88e'; } /* 'Ó¢é' */
.icon-doc-landscape:before { content: '\e891'; } /* 'Ó¢ë' */
.icon-doc-text:before { content: '\e894'; } /* 'Ó¢î' */
.icon-doc-text-inv:before { content: '\e897'; } /* 'Ó¢ó' */
.icon-newspaper:before { content: '\e89a'; } /* 'Ó¢ö' */
.icon-book-open:before { content: '\e89d'; } /* 'Ó¢ù' */
.icon-book:before { content: '\e8a0'; } /* 'Ó¢†' */
.icon-folder:before { content: '\e86b'; } /* 'Ó°´' */
.icon-archive:before { content: '\e86c'; } /* 'Ó°¨' */
.icon-box:before { content: '\e86e'; } /* 'Ó°Æ' */
.icon-rss-1:before { content: '\e86f'; } /* 'Ó°Ø' */
.icon-phone:before { content: '\e875'; } /* 'Ó°µ' */
.icon-cog:before { content: '\e876'; } /* 'Ó°∂' */
.icon-tools:before { content: '\e87b'; } /* 'Ó°ª' */
.icon-share:before { content: '\e87a'; } /* 'Ó°∫' */
.icon-shareable:before { content: '\e880'; } /* 'Ó¢Ä' */
.icon-basket:before { content: '\e881'; } /* 'Ó¢Å' */
.icon-bag:before { content: '\e885'; } /* 'Ó¢Ö' */
.icon-calendar-1:before { content: '\e889'; } /* 'Ó¢â' */
.icon-login:before { content: '\e88a'; } /* 'Ó¢ä' */
.icon-logout:before { content: '\e88f'; } /* 'Ó¢è' */
.icon-mic:before { content: '\e890'; } /* 'Ó¢ê' */
.icon-mute:before { content: '\e895'; } /* 'Ó¢ï' */
.icon-sound:before { content: '\e896'; } /* 'Ó¢ñ' */
.icon-volume:before { content: '\e89b'; } /* 'Ó¢õ' */
.icon-clock:before { content: '\e89c'; } /* 'Ó¢ú' */
.icon-hourglass:before { content: '\e8a1'; } /* 'Ó¢°' */
.icon-lamp:before { content: '\e8b5'; } /* 'Ó¢µ' */
.icon-light-down:before { content: '\e8b4'; } /* 'Ó¢¥' */
.icon-light-up:before { content: '\e8b3'; } /* 'Ó¢≥' */
.icon-adjust:before { content: '\e8b2'; } /* 'Ó¢≤' */
.icon-block:before { content: '\e8b1'; } /* 'Ó¢±' */
.icon-resize-full:before { content: '\e8b0'; } /* 'Ó¢∞' */
.icon-resize-small:before { content: '\e8af'; } /* 'Ó¢Ø' */
.icon-popup:before { content: '\e8ae'; } /* 'Ó¢Æ' */
.icon-publish:before { content: '\e8ad'; } /* 'Ó¢≠' */
.icon-window:before { content: '\e8ac'; } /* 'Ó¢¨' */
.icon-arrow-combo:before { content: '\e8ab'; } /* 'Ó¢´' */
.icon-down-circled:before { content: '\e8aa'; } /* 'Ó¢™' */
.icon-left-circled:before { content: '\e8a9'; } /* 'Ó¢©' */
.icon-right-circled:before { content: '\e8a8'; } /* 'Ó¢®' */
.icon-up-circled:before { content: '\e8a7'; } /* 'Ó¢ß' */
.icon-down-open:before { content: '\e8a6'; } /* 'Ó¢¶' */
.icon-left-open:before { content: '\e8a5'; } /* 'Ó¢•' */
.icon-right-open:before { content: '\e8a4'; } /* 'Ó¢§' */
.icon-up-open:before { content: '\e8a3'; } /* 'Ó¢£' */
.icon-down-open-mini:before { content: '\e8a2'; } /* 'Ó¢¢' */
.icon-left-open-mini:before { content: '\e8b6'; } /* 'Ó¢∂' */
.icon-right-open-mini:before { content: '\e8b7'; } /* 'Ó¢∑' */
.icon-up-open-mini:before { content: '\e8b8'; } /* 'Ó¢∏' */
.icon-down-open-big:before { content: '\e8b9'; } /* 'Ó¢π' */
.icon-left-open-big:before { content: '\e8ba'; } /* 'Ó¢∫' */
.icon-right-open-big:before { content: '\e8bb'; } /* 'Ó¢ª' */
.icon-up-open-big:before { content: '\e8bc'; } /* 'Ó¢º' */
.icon-down:before { content: '\e8bd'; } /* 'Ó¢Ω' */
.icon-left:before { content: '\e8be'; } /* 'Ó¢æ' */
.icon-right:before { content: '\e8bf'; } /* 'Ó¢ø' */
.icon-up:before { content: '\e8c0'; } /* 'Ó£Ä' */
.icon-down-dir:before { content: '\e8c1'; } /* 'Ó£Å' */
.icon-left-dir:before { content: '\e8c2'; } /* 'Ó£Ç' */
.icon-right-dir:before { content: '\e8c3'; } /* 'Ó£É' */
.icon-up-dir:before { content: '\e8c4'; } /* 'Ó£Ñ' */
.icon-down-bold:before { content: '\e8c5'; } /* 'Ó£Ö' */
.icon-left-bold:before { content: '\e8c6'; } /* 'Ó£Ü' */
.icon-right-bold:before { content: '\e8c7'; } /* 'Ó£á' */
.icon-up-bold:before { content: '\e8c8'; } /* 'Ó£à' */
.icon-down-thin:before { content: '\e8c9'; } /* 'Ó£â' */
.icon-left-thin:before { content: '\e8dd'; } /* 'Ó£ù' */
.icon-right-thin:before { content: '\e8dc'; } /* 'Ó£ú' */
.icon-up-thin:before { content: '\e8db'; } /* 'Ó£õ' */
.icon-ccw:before { content: '\e8da'; } /* 'Ó£ö' */
.icon-cw:before { content: '\e8d9'; } /* 'Ó£ô' */
.icon-arrows-ccw:before { content: '\e8d8'; } /* 'Ó£ò' */
.icon-level-down:before { content: '\e8d7'; } /* 'Ó£ó' */
.icon-level-up:before { content: '\e8d6'; } /* 'Ó£ñ' */
.icon-shuffle:before { content: '\e8d5'; } /* 'Ó£ï' */
.icon-loop:before { content: '\e8d4'; } /* 'Ó£î' */
.icon-switch:before { content: '\e8d3'; } /* 'Ó£ì' */
.icon-play:before { content: '\e8d2'; } /* 'Ó£í' */
.icon-stop:before { content: '\e8d1'; } /* 'Ó£ë' */
.icon-pause:before { content: '\e8d0'; } /* 'Ó£ê' */
.icon-record:before { content: '\e8cf'; } /* 'Ó£è' */
.icon-to-end:before { content: '\e8ce'; } /* 'Ó£é' */
.icon-to-start:before { content: '\e8cd'; } /* 'Ó£ç' */
.icon-fast-forward:before { content: '\e8cc'; } /* 'Ó£å' */
.icon-fast-backward:before { content: '\e8cb'; } /* 'Ó£ã' */
.icon-progress-0:before { content: '\e8ca'; } /* 'Ó£ä' */
.icon-progress-1:before { content: '\e8de'; } /* 'Ó£û' */
.icon-progress-2:before { content: '\e8df'; } /* 'Ó£ü' */
.icon-progress-3:before { content: '\e8e0'; } /* 'Ó£†' */
.icon-target:before { content: '\e8e1'; } /* 'Ó£°' */
.icon-palette:before { content: '\e8e2'; } /* 'Ó£¢' */
.icon-list:before { content: '\e8e3'; } /* 'Ó££' */
.icon-list-add:before { content: '\e8e4'; } /* 'Ó£§' */
.icon-signal:before { content: '\e8e5'; } /* 'Ó£•' */
.icon-trophy:before { content: '\e8e6'; } /* 'Ó£¶' */
.icon-battery:before { content: '\e8e7'; } /* 'Ó£ß' */
.icon-back-in-time:before { content: '\e8e8'; } /* 'Ó£®' */
.icon-monitor:before { content: '\e8e9'; } /* 'Ó£©' */
.icon-note-beamed:before { content: '\e849'; } /* 'Ó°â' */
.icon-network:before { content: '\e8eb'; } /* 'Ó£´' */
.icon-cd:before { content: '\e8ec'; } /* 'Ó£¨' */
.icon-inbox:before { content: '\e8ed'; } /* 'Ó£≠' */
.icon-install:before { content: '\e8ee'; } /* 'Ó£Æ' */
.icon-globe:before { content: '\e8ef'; } /* 'Ó£Ø' */
.icon-cloud:before { content: '\e8f0'; } /* 'Ó£∞' */
.icon-cloud-thunder:before { content: '\e8f1'; } /* 'Ó£±' */
.icon-flash:before { content: '\e905'; } /* 'Ó§Ö' */
.icon-moon:before { content: '\e904'; } /* 'Ó§Ñ' */
.icon-flight:before { content: '\e903'; } /* 'Ó§É' */
.icon-paper-plane:before { content: '\e902'; } /* 'Ó§Ç' */
.icon-leaf:before { content: '\e901'; } /* 'Ó§Å' */
.icon-lifebuoy:before { content: '\e900'; } /* 'Ó§Ä' */
.icon-mouse:before { content: '\e8ff'; } /* 'Ó£ø' */
.icon-briefcase:before { content: '\e8fe'; } /* 'Ó£æ' */
.icon-suitcase:before { content: '\e8fd'; } /* 'Ó£Ω' */
.icon-dot:before { content: '\e8fb'; } /* 'Ó£ª' */
.icon-dot-2:before { content: '\e8fc'; } /* 'Ó£º' */
.icon-dot-3:before { content: '\e8fa'; } /* 'Ó£∫' */
.icon-brush:before { content: '\e8f9'; } /* 'Ó£π' */
.icon-magnet:before { content: '\e8f8'; } /* 'Ó£∏' */
.icon-infinity:before { content: '\e8f7'; } /* 'Ó£∑' */
.icon-erase:before { content: '\e8f6'; } /* 'Ó£∂' */
.icon-chart-pie:before { content: '\e8f5'; } /* 'Ó£µ' */
.icon-chart-line:before { content: '\e8f4'; } /* 'Ó£¥' */
.icon-chart-bar:before { content: '\e8f3'; } /* 'Ó£≥' */
.icon-chart-area:before { content: '\e8f2'; } /* 'Ó£≤' */
.icon-tape:before { content: '\e906'; } /* 'Ó§Ü' */
.icon-graduation-cap:before { content: '\e907'; } /* 'Ó§á' */
.icon-language:before { content: '\e908'; } /* 'Ó§à' */
.icon-ticket:before { content: '\e909'; } /* 'Ó§â' */
.icon-water:before { content: '\e90a'; } /* 'Ó§ä' */
.icon-droplet:before { content: '\e90b'; } /* 'Ó§ã' */
.icon-air:before { content: '\e90c'; } /* 'Ó§å' */
.icon-credit-card:before { content: '\e90d'; } /* 'Ó§ç' */
.icon-floppy:before { content: '\e90e'; } /* 'Ó§é' */
.icon-clipboard:before { content: '\e90f'; } /* 'Ó§è' */
.icon-megaphone:before { content: '\e910'; } /* 'Ó§ê' */
.icon-database:before { content: '\e911'; } /* 'Ó§ë' */
.icon-drive:before { content: '\e912'; } /* 'Ó§í' */
.icon-bucket:before { content: '\e913'; } /* 'Ó§ì' */
.icon-thermometer:before { content: '\e914'; } /* 'Ó§î' */
.icon-key:before { content: '\e915'; } /* 'Ó§ï' */
.icon-flow-cascade:before { content: '\e916'; } /* 'Ó§ñ' */
.icon-flow-branch:before { content: '\e917'; } /* 'Ó§ó' */
.icon-flow-tree:before { content: '\e918'; } /* 'Ó§ò' */
.icon-flow-line:before { content: '\e919'; } /* 'Ó§ô' */
.icon-flow-parallel:before { content: '\e92d'; } /* 'Ó§≠' */
.icon-rocket:before { content: '\e92c'; } /* 'Ó§¨' */
.icon-gauge:before { content: '\e92b'; } /* 'Ó§´' */
.icon-traffic-cone:before { content: '\e92a'; } /* 'Ó§™' */
.icon-cc-1:before { content: '\e929'; } /* 'Ó§©' */
.icon-cc-by:before { content: '\e928'; } /* 'Ó§®' */
.icon-cc-nc:before { content: '\e927'; } /* 'Ó§ß' */
.icon-cc-nc-eu:before { content: '\e926'; } /* 'Ó§¶' */
.icon-cc-nc-jp:before { content: '\e925'; } /* 'Ó§•' */
.icon-cc-sa:before { content: '\e924'; } /* 'Ó§§' */
.icon-cc-nd:before { content: '\e923'; } /* 'Ó§£' */
.icon-cc-pd:before { content: '\e922'; } /* 'Ó§¢' */
.icon-cc-zero:before { content: '\e921'; } /* 'Ó§°' */
.icon-cc-share:before { content: '\e920'; } /* 'Ó§†' */
.icon-cc-remix:before { content: '\e91f'; } /* 'Ó§ü' */
.icon-github-1:before { content: '\e91e'; } /* 'Ó§û' */
.icon-github-circled-1:before { content: '\e91d'; } /* 'Ó§ù' */
.icon-flickr-1:before { content: '\e91c'; } /* 'Ó§ú' */
.icon-flickr-circled:before { content: '\e91b'; } /* 'Ó§õ' */
.icon-vimeo-1:before { content: '\e91a'; } /* 'Ó§ö' */
.icon-vimeo-circled:before { content: '\e92e'; } /* 'Ó§Æ' */
.icon-twitter-1:before { content: '\e92f'; } /* 'Ó§Ø' */
.icon-twitter-circled:before { content: '\e930'; } /* 'Ó§∞' */
.icon-facebook-1:before { content: '\e931'; } /* 'Ó§±' */
.icon-facebook-circled:before { content: '\e932'; } /* 'Ó§≤' */
.icon-facebook-squared:before { content: '\e933'; } /* 'Ó§≥' */
.icon-gplus-1:before { content: '\e934'; } /* 'Ó§¥' */
.icon-gplus-circled:before { content: '\e935'; } /* 'Ó§µ' */
.icon-pinterest-1:before { content: '\e936'; } /* 'Ó§∂' */
.icon-pinterest-circled:before { content: '\e937'; } /* 'Ó§∑' */
.icon-tumblr-1:before { content: '\e938'; } /* 'Ó§∏' */
.icon-tumblr-circled:before { content: '\e939'; } /* 'Ó§π' */
.icon-linkedin-1:before { content: '\e93a'; } /* 'Ó§∫' */
.icon-linkedin-circled:before { content: '\e93b'; } /* 'Ó§ª' */
.icon-dribbble-1:before { content: '\e93c'; } /* 'Ó§º' */
.icon-dribbble-circled:before { content: '\e93d'; } /* 'Ó§Ω' */
.icon-stumbleupon-1:before { content: '\e93e'; } /* 'Ó§æ' */
.icon-stumbleupon-circled:before { content: '\e93f'; } /* 'Ó§ø' */
.icon-lastfm:before { content: '\e940'; } /* 'Ó•Ä' */
.icon-lastfm-circled:before { content: '\e941'; } /* 'Ó•Å' */
.icon-rdio:before { content: '\e954'; } /* 'Ó•î' */
.icon-rdio-circled:before { content: '\e953'; } /* 'Ó•ì' */
.icon-spotify:before { content: '\e952'; } /* 'Ó•í' */
.icon-qq:before { content: '\e951'; } /* 'Ó•ë' */
.icon-instagram-1:before { content: '\e950'; } /* 'Ó•ê' */
.icon-dropbox-1:before { content: '\e94f'; } /* 'Ó•è' */
.icon-evernote-1:before { content: '\e94e'; } /* 'Ó•é' */
.icon-flattr:before { content: '\e94d'; } /* 'Ó•ç' */
.icon-skype-1:before { content: '\e94c'; } /* 'Ó•å' */
.icon-skype-circled:before { content: '\e94b'; } /* 'Ó•ã' */
.icon-renren:before { content: '\e94a'; } /* 'Ó•ä' */
.icon-sina-weibo:before { content: '\e949'; } /* 'Ó•â' */
.icon-paypal-1:before { content: '\e948'; } /* 'Ó•à' */
.icon-picasa:before { content: '\e947'; } /* 'Ó•á' */
.icon-soundcloud-1:before { content: '\e946'; } /* 'Ó•Ü' */
.icon-mixi:before { content: '\e945'; } /* 'Ó•Ö' */
.icon-behance:before { content: '\e944'; } /* 'Ó•Ñ' */
.icon-google-circles:before { content: '\e943'; } /* 'Ó•É' */
.icon-vkontakte:before { content: '\e942'; } /* 'Ó•Ç' */
.icon-smashing:before { content: '\e955'; } /* 'Ó•ï' */
.icon-sweden:before { content: '\e956'; } /* 'Ó•ñ' */
.icon-db-shape:before { content: '\e957'; } /* 'Ó•ó' */
.icon-logo-db:before { content: '\e83e'; } /* 'Ó†æ' */
.icon-paypal:before { content: '\e800'; } /* 'Ó†Ä' */
.icon-eventful:before { content: '\e801'; } /* 'Ó†Å' */
.icon-smashmag:before { content: '\e802'; } /* 'Ó†Ç' */
.icon-gplus:before { content: '\e803'; } /* 'Ó†É' */
.icon-wikipedia:before { content: '\e804'; } /* 'Ó†Ñ' */
.icon-calendar:before { content: '\e805'; } /* 'Ó†Ö' */
.icon-stumbleupon:before { content: '\e806'; } /* 'Ó†Ü' */
.icon-fivehundredpx:before { content: '\e807'; } /* 'Ó†á' */
.icon-pinterest:before { content: '\e808'; } /* 'Ó†à' */
.icon-w3c:before { content: '\e809'; } /* 'Ó†â' */
.icon-foursquare:before { content: '\e80a'; } /* 'Ó†ä' */
.icon-html5:before { content: '\e80b'; } /* 'Ó†ã' */
.icon-ie:before { content: '\e80c'; } /* 'Ó†å' */
.icon-call:before { content: '\e80d'; } /* 'Ó†ç' */
.icon-digg:before { content: '\e80e'; } /* 'Ó†é' */
.icon-reddit:before { content: '\e80f'; } /* 'Ó†è' */
.icon-appstore:before { content: '\e810'; } /* 'Ó†ê' */
.icon-blogger:before { content: '\e811'; } /* 'Ó†ë' */
.icon-cc:before { content: '\e812'; } /* 'Ó†í' */
.icon-dribbble:before { content: '\e813'; } /* 'Ó†ì' */
.icon-evernote:before { content: '\e814'; } /* 'Ó†î' */
.icon-flickr:before { content: '\e815'; } /* 'Ó†ï' */
.icon-google:before { content: '\e816'; } /* 'Ó†ñ' */
.icon-instapaper:before { content: '\e817'; } /* 'Ó†ó' */
.icon-weibo:before { content: '\e818'; } /* 'Ó†ò' */
.icon-linkedin:before { content: '\e826'; } /* 'Ó†¶' */
.icon-disqus:before { content: '\e825'; } /* 'Ó†•' */
.icon-rss:before { content: '\e824'; } /* 'Ó†§' */
.icon-skype:before { content: '\e823'; } /* 'Ó†£' */
.icon-twitter:before { content: '\e822'; } /* 'Ó†¢' */
.icon-youtube:before { content: '\e821'; } /* 'Ó†°' */
.icon-vimeo:before { content: '\e820'; } /* 'Ó††' */
.icon-windows:before { content: '\e81f'; } /* 'Ó†ü' */
.icon-xing:before { content: '\e81e'; } /* 'Ó†û' */
.icon-yahoo:before { content: '\e81d'; } /* 'Ó†ù' */
.icon-email:before { content: '\e81c'; } /* 'Ó†ú' */
.icon-macstore:before { content: '\e81b'; } /* 'Ó†õ' */
.icon-podcast:before { content: '\e81a'; } /* 'Ó†ö' */
.icon-amazon:before { content: '\e819'; } /* 'Ó†ô' */
.icon-cloudapp:before { content: '\e827'; } /* 'Ó†ß' */
.icon-dropbox:before { content: '\e828'; } /* 'Ó†®' */
.icon-ebay:before { content: '\e829'; } /* 'Ó†©' */
.icon-facebook:before { content: '\e82a'; } /* 'Ó†™' */
.icon-github:before { content: '\e82b'; } /* 'Ó†´' */
.icon-github-circled:before { content: '\e82c'; } /* 'Ó†¨' */
.icon-googleplay:before { content: '\e82d'; } /* 'Ó†≠' */
.icon-itunes:before { content: '\e82e'; } /* 'Ó†Æ' */
.icon-gmail:before { content: '\e82f'; } /* 'Ó†Ø' */
.icon-soundcloud:before { content: '\e830'; } /* 'Ó†∞' */
.icon-tumblr:before { content: '\e831'; } /* 'Ó†±' */
.icon-eventbrite:before { content: '\e83b'; } /* 'Ó†ª' */
.icon-scribd:before { content: '\e83a'; } /* 'Ó†∫' */
.icon-posterous:before { content: '\e839'; } /* 'Ó†π' */
.icon-stripe:before { content: '\e838'; } /* 'Ó†∏' */
.icon-cart:before { content: '\e837'; } /* 'Ó†∑' */
.icon-print:before { content: '\e836'; } /* 'Ó†∂' */
.icon-instagram:before { content: '\e835'; } /* 'Ó†µ' */
.icon-appnet:before { content: '\e834'; } /* 'Ó†¥' */
.icon-buffer:before { content: '\e833'; } /* 'Ó†≥' */
.icon-pocket:before { content: '\e832'; } /* 'Ó†≤' */
.icon-mobile:before { content: '\e8ea'; } /* 'Ó£™' */.spacerStack {
	height: 15px;
}

#spacerStackstacks_in_411304_132 {
	height: 15px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411304_134Calligrapher{			font-size: 80% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.9em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_411304_134Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_134Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_134Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_134Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_134Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_134Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_134Calligrapher h6, .stacks_in_411304_134Calligrapher h5, .stacks_in_411304_134Calligrapher h4, .stacks_in_411304_134Calligrapher h3, .stacks_in_411304_134Calligrapher h2, .stacks_in_411304_134Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411304_134Calligrapher, .stacks_in_411304_134Calligrapher h1, .stacks_in_411304_134Calligrapher h2, .stacks_in_411304_134Calligrapher h3, .stacks_in_411304_134Calligrapher h4, .stacks_in_411304_134Calligrapher h5, .stacks_in_411304_134Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411304_134targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411304_134Calligrapher a:link{			color: #FDFFFF !important;			text-decoration: none !important;		}				.stacks_in_411304_134Calligrapher a:visited{			color: #FDFFFF !important;		}				.stacks_in_411304_134Calligrapher a:active{			color: #FDFFFF !important;		}				.stacks_in_411304_134Calligrapher a:hover{			color: #5CA9FF !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 30px;
}

#spacerStackstacks_in_411304_146 {
	height: 30px;
}.spacerStack {
	height: 70px;
}

#spacerStackstacks_in_411304_149 {
	height: 70px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411304_150Calligrapher{			font-size: 200% !important;			color: #FDFFFF !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_411304_150Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_150Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_150Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_150Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_150Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_150Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_150Calligrapher h6, .stacks_in_411304_150Calligrapher h5, .stacks_in_411304_150Calligrapher h4, .stacks_in_411304_150Calligrapher h3, .stacks_in_411304_150Calligrapher h2, .stacks_in_411304_150Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411304_150Calligrapher, .stacks_in_411304_150Calligrapher h1, .stacks_in_411304_150Calligrapher h2, .stacks_in_411304_150Calligrapher h3, .stacks_in_411304_150Calligrapher h4, .stacks_in_411304_150Calligrapher h5, .stacks_in_411304_150Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411304_150targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411304_150Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_411304_150Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_411304_150Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_411304_150Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 7px;
}

#spacerStackstacks_in_411304_155 {
	height: 7px;
}.spacerStack {
	height: 30px;
}

#spacerStackstacks_in_411304_156 {
	height: 30px;
}
#stacks_in_411304_156 {
	border: solid rgba(253, 255, 255, 1.00);
	border-width: 1px 0px 0px 0px;
}

#stacks_out_411304_156 {
	width: 100px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411304_297Calligrapher{			font-size: 160% !important;			color: #CFD1DA !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_411304_297Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_297Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_297Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_297Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_297Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_297Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_297Calligrapher h6, .stacks_in_411304_297Calligrapher h5, .stacks_in_411304_297Calligrapher h4, .stacks_in_411304_297Calligrapher h3, .stacks_in_411304_297Calligrapher h2, .stacks_in_411304_297Calligrapher h1{			color: #D6D8E0 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411304_297Calligrapher, .stacks_in_411304_297Calligrapher h1, .stacks_in_411304_297Calligrapher h2, .stacks_in_411304_297Calligrapher h3, .stacks_in_411304_297Calligrapher h4, .stacks_in_411304_297Calligrapher h5, .stacks_in_411304_297Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411304_297targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411304_297Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_411304_297Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_411304_297Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_411304_297Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411304_301Calligrapher{			font-size: 120% !important;			color: #CFD1DA !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_411304_301Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_301Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_301Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_301Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_301Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_301Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_301Calligrapher h6, .stacks_in_411304_301Calligrapher h5, .stacks_in_411304_301Calligrapher h4, .stacks_in_411304_301Calligrapher h3, .stacks_in_411304_301Calligrapher h2, .stacks_in_411304_301Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411304_301Calligrapher, .stacks_in_411304_301Calligrapher h1, .stacks_in_411304_301Calligrapher h2, .stacks_in_411304_301Calligrapher h3, .stacks_in_411304_301Calligrapher h4, .stacks_in_411304_301Calligrapher h5, .stacks_in_411304_301Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411304_301targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411304_301Calligrapher a:link{			color: #FDFFFF !important;			text-decoration: none !important;		}				.stacks_in_411304_301Calligrapher a:visited{			color: #FDFFFF !important;		}				.stacks_in_411304_301Calligrapher a:active{			color: #FDFFFF !important;		}				.stacks_in_411304_301Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 30px;
}

#spacerStackstacks_in_411304_305 {
	height: 30px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411304_306Calligrapher{			font-size: 160% !important;			color: #F2F4FF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_411304_306Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_306Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_306Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_306Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_306Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_306Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_306Calligrapher h6, .stacks_in_411304_306Calligrapher h5, .stacks_in_411304_306Calligrapher h4, .stacks_in_411304_306Calligrapher h3, .stacks_in_411304_306Calligrapher h2, .stacks_in_411304_306Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411304_306Calligrapher, .stacks_in_411304_306Calligrapher h1, .stacks_in_411304_306Calligrapher h2, .stacks_in_411304_306Calligrapher h3, .stacks_in_411304_306Calligrapher h4, .stacks_in_411304_306Calligrapher h5, .stacks_in_411304_306Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411304_306targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411304_306Calligrapher a:link{			color: #FDFFFF !important;			text-decoration: none !important;		}				.stacks_in_411304_306Calligrapher a:visited{			color: #FDFFFF !important;		}				.stacks_in_411304_306Calligrapher a:active{			color: #FDFFFF !important;		}				.stacks_in_411304_306Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 8px;
}

#spacerStackstacks_in_411304_310 {
	height: 8px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411304_311Calligrapher{			font-size: 100% !important;			color: #CFD1DA !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_411304_311Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_311Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_311Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_311Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_311Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_311Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_311Calligrapher h6, .stacks_in_411304_311Calligrapher h5, .stacks_in_411304_311Calligrapher h4, .stacks_in_411304_311Calligrapher h3, .stacks_in_411304_311Calligrapher h2, .stacks_in_411304_311Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411304_311Calligrapher, .stacks_in_411304_311Calligrapher h1, .stacks_in_411304_311Calligrapher h2, .stacks_in_411304_311Calligrapher h3, .stacks_in_411304_311Calligrapher h4, .stacks_in_411304_311Calligrapher h5, .stacks_in_411304_311Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411304_311targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411304_311Calligrapher a:link{			color: #FDFFFF !important;			text-decoration: none !important;		}				.stacks_in_411304_311Calligrapher a:visited{			color: #FDFFFF !important;		}				.stacks_in_411304_311Calligrapher a:active{			color: #FDFFFF !important;		}				.stacks_in_411304_311Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_411304_167 {
	height: 40px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411304_168Calligrapher{			font-size: 120% !important;			color: #FDFFFF !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_411304_168Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_168Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_168Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_168Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_168Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_168Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_168Calligrapher h6, .stacks_in_411304_168Calligrapher h5, .stacks_in_411304_168Calligrapher h4, .stacks_in_411304_168Calligrapher h3, .stacks_in_411304_168Calligrapher h2, .stacks_in_411304_168Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411304_168Calligrapher, .stacks_in_411304_168Calligrapher h1, .stacks_in_411304_168Calligrapher h2, .stacks_in_411304_168Calligrapher h3, .stacks_in_411304_168Calligrapher h4, .stacks_in_411304_168Calligrapher h5, .stacks_in_411304_168Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411304_168targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411304_168Calligrapher a:link{			color: #FDFFFF !important;			text-decoration: none !important;		}				.stacks_in_411304_168Calligrapher a:visited{			color: #FDFFFF !important;		}				.stacks_in_411304_168Calligrapher a:active{			color: #FDFFFF !important;		}				.stacks_in_411304_168Calligrapher a:hover{			color: #5CA9FF !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 60px;
}

#spacerStackstacks_in_411304_172 {
	height: 60px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411304_173Calligrapher{			font-size: 200% !important;			color: #FDFFFF !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_411304_173Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_173Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_173Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_173Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_173Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_173Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_173Calligrapher h6, .stacks_in_411304_173Calligrapher h5, .stacks_in_411304_173Calligrapher h4, .stacks_in_411304_173Calligrapher h3, .stacks_in_411304_173Calligrapher h2, .stacks_in_411304_173Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411304_173Calligrapher, .stacks_in_411304_173Calligrapher h1, .stacks_in_411304_173Calligrapher h2, .stacks_in_411304_173Calligrapher h3, .stacks_in_411304_173Calligrapher h4, .stacks_in_411304_173Calligrapher h5, .stacks_in_411304_173Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411304_173targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411304_173Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_411304_173Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_411304_173Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_411304_173Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 7px;
}

#spacerStackstacks_in_411304_177 {
	height: 7px;
}.spacerStack {
	height: 30px;
}

#spacerStackstacks_in_411304_178 {
	height: 30px;
}
#stacks_in_411304_178 {
	border: solid rgba(253, 255, 255, 1.00);
	border-width: 1px 0px 0px 0px;
}

#stacks_out_411304_178 {
	width: 100px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411304_183Calligrapher{			font-size: 140% !important;			color: #CFD1DA !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_411304_183Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_183Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_183Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_183Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_183Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_183Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_183Calligrapher h6, .stacks_in_411304_183Calligrapher h5, .stacks_in_411304_183Calligrapher h4, .stacks_in_411304_183Calligrapher h3, .stacks_in_411304_183Calligrapher h2, .stacks_in_411304_183Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411304_183Calligrapher, .stacks_in_411304_183Calligrapher h1, .stacks_in_411304_183Calligrapher h2, .stacks_in_411304_183Calligrapher h3, .stacks_in_411304_183Calligrapher h4, .stacks_in_411304_183Calligrapher h5, .stacks_in_411304_183Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411304_183targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411304_183Calligrapher a:link{			color: #CFD1DA !important;			text-decoration: none !important;		}				.stacks_in_411304_183Calligrapher a:visited{			color: #CFD1DA !important;		}				.stacks_in_411304_183Calligrapher a:active{			color: #CFD1DA !important;		}				.stacks_in_411304_183Calligrapher a:hover{			color: #F4F2F6 !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code *//* LinkListerThing Stack— B3: Bigfoot Responsive by RapidWeaver Central */




/* LINK LISTS 
====================== */


#stacks_in_411304_185 #linklisterThingstacks_in_411304_185 {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
  	-webkit-backface-visibility: hidden;
  	-webkit-transform: rotate(0deg) skewY(0deg);
}

#stacks_in_411304_185 #listthingstacks_in_411304_185 {
	display: block;
	position: relative;
}

#stacks_in_411304_185 #listthingstacks_in_411304_185 ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

#stacks_in_411304_185 #listthingstacks_in_411304_185 li {
		
	color: #5CA9FF;
	font-size: 100%;
	margin: 0;
	padding: 0 0 0 0px;
	position: relative;
	text-decoration:none;
	line-height: 30px;
}

#stacks_in_411304_185 #listthingstacks_in_411304_185 li a {
	color: #5CA9FF;
	text-decoration:none;
}

#stacks_in_411304_185 #listthingstacks_in_411304_185 li:hover, #stacks_in_411304_185 #listthingstacks_in_411304_185 li a:hover, #stacks_in_411304_185 #listthingstacks_in_411304_185 li:hover a  {
	text-decoration:none;
	color: #5CA9FF !important;
}

#stacks_in_411304_185 .icon-mail {
	
	color:  #5CA9FF !important;
	font-size: 100%;
 		
}

#stacks_in_411304_185  .text_padding_left a {
	padding-left: 0px;
	color:  #5CA9FF;
}

#stacks_in_411304_185 #listthingstacks_in_411304_185 li:hover span.icon-mail, #stacks_in_411304_185 #listthingstacks_in_411304_185 li:hover  span.text_padding_left    {
	color: #5CA9FF !important;
}

/* LINK EFFECTS 
====================== */

/*  0. No Background  */

.hover_effect0stacks_in_411304_185 {
	background: transparent;
}

/*  1. Rollover   */

.hover_effect1stacks_in_411304_185 {
	background: #A1EBF9;
}

.hover_effect1stacks_in_411304_185:hover {
	background: #DA4453;
}



/*  4.  Brackets Effect  */

.hover_effect4stacks_in_411304_185  {
	position: relative;
	padding: 0;
 	-webkit-backface-visibility: hidden;
  	-webkit-transform: rotate(0deg) skewY(0deg);
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
    		 box-sizing: border-box;
}

.hover_effect4stacks_in_411304_185 a::before,
.hover_effect4stacks_in_411304_185 a::after {
	display: inline-block;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
	   -moz-transition: -moz-transform 0.3s, opacity 0.2s;
			transition: transform 0.3s, opacity 0.2s;
}

.hover_effect4stacks_in_411304_185 a::before {
	margin-right: 10px;
	content: '[';
	-webkit-transform: translateX(20px);
	   -moz-transform: translateX(20px);
			transform: translateX(20px);
}

.hover_effect4stacks_in_411304_185 a::after {
	margin-left: 10px;
	content: ']';
	-webkit-transform: translateX(-20px);
	   -moz-transform: translateX(-20px);
			transform: translateX(-20px);
}

.hover_effect4stacks_in_411304_185 a:hover::before,
.hover_effect4stacks_in_411304_185 a:hover::after,
.hover_effect4stacks_in_411304_185 a:focus::before,
.hover_effect4stacks_in_411304_185 a:focus::after {
	opacity: 1;
	color: ;
	-webkit-transform: translateX(0px);
	   -moz-transform: translateX(0px);
			transform: translateX(0px);
}

/*  5. Animated  Slide Effect */

.hover_effect5stacks_in_411304_185 a:hover {
 	text-decoration: none;
}

.hover_effect5stacks_in_411304_185 a:active {
 	text-decoration: none;
}

.hover_effect5stacks_in_411304_185 a:before, 
.hover_effect5stacks_in_411304_185 a:after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 100%;
	width: 0;
	height: 100%;
	background: #DA4453;
	-webkit-transition: width 300ms ease;
	transition: width 300ms ease;
	z-index: -1;
}

.hover_effect5stacks_in_411304_185 a:after {
	left: 100%;
	left: 0;
}

.hover_effect5stacks_in_411304_185 a:hover:before, 
.hover_effect5stacks_in_411304_185 a:hover:after {
	width: 100%;
}

/*  6 Sandwich  Effect */

.hover_effect6stacks_in_411304_185 {
}

.hover_effect6stacks_in_411304_185 a {
	padding: 10px 10px 10px 0;
	color: #5CA9FF;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

.hover_effect6stacks_in_411304_185 a::before,
.hover_effect6stacks_in_411304_185 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #5CA9FF;
	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);
}

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

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

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

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

/*
*
* ## Entypo 
* Copyright (C) 2012 by Daniel Bruce
* Author:    Daniel Bruce
* License:  CC BY-SA (http://creativecommons.org/licenses/by-sa/2.0/)
* Homepage:  http://www.entypo.com
*
* ## Zocial 
* Copyright (C) 2012 by Sam Collins
* Author:    Sam Collins
* License:   MIT (http://opensource.org/licenses/mit-license.php)
* Homepage:  http://zocial.smcllns.com/
*
*/

/* EntypoThing Fonts */         


@font-face {
  font-family: 'entypothing';
  src: url('../files/font/entypothing.eot?24089826');
  src: url('../files/font/entypothing.eot?24089826#iefix') format('embedded-opentype'),
       url('../files/font/entypothing.woff?24089826') format('woff'),
       url('../files/font/entypothing.ttf?24089826') format('truetype'),
       url('../files/font/entypothing.svg?24089826#entypothing') format('svg');
  font-weight: normal;
  font-style: normal;
}
 
  #stacks_in_411304_185 [class^="icon-mail"]:before, #stacks_in_411304_185 [class*="icon-mail"]:before {
  font-family: "entypothing";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height:  30px;
  margin-left: .2em;
}
 
.icon-note:before { content: '\e83d'; } /* 'Ó†Ω' */
.icon-stackoverflow:before { content: '\e83c'; } /* 'Ó†º' */
.icon-music:before { content: '\e84a'; } /* 'Ó°ä' */
.icon-search:before { content: '\e84b'; } /* 'Ó°ã' */
.icon-flashlight:before { content: '\e84c'; } /* 'Ó°å' */
.icon-mail:before { content: '\e84d'; } /* 'Ó°ç' */
.icon-heart:before { content: '\e84e'; } /* 'Ó°é' */
.icon-heart-empty:before { content: '\e84f'; } /* 'Ó°è' */
.icon-star:before { content: '\e850'; } /* 'Ó°ê' */
.icon-star-empty:before { content: '\e851'; } /* 'Ó°ë' */
.icon-user:before { content: '\e852'; } /* 'Ó°í' */
.icon-users:before { content: '\e853'; } /* 'Ó°ì' */
.icon-user-add:before { content: '\e854'; } /* 'Ó°î' */
.icon-video:before { content: '\e855'; } /* 'Ó°ï' */
.icon-picture:before { content: '\e856'; } /* 'Ó°ñ' */
.icon-camera:before { content: '\e848'; } /* 'Ó°à' */
.icon-layout:before { content: '\e845'; } /* 'Ó°Ö' */
.icon-menu:before { content: '\e844'; } /* 'Ó°Ñ' */
.icon-check:before { content: '\e841'; } /* 'Ó°Å' */
.icon-cancel:before { content: '\e83f'; } /* 'Ó†ø' */
.icon-cancel-circled:before { content: '\e865'; } /* 'Ó°•' */
.icon-cancel-squared:before { content: '\e864'; } /* 'Ó°§' */
.icon-plus:before { content: '\e863'; } /* 'Ó°£' */
.icon-plus-circled:before { content: '\e862'; } /* 'Ó°¢' */
.icon-plus-squared:before { content: '\e861'; } /* 'Ó°°' */
.icon-minus:before { content: '\e860'; } /* 'Ó°†' */
.icon-minus-circled:before { content: '\e85f'; } /* 'Ó°ü' */
.icon-minus-squared:before { content: '\e85e'; } /* 'Ó°û' */
.icon-help:before { content: '\e85d'; } /* 'Ó°ù' */
.icon-help-circled:before { content: '\e85c'; } /* 'Ó°ú' */
.icon-info:before { content: '\e85b'; } /* 'Ó°õ' */
.icon-info-circled:before { content: '\e85a'; } /* 'Ó°ö' */
.icon-back:before { content: '\e859'; } /* 'Ó°ô' */
.icon-home:before { content: '\e858'; } /* 'Ó°ò' */
.icon-link:before { content: '\e857'; } /* 'Ó°ó' */
.icon-attach:before { content: '\e847'; } /* 'Ó°á' */
.icon-lock:before { content: '\e846'; } /* 'Ó°Ü' */
.icon-lock-open:before { content: '\e843'; } /* 'Ó°É' */
.icon-eye:before { content: '\e842'; } /* 'Ó°Ç' */
.icon-tag:before { content: '\e840'; } /* 'Ó°Ä' */
.icon-bookmark:before { content: '\e866'; } /* 'Ó°¶' */
.icon-bookmarks:before { content: '\e867'; } /* 'Ó°ß' */
.icon-flag:before { content: '\e868'; } /* 'Ó°®' */
.icon-thumbs-up:before { content: '\e869'; } /* 'Ó°©' */
.icon-thumbs-down:before { content: '\e874'; } /* 'Ó°¥' */
.icon-download:before { content: '\e877'; } /* 'Ó°∑' */
.icon-upload:before { content: '\e878'; } /* 'Ó°∏' */
.icon-upload-cloud:before { content: '\e87c'; } /* 'Ó°º' */
.icon-reply:before { content: '\e87d'; } /* 'Ó°Ω' */
.icon-reply-all:before { content: '\e883'; } /* 'Ó¢É' */
.icon-forward:before { content: '\e886'; } /* 'Ó¢Ü' */
.icon-quote:before { content: '\e887'; } /* 'Ó¢á' */
.icon-code:before { content: '\e88c'; } /* 'Ó¢å' */
.icon-export:before { content: '\e88d'; } /* 'Ó¢ç' */
.icon-pencil:before { content: '\e892'; } /* 'Ó¢í' */
.icon-feather:before { content: '\e893'; } /* 'Ó¢ì' */
.icon-print-1:before { content: '\e898'; } /* 'Ó¢ò' */
.icon-retweet:before { content: '\e899'; } /* 'Ó¢ô' */
.icon-keyboard:before { content: '\e89e'; } /* 'Ó¢û' */
.icon-comment:before { content: '\e89f'; } /* 'Ó¢ü' */
.icon-chat:before { content: '\e86a'; } /* 'Ó°™' */
.icon-bell:before { content: '\e871'; } /* 'Ó°±' */
.icon-attention:before { content: '\e86d'; } /* 'Ó°≠' */
.icon-alert:before { content: '\e870'; } /* 'Ó°∞' */
.icon-vcard:before { content: '\e873'; } /* 'Ó°≥' */
.icon-address:before { content: '\e872'; } /* 'Ó°≤' */
.icon-location:before { content: '\e879'; } /* 'Ó°π' */
.icon-map:before { content: '\e87e'; } /* 'Ó°æ' */
.icon-direction:before { content: '\e87f'; } /* 'Ó°ø' */
.icon-compass:before { content: '\e882'; } /* 'Ó¢Ç' */
.icon-cup:before { content: '\e884'; } /* 'Ó¢Ñ' */
.icon-trash:before { content: '\e888'; } /* 'Ó¢à' */
.icon-doc:before { content: '\e88b'; } /* 'Ó¢ã' */
.icon-docs:before { content: '\e88e'; } /* 'Ó¢é' */
.icon-doc-landscape:before { content: '\e891'; } /* 'Ó¢ë' */
.icon-doc-text:before { content: '\e894'; } /* 'Ó¢î' */
.icon-doc-text-inv:before { content: '\e897'; } /* 'Ó¢ó' */
.icon-newspaper:before { content: '\e89a'; } /* 'Ó¢ö' */
.icon-book-open:before { content: '\e89d'; } /* 'Ó¢ù' */
.icon-book:before { content: '\e8a0'; } /* 'Ó¢†' */
.icon-folder:before { content: '\e86b'; } /* 'Ó°´' */
.icon-archive:before { content: '\e86c'; } /* 'Ó°¨' */
.icon-box:before { content: '\e86e'; } /* 'Ó°Æ' */
.icon-rss-1:before { content: '\e86f'; } /* 'Ó°Ø' */
.icon-phone:before { content: '\e875'; } /* 'Ó°µ' */
.icon-cog:before { content: '\e876'; } /* 'Ó°∂' */
.icon-tools:before { content: '\e87b'; } /* 'Ó°ª' */
.icon-share:before { content: '\e87a'; } /* 'Ó°∫' */
.icon-shareable:before { content: '\e880'; } /* 'Ó¢Ä' */
.icon-basket:before { content: '\e881'; } /* 'Ó¢Å' */
.icon-bag:before { content: '\e885'; } /* 'Ó¢Ö' */
.icon-calendar-1:before { content: '\e889'; } /* 'Ó¢â' */
.icon-login:before { content: '\e88a'; } /* 'Ó¢ä' */
.icon-logout:before { content: '\e88f'; } /* 'Ó¢è' */
.icon-mic:before { content: '\e890'; } /* 'Ó¢ê' */
.icon-mute:before { content: '\e895'; } /* 'Ó¢ï' */
.icon-sound:before { content: '\e896'; } /* 'Ó¢ñ' */
.icon-volume:before { content: '\e89b'; } /* 'Ó¢õ' */
.icon-clock:before { content: '\e89c'; } /* 'Ó¢ú' */
.icon-hourglass:before { content: '\e8a1'; } /* 'Ó¢°' */
.icon-lamp:before { content: '\e8b5'; } /* 'Ó¢µ' */
.icon-light-down:before { content: '\e8b4'; } /* 'Ó¢¥' */
.icon-light-up:before { content: '\e8b3'; } /* 'Ó¢≥' */
.icon-adjust:before { content: '\e8b2'; } /* 'Ó¢≤' */
.icon-block:before { content: '\e8b1'; } /* 'Ó¢±' */
.icon-resize-full:before { content: '\e8b0'; } /* 'Ó¢∞' */
.icon-resize-small:before { content: '\e8af'; } /* 'Ó¢Ø' */
.icon-popup:before { content: '\e8ae'; } /* 'Ó¢Æ' */
.icon-publish:before { content: '\e8ad'; } /* 'Ó¢≠' */
.icon-window:before { content: '\e8ac'; } /* 'Ó¢¨' */
.icon-arrow-combo:before { content: '\e8ab'; } /* 'Ó¢´' */
.icon-down-circled:before { content: '\e8aa'; } /* 'Ó¢™' */
.icon-left-circled:before { content: '\e8a9'; } /* 'Ó¢©' */
.icon-right-circled:before { content: '\e8a8'; } /* 'Ó¢®' */
.icon-up-circled:before { content: '\e8a7'; } /* 'Ó¢ß' */
.icon-down-open:before { content: '\e8a6'; } /* 'Ó¢¶' */
.icon-left-open:before { content: '\e8a5'; } /* 'Ó¢•' */
.icon-right-open:before { content: '\e8a4'; } /* 'Ó¢§' */
.icon-up-open:before { content: '\e8a3'; } /* 'Ó¢£' */
.icon-down-open-mini:before { content: '\e8a2'; } /* 'Ó¢¢' */
.icon-left-open-mini:before { content: '\e8b6'; } /* 'Ó¢∂' */
.icon-right-open-mini:before { content: '\e8b7'; } /* 'Ó¢∑' */
.icon-up-open-mini:before { content: '\e8b8'; } /* 'Ó¢∏' */
.icon-down-open-big:before { content: '\e8b9'; } /* 'Ó¢π' */
.icon-left-open-big:before { content: '\e8ba'; } /* 'Ó¢∫' */
.icon-right-open-big:before { content: '\e8bb'; } /* 'Ó¢ª' */
.icon-up-open-big:before { content: '\e8bc'; } /* 'Ó¢º' */
.icon-down:before { content: '\e8bd'; } /* 'Ó¢Ω' */
.icon-left:before { content: '\e8be'; } /* 'Ó¢æ' */
.icon-right:before { content: '\e8bf'; } /* 'Ó¢ø' */
.icon-up:before { content: '\e8c0'; } /* 'Ó£Ä' */
.icon-down-dir:before { content: '\e8c1'; } /* 'Ó£Å' */
.icon-left-dir:before { content: '\e8c2'; } /* 'Ó£Ç' */
.icon-right-dir:before { content: '\e8c3'; } /* 'Ó£É' */
.icon-up-dir:before { content: '\e8c4'; } /* 'Ó£Ñ' */
.icon-down-bold:before { content: '\e8c5'; } /* 'Ó£Ö' */
.icon-left-bold:before { content: '\e8c6'; } /* 'Ó£Ü' */
.icon-right-bold:before { content: '\e8c7'; } /* 'Ó£á' */
.icon-up-bold:before { content: '\e8c8'; } /* 'Ó£à' */
.icon-down-thin:before { content: '\e8c9'; } /* 'Ó£â' */
.icon-left-thin:before { content: '\e8dd'; } /* 'Ó£ù' */
.icon-right-thin:before { content: '\e8dc'; } /* 'Ó£ú' */
.icon-up-thin:before { content: '\e8db'; } /* 'Ó£õ' */
.icon-ccw:before { content: '\e8da'; } /* 'Ó£ö' */
.icon-cw:before { content: '\e8d9'; } /* 'Ó£ô' */
.icon-arrows-ccw:before { content: '\e8d8'; } /* 'Ó£ò' */
.icon-level-down:before { content: '\e8d7'; } /* 'Ó£ó' */
.icon-level-up:before { content: '\e8d6'; } /* 'Ó£ñ' */
.icon-shuffle:before { content: '\e8d5'; } /* 'Ó£ï' */
.icon-loop:before { content: '\e8d4'; } /* 'Ó£î' */
.icon-switch:before { content: '\e8d3'; } /* 'Ó£ì' */
.icon-play:before { content: '\e8d2'; } /* 'Ó£í' */
.icon-stop:before { content: '\e8d1'; } /* 'Ó£ë' */
.icon-pause:before { content: '\e8d0'; } /* 'Ó£ê' */
.icon-record:before { content: '\e8cf'; } /* 'Ó£è' */
.icon-to-end:before { content: '\e8ce'; } /* 'Ó£é' */
.icon-to-start:before { content: '\e8cd'; } /* 'Ó£ç' */
.icon-fast-forward:before { content: '\e8cc'; } /* 'Ó£å' */
.icon-fast-backward:before { content: '\e8cb'; } /* 'Ó£ã' */
.icon-progress-0:before { content: '\e8ca'; } /* 'Ó£ä' */
.icon-progress-1:before { content: '\e8de'; } /* 'Ó£û' */
.icon-progress-2:before { content: '\e8df'; } /* 'Ó£ü' */
.icon-progress-3:before { content: '\e8e0'; } /* 'Ó£†' */
.icon-target:before { content: '\e8e1'; } /* 'Ó£°' */
.icon-palette:before { content: '\e8e2'; } /* 'Ó£¢' */
.icon-list:before { content: '\e8e3'; } /* 'Ó££' */
.icon-list-add:before { content: '\e8e4'; } /* 'Ó£§' */
.icon-signal:before { content: '\e8e5'; } /* 'Ó£•' */
.icon-trophy:before { content: '\e8e6'; } /* 'Ó£¶' */
.icon-battery:before { content: '\e8e7'; } /* 'Ó£ß' */
.icon-back-in-time:before { content: '\e8e8'; } /* 'Ó£®' */
.icon-monitor:before { content: '\e8e9'; } /* 'Ó£©' */
.icon-note-beamed:before { content: '\e849'; } /* 'Ó°â' */
.icon-network:before { content: '\e8eb'; } /* 'Ó£´' */
.icon-cd:before { content: '\e8ec'; } /* 'Ó£¨' */
.icon-inbox:before { content: '\e8ed'; } /* 'Ó£≠' */
.icon-install:before { content: '\e8ee'; } /* 'Ó£Æ' */
.icon-globe:before { content: '\e8ef'; } /* 'Ó£Ø' */
.icon-cloud:before { content: '\e8f0'; } /* 'Ó£∞' */
.icon-cloud-thunder:before { content: '\e8f1'; } /* 'Ó£±' */
.icon-flash:before { content: '\e905'; } /* 'Ó§Ö' */
.icon-moon:before { content: '\e904'; } /* 'Ó§Ñ' */
.icon-flight:before { content: '\e903'; } /* 'Ó§É' */
.icon-paper-plane:before { content: '\e902'; } /* 'Ó§Ç' */
.icon-leaf:before { content: '\e901'; } /* 'Ó§Å' */
.icon-lifebuoy:before { content: '\e900'; } /* 'Ó§Ä' */
.icon-mouse:before { content: '\e8ff'; } /* 'Ó£ø' */
.icon-briefcase:before { content: '\e8fe'; } /* 'Ó£æ' */
.icon-suitcase:before { content: '\e8fd'; } /* 'Ó£Ω' */
.icon-dot:before { content: '\e8fb'; } /* 'Ó£ª' */
.icon-dot-2:before { content: '\e8fc'; } /* 'Ó£º' */
.icon-dot-3:before { content: '\e8fa'; } /* 'Ó£∫' */
.icon-brush:before { content: '\e8f9'; } /* 'Ó£π' */
.icon-magnet:before { content: '\e8f8'; } /* 'Ó£∏' */
.icon-infinity:before { content: '\e8f7'; } /* 'Ó£∑' */
.icon-erase:before { content: '\e8f6'; } /* 'Ó£∂' */
.icon-chart-pie:before { content: '\e8f5'; } /* 'Ó£µ' */
.icon-chart-line:before { content: '\e8f4'; } /* 'Ó£¥' */
.icon-chart-bar:before { content: '\e8f3'; } /* 'Ó£≥' */
.icon-chart-area:before { content: '\e8f2'; } /* 'Ó£≤' */
.icon-tape:before { content: '\e906'; } /* 'Ó§Ü' */
.icon-graduation-cap:before { content: '\e907'; } /* 'Ó§á' */
.icon-language:before { content: '\e908'; } /* 'Ó§à' */
.icon-ticket:before { content: '\e909'; } /* 'Ó§â' */
.icon-water:before { content: '\e90a'; } /* 'Ó§ä' */
.icon-droplet:before { content: '\e90b'; } /* 'Ó§ã' */
.icon-air:before { content: '\e90c'; } /* 'Ó§å' */
.icon-credit-card:before { content: '\e90d'; } /* 'Ó§ç' */
.icon-floppy:before { content: '\e90e'; } /* 'Ó§é' */
.icon-clipboard:before { content: '\e90f'; } /* 'Ó§è' */
.icon-megaphone:before { content: '\e910'; } /* 'Ó§ê' */
.icon-database:before { content: '\e911'; } /* 'Ó§ë' */
.icon-drive:before { content: '\e912'; } /* 'Ó§í' */
.icon-bucket:before { content: '\e913'; } /* 'Ó§ì' */
.icon-thermometer:before { content: '\e914'; } /* 'Ó§î' */
.icon-key:before { content: '\e915'; } /* 'Ó§ï' */
.icon-flow-cascade:before { content: '\e916'; } /* 'Ó§ñ' */
.icon-flow-branch:before { content: '\e917'; } /* 'Ó§ó' */
.icon-flow-tree:before { content: '\e918'; } /* 'Ó§ò' */
.icon-flow-line:before { content: '\e919'; } /* 'Ó§ô' */
.icon-flow-parallel:before { content: '\e92d'; } /* 'Ó§≠' */
.icon-rocket:before { content: '\e92c'; } /* 'Ó§¨' */
.icon-gauge:before { content: '\e92b'; } /* 'Ó§´' */
.icon-traffic-cone:before { content: '\e92a'; } /* 'Ó§™' */
.icon-cc-1:before { content: '\e929'; } /* 'Ó§©' */
.icon-cc-by:before { content: '\e928'; } /* 'Ó§®' */
.icon-cc-nc:before { content: '\e927'; } /* 'Ó§ß' */
.icon-cc-nc-eu:before { content: '\e926'; } /* 'Ó§¶' */
.icon-cc-nc-jp:before { content: '\e925'; } /* 'Ó§•' */
.icon-cc-sa:before { content: '\e924'; } /* 'Ó§§' */
.icon-cc-nd:before { content: '\e923'; } /* 'Ó§£' */
.icon-cc-pd:before { content: '\e922'; } /* 'Ó§¢' */
.icon-cc-zero:before { content: '\e921'; } /* 'Ó§°' */
.icon-cc-share:before { content: '\e920'; } /* 'Ó§†' */
.icon-cc-remix:before { content: '\e91f'; } /* 'Ó§ü' */
.icon-github-1:before { content: '\e91e'; } /* 'Ó§û' */
.icon-github-circled-1:before { content: '\e91d'; } /* 'Ó§ù' */
.icon-flickr-1:before { content: '\e91c'; } /* 'Ó§ú' */
.icon-flickr-circled:before { content: '\e91b'; } /* 'Ó§õ' */
.icon-vimeo-1:before { content: '\e91a'; } /* 'Ó§ö' */
.icon-vimeo-circled:before { content: '\e92e'; } /* 'Ó§Æ' */
.icon-twitter-1:before { content: '\e92f'; } /* 'Ó§Ø' */
.icon-twitter-circled:before { content: '\e930'; } /* 'Ó§∞' */
.icon-facebook-1:before { content: '\e931'; } /* 'Ó§±' */
.icon-facebook-circled:before { content: '\e932'; } /* 'Ó§≤' */
.icon-facebook-squared:before { content: '\e933'; } /* 'Ó§≥' */
.icon-gplus-1:before { content: '\e934'; } /* 'Ó§¥' */
.icon-gplus-circled:before { content: '\e935'; } /* 'Ó§µ' */
.icon-pinterest-1:before { content: '\e936'; } /* 'Ó§∂' */
.icon-pinterest-circled:before { content: '\e937'; } /* 'Ó§∑' */
.icon-tumblr-1:before { content: '\e938'; } /* 'Ó§∏' */
.icon-tumblr-circled:before { content: '\e939'; } /* 'Ó§π' */
.icon-linkedin-1:before { content: '\e93a'; } /* 'Ó§∫' */
.icon-linkedin-circled:before { content: '\e93b'; } /* 'Ó§ª' */
.icon-dribbble-1:before { content: '\e93c'; } /* 'Ó§º' */
.icon-dribbble-circled:before { content: '\e93d'; } /* 'Ó§Ω' */
.icon-stumbleupon-1:before { content: '\e93e'; } /* 'Ó§æ' */
.icon-stumbleupon-circled:before { content: '\e93f'; } /* 'Ó§ø' */
.icon-lastfm:before { content: '\e940'; } /* 'Ó•Ä' */
.icon-lastfm-circled:before { content: '\e941'; } /* 'Ó•Å' */
.icon-rdio:before { content: '\e954'; } /* 'Ó•î' */
.icon-rdio-circled:before { content: '\e953'; } /* 'Ó•ì' */
.icon-spotify:before { content: '\e952'; } /* 'Ó•í' */
.icon-qq:before { content: '\e951'; } /* 'Ó•ë' */
.icon-instagram-1:before { content: '\e950'; } /* 'Ó•ê' */
.icon-dropbox-1:before { content: '\e94f'; } /* 'Ó•è' */
.icon-evernote-1:before { content: '\e94e'; } /* 'Ó•é' */
.icon-flattr:before { content: '\e94d'; } /* 'Ó•ç' */
.icon-skype-1:before { content: '\e94c'; } /* 'Ó•å' */
.icon-skype-circled:before { content: '\e94b'; } /* 'Ó•ã' */
.icon-renren:before { content: '\e94a'; } /* 'Ó•ä' */
.icon-sina-weibo:before { content: '\e949'; } /* 'Ó•â' */
.icon-paypal-1:before { content: '\e948'; } /* 'Ó•à' */
.icon-picasa:before { content: '\e947'; } /* 'Ó•á' */
.icon-soundcloud-1:before { content: '\e946'; } /* 'Ó•Ü' */
.icon-mixi:before { content: '\e945'; } /* 'Ó•Ö' */
.icon-behance:before { content: '\e944'; } /* 'Ó•Ñ' */
.icon-google-circles:before { content: '\e943'; } /* 'Ó•É' */
.icon-vkontakte:before { content: '\e942'; } /* 'Ó•Ç' */
.icon-smashing:before { content: '\e955'; } /* 'Ó•ï' */
.icon-sweden:before { content: '\e956'; } /* 'Ó•ñ' */
.icon-db-shape:before { content: '\e957'; } /* 'Ó•ó' */
.icon-logo-db:before { content: '\e83e'; } /* 'Ó†æ' */
.icon-paypal:before { content: '\e800'; } /* 'Ó†Ä' */
.icon-eventful:before { content: '\e801'; } /* 'Ó†Å' */
.icon-smashmag:before { content: '\e802'; } /* 'Ó†Ç' */
.icon-gplus:before { content: '\e803'; } /* 'Ó†É' */
.icon-wikipedia:before { content: '\e804'; } /* 'Ó†Ñ' */
.icon-calendar:before { content: '\e805'; } /* 'Ó†Ö' */
.icon-stumbleupon:before { content: '\e806'; } /* 'Ó†Ü' */
.icon-fivehundredpx:before { content: '\e807'; } /* 'Ó†á' */
.icon-pinterest:before { content: '\e808'; } /* 'Ó†à' */
.icon-w3c:before { content: '\e809'; } /* 'Ó†â' */
.icon-foursquare:before { content: '\e80a'; } /* 'Ó†ä' */
.icon-html5:before { content: '\e80b'; } /* 'Ó†ã' */
.icon-ie:before { content: '\e80c'; } /* 'Ó†å' */
.icon-call:before { content: '\e80d'; } /* 'Ó†ç' */
.icon-digg:before { content: '\e80e'; } /* 'Ó†é' */
.icon-reddit:before { content: '\e80f'; } /* 'Ó†è' */
.icon-appstore:before { content: '\e810'; } /* 'Ó†ê' */
.icon-blogger:before { content: '\e811'; } /* 'Ó†ë' */
.icon-cc:before { content: '\e812'; } /* 'Ó†í' */
.icon-dribbble:before { content: '\e813'; } /* 'Ó†ì' */
.icon-evernote:before { content: '\e814'; } /* 'Ó†î' */
.icon-flickr:before { content: '\e815'; } /* 'Ó†ï' */
.icon-google:before { content: '\e816'; } /* 'Ó†ñ' */
.icon-instapaper:before { content: '\e817'; } /* 'Ó†ó' */
.icon-weibo:before { content: '\e818'; } /* 'Ó†ò' */
.icon-linkedin:before { content: '\e826'; } /* 'Ó†¶' */
.icon-disqus:before { content: '\e825'; } /* 'Ó†•' */
.icon-rss:before { content: '\e824'; } /* 'Ó†§' */
.icon-skype:before { content: '\e823'; } /* 'Ó†£' */
.icon-twitter:before { content: '\e822'; } /* 'Ó†¢' */
.icon-youtube:before { content: '\e821'; } /* 'Ó†°' */
.icon-vimeo:before { content: '\e820'; } /* 'Ó††' */
.icon-windows:before { content: '\e81f'; } /* 'Ó†ü' */
.icon-xing:before { content: '\e81e'; } /* 'Ó†û' */
.icon-yahoo:before { content: '\e81d'; } /* 'Ó†ù' */
.icon-email:before { content: '\e81c'; } /* 'Ó†ú' */
.icon-macstore:before { content: '\e81b'; } /* 'Ó†õ' */
.icon-podcast:before { content: '\e81a'; } /* 'Ó†ö' */
.icon-amazon:before { content: '\e819'; } /* 'Ó†ô' */
.icon-cloudapp:before { content: '\e827'; } /* 'Ó†ß' */
.icon-dropbox:before { content: '\e828'; } /* 'Ó†®' */
.icon-ebay:before { content: '\e829'; } /* 'Ó†©' */
.icon-facebook:before { content: '\e82a'; } /* 'Ó†™' */
.icon-github:before { content: '\e82b'; } /* 'Ó†´' */
.icon-github-circled:before { content: '\e82c'; } /* 'Ó†¨' */
.icon-googleplay:before { content: '\e82d'; } /* 'Ó†≠' */
.icon-itunes:before { content: '\e82e'; } /* 'Ó†Æ' */
.icon-gmail:before { content: '\e82f'; } /* 'Ó†Ø' */
.icon-soundcloud:before { content: '\e830'; } /* 'Ó†∞' */
.icon-tumblr:before { content: '\e831'; } /* 'Ó†±' */
.icon-eventbrite:before { content: '\e83b'; } /* 'Ó†ª' */
.icon-scribd:before { content: '\e83a'; } /* 'Ó†∫' */
.icon-posterous:before { content: '\e839'; } /* 'Ó†π' */
.icon-stripe:before { content: '\e838'; } /* 'Ó†∏' */
.icon-cart:before { content: '\e837'; } /* 'Ó†∑' */
.icon-print:before { content: '\e836'; } /* 'Ó†∂' */
.icon-instagram:before { content: '\e835'; } /* 'Ó†µ' */
.icon-appnet:before { content: '\e834'; } /* 'Ó†¥' */
.icon-buffer:before { content: '\e833'; } /* 'Ó†≥' */
.icon-pocket:before { content: '\e832'; } /* 'Ó†≤' */
.icon-mobile:before { content: '\e8ea'; } /* 'Ó£™' */
#stacks_in_411304_186 {
	font-size: 110%;
}
.spacerStack {
	height: 30px;
}

#spacerStackstacks_in_411304_276 {
	height: 30px;
}/*******************************    GENERAL STYLING ************************************/


#CHAuImage_stacks_in_411304_273 {
		
}




#AuImage_stacks_in_411304_273, #CHAuImage_stacks_in_411304_273 {
	width: 100%;
	height:100%;
	max-width:100px;
	max-height: 100px;	
	text-align:center;
	/*margin: 0 auto;*/
	overflow: hidden;
	margin: 1% auto;
	position: relative;
	border-radius:%;
	
	-webkit-mask-position: 0 0;
-webkit-mask-size: 100% 100%;
-webkit-mask-image:-webkit-radial-gradient(center, ellipse cover, #ffffff 0%,#ffffff 71%,#000000 71%,#000000 100%);
}

#AuImage_stacks_in_411304_273 img, #CHAuImage_stacks_in_411304_273 img {
	width: 100%;
	height: 100%;
	text-align:center;
	margin: 0 auto;
	
	
}

#AuImage_stacks_in_411304_273.hexagon{
    -webkit-clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

#AuImage_stacks_in_411304_273.circle{
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
}

#AuImage_stacks_in_411304_273.message{
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 75% 75%, 75% 100%, 50% 75%, 0% 75%);
}

#AuImage_stacks_in_411304_273.rhombas{
    -webkit-clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
    clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}


.AuPShadow {
	-webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
	-moz-box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);
	box-shadow: 0 0 8px rgba(0, 0, 0, 0.5);

}

/*================== CAPTION ======================*/

.AuCaption_stacks_in_411304_273 {
	
	
	position:absolute; 
	background-color: #861123 ; 
	color: white; 
	width: 100%;
	margin: 0% 0 6% 0; 
	max-width: 104%;
	max-height: 100%;	
	height:auto;width: 80%;
	padding:10%;
	display: none;
    bottom:0;
    
}

.AuCaption_stacks_in_411304_273.top{
    top: 0 ; 
    bottom:auto;
}

.AuCaption_stacks_in_411304_273 img{
		-webkit-filter: none !important;
		-moz-filter: none !important;
		-o-filter: none !important;
		-ms-filter:none !important;
		filter:none !important;
		width: auto !important;
		height: auto;
		-webkit-transform: translate3d(0,0,0);
-moz-transform: translate3d(0,0,0);
-ms-transform: translate3d(0,0,0);
-o-transform: translate3d(0,0,0);
transform: translate3d(0,0,0);
    
		
}

#AuImage_stacks_in_411304_273 .BC {
	bottom: 0;	
}

#AuImage_stacks_in_411304_273 .top{
	top: 0;
}

/*/#AuImage_stacks_in_411304_273:hover #AuCaption_stacks_in_411304_273, #CHAuImage_stacks_in_411304_273:hover #AuCaption_stacks_in_411304_273 {
	opacity: 1;
	left: 0;
}*/

#AuImage_stacks_in_411304_273 .AuCaption_stacks_in_411304_273 .stacks_out:first-of-type {
	padding: 5% 0 0 0 !important;
}

/*******************************  HOVER ************************************/


#AuImage_stacks_in_411304_273 img {
	margin: 0 auto;
	Heigh:145%; 
	Widh:145%;
	-webkit-filter:           ;
	
    -moz-filter:           ;
	   
    -o-filter:           ;
		 
    -ms-filter:           ;
		
    filter:           ;
	transform:(100deg);
	-ms-transform:(100deg); /* IE 9 */
	-webkit-transform:(100deg); /* Safari and Chrome */
 	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
	
	
}

#AuImage_stacks_in_411304_273:hover img, #AuImage_stacks_in_411304_273 .AuImgHoverPreview img{
	-webkit-filter:  brightness(178%)        ;
	
    -moz-filter: brightness(178%)       ;
	   
    -o-filter: brightness(178%)        ;
		 
    -ms-filter: brightness(178%)        ;
	
    filter: brightness(178%)       ; 
	transform:(100deg);
	-ms-transform:(100deg); /* IE 9 */
	-webkit-transform:(100deg); /* Safari and Chrome */
	Heigh:0%; 
	Widh:0%;
}

#CHAuImage_stacks_in_411304_273:hover img {
	-webkit-filter: blur(1px) brightness(278%) contrast(100%) grayscale(0%) hue-rotate(157deg) invert(39%) opacity(100%) saturate(100%) sepia(0%)  ;
} 

#CHAuImage_stacks_in_411304_273 img {
	-webkit-filter: blur(0px) brightness(200%) contrast(100%) grayscale(0%) hue-rotate(0deg) invert(0%) opacity(100%) saturate(100%) sepia(17%)  ;
	
	 -webkit-transition: all 1s ease-in-out;
	  -moz-transition: all 1s ease-in-out;
	  -o-transition: all 1s ease-in-out;
	  transition: all %i=HAuTrans%s ease-in-out;	
}


/*================== BACKEND ======================*/


/*================== CAPTION OPTION ======================*/
	

/*	BOTTOM SLIDE LEFT*/

/*.BSLCaption_stacks_in_411304_273 {
	opacity: 0;
	bottom: .75%; 
	left: -100%;
}

#AuImage_stacks_in_411304_273:hover .BSLCaption_stacks_in_411304_273 , #CHAuImage_stacks_in_411304_273:hover .BSLCaption_stacks_in_411304_273{
	opacity: 1;
	left: 0;
}*/

/*	BOTTOM SLIDE BOTTOM*/

/*.BSBCaption_stacks_in_411304_273 {
	opacity:1;
	display:none;
	bottom: -200%; 
	height:80%;
	width: 80%;
	padding:10%;
	
	margin: 0 auto;
}


#AuImage_stacks_in_411304_273:hover .BSBCaption_stacks_in_411304_273 , #CHAuImage_stacks_in_411304_273:hover .BSBCaption_stacks_in_411304_273{
	opacity: 1;
	left: 0;
    bottom: 0;
}

#AuImage_stacks_in_411304_273 .BSBCaption_stacks_in_411304_273 .stacks_out {
	padding: 30% 0 !important;
}
*/
/*	BOTTOM SLIDE RIGHT*/

/*.BSRCaption_stacks_in_411304_273 {
	opacity: 0;
	right: -100%; 
	bottom:.75%;
}

#AuImage_stacks_in_411304_273:hover .BSRCaption_stacks_in_411304_273 , #CHAuImage_stacks_in_411304_273:hover .BSRCaption_stacks_in_411304_273{
	opacity: 1;
	right: 0;
}
*/
	/*	TOP SLIDE LEFT*/

/*.TSLCaption_stacks_in_411304_273 {
	opacity: 0;
	top: 0; 
	left: -100%;
}

#AuImage_stacks_in_411304_273:hover .TSLCaption_stacks_in_411304_273 , #CHAuImage_stacks_in_411304_273:hover .TSLCaption_stacks_in_411304_273{
	opacity: 1;
	left: 0;
}*/

/*	TOP SLIDE TOP*/

/*.TSTCaption_stacks_in_411304_273 {
	opacity: 0;
	top: -100%; 
	left: 0;
}

#AuImage_stacks_in_411304_273:hover .TSTCaption_stacks_in_411304_273 , #CHAuImage_stacks_in_411304_273:hover .TSTCaption_stacks_in_411304_273{
	opacity: 1;
	top: 0;
}
*/
/*	TOP SLIDE RIGHT*/

/*.TSRCaption_stacks_in_411304_273 {
	opacity: 0;
	right: -100%; 
	top: 0;
}

#AuImage_stacks_in_411304_273:hover .TSRCaption_stacks_in_411304_273 , #CHAuImage_stacks_in_411304_273:hover .TSRCaption_stacks_in_411304_273{
	opacity: 1;
	right: 0;
}*/

@media only screen 
and (min-device-width : 768px) 
and (max-device-width : 1024px) 
and (orientation : landscape) {

	
	
	.AuCaption_stacks_in_411304_273  {
	opacity: 0;
	bottom: .75%; 
	left: 0;
	}
	
	/*	BOTTOM SLIDE BOTTOM*/
	
	.BSBCaption_stacks_in_411304_273 {
	opacity: 0;
	bottom: 0; 
	left: 0;
	}
	
	
	/*	BOTTOM SLIDE RIGHT*/
	
	.BSRCaption_stacks_in_411304_273 {
	opacity: 0;
	right: 0; 
	bottom:.75%;
	}
	
	/*	TOP SLIDE LEFT*/
	
	.TSLCaption_stacks_in_411304_273 {
	opacity: 0;
	top: 0; 
	left: 0;
	}
	
	/*	TOP SLIDE TOP*/
	
	.TSTCaption_stacks_in_411304_273 {
	opacity: 0;
	top: 0; 
	left: 0;
	}
	
	/*	TOP SLIDE RIGHT*/
	
	.TSRCaption_stacks_in_411304_273 {
	opacity: 0;
	right:0; 
	top: 0;
	}


	
}


@media (max-width: 600px){
	
	#AuImage_stacks_in_411304_273, #CHAuImage_stacks_in_411304_273 {
	margin: 0 auto;
	text-align:center;
	margin-bottom: 10px;
}
	
	
	/*	BOTTOM SLIDE LEFT*/
	
	.BSLCaption_stacks_in_411304_273 {
	opacity: 0;
	bottom: .75%; 
	left: 0;
	}
	
	/*	BOTTOM SLIDE BOTTOM*/
	
	.BSBCaption_stacks_in_411304_273 {
	opacity: 0;
	bottom: 0; 
	left: 0;
	}
	
	
	/*	BOTTOM SLIDE RIGHT*/
	
	.BSRCaption_stacks_in_411304_273 {
	opacity: 0;
	right: 0; 
	bottom:.75%;
	}
	
	/*	TOP SLIDE LEFT*/
	
	.TSLCaption_stacks_in_411304_273 {
	opacity: 0;
	top: 0; 
	left: 0;
	}
	
	/*	TOP SLIDE TOP*/
	
	.TSTCaption_stacks_in_411304_273 {
	opacity: 0;
	top: 0; 
	left: 0;
	}
	
	/*	TOP SLIDE RIGHT*/
	
	.TSRCaption_stacks_in_411304_273 {
	opacity: 0;
	right:0; 
	top: 0;
	}


	
}
	
	





#stacks_out_411304_273 {
	width: 250px;
}
.spacerStack {
	height: 40px;
}

#spacerStackstacks_in_411304_200 {
	height: 40px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411304_201Calligrapher{			font-size: 200% !important;			color: #FDFFFF !important;			font-weight:   bold !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_411304_201Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_201Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_201Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_201Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_201Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_201Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_201Calligrapher h6, .stacks_in_411304_201Calligrapher h5, .stacks_in_411304_201Calligrapher h4, .stacks_in_411304_201Calligrapher h3, .stacks_in_411304_201Calligrapher h2, .stacks_in_411304_201Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411304_201Calligrapher, .stacks_in_411304_201Calligrapher h1, .stacks_in_411304_201Calligrapher h2, .stacks_in_411304_201Calligrapher h3, .stacks_in_411304_201Calligrapher h4, .stacks_in_411304_201Calligrapher h5, .stacks_in_411304_201Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411304_201targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411304_201Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_411304_201Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_411304_201Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_411304_201Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 7px;
}

#spacerStackstacks_in_411304_205 {
	height: 7px;
}.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_411304_206 {
	height: 20px;
}
#stacks_in_411304_206 {
	border: solid rgba(253, 255, 255, 1.00);
	border-width: 1px 0px 0px 0px;
}

#stacks_out_411304_206 {
	width: 100px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411304_207Calligrapher{			font-size: 140% !important;			color: #CFD1DA !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.4em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_411304_207Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_207Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_207Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_207Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_207Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_207Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_207Calligrapher h6, .stacks_in_411304_207Calligrapher h5, .stacks_in_411304_207Calligrapher h4, .stacks_in_411304_207Calligrapher h3, .stacks_in_411304_207Calligrapher h2, .stacks_in_411304_207Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411304_207Calligrapher, .stacks_in_411304_207Calligrapher h1, .stacks_in_411304_207Calligrapher h2, .stacks_in_411304_207Calligrapher h3, .stacks_in_411304_207Calligrapher h4, .stacks_in_411304_207Calligrapher h5, .stacks_in_411304_207Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411304_207targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411304_207Calligrapher a:link{			color: #CFD1DA !important;			text-decoration: none !important;		}				.stacks_in_411304_207Calligrapher a:visited{			color: #CFD1DA !important;		}				.stacks_in_411304_207Calligrapher a:active{			color: #CFD1DA !important;		}				.stacks_in_411304_207Calligrapher a:hover{			color: #5CA9FF !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code *//* LinkListerThing Stack— B3: Bigfoot Responsive by RapidWeaver Central */




/* LINK LISTS 
====================== */


#stacks_in_411304_209 #linklisterThingstacks_in_411304_209 {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
  	-webkit-backface-visibility: hidden;
  	-webkit-transform: rotate(0deg) skewY(0deg);
}

#stacks_in_411304_209 #listthingstacks_in_411304_209 {
	display: block;
	position: relative;
}

#stacks_in_411304_209 #listthingstacks_in_411304_209 ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

#stacks_in_411304_209 #listthingstacks_in_411304_209 li {
		
	color: #5CA9FF;
	font-size: 110%;
	margin: 0;
	padding: 0 0 0 0px;
	position: relative;
	text-decoration:none;
	line-height: 29px;
}

#stacks_in_411304_209 #listthingstacks_in_411304_209 li a {
	color: #5CA9FF;
	text-decoration:none;
}

#stacks_in_411304_209 #listthingstacks_in_411304_209 li:hover, #stacks_in_411304_209 #listthingstacks_in_411304_209 li a:hover, #stacks_in_411304_209 #listthingstacks_in_411304_209 li:hover a  {
	text-decoration:none;
	color: #5CA9FF !important;
}

#stacks_in_411304_209 .icon-dot {
		
	display:none;
 		
}

#stacks_in_411304_209  .text_padding_left a {
	padding-left: 0px;
	color:  #5CA9FF;
}

#stacks_in_411304_209 #listthingstacks_in_411304_209 li:hover span.icon-dot, #stacks_in_411304_209 #listthingstacks_in_411304_209 li:hover  span.text_padding_left    {
	color: #5CA9FF !important;
}

/* LINK EFFECTS 
====================== */

/*  0. No Background  */

.hover_effect0stacks_in_411304_209 {
	background: transparent;
}

/*  1. Rollover   */

.hover_effect1stacks_in_411304_209 {
	background: #A1EBF9;
}

.hover_effect1stacks_in_411304_209:hover {
	background: #DA4453;
}



/*  4.  Brackets Effect  */

.hover_effect4stacks_in_411304_209  {
	position: relative;
	padding: 0;
 	-webkit-backface-visibility: hidden;
  	-webkit-transform: rotate(0deg) skewY(0deg);
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
    		 box-sizing: border-box;
}

.hover_effect4stacks_in_411304_209 a::before,
.hover_effect4stacks_in_411304_209 a::after {
	display: inline-block;
	opacity: 0;
	-webkit-transition: -webkit-transform 0.3s, opacity 0.2s;
	   -moz-transition: -moz-transform 0.3s, opacity 0.2s;
			transition: transform 0.3s, opacity 0.2s;
}

.hover_effect4stacks_in_411304_209 a::before {
	margin-right: 10px;
	content: '[';
	-webkit-transform: translateX(20px);
	   -moz-transform: translateX(20px);
			transform: translateX(20px);
}

.hover_effect4stacks_in_411304_209 a::after {
	margin-left: 10px;
	content: ']';
	-webkit-transform: translateX(-20px);
	   -moz-transform: translateX(-20px);
			transform: translateX(-20px);
}

.hover_effect4stacks_in_411304_209 a:hover::before,
.hover_effect4stacks_in_411304_209 a:hover::after,
.hover_effect4stacks_in_411304_209 a:focus::before,
.hover_effect4stacks_in_411304_209 a:focus::after {
	opacity: 1;
	color: ;
	-webkit-transform: translateX(0px);
	   -moz-transform: translateX(0px);
			transform: translateX(0px);
}

/*  5. Animated  Slide Effect */

.hover_effect5stacks_in_411304_209 a:hover {
 	text-decoration: none;
}

.hover_effect5stacks_in_411304_209 a:active {
 	text-decoration: none;
}

.hover_effect5stacks_in_411304_209 a:before, 
.hover_effect5stacks_in_411304_209 a:after {
	content: '';
	position: absolute;
	bottom: -2px;
	left: 100%;
	width: 0;
	height: 100%;
	background: #DA4453;
	-webkit-transition: width 300ms ease;
	transition: width 300ms ease;
	z-index: -1;
}

.hover_effect5stacks_in_411304_209 a:after {
	left: 100%;
	left: 0;
}

.hover_effect5stacks_in_411304_209 a:hover:before, 
.hover_effect5stacks_in_411304_209 a:hover:after {
	width: 100%;
}

/*  6 Sandwich  Effect */

.hover_effect6stacks_in_411304_209 {
}

.hover_effect6stacks_in_411304_209 a {
	padding: 10px 10px 10px 0;
	color: #5CA9FF;
	text-shadow: none;
	-webkit-transition: color 0.3s;
	   -moz-transition: color 0.3s;
			transition: color 0.3s;
}

.hover_effect6stacks_in_411304_209 a::before,
.hover_effect6stacks_in_411304_209 a::after {
	position: absolute;
	left: 0;
	width: 100%;
	height: 1px;
	background: #5CA9FF;
	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);
}

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

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

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

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

/*
*
* ## Entypo 
* Copyright (C) 2012 by Daniel Bruce
* Author:    Daniel Bruce
* License:  CC BY-SA (http://creativecommons.org/licenses/by-sa/2.0/)
* Homepage:  http://www.entypo.com
*
* ## Zocial 
* Copyright (C) 2012 by Sam Collins
* Author:    Sam Collins
* License:   MIT (http://opensource.org/licenses/mit-license.php)
* Homepage:  http://zocial.smcllns.com/
*
*/

/* EntypoThing Fonts */         


@font-face {
  font-family: 'entypothing';
  src: url('../files/font/entypothing.eot?24089826');
  src: url('../files/font/entypothing.eot?24089826#iefix') format('embedded-opentype'),
       url('../files/font/entypothing.woff?24089826') format('woff'),
       url('../files/font/entypothing.ttf?24089826') format('truetype'),
       url('../files/font/entypothing.svg?24089826#entypothing') format('svg');
  font-weight: normal;
  font-style: normal;
}
 
  #stacks_in_411304_209 [class^="icon-dot"]:before, #stacks_in_411304_209 [class*="icon-dot"]:before {
  font-family: "entypothing";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height:  29px;
  margin-left: .2em;
}
 
.icon-note:before { content: '\e83d'; } /* 'Ó†Ω' */
.icon-stackoverflow:before { content: '\e83c'; } /* 'Ó†º' */
.icon-music:before { content: '\e84a'; } /* 'Ó°ä' */
.icon-search:before { content: '\e84b'; } /* 'Ó°ã' */
.icon-flashlight:before { content: '\e84c'; } /* 'Ó°å' */
.icon-mail:before { content: '\e84d'; } /* 'Ó°ç' */
.icon-heart:before { content: '\e84e'; } /* 'Ó°é' */
.icon-heart-empty:before { content: '\e84f'; } /* 'Ó°è' */
.icon-star:before { content: '\e850'; } /* 'Ó°ê' */
.icon-star-empty:before { content: '\e851'; } /* 'Ó°ë' */
.icon-user:before { content: '\e852'; } /* 'Ó°í' */
.icon-users:before { content: '\e853'; } /* 'Ó°ì' */
.icon-user-add:before { content: '\e854'; } /* 'Ó°î' */
.icon-video:before { content: '\e855'; } /* 'Ó°ï' */
.icon-picture:before { content: '\e856'; } /* 'Ó°ñ' */
.icon-camera:before { content: '\e848'; } /* 'Ó°à' */
.icon-layout:before { content: '\e845'; } /* 'Ó°Ö' */
.icon-menu:before { content: '\e844'; } /* 'Ó°Ñ' */
.icon-check:before { content: '\e841'; } /* 'Ó°Å' */
.icon-cancel:before { content: '\e83f'; } /* 'Ó†ø' */
.icon-cancel-circled:before { content: '\e865'; } /* 'Ó°•' */
.icon-cancel-squared:before { content: '\e864'; } /* 'Ó°§' */
.icon-plus:before { content: '\e863'; } /* 'Ó°£' */
.icon-plus-circled:before { content: '\e862'; } /* 'Ó°¢' */
.icon-plus-squared:before { content: '\e861'; } /* 'Ó°°' */
.icon-minus:before { content: '\e860'; } /* 'Ó°†' */
.icon-minus-circled:before { content: '\e85f'; } /* 'Ó°ü' */
.icon-minus-squared:before { content: '\e85e'; } /* 'Ó°û' */
.icon-help:before { content: '\e85d'; } /* 'Ó°ù' */
.icon-help-circled:before { content: '\e85c'; } /* 'Ó°ú' */
.icon-info:before { content: '\e85b'; } /* 'Ó°õ' */
.icon-info-circled:before { content: '\e85a'; } /* 'Ó°ö' */
.icon-back:before { content: '\e859'; } /* 'Ó°ô' */
.icon-home:before { content: '\e858'; } /* 'Ó°ò' */
.icon-link:before { content: '\e857'; } /* 'Ó°ó' */
.icon-attach:before { content: '\e847'; } /* 'Ó°á' */
.icon-lock:before { content: '\e846'; } /* 'Ó°Ü' */
.icon-lock-open:before { content: '\e843'; } /* 'Ó°É' */
.icon-eye:before { content: '\e842'; } /* 'Ó°Ç' */
.icon-tag:before { content: '\e840'; } /* 'Ó°Ä' */
.icon-bookmark:before { content: '\e866'; } /* 'Ó°¶' */
.icon-bookmarks:before { content: '\e867'; } /* 'Ó°ß' */
.icon-flag:before { content: '\e868'; } /* 'Ó°®' */
.icon-thumbs-up:before { content: '\e869'; } /* 'Ó°©' */
.icon-thumbs-down:before { content: '\e874'; } /* 'Ó°¥' */
.icon-download:before { content: '\e877'; } /* 'Ó°∑' */
.icon-upload:before { content: '\e878'; } /* 'Ó°∏' */
.icon-upload-cloud:before { content: '\e87c'; } /* 'Ó°º' */
.icon-reply:before { content: '\e87d'; } /* 'Ó°Ω' */
.icon-reply-all:before { content: '\e883'; } /* 'Ó¢É' */
.icon-forward:before { content: '\e886'; } /* 'Ó¢Ü' */
.icon-quote:before { content: '\e887'; } /* 'Ó¢á' */
.icon-code:before { content: '\e88c'; } /* 'Ó¢å' */
.icon-export:before { content: '\e88d'; } /* 'Ó¢ç' */
.icon-pencil:before { content: '\e892'; } /* 'Ó¢í' */
.icon-feather:before { content: '\e893'; } /* 'Ó¢ì' */
.icon-print-1:before { content: '\e898'; } /* 'Ó¢ò' */
.icon-retweet:before { content: '\e899'; } /* 'Ó¢ô' */
.icon-keyboard:before { content: '\e89e'; } /* 'Ó¢û' */
.icon-comment:before { content: '\e89f'; } /* 'Ó¢ü' */
.icon-chat:before { content: '\e86a'; } /* 'Ó°™' */
.icon-bell:before { content: '\e871'; } /* 'Ó°±' */
.icon-attention:before { content: '\e86d'; } /* 'Ó°≠' */
.icon-alert:before { content: '\e870'; } /* 'Ó°∞' */
.icon-vcard:before { content: '\e873'; } /* 'Ó°≥' */
.icon-address:before { content: '\e872'; } /* 'Ó°≤' */
.icon-location:before { content: '\e879'; } /* 'Ó°π' */
.icon-map:before { content: '\e87e'; } /* 'Ó°æ' */
.icon-direction:before { content: '\e87f'; } /* 'Ó°ø' */
.icon-compass:before { content: '\e882'; } /* 'Ó¢Ç' */
.icon-cup:before { content: '\e884'; } /* 'Ó¢Ñ' */
.icon-trash:before { content: '\e888'; } /* 'Ó¢à' */
.icon-doc:before { content: '\e88b'; } /* 'Ó¢ã' */
.icon-docs:before { content: '\e88e'; } /* 'Ó¢é' */
.icon-doc-landscape:before { content: '\e891'; } /* 'Ó¢ë' */
.icon-doc-text:before { content: '\e894'; } /* 'Ó¢î' */
.icon-doc-text-inv:before { content: '\e897'; } /* 'Ó¢ó' */
.icon-newspaper:before { content: '\e89a'; } /* 'Ó¢ö' */
.icon-book-open:before { content: '\e89d'; } /* 'Ó¢ù' */
.icon-book:before { content: '\e8a0'; } /* 'Ó¢†' */
.icon-folder:before { content: '\e86b'; } /* 'Ó°´' */
.icon-archive:before { content: '\e86c'; } /* 'Ó°¨' */
.icon-box:before { content: '\e86e'; } /* 'Ó°Æ' */
.icon-rss-1:before { content: '\e86f'; } /* 'Ó°Ø' */
.icon-phone:before { content: '\e875'; } /* 'Ó°µ' */
.icon-cog:before { content: '\e876'; } /* 'Ó°∂' */
.icon-tools:before { content: '\e87b'; } /* 'Ó°ª' */
.icon-share:before { content: '\e87a'; } /* 'Ó°∫' */
.icon-shareable:before { content: '\e880'; } /* 'Ó¢Ä' */
.icon-basket:before { content: '\e881'; } /* 'Ó¢Å' */
.icon-bag:before { content: '\e885'; } /* 'Ó¢Ö' */
.icon-calendar-1:before { content: '\e889'; } /* 'Ó¢â' */
.icon-login:before { content: '\e88a'; } /* 'Ó¢ä' */
.icon-logout:before { content: '\e88f'; } /* 'Ó¢è' */
.icon-mic:before { content: '\e890'; } /* 'Ó¢ê' */
.icon-mute:before { content: '\e895'; } /* 'Ó¢ï' */
.icon-sound:before { content: '\e896'; } /* 'Ó¢ñ' */
.icon-volume:before { content: '\e89b'; } /* 'Ó¢õ' */
.icon-clock:before { content: '\e89c'; } /* 'Ó¢ú' */
.icon-hourglass:before { content: '\e8a1'; } /* 'Ó¢°' */
.icon-lamp:before { content: '\e8b5'; } /* 'Ó¢µ' */
.icon-light-down:before { content: '\e8b4'; } /* 'Ó¢¥' */
.icon-light-up:before { content: '\e8b3'; } /* 'Ó¢≥' */
.icon-adjust:before { content: '\e8b2'; } /* 'Ó¢≤' */
.icon-block:before { content: '\e8b1'; } /* 'Ó¢±' */
.icon-resize-full:before { content: '\e8b0'; } /* 'Ó¢∞' */
.icon-resize-small:before { content: '\e8af'; } /* 'Ó¢Ø' */
.icon-popup:before { content: '\e8ae'; } /* 'Ó¢Æ' */
.icon-publish:before { content: '\e8ad'; } /* 'Ó¢≠' */
.icon-window:before { content: '\e8ac'; } /* 'Ó¢¨' */
.icon-arrow-combo:before { content: '\e8ab'; } /* 'Ó¢´' */
.icon-down-circled:before { content: '\e8aa'; } /* 'Ó¢™' */
.icon-left-circled:before { content: '\e8a9'; } /* 'Ó¢©' */
.icon-right-circled:before { content: '\e8a8'; } /* 'Ó¢®' */
.icon-up-circled:before { content: '\e8a7'; } /* 'Ó¢ß' */
.icon-down-open:before { content: '\e8a6'; } /* 'Ó¢¶' */
.icon-left-open:before { content: '\e8a5'; } /* 'Ó¢•' */
.icon-right-open:before { content: '\e8a4'; } /* 'Ó¢§' */
.icon-up-open:before { content: '\e8a3'; } /* 'Ó¢£' */
.icon-down-open-mini:before { content: '\e8a2'; } /* 'Ó¢¢' */
.icon-left-open-mini:before { content: '\e8b6'; } /* 'Ó¢∂' */
.icon-right-open-mini:before { content: '\e8b7'; } /* 'Ó¢∑' */
.icon-up-open-mini:before { content: '\e8b8'; } /* 'Ó¢∏' */
.icon-down-open-big:before { content: '\e8b9'; } /* 'Ó¢π' */
.icon-left-open-big:before { content: '\e8ba'; } /* 'Ó¢∫' */
.icon-right-open-big:before { content: '\e8bb'; } /* 'Ó¢ª' */
.icon-up-open-big:before { content: '\e8bc'; } /* 'Ó¢º' */
.icon-down:before { content: '\e8bd'; } /* 'Ó¢Ω' */
.icon-left:before { content: '\e8be'; } /* 'Ó¢æ' */
.icon-right:before { content: '\e8bf'; } /* 'Ó¢ø' */
.icon-up:before { content: '\e8c0'; } /* 'Ó£Ä' */
.icon-down-dir:before { content: '\e8c1'; } /* 'Ó£Å' */
.icon-left-dir:before { content: '\e8c2'; } /* 'Ó£Ç' */
.icon-right-dir:before { content: '\e8c3'; } /* 'Ó£É' */
.icon-up-dir:before { content: '\e8c4'; } /* 'Ó£Ñ' */
.icon-down-bold:before { content: '\e8c5'; } /* 'Ó£Ö' */
.icon-left-bold:before { content: '\e8c6'; } /* 'Ó£Ü' */
.icon-right-bold:before { content: '\e8c7'; } /* 'Ó£á' */
.icon-up-bold:before { content: '\e8c8'; } /* 'Ó£à' */
.icon-down-thin:before { content: '\e8c9'; } /* 'Ó£â' */
.icon-left-thin:before { content: '\e8dd'; } /* 'Ó£ù' */
.icon-right-thin:before { content: '\e8dc'; } /* 'Ó£ú' */
.icon-up-thin:before { content: '\e8db'; } /* 'Ó£õ' */
.icon-ccw:before { content: '\e8da'; } /* 'Ó£ö' */
.icon-cw:before { content: '\e8d9'; } /* 'Ó£ô' */
.icon-arrows-ccw:before { content: '\e8d8'; } /* 'Ó£ò' */
.icon-level-down:before { content: '\e8d7'; } /* 'Ó£ó' */
.icon-level-up:before { content: '\e8d6'; } /* 'Ó£ñ' */
.icon-shuffle:before { content: '\e8d5'; } /* 'Ó£ï' */
.icon-loop:before { content: '\e8d4'; } /* 'Ó£î' */
.icon-switch:before { content: '\e8d3'; } /* 'Ó£ì' */
.icon-play:before { content: '\e8d2'; } /* 'Ó£í' */
.icon-stop:before { content: '\e8d1'; } /* 'Ó£ë' */
.icon-pause:before { content: '\e8d0'; } /* 'Ó£ê' */
.icon-record:before { content: '\e8cf'; } /* 'Ó£è' */
.icon-to-end:before { content: '\e8ce'; } /* 'Ó£é' */
.icon-to-start:before { content: '\e8cd'; } /* 'Ó£ç' */
.icon-fast-forward:before { content: '\e8cc'; } /* 'Ó£å' */
.icon-fast-backward:before { content: '\e8cb'; } /* 'Ó£ã' */
.icon-progress-0:before { content: '\e8ca'; } /* 'Ó£ä' */
.icon-progress-1:before { content: '\e8de'; } /* 'Ó£û' */
.icon-progress-2:before { content: '\e8df'; } /* 'Ó£ü' */
.icon-progress-3:before { content: '\e8e0'; } /* 'Ó£†' */
.icon-target:before { content: '\e8e1'; } /* 'Ó£°' */
.icon-palette:before { content: '\e8e2'; } /* 'Ó£¢' */
.icon-list:before { content: '\e8e3'; } /* 'Ó££' */
.icon-list-add:before { content: '\e8e4'; } /* 'Ó£§' */
.icon-signal:before { content: '\e8e5'; } /* 'Ó£•' */
.icon-trophy:before { content: '\e8e6'; } /* 'Ó£¶' */
.icon-battery:before { content: '\e8e7'; } /* 'Ó£ß' */
.icon-back-in-time:before { content: '\e8e8'; } /* 'Ó£®' */
.icon-monitor:before { content: '\e8e9'; } /* 'Ó£©' */
.icon-note-beamed:before { content: '\e849'; } /* 'Ó°â' */
.icon-network:before { content: '\e8eb'; } /* 'Ó£´' */
.icon-cd:before { content: '\e8ec'; } /* 'Ó£¨' */
.icon-inbox:before { content: '\e8ed'; } /* 'Ó£≠' */
.icon-install:before { content: '\e8ee'; } /* 'Ó£Æ' */
.icon-globe:before { content: '\e8ef'; } /* 'Ó£Ø' */
.icon-cloud:before { content: '\e8f0'; } /* 'Ó£∞' */
.icon-cloud-thunder:before { content: '\e8f1'; } /* 'Ó£±' */
.icon-flash:before { content: '\e905'; } /* 'Ó§Ö' */
.icon-moon:before { content: '\e904'; } /* 'Ó§Ñ' */
.icon-flight:before { content: '\e903'; } /* 'Ó§É' */
.icon-paper-plane:before { content: '\e902'; } /* 'Ó§Ç' */
.icon-leaf:before { content: '\e901'; } /* 'Ó§Å' */
.icon-lifebuoy:before { content: '\e900'; } /* 'Ó§Ä' */
.icon-mouse:before { content: '\e8ff'; } /* 'Ó£ø' */
.icon-briefcase:before { content: '\e8fe'; } /* 'Ó£æ' */
.icon-suitcase:before { content: '\e8fd'; } /* 'Ó£Ω' */
.icon-dot:before { content: '\e8fb'; } /* 'Ó£ª' */
.icon-dot-2:before { content: '\e8fc'; } /* 'Ó£º' */
.icon-dot-3:before { content: '\e8fa'; } /* 'Ó£∫' */
.icon-brush:before { content: '\e8f9'; } /* 'Ó£π' */
.icon-magnet:before { content: '\e8f8'; } /* 'Ó£∏' */
.icon-infinity:before { content: '\e8f7'; } /* 'Ó£∑' */
.icon-erase:before { content: '\e8f6'; } /* 'Ó£∂' */
.icon-chart-pie:before { content: '\e8f5'; } /* 'Ó£µ' */
.icon-chart-line:before { content: '\e8f4'; } /* 'Ó£¥' */
.icon-chart-bar:before { content: '\e8f3'; } /* 'Ó£≥' */
.icon-chart-area:before { content: '\e8f2'; } /* 'Ó£≤' */
.icon-tape:before { content: '\e906'; } /* 'Ó§Ü' */
.icon-graduation-cap:before { content: '\e907'; } /* 'Ó§á' */
.icon-language:before { content: '\e908'; } /* 'Ó§à' */
.icon-ticket:before { content: '\e909'; } /* 'Ó§â' */
.icon-water:before { content: '\e90a'; } /* 'Ó§ä' */
.icon-droplet:before { content: '\e90b'; } /* 'Ó§ã' */
.icon-air:before { content: '\e90c'; } /* 'Ó§å' */
.icon-credit-card:before { content: '\e90d'; } /* 'Ó§ç' */
.icon-floppy:before { content: '\e90e'; } /* 'Ó§é' */
.icon-clipboard:before { content: '\e90f'; } /* 'Ó§è' */
.icon-megaphone:before { content: '\e910'; } /* 'Ó§ê' */
.icon-database:before { content: '\e911'; } /* 'Ó§ë' */
.icon-drive:before { content: '\e912'; } /* 'Ó§í' */
.icon-bucket:before { content: '\e913'; } /* 'Ó§ì' */
.icon-thermometer:before { content: '\e914'; } /* 'Ó§î' */
.icon-key:before { content: '\e915'; } /* 'Ó§ï' */
.icon-flow-cascade:before { content: '\e916'; } /* 'Ó§ñ' */
.icon-flow-branch:before { content: '\e917'; } /* 'Ó§ó' */
.icon-flow-tree:before { content: '\e918'; } /* 'Ó§ò' */
.icon-flow-line:before { content: '\e919'; } /* 'Ó§ô' */
.icon-flow-parallel:before { content: '\e92d'; } /* 'Ó§≠' */
.icon-rocket:before { content: '\e92c'; } /* 'Ó§¨' */
.icon-gauge:before { content: '\e92b'; } /* 'Ó§´' */
.icon-traffic-cone:before { content: '\e92a'; } /* 'Ó§™' */
.icon-cc-1:before { content: '\e929'; } /* 'Ó§©' */
.icon-cc-by:before { content: '\e928'; } /* 'Ó§®' */
.icon-cc-nc:before { content: '\e927'; } /* 'Ó§ß' */
.icon-cc-nc-eu:before { content: '\e926'; } /* 'Ó§¶' */
.icon-cc-nc-jp:before { content: '\e925'; } /* 'Ó§•' */
.icon-cc-sa:before { content: '\e924'; } /* 'Ó§§' */
.icon-cc-nd:before { content: '\e923'; } /* 'Ó§£' */
.icon-cc-pd:before { content: '\e922'; } /* 'Ó§¢' */
.icon-cc-zero:before { content: '\e921'; } /* 'Ó§°' */
.icon-cc-share:before { content: '\e920'; } /* 'Ó§†' */
.icon-cc-remix:before { content: '\e91f'; } /* 'Ó§ü' */
.icon-github-1:before { content: '\e91e'; } /* 'Ó§û' */
.icon-github-circled-1:before { content: '\e91d'; } /* 'Ó§ù' */
.icon-flickr-1:before { content: '\e91c'; } /* 'Ó§ú' */
.icon-flickr-circled:before { content: '\e91b'; } /* 'Ó§õ' */
.icon-vimeo-1:before { content: '\e91a'; } /* 'Ó§ö' */
.icon-vimeo-circled:before { content: '\e92e'; } /* 'Ó§Æ' */
.icon-twitter-1:before { content: '\e92f'; } /* 'Ó§Ø' */
.icon-twitter-circled:before { content: '\e930'; } /* 'Ó§∞' */
.icon-facebook-1:before { content: '\e931'; } /* 'Ó§±' */
.icon-facebook-circled:before { content: '\e932'; } /* 'Ó§≤' */
.icon-facebook-squared:before { content: '\e933'; } /* 'Ó§≥' */
.icon-gplus-1:before { content: '\e934'; } /* 'Ó§¥' */
.icon-gplus-circled:before { content: '\e935'; } /* 'Ó§µ' */
.icon-pinterest-1:before { content: '\e936'; } /* 'Ó§∂' */
.icon-pinterest-circled:before { content: '\e937'; } /* 'Ó§∑' */
.icon-tumblr-1:before { content: '\e938'; } /* 'Ó§∏' */
.icon-tumblr-circled:before { content: '\e939'; } /* 'Ó§π' */
.icon-linkedin-1:before { content: '\e93a'; } /* 'Ó§∫' */
.icon-linkedin-circled:before { content: '\e93b'; } /* 'Ó§ª' */
.icon-dribbble-1:before { content: '\e93c'; } /* 'Ó§º' */
.icon-dribbble-circled:before { content: '\e93d'; } /* 'Ó§Ω' */
.icon-stumbleupon-1:before { content: '\e93e'; } /* 'Ó§æ' */
.icon-stumbleupon-circled:before { content: '\e93f'; } /* 'Ó§ø' */
.icon-lastfm:before { content: '\e940'; } /* 'Ó•Ä' */
.icon-lastfm-circled:before { content: '\e941'; } /* 'Ó•Å' */
.icon-rdio:before { content: '\e954'; } /* 'Ó•î' */
.icon-rdio-circled:before { content: '\e953'; } /* 'Ó•ì' */
.icon-spotify:before { content: '\e952'; } /* 'Ó•í' */
.icon-qq:before { content: '\e951'; } /* 'Ó•ë' */
.icon-instagram-1:before { content: '\e950'; } /* 'Ó•ê' */
.icon-dropbox-1:before { content: '\e94f'; } /* 'Ó•è' */
.icon-evernote-1:before { content: '\e94e'; } /* 'Ó•é' */
.icon-flattr:before { content: '\e94d'; } /* 'Ó•ç' */
.icon-skype-1:before { content: '\e94c'; } /* 'Ó•å' */
.icon-skype-circled:before { content: '\e94b'; } /* 'Ó•ã' */
.icon-renren:before { content: '\e94a'; } /* 'Ó•ä' */
.icon-sina-weibo:before { content: '\e949'; } /* 'Ó•â' */
.icon-paypal-1:before { content: '\e948'; } /* 'Ó•à' */
.icon-picasa:before { content: '\e947'; } /* 'Ó•á' */
.icon-soundcloud-1:before { content: '\e946'; } /* 'Ó•Ü' */
.icon-mixi:before { content: '\e945'; } /* 'Ó•Ö' */
.icon-behance:before { content: '\e944'; } /* 'Ó•Ñ' */
.icon-google-circles:before { content: '\e943'; } /* 'Ó•É' */
.icon-vkontakte:before { content: '\e942'; } /* 'Ó•Ç' */
.icon-smashing:before { content: '\e955'; } /* 'Ó•ï' */
.icon-sweden:before { content: '\e956'; } /* 'Ó•ñ' */
.icon-db-shape:before { content: '\e957'; } /* 'Ó•ó' */
.icon-logo-db:before { content: '\e83e'; } /* 'Ó†æ' */
.icon-paypal:before { content: '\e800'; } /* 'Ó†Ä' */
.icon-eventful:before { content: '\e801'; } /* 'Ó†Å' */
.icon-smashmag:before { content: '\e802'; } /* 'Ó†Ç' */
.icon-gplus:before { content: '\e803'; } /* 'Ó†É' */
.icon-wikipedia:before { content: '\e804'; } /* 'Ó†Ñ' */
.icon-calendar:before { content: '\e805'; } /* 'Ó†Ö' */
.icon-stumbleupon:before { content: '\e806'; } /* 'Ó†Ü' */
.icon-fivehundredpx:before { content: '\e807'; } /* 'Ó†á' */
.icon-pinterest:before { content: '\e808'; } /* 'Ó†à' */
.icon-w3c:before { content: '\e809'; } /* 'Ó†â' */
.icon-foursquare:before { content: '\e80a'; } /* 'Ó†ä' */
.icon-html5:before { content: '\e80b'; } /* 'Ó†ã' */
.icon-ie:before { content: '\e80c'; } /* 'Ó†å' */
.icon-call:before { content: '\e80d'; } /* 'Ó†ç' */
.icon-digg:before { content: '\e80e'; } /* 'Ó†é' */
.icon-reddit:before { content: '\e80f'; } /* 'Ó†è' */
.icon-appstore:before { content: '\e810'; } /* 'Ó†ê' */
.icon-blogger:before { content: '\e811'; } /* 'Ó†ë' */
.icon-cc:before { content: '\e812'; } /* 'Ó†í' */
.icon-dribbble:before { content: '\e813'; } /* 'Ó†ì' */
.icon-evernote:before { content: '\e814'; } /* 'Ó†î' */
.icon-flickr:before { content: '\e815'; } /* 'Ó†ï' */
.icon-google:before { content: '\e816'; } /* 'Ó†ñ' */
.icon-instapaper:before { content: '\e817'; } /* 'Ó†ó' */
.icon-weibo:before { content: '\e818'; } /* 'Ó†ò' */
.icon-linkedin:before { content: '\e826'; } /* 'Ó†¶' */
.icon-disqus:before { content: '\e825'; } /* 'Ó†•' */
.icon-rss:before { content: '\e824'; } /* 'Ó†§' */
.icon-skype:before { content: '\e823'; } /* 'Ó†£' */
.icon-twitter:before { content: '\e822'; } /* 'Ó†¢' */
.icon-youtube:before { content: '\e821'; } /* 'Ó†°' */
.icon-vimeo:before { content: '\e820'; } /* 'Ó††' */
.icon-windows:before { content: '\e81f'; } /* 'Ó†ü' */
.icon-xing:before { content: '\e81e'; } /* 'Ó†û' */
.icon-yahoo:before { content: '\e81d'; } /* 'Ó†ù' */
.icon-email:before { content: '\e81c'; } /* 'Ó†ú' */
.icon-macstore:before { content: '\e81b'; } /* 'Ó†õ' */
.icon-podcast:before { content: '\e81a'; } /* 'Ó†ö' */
.icon-amazon:before { content: '\e819'; } /* 'Ó†ô' */
.icon-cloudapp:before { content: '\e827'; } /* 'Ó†ß' */
.icon-dropbox:before { content: '\e828'; } /* 'Ó†®' */
.icon-ebay:before { content: '\e829'; } /* 'Ó†©' */
.icon-facebook:before { content: '\e82a'; } /* 'Ó†™' */
.icon-github:before { content: '\e82b'; } /* 'Ó†´' */
.icon-github-circled:before { content: '\e82c'; } /* 'Ó†¨' */
.icon-googleplay:before { content: '\e82d'; } /* 'Ó†≠' */
.icon-itunes:before { content: '\e82e'; } /* 'Ó†Æ' */
.icon-gmail:before { content: '\e82f'; } /* 'Ó†Ø' */
.icon-soundcloud:before { content: '\e830'; } /* 'Ó†∞' */
.icon-tumblr:before { content: '\e831'; } /* 'Ó†±' */
.icon-eventbrite:before { content: '\e83b'; } /* 'Ó†ª' */
.icon-scribd:before { content: '\e83a'; } /* 'Ó†∫' */
.icon-posterous:before { content: '\e839'; } /* 'Ó†π' */
.icon-stripe:before { content: '\e838'; } /* 'Ó†∏' */
.icon-cart:before { content: '\e837'; } /* 'Ó†∑' */
.icon-print:before { content: '\e836'; } /* 'Ó†∂' */
.icon-instagram:before { content: '\e835'; } /* 'Ó†µ' */
.icon-appnet:before { content: '\e834'; } /* 'Ó†¥' */
.icon-buffer:before { content: '\e833'; } /* 'Ó†≥' */
.icon-pocket:before { content: '\e832'; } /* 'Ó†≤' */
.icon-mobile:before { content: '\e8ea'; } /* 'Ó£™' */.spacerStack {
	height: 50px;
}

#spacerStackstacks_in_411304_216 {
	height: 50px;
}.spacerStack {
	height: 15px;
}

#spacerStackstacks_in_411304_219 {
	height: 15px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_411304_220Calligrapher{			font-size: 80% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.9em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_411304_220Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_220Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_220Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_220Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_220Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_220Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_411304_220Calligrapher h6, .stacks_in_411304_220Calligrapher h5, .stacks_in_411304_220Calligrapher h4, .stacks_in_411304_220Calligrapher h3, .stacks_in_411304_220Calligrapher h2, .stacks_in_411304_220Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_411304_220Calligrapher, .stacks_in_411304_220Calligrapher h1, .stacks_in_411304_220Calligrapher h2, .stacks_in_411304_220Calligrapher h3, .stacks_in_411304_220Calligrapher h4, .stacks_in_411304_220Calligrapher h5, .stacks_in_411304_220Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_411304_220targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_411304_220Calligrapher a:link{			color: #FDFFFF !important;			text-decoration: none !important;		}				.stacks_in_411304_220Calligrapher a:visited{			color: #FDFFFF !important;		}				.stacks_in_411304_220Calligrapher a:active{			color: #FDFFFF !important;		}				.stacks_in_411304_220Calligrapher a:hover{			color: #5CA9FF !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 60px;
}

#spacerStackstacks_in_411304_224 {
	height: 60px;
}