@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}

/*-- FormSnap CSS Built on: Mon Oct 14 2024 09:57:03 GMT-0400 (Eastern Daylight Time) --*/
*,::before,::after{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / 0.5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }::backdrop{--tw-border-spacing-x: 0;--tw-border-spacing-y: 0;--tw-translate-x: 0;--tw-translate-y: 0;--tw-rotate: 0;--tw-skew-x: 0;--tw-skew-y: 0;--tw-scale-x: 1;--tw-scale-y: 1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness: proximity;--tw-gradient-from-position: ;--tw-gradient-via-position: ;--tw-gradient-to-position: ;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: rgb(59 130 246 / 0.5);--tw-ring-offset-shadow: 0 0 #0000;--tw-ring-shadow: 0 0 #0000;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: ;--tw-contain-size: ;--tw-contain-layout: ;--tw-contain-paint: ;--tw-contain-style: }*:where(.yd-form,.yd-form *),::before:where(.yd-form,.yd-form *),::after:where(.yd-form,.yd-form *){box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}::before:where(.yd-form,.yd-form *),::after:where(.yd-form,.yd-form *){--tw-content: ""}.yd-form{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;-o-tab-size:4;tab-size:4;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-feature-settings:normal;font-variation-settings:normal;-webkit-tap-highlight-color:rgba(0,0,0,0)}.yd-form{margin:0;line-height:inherit}hr:where(.yd-form,.yd-form *){height:0;color:inherit;border-top-width:1px}abbr:where([title]):where(.yd-form,.yd-form *){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h6:where(.yd-form,.yd-form *){font-size:inherit;font-weight:inherit}a:where(.yd-form,.yd-form *){color:inherit;text-decoration:inherit}b:where(.yd-form,.yd-form *),strong:where(.yd-form,.yd-form *){font-weight:bolder}code:where(.yd-form,.yd-form *),kbd:where(.yd-form,.yd-form *),samp:where(.yd-form,.yd-form *),pre:where(.yd-form,.yd-form *){font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;font-feature-settings:normal;font-variation-settings:normal;font-size:1em}small:where(.yd-form,.yd-form *){font-size:80%}sub:where(.yd-form,.yd-form *),sup:where(.yd-form,.yd-form *){font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub:where(.yd-form,.yd-form *){bottom:-0.25em}sup:where(.yd-form,.yd-form *){top:-0.5em}table:where(.yd-form,.yd-form *){text-indent:0;border-color:inherit;border-collapse:collapse}button:where(.yd-form,.yd-form *),input:where(.yd-form,.yd-form *),optgroup:where(.yd-form,.yd-form *),select:where(.yd-form,.yd-form *),textarea:where(.yd-form,.yd-form *){font-family:inherit;font-feature-settings:inherit;font-variation-settings:inherit;font-size:100%;font-weight:inherit;line-height:inherit;letter-spacing:inherit;color:inherit;margin:0;padding:0}button:where(.yd-form,.yd-form *),select:where(.yd-form,.yd-form *){text-transform:none}button:where(.yd-form,.yd-form *),input:where([type=button]):where(.yd-form,.yd-form *),input:where([type=reset]):where(.yd-form,.yd-form *),input:where([type=submit]):where(.yd-form,.yd-form *){-webkit-appearance:button;background-color:rgba(0,0,0,0);background-image:none}:-moz-focusring:where(.yd-form,.yd-form *){outline:auto}:-moz-ui-invalid:where(.yd-form,.yd-form *){box-shadow:none}progress:where(.yd-form,.yd-form *){vertical-align:baseline}::-webkit-inner-spin-button:where(.yd-form,.yd-form *),::-webkit-outer-spin-button:where(.yd-form,.yd-form *){height:auto}[type=search]:where(.yd-form,.yd-form *){-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration:where(.yd-form,.yd-form *){-webkit-appearance:none}::-webkit-file-upload-button:where(.yd-form,.yd-form *){-webkit-appearance:button;font:inherit}summary:where(.yd-form,.yd-form *){display:list-item}blockquote:where(.yd-form,.yd-form *),dl:where(.yd-form,.yd-form *),dd:where(.yd-form,.yd-form *),h6:where(.yd-form,.yd-form *),hr:where(.yd-form,.yd-form *),figure:where(.yd-form,.yd-form *),p:where(.yd-form,.yd-form *),pre:where(.yd-form,.yd-form *){margin:0}fieldset:where(.yd-form,.yd-form *){margin:0;padding:0}legend:where(.yd-form,.yd-form *){padding:0}ol:where(.yd-form,.yd-form *),ul:where(.yd-form,.yd-form *),menu:where(.yd-form,.yd-form *){list-style:none;margin:0;padding:0}dialog:where(.yd-form,.yd-form *){padding:0}textarea:where(.yd-form,.yd-form *){resize:vertical}input::-moz-placeholder:where(.yd-form,.yd-form *),textarea::-moz-placeholder:where(.yd-form,.yd-form *){opacity:1;color:#9ca3af}input::placeholder:where(.yd-form,.yd-form *),textarea::placeholder:where(.yd-form,.yd-form *){opacity:1;color:#9ca3af}button:where(.yd-form,.yd-form *),[role=button]:where(.yd-form,.yd-form *){cursor:pointer}:disabled:where(.yd-form,.yd-form *){cursor:default}img:where(.yd-form,.yd-form *),svg:where(.yd-form,.yd-form *),video:where(.yd-form,.yd-form *),canvas:where(.yd-form,.yd-form *),audio:where(.yd-form,.yd-form *),iframe:where(.yd-form,.yd-form *),embed:where(.yd-form,.yd-form *),object:where(.yd-form,.yd-form *){display:block;vertical-align:middle}img:where(.yd-form,.yd-form *),video:where(.yd-form,.yd-form *){max-width:100%;height:auto}[hidden]:where(.yd-form,.yd-form *){display:none}[type=text],input:where(:not([type])),[type=email],[type=url],[type=password],[type=number],[type=date],[type=datetime-local],[type=month],[type=search],[type=tel],[type=time],[type=week],[multiple],textarea,select{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#6b7280;border-width:1px;border-radius:0px;padding-top:.5rem;padding-right:.75rem;padding-bottom:.5rem;padding-left:.75rem;font-size:1rem;line-height:1.5rem;--tw-shadow: 0 0 #0000}[type=text]:focus,input:where(:not([type])):focus,[type=email]:focus,[type=url]:focus,[type=password]:focus,[type=number]:focus,[type=date]:focus,[type=datetime-local]:focus,[type=month]:focus,[type=search]:focus,[type=tel]:focus,[type=time]:focus,[type=week]:focus,[multiple]:focus,textarea:focus,select:focus{outline:2px solid rgba(0,0,0,0);outline-offset:2px;--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width: 0px;--tw-ring-offset-color: #fff;--tw-ring-color: #2563eb;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow);border-color:#2563eb}input::-moz-placeholder,textarea::-moz-placeholder{color:#6b7280;opacity:1}input::placeholder,textarea::placeholder{color:#6b7280;opacity:1}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-date-and-time-value{min-height:1.5em;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field{padding-top:0;padding-bottom:0}select{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");background-position:right .5rem center;background-repeat:no-repeat;background-size:1.5em 1.5em;padding-right:2.5rem;-webkit-print-color-adjust:exact;print-color-adjust:exact}[multiple],[size]:where(select:not([size="1"])){background-image:initial;background-position:initial;background-repeat:unset;background-size:initial;padding-right:.75rem;-webkit-print-color-adjust:unset;print-color-adjust:unset}[type=checkbox],[type=radio]{-webkit-appearance:none;-moz-appearance:none;appearance:none;padding:0;-webkit-print-color-adjust:exact;print-color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;user-select:none;flex-shrink:0;height:1rem;width:1rem;color:#2563eb;background-color:#fff;border-color:#6b7280;border-width:1px;--tw-shadow: 0 0 #0000}[type=checkbox]{border-radius:0px}[type=radio]{border-radius:100%}[type=checkbox]:focus,[type=radio]:focus{outline:2px solid rgba(0,0,0,0);outline-offset:2px;--tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);--tw-ring-offset-width: 2px;--tw-ring-offset-color: #fff;--tw-ring-color: #2563eb;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}[type=checkbox]:checked,[type=radio]:checked{border-color:rgba(0,0,0,0);background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}[type=checkbox]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e")}@media(forced-colors: active){[type=checkbox]:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=radio]:checked{background-image:url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e")}@media(forced-colors: active){[type=radio]:checked{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=checkbox]:checked:hover,[type=checkbox]:checked:focus,[type=radio]:checked:hover,[type=radio]:checked:focus{border-color:rgba(0,0,0,0);background-color:currentColor}[type=checkbox]:indeterminate{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");border-color:rgba(0,0,0,0);background-color:currentColor;background-size:100% 100%;background-position:center;background-repeat:no-repeat}@media(forced-colors: active){[type=checkbox]:indeterminate{-webkit-appearance:auto;-moz-appearance:auto;appearance:auto}}[type=checkbox]:indeterminate:hover,[type=checkbox]:indeterminate:focus{border-color:rgba(0,0,0,0);background-color:currentColor}[type=file]{background:unset;border-color:inherit;border-width:0;border-radius:0;padding:0;font-size:unset;line-height:inherit}[type=file]:focus{outline:1px solid ButtonText;outline:1px auto -webkit-focus-ring-color}:root{--primary-50: 238 242 255;--primary-100: 224 231 255;--primary-200: 208 215 247;--primary-300: 170 185 255;--primary-400: 137 148 255;--primary-500: 107 112 252;--primary-600: 85 79 238;--primary-700: 69 60 205;--primary-800: 56 48 162;--primary-900: 39 33 115;--primary-950: 30 27 75}[data-theme=base]{--primary-50: 238 242 255;--primary-100: 224 231 255;--primary-200: 208 215 247;--primary-300: 170 185 255;--primary-400: 137 148 255;--primary-500: 107 112 252;--primary-600: 85 79 238;--primary-700: 69 60 205;--primary-800: 56 48 162;--primary-900: 39 33 115;--primary-950: 30 27 75}[data-theme=gray]{--primary-50: 248 250 252;--primary-100: 241 245 249;--primary-200: 226 232 240;--primary-300: 203 213 225;--primary-400: 148 163 184;--primary-500: 100 116 139;--primary-600: 71 85 105;--primary-700: 51 65 85;--primary-800: 30 41 59;--primary-900: 15 23 42;--primary-950: 2 6 23}[data-theme=red]{--primary-50: 254 242 242;--primary-100: 254 226 226;--primary-200: 254 202 202;--primary-300: 252 165 165;--primary-400: 248 113 113;--primary-500: 239 68 68;--primary-600: 220 38 38;--primary-700: 185 28 28;--primary-800: 153 27 27;--primary-900: 127 29 29;--primary-950: 69 10 10}[data-theme=orange]{--primary-50: 255 247 237;--primary-100: 255 237 213;--primary-200: 254 215 170;--primary-300: 253 186 116;--primary-400: 251 146 60;--primary-500: 249 115 22;--primary-600: 234 88 12;--primary-700: 194 65 12;--primary-800: 154 52 18;--primary-900: 124 45 18;--primary-950: 67 20 7}[data-theme=amber]{--primary-50: 255 251 235;--primary-100: 254 243 199;--primary-200: 253 230 138;--primary-300: 252 211 77;--primary-400: 251 191 36;--primary-500: 245 158 11;--primary-600: 217 119 6;--primary-700: 180 83 9;--primary-800: 146 64 14;--primary-900: 120 53 15;--primary-950: 69 26 3}[data-theme=yellow]{--primary-50: 254 252 232;--primary-100: 254 249 195;--primary-200: 254 240 138;--primary-300: 253 224 71;--primary-400: 250 204 21;--primary-500: 234 179 8;--primary-600: 202 138 4;--primary-700: 161 98 7;--primary-800: 133 77 14;--primary-900: 113 63 18;--primary-950: 66 32 6}[data-theme=lime]{--primary-50: 247 254 231;--primary-100: 236 252 203;--primary-200: 217 249 157;--primary-300: 190 242 100;--primary-400: 163 230 53;--primary-500: 132 204 22;--primary-600: 101 163 13;--primary-700: 77 124 15;--primary-800: 63 98 18;--primary-900: 54 83 20;--primary-950: 26 46 5}[data-theme=green]{--primary-50: 240 253 244;--primary-100: 220 252 231;--primary-200: 187 247 208;--primary-300: 134 239 172;--primary-400: 74 222 128;--primary-500: 34 197 94;--primary-600: 22 163 74;--primary-700: 21 128 61;--primary-800: 22 101 52;--primary-900: 20 83 45;--primary-950: 5 46 22}[data-theme=emerald]{--primary-50: 236 253 245;--primary-100: 209 250 229;--primary-200: 167 243 208;--primary-300: 110 231 183;--primary-400: 52 211 153;--primary-500: 16 185 129;--primary-600: 5 150 105;--primary-700: 4 120 87;--primary-800: 6 95 70;--primary-900: 6 78 59;--primary-950: 2 44 34}[data-theme=teal]{--primary-50: 240 253 250;--primary-100: 204 251 241;--primary-200: 153 246 228;--primary-300: 94 234 212;--primary-400: 45 212 191;--primary-500: 20 184 166;--primary-600: 13 148 136;--primary-700: 15 118 110;--primary-800: 17 94 89;--primary-900: 19 78 74;--primary-950: 4 47 46}[data-theme=cyan]{--primary-50: 236 254 255;--primary-100: 207 250 254;--primary-200: 165 243 252;--primary-300: 103 232 249;--primary-400: 34 211 238;--primary-500: 6 182 212;--primary-600: 8 145 178;--primary-700: 14 116 144;--primary-800: 21 94 117;--primary-900: 22 78 99;--primary-950: 8 51 68}[data-theme=sky]{--primary-50: 240 249 255;--primary-100: 224 242 254;--primary-200: 186 230 253;--primary-300: 125 211 252;--primary-400: 56 189 248;--primary-500: 14 165 233;--primary-600: 2 132 199;--primary-700: 3 105 161;--primary-800: 7 89 133;--primary-900: 12 74 110;--primary-950: 8 47 73}[data-theme=blue]{--primary-50: 239 246 255;--primary-100: 219 234 254;--primary-200: 191 219 254;--primary-300: 147 197 253;--primary-400: 96 165 250;--primary-500: 59 130 246;--primary-600: 37 99 235;--primary-700: 29 78 216;--primary-800: 30 64 175;--primary-900: 30 58 138;--primary-950: 23 37 84}[data-theme=indigo]{--primary-50: 238 242 255;--primary-100: 224 231 255;--primary-200: 199 210 254;--primary-300: 165 180 252;--primary-400: 129 140 248;--primary-500: 99 102 241;--primary-600: 79 70 229;--primary-700: 67 56 202;--primary-800: 55 48 163;--primary-900: 49 46 129;--primary-950: 30 27 75}[data-theme=violet]{--primary-50: 245 243 255;--primary-100: 237 233 254;--primary-200: 221 214 254;--primary-300: 196 181 253;--primary-400: 167 139 250;--primary-500: 139 92 246;--primary-600: 124 58 237;--primary-700: 109 40 217;--primary-800: 91 33 182;--primary-900: 76 29 149;--primary-950: 46 16 101}[data-theme=purple]{--primary-50: 250 245 255;--primary-100: 243 232 255;--primary-200: 233 213 255;--primary-300: 216 180 254;--primary-400: 192 132 252;--primary-500: 168 85 247;--primary-600: 147 51 234;--primary-700: 126 34 206;--primary-800: 107 33 168;--primary-900: 88 28 135;--primary-950: 59 7 100}[data-theme=fuchsia]{--primary-50: 253 244 255;--primary-100: 250 232 255;--primary-200: 245 208 254;--primary-300: 240 171 252;--primary-400: 232 121 249;--primary-500: 217 70 239;--primary-600: 192 38 211;--primary-700: 162 28 175;--primary-800: 134 25 143;--primary-900: 112 26 117;--primary-950: 74 4 78}[data-theme=pink]{--primary-50: 253 242 248;--primary-100: 252 231 243;--primary-200: 251 207 232;--primary-300: 249 168 212;--primary-400: 244 114 182;--primary-500: 236 72 153;--primary-600: 219 39 119;--primary-700: 190 24 93;--primary-800: 157 23 77;--primary-900: 131 24 67;--primary-950: 80 7 36}input[readonly]{--tw-bg-opacity: 1;background-color:rgb(243, 244, 246, var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(107, 114, 128, var(--tw-text-opacity))}input[readonly]:is([data-mode=dark] *){--tw-bg-opacity: 1;background-color:rgb(75, 85, 99, var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(209, 213, 219, var(--tw-text-opacity))}input[type=number].appearance-none::-webkit-inner-spin-button,input[type=number].appearance-none::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number].appearance-none{-moz-appearance:textfield}.yd-form{position:relative;isolation:isolate;font-family:inherit}.yd-form,.yd-form *{box-sizing:border-box !important}.yd-form input.rellikmaps{display:none !important}.yd-form .yd-item{font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.yd-form .stacks_out,.yd-form .stacks_in{clear:both;overflow:visible !important}input[type=number].yd-range input[type=range]::-webkit-inner-spin-button,input[type=number].yd-range input[type=range]::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number].yd-range input[type=range]{-moz-appearance:textfield}.yd-range input[type=range]{position:relative;margin-top:0px;margin-bottom:0px;display:block;height:16px;width:100%;padding:0px;line-height:24px}input[type=number].yd-range input[type=range]::-webkit-slider-thumb::-webkit-inner-spin-button,input[type=number].yd-range input[type=range]::-webkit-slider-thumb::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number].yd-range input[type=range]::-webkit-slider-thumb{-moz-appearance:textfield}.yd-range input[type=range]::-webkit-slider-thumb{margin-top:0px;height:16px;width:16px;border-radius:9999px;border-width:1px;border-style:solid;--tw-border-opacity: 1;border-color:rgb(156, 163, 175, var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(255, 255, 255, var(--tw-bg-opacity))}.yd-range input[type=range]::-webkit-slider-thumb:focus{--tw-border-opacity: 1;border-color:rgb(var(--primary-500)/var(--tw-border-opacity));--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0));--tw-ring-color: rgb(var(--primary-500) / 0.4)}.yd-range input[type=range]:is([data-mode=dark] *)::-webkit-slider-thumb{--tw-border-opacity: 1;border-color:rgb(31, 41, 55, var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(107, 114, 128, var(--tw-bg-opacity))}.yd-range input[type=range]:is([data-mode=dark] *)::-webkit-slider-thumb:focus{--tw-border-opacity: 1;border-color:rgb(var(--primary-400)/var(--tw-border-opacity));--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0))}input[type=number].yd-range input[type=range]::-webkit-slider-runnable-track::-webkit-inner-spin-button,input[type=number].yd-range input[type=range]::-webkit-slider-runnable-track::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number].yd-range input[type=range]::-webkit-slider-runnable-track{-moz-appearance:textfield}.yd-range input[type=range]::-webkit-slider-runnable-track{margin:0px;height:auto;background-color:rgba(0,0,0,0);padding:0px}input[type=number].yd-range input[type=range]::-moz-range-thumb::-webkit-inner-spin-button,input[type=number].yd-range input[type=range]::-moz-range-thumb::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number].yd-range input[type=range]::-moz-range-thumb{-moz-appearance:textfield}.yd-range input[type=range]::-moz-range-thumb{margin-top:0px;height:16px;width:16px;border-radius:9999px;border-width:1px;border-style:solid;--tw-border-opacity: 1;border-color:rgb(209, 213, 219, var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(255, 255, 255, var(--tw-bg-opacity))}.yd-range input[type=range]::-moz-range-thumb:focus{--tw-border-opacity: 1;border-color:rgb(var(--primary-500)/var(--tw-border-opacity));--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0));--tw-ring-opacity: 1;--tw-ring-color: rgb(var(--primary-300) / var(--tw-ring-opacity))}.yd-range input[type=range]:is([data-mode=dark] *)::-moz-range-thumb{--tw-border-opacity: 1;border-color:rgb(31, 41, 55, var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(107, 114, 128, var(--tw-bg-opacity))}.yd-range input[type=range]:is([data-mode=dark] *)::-moz-range-thumb:focus{--tw-border-opacity: 1;border-color:rgb(var(--primary-400)/var(--tw-border-opacity));--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0))}input[type=number].yd-range input[type=range]::-moz-range-track::-webkit-inner-spin-button,input[type=number].yd-range input[type=range]::-moz-range-track::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number].yd-range input[type=range]::-moz-range-track{-moz-appearance:textfield}.yd-range input[type=range]::-moz-range-track{margin:0px;height:auto;background-color:rgba(0,0,0,0);padding:0px}[yd-cloak]{display:none}.yd-form-steps{counter-reset:steps}.yd-form-steps [yd-form-step]>.yd-label-out>.yd-label-in:after{counter-increment:steps;content:counter(steps)}.yd-sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);white-space:nowrap;border-width:0}.yd-pointer-events-none{pointer-events:none}.yd-visible{visibility:visible}.yd-invisible{visibility:hidden}.yd-fixed{position:fixed}.yd-absolute{position:absolute}.yd-relative{position:relative}.yd-inset-0{inset:0px}.\!yd-top-0{top:0px !important}.-yd-top-\[25px\]{top:-25px}.-yd-top-\[8px\]{top:-8px}.yd-bottom-0{bottom:0px}.yd-bottom-3{bottom:.75rem}.yd-bottom-\[1px\]{bottom:1px}.yd-bottom-full{bottom:100%}.yd-left-0{left:0px}.yd-left-1\/2{left:50%}.yd-left-2{left:.5rem}.yd-left-2\.5{left:.625rem}.yd-left-3{left:.75rem}.yd-left-4{left:1rem}.yd-left-\[160px\]{left:160px}.yd-left-\[50\%\]{left:50%}.yd-left-full{left:100%}.yd-right-0{right:0px}.yd-right-2{right:.5rem}.yd-right-2\.5{right:.625rem}.yd-right-full{right:100%}.yd-top-0{top:0px}.yd-top-3\.5{top:.875rem}.yd-top-4{top:1rem}.yd-top-6{top:1.5rem}.yd-top-8{top:2rem}.yd-top-\[-40px\]{top:-40px}.yd-top-\[1px\]{top:1px}.yd-top-\[26px\]{top:26px}.yd-top-\[30px\]{top:30px}.yd-top-\[39px\]{top:39px}.yd-top-\[43px\]{top:43px}.yd-top-full{top:100%}.yd-isolate{isolation:isolate}.yd-z-10{z-index:10}.yd-z-20{z-index:20}.yd-z-40{z-index:40}.yd-z-50{z-index:50}.yd-z-\[99999999999\]{z-index:99999999999}.yd-z-\[999\]{z-index:999}.yd-col-span-1{grid-column:span 1/span 1}.yd-col-span-12{grid-column:span 12/span 12}.yd-col-span-2{grid-column:span 2/span 2}.yd-col-span-4{grid-column:span 4/span 4}.yd-col-span-6{grid-column:span 6/span 6}.yd-float-left{float:left}.yd-clear-both{clear:both}.yd-m-0{margin:0px}.yd-m-1{margin:.25rem}.yd-m-2{margin:.5rem}.yd-m-\[7px\]{margin:7px}.yd-mx-auto{margin-left:auto;margin-right:auto}.yd-my-0{margin-top:0px;margin-bottom:0px}.yd-my-1{margin-top:.25rem;margin-bottom:.25rem}.yd-my-2{margin-top:.5rem;margin-bottom:.5rem}.yd-my-4{margin-top:1rem;margin-bottom:1rem}.yd-my-6{margin-top:1.5rem;margin-bottom:1.5rem}.-yd-mb-px{margin-bottom:-1px}.yd-mb-1{margin-bottom:.25rem}.yd-mb-2{margin-bottom:.5rem}.yd-ml-2{margin-left:.5rem}.yd-mr-1{margin-right:.25rem}.yd-mr-2{margin-right:.5rem}.yd-mt-0{margin-top:0px}.yd-mt-0\.5{margin-top:.125rem}.yd-mt-1{margin-top:.25rem}.yd-mt-1\.5{margin-top:.375rem}.yd-mt-10{margin-top:2.5rem}.yd-mt-2{margin-top:.5rem}.yd-mt-2\.5{margin-top:.625rem}.yd-mt-3{margin-top:.75rem}.yd-mt-4{margin-top:1rem}.yd-mt-6{margin-top:1.5rem}.yd-mt-px{margin-top:1px}.yd-line-clamp-1{overflow:hidden;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1}.yd-block{display:block}.yd-inline-block{display:inline-block}.yd-inline{display:inline}.yd-flex{display:flex}.yd-inline-flex{display:inline-flex}.yd-grid{display:grid}.yd-hidden{display:none}.yd-aspect-square{aspect-ratio:1/1}.yd-size-10{width:2.5rem;height:2.5rem}.yd-size-12{width:3rem;height:3rem}.yd-size-14{width:3.5rem;height:3.5rem}.yd-size-2{width:.5rem;height:.5rem}.yd-size-20{width:5rem;height:5rem}.yd-size-24{width:6rem;height:6rem}.yd-size-3{width:.75rem;height:.75rem}.yd-size-4{width:1rem;height:1rem}.yd-size-5{width:1.25rem;height:1.25rem}.yd-size-6{width:1.5rem;height:1.5rem}.yd-size-\[20px\]{width:20px;height:20px}.yd-size-\[22px\]{width:22px;height:22px}.\!yd-h-\[50px\]{height:50px !important}.\!yd-h-\[75px\]{height:75px !important}.\!yd-h-auto{height:auto !important}.yd-h-0{height:0px}.yd-h-1\.5{height:.375rem}.yd-h-10{height:2.5rem}.yd-h-12{height:3rem}.yd-h-3{height:.75rem}.yd-h-48{height:12rem}.yd-h-6{height:1.5rem}.yd-h-7{height:1.75rem}.yd-h-72{height:18rem}.yd-h-8{height:2rem}.yd-h-\[14px\]{height:14px}.yd-h-\[16px\]{height:16px}.yd-h-\[2px\]{height:2px}.yd-h-\[36px\]{height:36px}.yd-h-\[40px\]{height:40px}.yd-h-\[42px\]{height:42px}.yd-h-\[50px\]{height:50px}.yd-h-\[6px\]{height:6px}.yd-h-auto{height:auto}.yd-h-full{height:100%}.yd-h-px{height:1px}.yd-h-screen{height:100vh}.yd-max-h-0{max-height:0px}.yd-max-h-\[220px\]{max-height:220px}.yd-max-h-\[40px\]{max-height:40px}.yd-max-h-\[640px\]{max-height:640px}.yd-max-h-\[calc\(100vh-100px\)\]{max-height:calc(100vh - 100px)}.yd-min-h-\[42px\]{min-height:42px}.yd-min-h-\[50px\]{min-height:50px}.yd-min-h-screen{min-height:100vh}.\!yd-w-full{width:100% !important}.yd-w-11{width:2.75rem}.yd-w-12{width:3rem}.yd-w-3{width:.75rem}.yd-w-40{width:10rem}.yd-w-56{width:14rem}.yd-w-8{width:2rem}.yd-w-\[16px\]{width:16px}.yd-w-\[2\%\]{width:2%}.yd-w-\[250px\]{width:250px}.yd-w-\[40\%\]{width:40%}.yd-w-\[70px\]{width:70px}.yd-w-auto{width:auto}.yd-w-full{width:100%}.yd-w-screen{width:100vw}.yd-min-w-10{min-width:2.5rem}.yd-min-w-32{min-width:8rem}.yd-min-w-\[20\%\]{min-width:20%}.yd-max-w-\[300px\]{max-width:300px}.yd-max-w-\[330px\]{max-width:330px}.yd-max-w-full{max-width:100%}.yd-max-w-md{max-width:28rem}.yd-max-w-sm{max-width:24rem}.yd-max-w-xs{max-width:20rem}.yd-flex-1{flex:1 1 0%}.yd-flex-none{flex:none}.yd-flex-shrink-0{flex-shrink:0}.yd-grow{flex-grow:1}.yd-origin-\[0\]{transform-origin:0}.yd-origin-bottom{transform-origin:bottom}.yd-origin-left{transform-origin:left}.yd-origin-right{transform-origin:right}.yd-origin-top{transform-origin:top}.yd-origin-top-right{transform-origin:top right}.-yd-translate-x-2{--tw-translate-x: -0.5rem;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-yd-translate-y-12{--tw-translate-y: -3rem;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-yd-translate-y-2{--tw-translate-y: -0.5rem;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.-yd-translate-y-3{--tw-translate-y: -0.75rem;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-translate-x-0{--tw-translate-x: 0px;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-translate-x-2{--tw-translate-x: 0.5rem;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-translate-x-5{--tw-translate-x: 1.25rem;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-translate-x-\[-50\%\]{--tw-translate-x: -50%;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-translate-y-0{--tw-translate-y: 0px;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-translate-y-12{--tw-translate-y: 3rem;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-translate-y-2{--tw-translate-y: 0.5rem;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-rotate-0{--tw-rotate: 0deg;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-rotate-180{--tw-rotate: 180deg;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-skew-x-0{--tw-skew-x: 0deg;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-skew-y-0{--tw-skew-y: 0deg;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-scale-100{--tw-scale-x: 1;--tw-scale-y: 1;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-scale-125{--tw-scale-x: 1.25;--tw-scale-y: 1.25;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-scale-90{--tw-scale-x: .9;--tw-scale-y: .9;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-transform{transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}@keyframes yd-spin{to{transform:rotate(360deg)}}.yd-animate-spin{animation:yd-spin 1s linear infinite}.yd-cursor-default{cursor:default}.yd-cursor-help{cursor:help}.yd-cursor-not-allowed{cursor:not-allowed}.yd-cursor-ns-resize{cursor:ns-resize}.yd-cursor-pointer{cursor:pointer}.yd-cursor-text{cursor:text}.yd-select-none{-webkit-user-select:none;-moz-user-select:none;user-select:none}.yd-resize-none{resize:none}.yd-resize-y{resize:vertical}.yd-list-inside{list-style-position:inside}.yd-list-none{list-style-type:none}.yd-appearance-none{-webkit-appearance:none;-moz-appearance:none;appearance:none}.yd-grid-cols-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.yd-grid-cols-3{grid-template-columns:repeat(3, minmax(0, 1fr))}.yd-grid-cols-4{grid-template-columns:repeat(4, minmax(0, 1fr))}.yd-grid-cols-7{grid-template-columns:repeat(7, minmax(0, 1fr))}.yd-grid-cols-9{grid-template-columns:repeat(9, minmax(0, 1fr))}.yd-flex-row{flex-direction:row}.yd-flex-row-reverse{flex-direction:row-reverse}.yd-flex-col{flex-direction:column}.yd-flex-col-reverse{flex-direction:column-reverse}.yd-flex-wrap{flex-wrap:wrap}.yd-place-items-end{place-items:end}.yd-items-start{align-items:flex-start}.yd-items-end{align-items:flex-end}.yd-items-center{align-items:center}.yd-items-stretch{align-items:stretch}.yd-justify-end{justify-content:flex-end}.yd-justify-center{justify-content:center}.yd-justify-between{justify-content:space-between}.yd-gap-0{gap:0px}.yd-gap-1{gap:.25rem}.yd-gap-1\.5{gap:.375rem}.yd-gap-10{gap:2.5rem}.yd-gap-11{gap:2.75rem}.yd-gap-12{gap:3rem}.yd-gap-2{gap:.5rem}.yd-gap-3{gap:.75rem}.yd-gap-4{gap:1rem}.yd-gap-5{gap:1.25rem}.yd-gap-6{gap:1.5rem}.yd-gap-7{gap:1.75rem}.yd-gap-8{gap:2rem}.yd-gap-9{gap:2.25rem}.yd-gap-px{gap:1px}.yd-gap-y-0\.5{row-gap:.125rem}.yd-gap-y-1{row-gap:.25rem}.yd-overflow-auto{overflow:auto}.yd-overflow-hidden{overflow:hidden}.\!yd-overflow-visible{overflow:visible !important}.yd-overflow-visible{overflow:visible}.yd-overflow-y-auto{overflow-y:auto}.yd-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.yd-whitespace-nowrap{white-space:nowrap}.yd-whitespace-pre-line{white-space:pre-line}.\!yd-rounded-md{border-radius:.375rem !important}.yd-rounded{border-radius:.25rem}.yd-rounded-full{border-radius:9999px}.yd-rounded-lg{border-radius:.5rem}.yd-rounded-md{border-radius:.375rem}.yd-rounded-sm{border-radius:.125rem}.yd-rounded-b-md{border-bottom-right-radius:.375rem;border-bottom-left-radius:.375rem}.yd-rounded-l-md{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.yd-rounded-l-none{border-top-left-radius:0px;border-bottom-left-radius:0px}.yd-rounded-r-md{border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.yd-rounded-t-md{border-top-left-radius:.375rem;border-top-right-radius:.375rem}.\!yd-rounded-bl-md{border-bottom-left-radius:.375rem !important}.\!yd-rounded-br-none{border-bottom-right-radius:0px !important}.yd-rounded-bl-md{border-bottom-left-radius:.375rem}.yd-rounded-br-md{border-bottom-right-radius:.375rem}.yd-rounded-br-none{border-bottom-right-radius:0px}.yd-rounded-tl-md{border-top-left-radius:.375rem}.yd-rounded-tr-md{border-top-right-radius:.375rem}.yd-border{border-width:1px}.yd-border-0{border-width:0px}.yd-border-2{border-width:2px}.yd-border-\[2px\]{border-width:2px}.yd-border-y{border-top-width:1px;border-bottom-width:1px}.yd-border-b{border-bottom-width:1px}.yd-border-b-4{border-bottom-width:4px}.yd-border-l{border-left-width:1px}.yd-border-l-4{border-left-width:4px}.yd-border-r{border-right-width:1px}.yd-border-r-4{border-right-width:4px}.yd-border-t{border-top-width:1px}.yd-border-t-4{border-top-width:4px}.yd-border-solid{border-style:solid}.yd-border-dashed{border-style:dashed}.yd-border-dotted{border-style:dotted}.\!yd-border-none{border-style:none !important}.yd-border-none{border-style:none}.yd-border-black{--tw-border-opacity: 1;border-color:rgb(0, 0, 0, var(--tw-border-opacity))}.yd-border-black\/20{border-color:rgba(0,0,0,.2)}.yd-border-gray-100{--tw-border-opacity: 1;border-color:rgb(243, 244, 246, var(--tw-border-opacity))}.yd-border-gray-200{--tw-border-opacity: 1;border-color:rgb(229, 231, 235, var(--tw-border-opacity))}.yd-border-gray-300{--tw-border-opacity: 1;border-color:rgb(209, 213, 219, var(--tw-border-opacity))}.yd-border-gray-400{--tw-border-opacity: 1;border-color:rgb(156, 163, 175, var(--tw-border-opacity))}.yd-border-gray-500{--tw-border-opacity: 1;border-color:rgb(107, 114, 128, var(--tw-border-opacity))}.yd-border-gray-600{--tw-border-opacity: 1;border-color:rgb(75, 85, 99, var(--tw-border-opacity))}.yd-border-primary-100{--tw-border-opacity: 1;border-color:rgb(var(--primary-100)/var(--tw-border-opacity))}.yd-border-primary-300{--tw-border-opacity: 1;border-color:rgb(var(--primary-300)/var(--tw-border-opacity))}.yd-border-primary-400{--tw-border-opacity: 1;border-color:rgb(var(--primary-400)/var(--tw-border-opacity))}.yd-border-primary-500{--tw-border-opacity: 1;border-color:rgb(var(--primary-500)/var(--tw-border-opacity))}.yd-border-primary-800{--tw-border-opacity: 1;border-color:rgb(var(--primary-800)/var(--tw-border-opacity))}.yd-border-red-500{--tw-border-opacity: 1;border-color:rgb(239, 68, 68, var(--tw-border-opacity))}.yd-border-transparent{border-color:rgba(0,0,0,0)}.yd-border-b-gray-800{--tw-border-opacity: 1;border-bottom-color:rgb(31, 41, 55, var(--tw-border-opacity))}.yd-border-b-transparent{border-bottom-color:rgba(0,0,0,0)}.yd-border-l-gray-800{--tw-border-opacity: 1;border-left-color:rgb(31, 41, 55, var(--tw-border-opacity))}.yd-border-l-transparent{border-left-color:rgba(0,0,0,0)}.yd-border-r-gray-800{--tw-border-opacity: 1;border-right-color:rgb(31, 41, 55, var(--tw-border-opacity))}.yd-border-r-transparent{border-right-color:rgba(0,0,0,0)}.yd-border-t-gray-800{--tw-border-opacity: 1;border-top-color:rgb(31, 41, 55, var(--tw-border-opacity))}.yd-border-t-transparent{border-top-color:rgba(0,0,0,0)}.\!yd-bg-gray-100{--tw-bg-opacity: 1 !important;background-color:rgb(243, 244, 246, var(--tw-bg-opacity)) !important}.\!yd-bg-transparent{background-color:rgba(0,0,0,0) !important}.yd-bg-\[\#f3f4f6\]{--tw-bg-opacity: 1;background-color:rgb(243, 244, 246, var(--tw-bg-opacity))}.yd-bg-amber-100{--tw-bg-opacity: 1;background-color:rgb(254, 243, 199, var(--tw-bg-opacity))}.yd-bg-blue-500{--tw-bg-opacity: 1;background-color:rgb(59, 130, 246, var(--tw-bg-opacity))}.yd-bg-gray-100{--tw-bg-opacity: 1;background-color:rgb(243, 244, 246, var(--tw-bg-opacity))}.yd-bg-gray-200{--tw-bg-opacity: 1;background-color:rgb(229, 231, 235, var(--tw-bg-opacity))}.yd-bg-gray-300{--tw-bg-opacity: 1;background-color:rgb(209, 213, 219, var(--tw-bg-opacity))}.yd-bg-gray-50{--tw-bg-opacity: 1;background-color:rgb(249, 250, 251, var(--tw-bg-opacity))}.yd-bg-gray-600{--tw-bg-opacity: 1;background-color:rgb(75, 85, 99, var(--tw-bg-opacity))}.yd-bg-gray-700{--tw-bg-opacity: 1;background-color:rgb(55, 65, 81, var(--tw-bg-opacity))}.yd-bg-gray-800{--tw-bg-opacity: 1;background-color:rgb(31, 41, 55, var(--tw-bg-opacity))}.yd-bg-gray-900\/60{background-color:rgba(17,24,39,.6)}.yd-bg-gray-900\/75{background-color:rgba(17,24,39,.75)}.yd-bg-gray-950\/25{background-color:rgba(3,7,18,.25)}.yd-bg-gray-950\/90{background-color:rgba(3,7,18,.9)}.yd-bg-green-400{--tw-bg-opacity: 1;background-color:rgb(74, 222, 128, var(--tw-bg-opacity))}.yd-bg-lime-600\/30{background-color:rgba(101,163,13,.3)}.yd-bg-primary-100{--tw-bg-opacity: 1;background-color:rgb(var(--primary-100)/var(--tw-bg-opacity))}.yd-bg-primary-50{--tw-bg-opacity: 1;background-color:rgb(var(--primary-50)/var(--tw-bg-opacity))}.yd-bg-primary-500{--tw-bg-opacity: 1;background-color:rgb(var(--primary-500)/var(--tw-bg-opacity))}.yd-bg-primary-500\/10{background-color:rgb(var(--primary-500)/0.1)}.yd-bg-red-100{--tw-bg-opacity: 1;background-color:rgb(254, 226, 226, var(--tw-bg-opacity))}.yd-bg-red-400{--tw-bg-opacity: 1;background-color:rgb(248, 113, 113, var(--tw-bg-opacity))}.yd-bg-red-500{--tw-bg-opacity: 1;background-color:rgb(239, 68, 68, var(--tw-bg-opacity))}.yd-bg-transparent{background-color:rgba(0,0,0,0)}.yd-bg-white{--tw-bg-opacity: 1;background-color:rgb(255, 255, 255, var(--tw-bg-opacity))}.yd-bg-none{background-image:none}.yd-bg-contain{background-size:contain}.yd-fill-current{fill:currentColor}.yd-fill-gray-400{fill:#9ca3af}.yd-object-cover{-o-object-fit:cover;object-fit:cover}.yd-object-center{-o-object-position:center;object-position:center}.\!yd-p-0{padding:0px !important}.yd-p-0{padding:0px}.yd-p-0\.5{padding:.125rem}.yd-p-1{padding:.25rem}.yd-p-10{padding:2.5rem}.yd-p-12{padding:3rem}.yd-p-2{padding:.5rem}.yd-p-2\.5{padding:.625rem}.yd-p-3{padding:.75rem}.yd-p-4{padding:1rem}.yd-p-5{padding:1.25rem}.yd-p-6{padding:1.5rem}.yd-p-8{padding:2rem}.yd-p-px{padding:1px}.yd-px-0{padding-left:0px;padding-right:0px}.yd-px-1{padding-left:.25rem;padding-right:.25rem}.yd-px-1\.5{padding-left:.375rem;padding-right:.375rem}.yd-px-12{padding-left:3rem;padding-right:3rem}.yd-px-2{padding-left:.5rem;padding-right:.5rem}.yd-px-2\.5{padding-left:.625rem;padding-right:.625rem}.yd-px-3{padding-left:.75rem;padding-right:.75rem}.yd-px-3\.5{padding-left:.875rem;padding-right:.875rem}.yd-px-4{padding-left:1rem;padding-right:1rem}.yd-px-5{padding-left:1.25rem;padding-right:1.25rem}.yd-px-6{padding-left:1.5rem;padding-right:1.5rem}.yd-px-8{padding-left:2rem;padding-right:2rem}.yd-py-1{padding-top:.25rem;padding-bottom:.25rem}.yd-py-2{padding-top:.5rem;padding-bottom:.5rem}.yd-py-2\.5{padding-top:.625rem;padding-bottom:.625rem}.yd-py-4{padding-top:1rem;padding-bottom:1rem}.yd-py-8{padding-top:2rem;padding-bottom:2rem}.\!yd-pl-0{padding-left:0px !important}.\!yd-pl-8{padding-left:2rem !important}.\!yd-pl-\[156px\]{padding-left:156px !important}.\!yd-pr-12{padding-right:3rem !important}.yd-pb-0{padding-bottom:0px}.yd-pb-0\.5{padding-bottom:.125rem}.yd-pb-1{padding-bottom:.25rem}.yd-pb-1\.5{padding-bottom:.375rem}.yd-pb-20{padding-bottom:5rem}.yd-pb-24{padding-bottom:6rem}.yd-pb-3{padding-bottom:.75rem}.yd-pl-0{padding-left:0px}.yd-pl-0\.5{padding-left:.125rem}.yd-pl-1{padding-left:.25rem}.yd-pl-2{padding-left:.5rem}.yd-pl-2\.5{padding-left:.625rem}.yd-pl-3{padding-left:.75rem}.yd-pl-8{padding-left:2rem}.yd-pr-3{padding-right:.75rem}.yd-pt-0{padding-top:0px}.yd-pt-0\.5{padding-top:.125rem}.yd-pt-1{padding-top:.25rem}.yd-pt-1\.5{padding-top:.375rem}.yd-pt-2{padding-top:.5rem}.yd-pt-4{padding-top:1rem}.yd-pt-5{padding-top:1.25rem}.yd-pt-6{padding-top:1.5rem}.yd-pt-8{padding-top:2rem}.yd-text-left{text-align:left}.yd-text-center{text-align:center}.yd-text-right{text-align:right}.yd-align-middle{vertical-align:middle}.yd-align-bottom{vertical-align:bottom}.yd-font-mono{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace}.yd-font-sans{font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.\!yd-text-2xl{font-size:1.5rem !important;line-height:2rem !important}.\!yd-text-lg{font-size:1.125rem !important;line-height:1.75rem !important}.\!yd-text-sm{font-size:.875rem !important;line-height:1.25rem !important}.\!yd-text-xs{font-size:.75rem !important;line-height:1rem !important}.yd-text-3xl{font-size:1.875rem;line-height:2.25rem}.yd-text-\[18px\]{font-size:18px}.yd-text-base{font-size:1rem;line-height:1.5rem}.yd-text-base\/relaxed{font-size:1rem;line-height:1.625}.yd-text-lg{font-size:1.125rem;line-height:1.75rem}.yd-text-sm{font-size:.875rem;line-height:1.25rem}.yd-text-xl{font-size:1.25rem;line-height:1.75rem}.yd-text-xs{font-size:.75rem;line-height:1rem}.yd-font-black{font-weight:900}.yd-font-bold{font-weight:700}.yd-font-light{font-weight:300}.yd-font-medium{font-weight:500}.yd-font-normal{font-weight:400}.yd-font-semibold{font-weight:600}.yd-uppercase{text-transform:uppercase}.yd-italic{font-style:italic}.yd-leading-10{line-height:2.5rem}.yd-leading-5{line-height:1.25rem}.yd-leading-6{line-height:1.5rem}.yd-leading-\[24px\]{line-height:24px}.yd-leading-none{line-height:1}.yd-leading-normal{line-height:1.5}.yd-leading-relaxed{line-height:1.625}.yd-tracking-tight{letter-spacing:-0.025em}.yd-tracking-wider{letter-spacing:.05em}.\!yd-text-gray-300{--tw-text-opacity: 1 !important;color:rgb(209, 213, 219, var(--tw-text-opacity)) !important}.\!yd-text-gray-500{--tw-text-opacity: 1 !important;color:rgb(107, 114, 128, var(--tw-text-opacity)) !important}.\!yd-text-primary-500{--tw-text-opacity: 1 !important;color:rgb(var(--primary-500)/var(--tw-text-opacity)) !important}.\!yd-text-red-500{--tw-text-opacity: 1 !important;color:rgb(239, 68, 68, var(--tw-text-opacity)) !important}.\!yd-text-white\/50{color:hsla(0,0%,100%,.5) !important}.yd-text-amber-500{--tw-text-opacity: 1;color:rgb(245, 158, 11, var(--tw-text-opacity))}.yd-text-amber-600{--tw-text-opacity: 1;color:rgb(217, 119, 6, var(--tw-text-opacity))}.yd-text-blue-400{--tw-text-opacity: 1;color:rgb(96, 165, 250, var(--tw-text-opacity))}.yd-text-blue-500{--tw-text-opacity: 1;color:rgb(59, 130, 246, var(--tw-text-opacity))}.yd-text-cyan-500{--tw-text-opacity: 1;color:rgb(6, 182, 212, var(--tw-text-opacity))}.yd-text-emerald-500{--tw-text-opacity: 1;color:rgb(16, 185, 129, var(--tw-text-opacity))}.yd-text-fuchsia-500{--tw-text-opacity: 1;color:rgb(217, 70, 239, var(--tw-text-opacity))}.yd-text-gray-300{--tw-text-opacity: 1;color:rgb(209, 213, 219, var(--tw-text-opacity))}.yd-text-gray-400{--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}.yd-text-gray-50{--tw-text-opacity: 1;color:rgb(249, 250, 251, var(--tw-text-opacity))}.yd-text-gray-500{--tw-text-opacity: 1;color:rgb(107, 114, 128, var(--tw-text-opacity))}.yd-text-gray-600{--tw-text-opacity: 1;color:rgb(75, 85, 99, var(--tw-text-opacity))}.yd-text-gray-700{--tw-text-opacity: 1;color:rgb(55, 65, 81, var(--tw-text-opacity))}.yd-text-gray-800{--tw-text-opacity: 1;color:rgb(31, 41, 55, var(--tw-text-opacity))}.yd-text-gray-900{--tw-text-opacity: 1;color:rgb(17, 24, 39, var(--tw-text-opacity))}.yd-text-green-500{--tw-text-opacity: 1;color:rgb(34, 197, 94, var(--tw-text-opacity))}.yd-text-indigo-500{--tw-text-opacity: 1;color:rgb(99, 102, 241, var(--tw-text-opacity))}.yd-text-lime-500{--tw-text-opacity: 1;color:rgb(132, 204, 22, var(--tw-text-opacity))}.yd-text-lime-600{--tw-text-opacity: 1;color:rgb(101, 163, 13, var(--tw-text-opacity))}.yd-text-orange-500{--tw-text-opacity: 1;color:rgb(249, 115, 22, var(--tw-text-opacity))}.yd-text-pink-500{--tw-text-opacity: 1;color:rgb(236, 72, 153, var(--tw-text-opacity))}.yd-text-primary-300{--tw-text-opacity: 1;color:rgb(var(--primary-300)/var(--tw-text-opacity))}.yd-text-primary-400{--tw-text-opacity: 1;color:rgb(var(--primary-400)/var(--tw-text-opacity))}.yd-text-primary-500{--tw-text-opacity: 1;color:rgb(var(--primary-500)/var(--tw-text-opacity))}.yd-text-primary-600{--tw-text-opacity: 1;color:rgb(var(--primary-600)/var(--tw-text-opacity))}.yd-text-purple-500{--tw-text-opacity: 1;color:rgb(168, 85, 247, var(--tw-text-opacity))}.yd-text-red-200{--tw-text-opacity: 1;color:rgb(254, 202, 202, var(--tw-text-opacity))}.yd-text-red-400{--tw-text-opacity: 1;color:rgb(248, 113, 113, var(--tw-text-opacity))}.yd-text-red-500{--tw-text-opacity: 1;color:rgb(239, 68, 68, var(--tw-text-opacity))}.yd-text-red-600{--tw-text-opacity: 1;color:rgb(220, 38, 38, var(--tw-text-opacity))}.yd-text-sky-500{--tw-text-opacity: 1;color:rgb(14, 165, 233, var(--tw-text-opacity))}.yd-text-slate-400{--tw-text-opacity: 1;color:rgb(148, 163, 184, var(--tw-text-opacity))}.yd-text-slate-700{--tw-text-opacity: 1;color:rgb(51, 65, 85, var(--tw-text-opacity))}.yd-text-teal-500{--tw-text-opacity: 1;color:rgb(20, 184, 166, var(--tw-text-opacity))}.yd-text-violet-500{--tw-text-opacity: 1;color:rgb(139, 92, 246, var(--tw-text-opacity))}.yd-text-white{--tw-text-opacity: 1;color:rgb(255, 255, 255, var(--tw-text-opacity))}.yd-text-yellow-500{--tw-text-opacity: 1;color:rgb(234, 179, 8, var(--tw-text-opacity))}.yd-text-zinc-600{--tw-text-opacity: 1;color:rgb(82, 82, 91, var(--tw-text-opacity))}.yd-decoration-primary-400{text-decoration-color:rgb(var(--primary-400)/1)}.yd-decoration-2{text-decoration-thickness:2px}.yd-caret-primary-400{caret-color:rgb(var(--primary-400)/1)}.yd-opacity-0{opacity:0}.yd-opacity-100{opacity:1}.yd-opacity-20{opacity:.2}.yd-opacity-25{opacity:.25}.yd-opacity-50{opacity:.5}.yd-opacity-75{opacity:.75}.yd-shadow{--tw-shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);--tw-shadow-colored: 0 1px 3px 0 var(--tw-shadow-color), 0 1px 2px -1px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.yd-shadow-lg{--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.yd-shadow-none{--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.yd-shadow-sm{--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.yd-shadow-xl{--tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);--tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.yd-outline-none{outline:2px solid rgba(0,0,0,0);outline-offset:2px}.yd-outline{outline-style:solid}.yd-outline-2{outline-width:2px}.yd-outline-offset-2{outline-offset:2px}.yd-outline-primary-400{outline-color:rgb(var(--primary-400)/1)}.yd-outline-primary-500{outline-color:rgb(var(--primary-500)/1)}.yd-outline-red-500{outline-color:#ef4444}.\!yd-ring-0{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0)) !important}.\!yd-ring-2{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0)) !important}.yd-ring-0{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0))}.yd-ring-1{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0))}.yd-ring-2{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0))}.yd-ring-amber-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(252 211 77 / var(--tw-ring-opacity))}.yd-ring-black{--tw-ring-opacity: 1;--tw-ring-color: rgb(0 0 0 / var(--tw-ring-opacity))}.yd-ring-blue-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(147 197 253 / var(--tw-ring-opacity))}.yd-ring-cyan-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(103 232 249 / var(--tw-ring-opacity))}.yd-ring-emerald-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(110 231 183 / var(--tw-ring-opacity))}.yd-ring-fuchsia-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(240 171 252 / var(--tw-ring-opacity))}.yd-ring-gray-200{--tw-ring-opacity: 1;--tw-ring-color: rgb(229 231 235 / var(--tw-ring-opacity))}.yd-ring-green-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(134 239 172 / var(--tw-ring-opacity))}.yd-ring-indigo-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(165 180 252 / var(--tw-ring-opacity))}.yd-ring-lime-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(190 242 100 / var(--tw-ring-opacity))}.yd-ring-orange-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(253 186 116 / var(--tw-ring-opacity))}.yd-ring-pink-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(249 168 212 / var(--tw-ring-opacity))}.yd-ring-primary-400{--tw-ring-opacity: 1;--tw-ring-color: rgb(var(--primary-400) / var(--tw-ring-opacity))}.yd-ring-purple-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(216 180 254 / var(--tw-ring-opacity))}.yd-ring-red-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(252 165 165 / var(--tw-ring-opacity))}.yd-ring-red-400{--tw-ring-opacity: 1;--tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity))}.yd-ring-red-500{--tw-ring-opacity: 1;--tw-ring-color: rgb(239 68 68 / var(--tw-ring-opacity))}.yd-ring-sky-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(125 211 252 / var(--tw-ring-opacity))}.yd-ring-teal-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(94 234 212 / var(--tw-ring-opacity))}.yd-ring-violet-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(196 181 253 / var(--tw-ring-opacity))}.yd-ring-yellow-300{--tw-ring-opacity: 1;--tw-ring-color: rgb(253 224 71 / var(--tw-ring-opacity))}.yd-ring-opacity-5{--tw-ring-opacity: 0.05}.\!yd-ring-offset-\[3px\]{--tw-ring-offset-width: 3px !important}.yd-ring-offset-0{--tw-ring-offset-width: 0px}.yd-ring-offset-\[3px\]{--tw-ring-offset-width: 3px}.yd-ring-offset-gray-900{--tw-ring-offset-color: #111827}.yd-backdrop-blur-sm{--tw-backdrop-blur: blur(4px);-webkit-backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia);backdrop-filter:var(--tw-backdrop-blur) var(--tw-backdrop-brightness) var(--tw-backdrop-contrast) var(--tw-backdrop-grayscale) var(--tw-backdrop-hue-rotate) var(--tw-backdrop-invert) var(--tw-backdrop-opacity) var(--tw-backdrop-saturate) var(--tw-backdrop-sepia)}.yd-transition{transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.yd-transition-all{transition-property:all;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.yd-transition-opacity{transition-property:opacity;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.yd-duration-100{transition-duration:100ms}.yd-duration-150{transition-duration:150ms}.yd-duration-200{transition-duration:200ms}.yd-duration-300{transition-duration:300ms}.yd-duration-500{transition-duration:500ms}.yd-ease-in{transition-timing-function:cubic-bezier(0.4, 0, 1, 1)}.yd-ease-in-out{transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1)}.yd-ease-out{transition-timing-function:cubic-bezier(0, 0, 0.2, 1)}.yd-will-change-auto{will-change:auto}.\[hostname\:port\]{hostname:port}.yd-form body,.yd-form p,.yd-form ul,.yd-form ol,.yd-form dl,.yd-form table,.yd-form details{color:inherit}.yd-form [type=text],.yd-form [type=password],.yd-form [type=date],.yd-form [type=datetime],.yd-form [type=datetime-local],.yd-form [type=month],.yd-form [type=week],.yd-form [type=email],.yd-form [type=number],.yd-form [type=search],.yd-form [type=tel],.yd-form [type=time],.yd-form [type=url],.yd-form [type=color],.yd-form textarea,.yd-form select{transition:box-shadow 150ms,border-color 150ms ease-in !important}.yd-checkbox [type=checkbox],.yd-radio [type=radio],.yd-agreeterms [type=checkbox]{border-style:solid}.yd-select select:not([multiple]){padding-top:0;padding-bottom:0}.yd-select select:not([multiple]).yd-float-label{padding-top:1rem}.yd-date input:disabled,.yd-date input[readonly],.yd-date textarea:disabled,.yd-date textarea[readonly]{cursor:default;--tw-bg-opacity: 1;background-color:rgb(255, 255, 255, var(--tw-bg-opacity))}.yd-date input:disabled:is([data-mode=dark] *),.yd-date input[readonly]:is([data-mode=dark] *),.yd-date textarea:disabled:is([data-mode=dark] *),.yd-date textarea[readonly]:is([data-mode=dark] *){background-color:rgba(3,7,18,.7)}.yd-button button{border-width:1px;border-style:solid;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji"}.yd-input input,.yd-captcha input,.yd-color input,.yd-file input,.yd-date input,.yd-security-question input,.yd-textarea textarea{margin:0px;width:100%;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-radius:.375rem;border-width:1px;border-style:solid;--tw-border-opacity: 1;border-color:rgb(209, 213, 219, var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(255, 255, 255, var(--tw-bg-opacity));-o-object-position:center;object-position:center;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-weight:500;--tw-text-opacity: 1;color:rgb(31, 41, 55, var(--tw-text-opacity));caret-color:rgb(var(--primary-400)/1);--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow);--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0));transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms;transition-timing-function:cubic-bezier(0.4, 0, 1, 1)}.yd-input input::-moz-placeholder,.yd-captcha input::-moz-placeholder,.yd-color input::-moz-placeholder,.yd-file input::-moz-placeholder,.yd-date input::-moz-placeholder,.yd-security-question input::-moz-placeholder,.yd-textarea textarea::-moz-placeholder{--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}.yd-input input::placeholder,.yd-captcha input::placeholder,.yd-color input::placeholder,.yd-file input::placeholder,.yd-date input::placeholder,.yd-security-question input::placeholder,.yd-textarea textarea::placeholder{--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}.yd-input input:focus,.yd-captcha input:focus,.yd-color input:focus,.yd-file input:focus,.yd-date input:focus,.yd-security-question input:focus,.yd-textarea textarea:focus{--tw-border-opacity: 1;border-color:rgb(156, 163, 175, var(--tw-border-opacity));outline:2px solid rgba(0,0,0,0);outline-offset:2px;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0));--tw-ring-opacity: 1;--tw-ring-color: rgb(var(--primary-400) / var(--tw-ring-opacity));--tw-ring-offset-width: 3px}.yd-input input:is([data-mode=dark] *),.yd-captcha input:is([data-mode=dark] *),.yd-color input:is([data-mode=dark] *),.yd-file input:is([data-mode=dark] *),.yd-date input:is([data-mode=dark] *),.yd-security-question input:is([data-mode=dark] *),.yd-textarea textarea:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(75, 85, 99, var(--tw-border-opacity));background-color:rgba(3,7,18,.7);--tw-text-opacity: 1;color:rgb(243, 244, 246, var(--tw-text-opacity))}.yd-input input:is([data-mode=dark] *)::-moz-placeholder,.yd-captcha input:is([data-mode=dark] *)::-moz-placeholder,.yd-color input:is([data-mode=dark] *)::-moz-placeholder,.yd-file input:is([data-mode=dark] *)::-moz-placeholder,.yd-date input:is([data-mode=dark] *)::-moz-placeholder,.yd-security-question input:is([data-mode=dark] *)::-moz-placeholder,.yd-textarea textarea:is([data-mode=dark] *)::-moz-placeholder{--tw-text-opacity: 1;color:rgb(107, 114, 128, var(--tw-text-opacity))}.yd-input input:is([data-mode=dark] *)::placeholder,.yd-captcha input:is([data-mode=dark] *)::placeholder,.yd-color input:is([data-mode=dark] *)::placeholder,.yd-file input:is([data-mode=dark] *)::placeholder,.yd-date input:is([data-mode=dark] *)::placeholder,.yd-security-question input:is([data-mode=dark] *)::placeholder,.yd-textarea textarea:is([data-mode=dark] *)::placeholder{--tw-text-opacity: 1;color:rgb(107, 114, 128, var(--tw-text-opacity))}.yd-input input:focus:is([data-mode=dark] *),.yd-captcha input:focus:is([data-mode=dark] *),.yd-color input:focus:is([data-mode=dark] *),.yd-file input:focus:is([data-mode=dark] *),.yd-date input:focus:is([data-mode=dark] *),.yd-security-question input:focus:is([data-mode=dark] *),.yd-textarea textarea:focus:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(75, 85, 99, var(--tw-border-opacity));--tw-ring-opacity: 1;--tw-ring-color: rgb(var(--primary-400) / var(--tw-ring-opacity));--tw-ring-offset-color: #111827}ul.yd-input-footer{margin:0px;margin-top:.375rem;width:100%;list-style-type:none;padding:0px}.yd-subtext{margin-top:.125rem;text-align:left;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:.875rem !important;line-height:1.25rem !important;font-style:italic;--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}.yd-subtext:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}.yd-input-error{font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0)) !important;--tw-ring-opacity: 1;--tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity));--tw-ring-offset-width: 3px !important}.yd-input-error:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(252, 165, 165, var(--tw-border-opacity));--tw-ring-color: rgb(248 113 113 / 0.5);--tw-ring-offset-color: #111827}.yd-error-msg{font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:.875rem !important;line-height:1.25rem !important;font-weight:500;font-style:italic;--tw-text-opacity: 1;color:rgb(248, 113, 113, var(--tw-text-opacity))}.yd-input label,.yd-captcha label,.yd-color label,.yd-file label,.yd-date label,.yd-security-question label,.yd-select label,.yd-range label,.yd-textarea label{display:flex;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));align-items:center;gap:.25rem;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1rem;line-height:1.5rem;font-weight:600;letter-spacing:-0.025em;--tw-text-opacity: 1;color:rgb(var(--primary-500)/var(--tw-text-opacity))}.yd-input label:is([data-mode=dark] *),.yd-captcha label:is([data-mode=dark] *),.yd-color label:is([data-mode=dark] *),.yd-file label:is([data-mode=dark] *),.yd-date label:is([data-mode=dark] *),.yd-security-question label:is([data-mode=dark] *),.yd-select label:is([data-mode=dark] *),.yd-range label:is([data-mode=dark] *),.yd-textarea label:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(var(--primary-400)/var(--tw-text-opacity))}.yd-form .yd-float-wrap label{padding:0px;padding-bottom:.375rem}.yd-form.yd-float-label .yd-float-wrap label{position:absolute;left:.75rem;top:.875rem;transform-origin:0;--tw-translate-y: -0.75rem;--tw-scale-x: .9;--tw-scale-y: .9;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));cursor:text}.yd-form .yd-float-wrap{flex-direction:column-reverse}.yd-form.yd-float-label .yd-float-wrap{flex-direction:column}.yd-form .yd-float-wrap input{height:42px;padding:.5rem;padding-left:.75rem;padding-right:.75rem}.yd-form.yd-float-label .yd-float-wrap input{height:50px;padding:.75rem;padding-bottom:.25rem;padding-left:.625rem;padding-top:1.25rem}.yd-form.yd-float-label .yd-captcha label{left:160px}.yd-form.yd-float-label .yd-stepper label{width:100%;justify-content:center}.yd-form.yd-float-label .yd-stepper label>span{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;display:inline;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.yd-form .yd-stepper input{padding-left:0px !important;text-align:center}.yd-form .yd-color .yd-color-swatch{top:39px}.yd-form.yd-float-label .yd-color .yd-color-swatch{top:1rem;margin-top:.625rem}.yd-form .yd-file.edit input[type=file]{position:relative;height:42px;padding:0px !important}.yd-form .yd-file.edit input[type=file]::file-selector-button{height:40px;border-right-width:1px;border-style:solid;--tw-border-opacity: 1;border-color:rgb(209, 213, 219, var(--tw-border-opacity));background-color:rgba(0,0,0,0);padding-left:.5rem;padding-right:.5rem;font-size:.75rem;line-height:1rem;font-weight:500;text-transform:uppercase}.yd-form.yd-float-label .yd-file.edit input[type=file]{position:relative;height:50px;padding:0px !important}.yd-form.yd-float-label .yd-file.edit input[type=file]::file-selector-button{margin:0px;height:48px;border-width:0px;background-color:rgba(0,0,0,0);padding-left:.5rem;padding-top:1.25rem;font-size:.75rem;line-height:1rem;font-weight:500;text-transform:uppercase;color:rgb(209, 213, 219, var(--tw-text-opacity));--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}.yd-form .yd-select.edit select{height:42px;padding-top:.5rem;padding-bottom:.5rem;padding-left:.75rem}.yd-form .yd-select.edit select[multiple]{height:75px !important}.yd-form.yd-float-label .yd-select.edit select{height:50px;padding:.75rem;padding-bottom:.25rem;padding-left:.625rem;padding-top:1.25rem}input[type=number].yd-select select::-webkit-inner-spin-button,input[type=number].yd-select select::-webkit-outer-spin-button{-webkit-appearance:none;margin:0}input[type=number].yd-select select{-moz-appearance:textfield}.yd-select select{margin:0px;width:100%;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));border-radius:.375rem;border-width:1px;border-style:solid;--tw-border-opacity: 1;border-color:rgb(209, 213, 219, var(--tw-border-opacity));background-image:none;-o-object-position:center;object-position:center;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--tw-text-opacity: 1;color:rgb(31, 41, 55, var(--tw-text-opacity));--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow);transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,-webkit-backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter;transition-property:color,background-color,border-color,text-decoration-color,fill,stroke,opacity,box-shadow,transform,filter,backdrop-filter,-webkit-backdrop-filter;transition-duration:100ms;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1)}.yd-select select::-moz-placeholder{--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}.yd-select select::placeholder{--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}.yd-select select:focus{--tw-border-opacity: 1;border-color:rgb(156, 163, 175, var(--tw-border-opacity));outline:2px solid rgba(0,0,0,0);outline-offset:2px;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0));--tw-ring-opacity: 1;--tw-ring-color: rgb(var(--primary-400) / var(--tw-ring-opacity));--tw-ring-offset-width: 3px}.yd-select select:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(75, 85, 99, var(--tw-border-opacity));background-color:rgba(3,7,18,.7);--tw-text-opacity: 1;color:rgb(243, 244, 246, var(--tw-text-opacity))}.yd-select select:is([data-mode=dark] *)::-moz-placeholder{--tw-text-opacity: 1;color:rgb(107, 114, 128, var(--tw-text-opacity))}.yd-select select:is([data-mode=dark] *)::placeholder{--tw-text-opacity: 1;color:rgb(107, 114, 128, var(--tw-text-opacity))}.yd-select select:focus:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(75, 85, 99, var(--tw-border-opacity));--tw-ring-opacity: 1;--tw-ring-color: rgb(var(--primary-400) / var(--tw-ring-opacity));--tw-ring-offset-color: #111827}.yd-select select[multiple]{padding-top:2rem}.yd-input-tools{position:absolute;bottom:0px;right:0px;z-index:10;display:flex;width:auto;align-items:center;justify-content:flex-end;gap:.25rem;border-top-right-radius:.375rem;border-bottom-right-radius:.375rem;border-width:1px;border-style:solid;--tw-border-opacity: 1;border-color:rgb(209, 213, 219, var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(255, 255, 255, var(--tw-bg-opacity));padding-left:.5rem;padding-right:.5rem;--tw-text-opacity: 1;color:rgb(209, 213, 219, var(--tw-text-opacity))}.yd-peer:focus~.yd-input-tools{--tw-border-opacity: 1;border-color:rgb(156, 163, 175, var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(249, 250, 251, var(--tw-bg-opacity))}.yd-input-tools:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(75, 85, 99, var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(31, 41, 55, var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(75, 85, 99, var(--tw-text-opacity))}.yd-peer:focus~.yd-input-tools:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(75, 85, 99, var(--tw-border-opacity));background-color:rgba(17,24,39,.5);--tw-text-opacity: 1;color:rgb(107, 114, 128, var(--tw-text-opacity))}.yd-form .yd-input-tools,.yd-form .yd-captcha-refresh,.yd-form .yd-decrement{height:42px}.yd-form.yd-float-label .yd-input-tools,.yd-form.yd-float-label .yd-captcha-refresh,.yd-form.yd-float-label .yd-decrement{height:50px}.yd-form .yd-textarea.edit .input-tools{top:26px}.yd-form.yd-float-label .yd-textarea.edit .input-tools{top:0px}div.yd-base div.yd-base-required{display:none !important}.yd-base .yd-edit{display:block}.yd-base .yd-edit .yd-edit-version{position:absolute;right:.5rem;text-align:right;font-size:.75rem;line-height:1rem;font-style:italic;--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}.yd-base .yd-edit .yd-edit-version:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(107, 114, 128, var(--tw-text-opacity))}.no-scrollbar::-webkit-scrollbar{width:6px !important;background-color:rgba(0,0,0,0)}.no-scrollbar::-webkit-scrollbar-track{-webkit-box-shadow:none !important;background-color:rgba(0,0,0,0)}.no-scrollbar::-webkit-scrollbar-thumb{border-radius:9999px;--tw-bg-opacity: 1;background-color:rgb(var(--primary-300)/var(--tw-bg-opacity))}.no-scrollbar{-ms-yd-overflow-style:none;scrollbar-width:thin}.tippy-box[data-animation=fade][data-state=hidden]{opacity:0}[data-tippy-root]{max-width:calc(100vw - 10px)}.tippy-box{position:yd-relative;background-color:#333;color:#fff;border-radius:4px;yd-font-size:14px;line-height:1.4;white-space:normal;outline:0;transition-property:transform,visibility,opacity}.tippy-box[data-placement^=top]>.tippy-arrow{bottom:0}.tippy-box[data-placement^=top]>.tippy-arrow:before{bottom:-7px;left:0;border-width:8px 8px 0;border-top-color:initial;transform-origin:center top}.tippy-box[data-placement^=bottom]>.tippy-arrow{top:0}.tippy-box[data-placement^=bottom]>.tippy-arrow:before{top:-7px;left:0;border-width:0 8px 8px;border-bottom-color:initial;transform-origin:center bottom}.tippy-box[data-placement^=left]>.tippy-arrow{right:0}.tippy-box[data-placement^=left]>.tippy-arrow:before{border-width:8px 0 8px 8px;border-left-color:initial;right:-7px;transform-origin:center left}.tippy-box[data-placement^=right]>.tippy-arrow{left:0}.tippy-box[data-placement^=right]>.tippy-arrow:before{left:-7px;border-width:8px 8px 8px 0;border-right-color:initial;transform-origin:center right}.tippy-box[data-inertia][data-state=visible]{transition-timing-function:cubic-bezier(0.54, 1.5, 0.38, 1.11)}.tippy-arrow{width:16px;height:16px;color:#333}.tippy-arrow:before{content:"";position:absolute;border-color:rgba(0,0,0,0);border-style:solid}.tippy-content{position:yd-relative;padding:5px 9px;z-index:1}.flatpickr-calendar{position:absolute;margin-top:.5rem;display:none;width:250px;-webkit-user-select:none;-moz-user-select:none;user-select:none;border-radius:.375rem;border-width:1px;border-style:solid;--tw-border-opacity: 1;border-color:rgb(209, 213, 219, var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(255, 255, 255, var(--tw-bg-opacity));padding:.625rem;text-align:center;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:.875rem;line-height:1.25rem;opacity:0;--tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.flatpickr-calendar:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(var(--primary-400)/var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(3, 7, 18, var(--tw-bg-opacity))}.flatpickr-calendar.inline:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(75, 85, 99, var(--tw-border-opacity))}.flatpickr-calendar.hasWeeks{width:300px !important}.flatpickr-calendar.open,.flatpickr-calendar.inline{visibility:visible;max-height:640px;opacity:1}.flatpickr-calendar.inline{margin-top:0px;--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.flatpickr-calendar.open{display:inline-block;z-index:99999}.flatpickr-calendar.animate.open{animation:fpFadeInDown 300ms cubic-bezier(0.23, 1, 0.32, 1)}.flatpickr-calendar.inline{display:block;position:relative;top:2px}.flatpickr-calendar.static{position:absolute;top:calc(100% + 2px)}.flatpickr-calendar.static.open{yd-z-index:999;display:block}.flatpickr-calendar .hasWeeks .dayContainer,.flatpickr-calendar .hasTime .dayContainer{border-bottom:0;border-bottom-right-radius:0;border-bottom-left-radius:0}.flatpickr-calendar .hasWeeks .dayContainer{border-left:0}.flatpickr-calendar.hasTime .flatpickr-time{height:40px;border-top-width:1px}.flatpickr-calendar.hasTime .flatpickr-time:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(75, 85, 99, var(--tw-border-opacity))}.flatpickr-calendar.noCalendar.hasTime .flatpickr-time{height:auto;border-style:none}.flatpickr-calendar:before,.flatpickr-calendar:after{position:absolute;display:block;pointer-events:none;border:solid rgba(0,0,0,0);content:"";height:0;width:0;left:22px}.flatpickr-calendar.rightMost:before,.flatpickr-calendar.arrowRight:before,.flatpickr-calendar.rightMost:after,.flatpickr-calendar.arrowRight:after{left:auto;right:22px}.flatpickr-calendar.arrowCenter:before,.flatpickr-calendar.arrowCenter:after{left:50%;right:50%}.flatpickr-calendar:before{border-width:5px;margin:0 -5px}.flatpickr-calendar:after{border-width:4px;margin:0 -4px}.flatpickr-calendar:focus{outline:0}.flatpickr-wrapper{position:relative;display:inline-block}.flatpickr-months{display:flex;align-items:center;justify-content:space-between}.flatpickr-months .flatpickr-month{position:relative;display:flex;-webkit-user-select:none;-moz-user-select:none;user-select:none;align-items:center;justify-content:center;overflow:hidden;background-color:rgba(0,0,0,0)}.flatpickr-months .flatpickr-prev-month,.flatpickr-months .flatpickr-next-month{position:relative;z-index:10;cursor:pointer;padding:.5rem;font-weight:400}.flatpickr-months .flatpickr-prev-month:hover,.flatpickr-months .flatpickr-next-month:hover{--tw-text-opacity: 1;color:rgb(var(--primary-500)/var(--tw-text-opacity))}.flatpickr-months .flatpickr-prev-month.flatpickr-disabled,.flatpickr-months .flatpickr-next-month.flatpickr-disabled{pointer-events:none;opacity:.5}.flatpickr-months .flatpickr-prev-month i,.flatpickr-months .flatpickr-next-month i{position:relative}.flatpickr-months .flatpickr-prev-month.flatpickr-prev-month,.flatpickr-months .flatpickr-next-month.flatpickr-prev-month{left:0}.flatpickr-months .flatpickr-prev-month.flatpickr-next-month,.flatpickr-months .flatpickr-next-month.flatpickr-next-month{right:0}.flatpickr-months .flatpickr-prev-month svg,.flatpickr-months .flatpickr-next-month svg{height:.75rem;width:.75rem;fill:#9ca3af}.flatpickr-months .flatpickr-prev-month svg:hover,.flatpickr-months .flatpickr-next-month svg:hover{fill:rgb(var(--primary-500)/1)}.flatpickr-months .flatpickr-prev-month svg path,.flatpickr-months .flatpickr-next-month svg path{transition:fill .1s;fill:inherit}.numInputWrapper{position:relative;height:auto}.numInputWrapper input,.numInputWrapper span{display:inline-block}.numInputWrapper input{width:100%;border-width:0px;font-size:1.125rem;line-height:1.75rem;font-weight:500}.numInputWrapper input:focus{background-color:rgba(0,0,0,0);outline:2px solid rgba(0,0,0,0);outline-offset:2px}.numInputWrapper input::-ms-clear{display:none}.numInputWrapper input::-webkit-outer-spin-button,.numInputWrapper input::-webkit-inner-spin-button{margin:0;-webkit-appearance:none}.numInputWrapper span{position:absolute;right:0px;height:.75rem;width:.75rem;cursor:pointer;opacity:0}.numInputWrapper span::after{content:var(--tw-content);display:block}.numInputWrapper span:hover{opacity:.5}.numInputWrapper span:focus{outline:2px solid rgba(0,0,0,0);outline-offset:2px}.numInputWrapper span.arrowUp{background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><path fill="rgba(101, 117, 138, 1.00)" d="M201.4 137.4c12.5-12.5 32.8-12.5 45.3 0l160 160c12.5 12.5 12.5 32.8 0 45.3s-32.8 12.5-45.3 0L224 205.3 86.6 342.6c-12.5 12.5-32.8 12.5-45.3 0s-12.5-32.8 0-45.3l160-160z"/></svg>');top:1px;background-size:contain;background-repeat:no-repeat}.numInputWrapper span.arrowDown{background-image:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="1em" viewBox="0 0 448 512"><path fill="rgba(101, 117, 138, 1.00)" d="M241 337c-9.4 9.4-24.6 9.4-33.9 0L47 177c-9.4-9.4-9.4-24.6 0-33.9s24.6-9.4 33.9 0l143 143L367 143c9.4-9.4 24.6-9.4 33.9 0s9.4 24.6 0 33.9L241 337z"/></svg>');bottom:1px;background-size:contain;background-repeat:no-repeat}.numInputWrapper span svg{width:inherit;height:auto}.numInputWrapper span svg path{fill:rgba(0,0,0,.5)}.numInputWrapper:hover span{opacity:1}.flatpickr-current-month{position:relative;display:flex;width:100%;align-items:center;justify-content:center;text-align:center}.flatpickr-current-month span.cur-month{font-family:inherit;font-weight:700;color:inherit;display:inline-block;margin-left:.5ch;padding:0}.flatpickr-current-month span.cur-month:hover{background:rgba(0,0,0,.05)}.flatpickr-current-month .numInputWrapper{display:inline-block;width:70px;background-color:rgba(0,0,0,0)}.flatpickr-current-month .numInputWrapper span.arrowUp:after{border-bottom-color:rgba(0,0,0,.9)}.flatpickr-current-month .numInputWrapper span.arrowDown:after{border-top-color:rgba(0,0,0,.9)}.flatpickr-current-month input.cur-year{pointer-events:none;margin:0px;display:inline-block;height:auto !important;width:100%;-webkit-user-select:none;-moz-user-select:none;user-select:none;border-width:0px;background-color:rgba(0,0,0,0);padding:0px;font-size:1rem;line-height:1.5rem;font-weight:700;--tw-text-opacity: 1 !important;color:rgb(var(--primary-500)/var(--tw-text-opacity)) !important;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0))}.flatpickr-current-month input.cur-year:focus{outline:2px solid rgba(0,0,0,0);outline-offset:2px;outline:0}.flatpickr-current-month input.cur-year[disabled],.flatpickr-current-month input.cur-year[disabled]:hover{font-size:100%;color:rgba(0,0,0,.5);background:rgba(0,0,0,0);pointer-events:none}.flatpickr-current-month .flatpickr-monthDropdown-months,.flatpickr-current-month .numInputWrapper .flatpickr-yearDropdown-years{position:relative;margin:0px;display:inline-block;width:auto;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-width:0px;background-color:rgba(0,0,0,0);background-image:none;padding:.25rem;text-align:center;font-family:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";font-size:1.125rem !important;line-height:1.75rem !important;font-weight:400;--tw-text-opacity: 1;color:rgb(31, 41, 55, var(--tw-text-opacity));outline:2px solid rgba(0,0,0,0);outline-offset:2px;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0)) !important}.flatpickr-current-month .flatpickr-monthDropdown-months:focus,.flatpickr-current-month .numInputWrapper .flatpickr-yearDropdown-years:focus{border-style:none;outline:2px solid rgba(0,0,0,0) !important;outline-offset:2px !important}.flatpickr-current-month .flatpickr-monthDropdown-months:active,.flatpickr-current-month .numInputWrapper .flatpickr-yearDropdown-years:active{outline:2px solid rgba(0,0,0,0);outline-offset:2px}.flatpickr-current-month .flatpickr-monthDropdown-months:is([data-mode=dark] *),.flatpickr-current-month .numInputWrapper .flatpickr-yearDropdown-years:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(255, 255, 255, var(--tw-text-opacity))}.flatpickr-current-month .flatpickr-monthDropdown-months,.flatpickr-current-month .numInputWrapper .flatpickr-yearDropdown-years{box-shadow:none}.flatpickr-current-month .numInputWrapper .flatpickr-yearDropdown-years{--tw-text-opacity: 1;color:rgb(var(--primary-500)/var(--tw-text-opacity))}.flatpickr-yearDropdown-year{font-weight:400}.flatpickr-yearDropdown-years{font-weight:700}.flatpickr-yearDropdown-years:focus{border-color:rgba(0,0,0,0) !important;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0)) !important}.flatpickr-current-month .flatpickr-monthDropdown-months .flatpickr-monthDropdown-month,.flatpickr-yearDropdown-years .flatpickr-yearDropdown-year{padding:0px;font-size:.875rem !important;line-height:1.25rem !important;font-weight:700;outline:2px solid rgba(0,0,0,0);outline-offset:2px;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color) !important;--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color) !important;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0)) !important}.flatpickr-weekdays{display:flex;height:1.75rem;width:100%;-webkit-user-select:none;-moz-user-select:none;user-select:none;align-items:center;overflow:hidden;background-color:rgba(0,0,0,0);text-align:center}.flatpickr-weekdays .flatpickr-weekdaycontainer{display:grid;width:100%;grid-template-columns:repeat(7, minmax(0, 1fr));gap:1px}span.flatpickr-weekday{margin:0px;display:block;flex:1 1 0%;cursor:default;background-color:rgba(0,0,0,0);text-align:center;font-size:.75rem;line-height:1rem;text-transform:uppercase;line-height:1;--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}span.flatpickr-weekday:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(107, 114, 128, var(--tw-text-opacity))}.dayContainer,.flatpickr-weeks{padding:1px 0 0 0}.flatpickr-days{width:100% !important}.flatpickr-days:focus{outline:2px solid rgba(0,0,0,0);outline-offset:2px}.dayContainer{display:grid;grid-template-columns:repeat(7, minmax(0, 1fr));gap:1px;text-align:left}.dayContainer+.dayContainer{box-shadow:-1px 0 0 #e6e6e6}.flatpickr-day{position:relative;margin:0px;display:flex;height:2rem;width:2rem;cursor:pointer;align-items:center;justify-content:center;border-radius:.375rem;border-width:1px;border-style:solid;--tw-border-opacity: 1;border-color:rgb(209, 213, 219, var(--tw-border-opacity));background-image:none;text-align:center;--tw-text-opacity: 1;color:rgb(107, 114, 128, var(--tw-text-opacity))}.flatpickr-day:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(75, 85, 99, var(--tw-border-opacity));border-color:rgba(0,0,0,0);--tw-bg-opacity: 1;background-color:rgb(31, 41, 55, var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(229, 231, 235, var(--tw-text-opacity))}.flatpickr-day.inRange,.flatpickr-day.prevMonthDay.inRange,.flatpickr-day.nextMonthDay.inRange,.flatpickr-day.today.inRange,.flatpickr-day.prevMonthDay.today.inRange,.flatpickr-day.nextMonthDay.today.inRange,.flatpickr-day:hover,.flatpickr-day.prevMonthDay:hover,.flatpickr-day.nextMonthDay:hover,.flatpickr-day:focus,.flatpickr-day.prevMonthDay:focus,.flatpickr-day.nextMonthDay:focus{cursor:pointer;--tw-border-opacity: 1;border-color:rgb(var(--primary-100)/var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(var(--primary-50)/var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(var(--primary-500)/var(--tw-text-opacity));outline:2px solid rgba(0,0,0,0);outline-offset:2px}.flatpickr-day.inRange:is([data-mode=dark] *),.flatpickr-day.prevMonthDay.inRange:is([data-mode=dark] *),.flatpickr-day.nextMonthDay.inRange:is([data-mode=dark] *),.flatpickr-day.today.inRange:is([data-mode=dark] *),.flatpickr-day.prevMonthDay.today.inRange:is([data-mode=dark] *),.flatpickr-day.nextMonthDay.today.inRange:is([data-mode=dark] *),.flatpickr-day:hover:is([data-mode=dark] *),.flatpickr-day.prevMonthDay:hover:is([data-mode=dark] *),.flatpickr-day.nextMonthDay:hover:is([data-mode=dark] *),.flatpickr-day:focus:is([data-mode=dark] *),.flatpickr-day.prevMonthDay:focus:is([data-mode=dark] *),.flatpickr-day.nextMonthDay:focus:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(var(--primary-500)/var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(17, 24, 39, var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(var(--primary-300)/var(--tw-text-opacity))}.flatpickr-day.today{--tw-border-opacity: 1;border-color:rgb(var(--primary-500)/var(--tw-border-opacity));--tw-text-opacity: 1;color:rgb(var(--primary-500)/var(--tw-text-opacity))}.flatpickr-day.today:hover{--tw-bg-opacity: 1;background-color:rgb(var(--primary-50)/var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(var(--primary-500)/var(--tw-text-opacity))}.flatpickr-day.today:focus{--tw-border-opacity: 1;border-color:rgb(var(--primary-500)/var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(var(--primary-50)/var(--tw-bg-opacity))}.flatpickr-day.today:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(var(--primary-400)/var(--tw-border-opacity));--tw-text-opacity: 1;color:rgb(var(--primary-300)/var(--tw-text-opacity))}.flatpickr-day.today:hover:is([data-mode=dark] *){--tw-bg-opacity: 1;background-color:rgb(var(--primary-800)/var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(var(--primary-200)/var(--tw-text-opacity))}.flatpickr-day.selected,.flatpickr-day.startRange,.flatpickr-day.endRange,.flatpickr-day.selected.inRange,.flatpickr-day.startRange.inRange,.flatpickr-day.endRange.inRange,.flatpickr-day.selected:focus,.flatpickr-day.startRange:focus,.flatpickr-day.endRange:focus,.flatpickr-day.selected:hover,.flatpickr-day.startRange:hover,.flatpickr-day.endRange:hover,.flatpickr-day.selected.prevMonthDay,.flatpickr-day.startRange.prevMonthDay,.flatpickr-day.endRange.prevMonthDay,.flatpickr-day.selected.nextMonthDay,.flatpickr-day.startRange.nextMonthDay,.flatpickr-day.endRange.nextMonthDay{--tw-border-opacity: 1;border-color:rgb(var(--primary-500)/var(--tw-border-opacity));--tw-bg-opacity: 1;background-color:rgb(var(--primary-500)/var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(255, 255, 255, var(--tw-text-opacity))}.flatpickr-day.selected.startRange,.flatpickr-day.startRange.startRange,.flatpickr-day.endRange.startRange{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem;border-top-right-radius:0px;border-bottom-right-radius:0px}.flatpickr-day.selected.endRange,.flatpickr-day.startRange.endRange,.flatpickr-day.endRange.endRange{border-top-left-radius:0px;border-bottom-left-radius:0px;border-top-right-radius:.375rem;border-bottom-right-radius:.375rem}.flatpickr-day.selected.startRange+.endRange:not(:ntyd-h-child(7n + 1)),.flatpickr-day.startRange.startRange+.endRange:not(:ntyd-h-child(7n + 1)),.flatpickr-day.endRange.startRange+.endRange:not(:ntyd-h-child(7n + 1)){box-shadow:-10px 0 0 #569ff7}.flatpickr-day.selected.startRange.endRange,.flatpickr-day.startRange.startRange.endRange,.flatpickr-day.endRange.startRange.endRange{border-radius:50px}.flatpickr-day.inRange{border-radius:0}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover,.flatpickr-day.prevMonthDay,.flatpickr-day.nextMonthDay,.flatpickr-day.notAllowed,.flatpickr-day.notAllowed.prevMonthDay,.flatpickr-day.notAllowed.nextMonthDay{border-color:rgba(0,0,0,0);background-color:rgba(0,0,0,0);--tw-text-opacity: 1;color:rgb(209, 213, 219, var(--tw-text-opacity))}.flatpickr-day.flatpickr-disabled:is([data-mode=dark] *),.flatpickr-day.flatpickr-disabled:hover:is([data-mode=dark] *),.flatpickr-day.prevMonthDay:is([data-mode=dark] *),.flatpickr-day.nextMonthDay:is([data-mode=dark] *),.flatpickr-day.notAllowed:is([data-mode=dark] *),.flatpickr-day.notAllowed.prevMonthDay:is([data-mode=dark] *),.flatpickr-day.notAllowed.nextMonthDay:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(75, 85, 99, var(--tw-text-opacity))}.flatpickr-day.flatpickr-disabled,.flatpickr-day.flatpickr-disabled:hover{cursor:not-allowed;color:rgba(57,57,57,.1)}.flatpickr-day.week.selected{border-radius:0;box-shadow:-5px 0 0 #569ff7,5px 0 0 #569ff7}.flatpickr-day.hidden{visibility:hidden}.rangeMode .flatpickr-day{margin-top:1px}.flatpickr-weekwrapper{float:left}.flatpickr-weekwrapper .flatpickr-weeks{padding:0px;padding-left:.25rem;padding-right:.25rem;font-size:.75rem;line-height:1rem}.flatpickr-weekwrapper .flatpickr-weekday{float:none;width:100%;line-height:28px}.flatpickr-weekwrapper span.flatpickr-day,.flatpickr-weekwrapper span.flatpickr-day:hover{margin-top:1px;border-color:rgba(0,0,0,0);background-color:rgba(0,0,0,0);--tw-text-opacity: 1;color:rgb(209, 213, 219, var(--tw-text-opacity))}.flatpickr-weekwrapper span.flatpickr-day:is([data-mode=dark] *),.flatpickr-weekwrapper span.flatpickr-day:hover:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(75, 85, 99, var(--tw-text-opacity))}.flatpickr-innerContainer{display:block;display:flex;overflow:hidden}.flatpickr-rContainer{display:inline-block;padding:0;box-sizing:border-box}.flatpickr-time{display:flex;height:0px;max-height:40px;overflow:hidden;text-align:center;line-height:2.5rem;outline:2px solid rgba(0,0,0,0);outline-offset:2px}.flatpickr-time:after{content:"";display:table;clear:both}.flatpickr-time .numInputWrapper{float:left;display:flex;height:40px;width:40%;flex:1 1 0%}.flatpickr-time .numInputWrapper:hover{background-image:none}.flatpickr-time .numInputWrapper span.arrowUp:after{border-bottom-color:#393939}.flatpickr-time .numInputWrapper span.arrowDown:after{border-top-color:#393939}.flatpickr-time.hasSeconds .numInputWrapper{width:26%}.flatpickr-time.time24hr .numInputWrapper{width:49%}.flatpickr-time input{margin:0px;background-color:rgba(0,0,0,0);padding:0px;text-align:center;font-size:1rem;line-height:1.5rem;--tw-text-opacity: 1;color:rgb(55, 65, 81, var(--tw-text-opacity));--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.flatpickr-time input:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(229, 231, 235, var(--tw-text-opacity))}.flatpickr-time input.flatpickr-hour,.flatpickr-time input.flatpickr-minute,.flatpickr-time input.flatpickr-second{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;font-size:1rem;line-height:1.5rem;font-weight:500;--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0))}.flatpickr-time input.flatpickr-hour:focus,.flatpickr-time input.flatpickr-minute:focus,.flatpickr-time input.flatpickr-second:focus{outline:2px solid rgba(0,0,0,0);outline-offset:2px}.flatpickr-time input:focus{outline:0;border:0}.flatpickr-time .flatpickr-time-separator,.flatpickr-time .flatpickr-am-pm{width:2%;-webkit-user-select:none;-moz-user-select:none;user-select:none;font-weight:600;--tw-text-opacity: 1;color:rgb(107, 114, 128, var(--tw-text-opacity))}.flatpickr-time .flatpickr-time-separator:is([data-mode=dark] *),.flatpickr-time .flatpickr-am-pm:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}.flatpickr-time .flatpickr-am-pm{outline:0;width:18%;cursor:pointer;text-align:center;font-weight:400}.flatpickr-input[readonly]{cursor:pointer}@keyframes fpFadeInDown{from{opacity:0;transform:translate3d(0, -20px, 0)}to{opacity:1;transform:translate3d(0, 0, 0)}}.flatpickr-confirm{visibility:hidden;display:flex;height:3rem;max-height:0px;cursor:pointer;align-items:center;justify-content:center;border-radius:.375rem;border-width:1px;border-style:solid;--tw-bg-opacity: 1;background-color:rgb(255, 255, 255, var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}.flatpickr-confirm:hover{--tw-bg-opacity: 1;background-color:rgb(249, 250, 251, var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(107, 114, 128, var(--tw-text-opacity))}.flatpickr-confirm:is([data-mode=dark] *){border-color:rgba(0,0,0,0);--tw-bg-opacity: 1;background-color:rgb(31, 41, 55, var(--tw-bg-opacity));--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}.flatpickr-confirm:hover:is([data-mode=dark] *){--tw-bg-opacity: 0.5;--tw-text-opacity: 1;color:rgb(255, 255, 255, var(--tw-text-opacity))}.flatpickr-confirm svg{display:none}.flatpickr-confirm.visible{max-height:40px;visibility:visible}.\*\:yd-flex>*{display:flex}.\*\:yd-items-center>*{align-items:center}.\*\:yd-gap-1>*{gap:.25rem}.\*\:yd-truncate>*{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.\*\:yd-rounded-full>*{border-radius:9999px}.\*\:yd-rounded-md>*{border-radius:.375rem}.\*\:yd-bg-gray-950\/50>*{background-color:rgba(3,7,18,.5)}.\*\:yd-bg-primary-500>*{--tw-bg-opacity: 1;background-color:rgb(var(--primary-500)/var(--tw-bg-opacity))}.\*\:yd-p-1>*{padding:.25rem}.\*\:yd-px-2>*{padding-left:.5rem;padding-right:.5rem}.\*\:yd-px-2\.5>*{padding-left:.625rem;padding-right:.625rem}.\*\:yd-py-0\.5>*{padding-top:.125rem;padding-bottom:.125rem}.\*\:yd-py-2>*{padding-top:.5rem;padding-bottom:.5rem}.\*\:yd-text-sm>*{font-size:.875rem;line-height:1.25rem}.\*\:yd-text-xs>*{font-size:.75rem;line-height:1rem}.\*\:yd-text-white>*{--tw-text-opacity: 1;color:rgb(255, 255, 255, var(--tw-text-opacity))}.\*\:yd-opacity-25>*{opacity:.25}.file\:yd-m-0::file-selector-button{margin:0px}.file\:yd-h-\[40px\]::file-selector-button{height:40px}.file\:yd-h-\[48px\]::file-selector-button{height:48px}.file\:yd-cursor-pointer::file-selector-button{cursor:pointer}.file\:yd-rounded-l-md::file-selector-button{border-top-left-radius:.375rem;border-bottom-left-radius:.375rem}.file\:yd-border-0::file-selector-button{border-width:0px}.file\:yd-border-r::file-selector-button{border-right-width:1px}.file\:yd-border-solid::file-selector-button{border-style:solid}.file\:yd-border-gray-300::file-selector-button{--tw-border-opacity: 1;border-color:rgb(209, 213, 219, var(--tw-border-opacity))}.file\:yd-bg-transparent::file-selector-button{background-color:rgba(0,0,0,0)}.file\:yd-px-2::file-selector-button{padding-left:.5rem;padding-right:.5rem}.file\:yd-pl-0::file-selector-button{padding-left:0px}.file\:yd-pl-2::file-selector-button{padding-left:.5rem}.file\:yd-pt-1::file-selector-button{padding-top:.25rem}.file\:yd-pt-5::file-selector-button{padding-top:1.25rem}.file\:yd-text-sm::file-selector-button{font-size:.875rem;line-height:1.25rem}.file\:yd-text-xs::file-selector-button{font-size:.75rem;line-height:1rem}.file\:yd-font-medium::file-selector-button{font-weight:500}.file\:yd-uppercase::file-selector-button{text-transform:uppercase}.file\:yd-text-gray-300::file-selector-button{--tw-text-opacity: 1;color:rgb(209, 213, 219, var(--tw-text-opacity))}.file\:yd-text-gray-400::file-selector-button{--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}.placeholder\:yd-text-gray-300::-moz-placeholder{--tw-text-opacity: 1;color:rgb(209, 213, 219, var(--tw-text-opacity))}.placeholder\:yd-text-gray-300::placeholder{--tw-text-opacity: 1;color:rgb(209, 213, 219, var(--tw-text-opacity))}.placeholder\:yd-text-gray-400::-moz-placeholder{--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}.placeholder\:yd-text-gray-400::placeholder{--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}.placeholder\:yd-text-red-400::-moz-placeholder{--tw-text-opacity: 1;color:rgb(248, 113, 113, var(--tw-text-opacity))}.placeholder\:yd-text-red-400::placeholder{--tw-text-opacity: 1;color:rgb(248, 113, 113, var(--tw-text-opacity))}.before\:yd-absolute::before{content:var(--tw-content);position:absolute}.before\:yd-inset-0::before{content:var(--tw-content);inset:0px}.before\:yd-bg-gradient-to-r::before{content:var(--tw-content);background-image:linear-gradient(to right, var(--tw-gradient-stops))}.before\:yd-from-primary-300::before{content:var(--tw-content);--tw-gradient-from: rgb(var(--primary-300) / 1) var(--tw-gradient-from-position);--tw-gradient-to: rgb(var(--primary-300) / 0) var(--tw-gradient-to-position);--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to)}.before\:yd-to-primary-500::before{content:var(--tw-content);--tw-gradient-to: rgb(var(--primary-500) / 1) var(--tw-gradient-to-position)}.before\:\[mask-image\:_linear-gradient\(to_right\,theme\(colors\.white\)\,theme\(colors\.white\)_50\%\,transparent_50\%\)\]::before{content:var(--tw-content);-webkit-mask-image:linear-gradient(to right, #fff, #fff 50%, transparent 50%);mask-image:linear-gradient(to right, #fff, #fff 50%, transparent 50%)}.before\:\[mask-image\:_linear-gradient\(to_right\,theme\(colors\.white\)\,theme\(colors\.white\)_var\(--progress\)\,transparent_var\(--progress\)\)\]::before{content:var(--tw-content);-webkit-mask-image:linear-gradient(to right, #fff, #fff var(--progress), transparent var(--progress));mask-image:linear-gradient(to right, #fff, #fff var(--progress), transparent var(--progress))}.after\:yd-absolute::after{content:var(--tw-content);position:absolute}.after\:yd-inset-0::after{content:var(--tw-content);inset:0px}.after\:yd-block::after{content:var(--tw-content);display:block}.after\:yd-bg-\[repeating-linear-gradient\(to_right\,transparent\,transparent_calc\(100\%-1px\)\,theme\(colors\.white\/\.5\)_calc\(100\%-1px\)\,theme\(colors\.white\/\.5\)_calc\(100\%\+1px\)\)\]::after{content:var(--tw-content);background-image:repeating-linear-gradient(to right, transparent, transparent calc(100% - 1px), rgba(255, 255, 255, 0.5) calc(100% - 1px), rgba(255, 255, 255, 0.5) calc(100% + 1px))}.after\:yd-bg-\[repeating-linear-gradient\(to_right\,transparent\,transparent_calc\(var\(--segments-width\)-1px\)\,theme\(colors\.white\/\.5\)_calc\(var\(--segments-width\)-1px\)\,theme\(colors\.white\/\.5\)_calc\(var\(--segments-width\)\+1px\)\)\]::after{content:var(--tw-content);background-image:repeating-linear-gradient(to right, transparent, transparent calc(var(--segments-width) - 1px), rgba(255, 255, 255, 0.5) calc(var(--segments-width) - 1px), rgba(255, 255, 255, 0.5) calc(var(--segments-width) + 1px))}.checked\:yd-border-primary-500:checked{--tw-border-opacity: 1;border-color:rgb(var(--primary-500)/var(--tw-border-opacity))}.checked\:yd-bg-primary-500:checked{--tw-bg-opacity: 1;background-color:rgb(var(--primary-500)/var(--tw-bg-opacity))}.hover\:yd-scale-125:hover{--tw-scale-x: 1.25;--tw-scale-y: 1.25;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.hover\:yd-border-gray-300:hover{--tw-border-opacity: 1;border-color:rgb(209, 213, 219, var(--tw-border-opacity))}.hover\:yd-border-primary-600:hover{--tw-border-opacity: 1;border-color:rgb(var(--primary-600)/var(--tw-border-opacity))}.hover\:yd-bg-gray-100:hover{--tw-bg-opacity: 1;background-color:rgb(243, 244, 246, var(--tw-bg-opacity))}.hover\:yd-bg-gray-50:hover{--tw-bg-opacity: 1;background-color:rgb(249, 250, 251, var(--tw-bg-opacity))}.hover\:yd-bg-primary-50:hover{--tw-bg-opacity: 1;background-color:rgb(var(--primary-50)/var(--tw-bg-opacity))}.hover\:yd-bg-primary-600:hover{--tw-bg-opacity: 1;background-color:rgb(var(--primary-600)/var(--tw-bg-opacity))}.hover\:yd-text-gray-200:hover{--tw-text-opacity: 1;color:rgb(229, 231, 235, var(--tw-text-opacity))}.hover\:yd-text-gray-400:hover{--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}.hover\:yd-text-gray-500:hover{--tw-text-opacity: 1;color:rgb(107, 114, 128, var(--tw-text-opacity))}.hover\:yd-text-gray-900:hover{--tw-text-opacity: 1;color:rgb(17, 24, 39, var(--tw-text-opacity))}.hover\:yd-text-primary-400\/50:hover{color:rgb(var(--primary-400)/0.5)}.hover\:yd-text-primary-500:hover{--tw-text-opacity: 1;color:rgb(var(--primary-500)/var(--tw-text-opacity))}.hover\:yd-text-primary-600:hover{--tw-text-opacity: 1;color:rgb(var(--primary-600)/var(--tw-text-opacity))}.hover\:yd-underline:hover{text-decoration-line:underline}.hover\:yd-opacity-50:hover{opacity:.5}.hover\:yd-shadow-sm:hover{--tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);--tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.hover\:yd-ring-0:hover{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0))}.hover\:yd-ring-2:hover{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0))}.hover\:file\:yd-text-primary-500::file-selector-button:hover{--tw-text-opacity: 1;color:rgb(var(--primary-500)/var(--tw-text-opacity))}.focus\:yd-rounded:focus{border-radius:.25rem}.focus\:yd-border-none:focus{border-style:none}.focus\:\!yd-border-transparent:focus{border-color:rgba(0,0,0,0) !important}.focus\:yd-border-gray-400:focus{--tw-border-opacity: 1;border-color:rgb(156, 163, 175, var(--tw-border-opacity))}.focus\:yd-border-primary-400:focus{--tw-border-opacity: 1;border-color:rgb(var(--primary-400)/var(--tw-border-opacity))}.focus\:yd-border-primary-500:focus{--tw-border-opacity: 1;border-color:rgb(var(--primary-500)/var(--tw-border-opacity))}.focus\:yd-bg-primary-50:focus{--tw-bg-opacity: 1;background-color:rgb(var(--primary-50)/var(--tw-bg-opacity))}.focus\:yd-bg-transparent:focus{background-color:rgba(0,0,0,0)}.focus\:yd-underline:focus{text-decoration-line:underline}.focus\:yd-shadow-none:focus{--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.focus\:\!yd-outline-none:focus{outline:2px solid rgba(0,0,0,0) !important;outline-offset:2px !important}.focus\:yd-outline-none:focus{outline:2px solid rgba(0,0,0,0);outline-offset:2px}.focus\:yd-ring-0:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0))}.focus\:yd-ring-2:focus{--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow, 0 0 rgba(0, 0, 0, 0))}.focus\:yd-ring-gray-300\/25:focus{--tw-ring-color: rgb(209 213 219 / 0.25)}.focus\:yd-ring-primary-300:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(var(--primary-300) / var(--tw-ring-opacity))}.focus\:yd-ring-primary-400:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(var(--primary-400) / var(--tw-ring-opacity))}.focus\:yd-ring-primary-500:focus{--tw-ring-opacity: 1;--tw-ring-color: rgb(var(--primary-500) / var(--tw-ring-opacity))}.focus\:yd-ring-primary-500\/40:focus{--tw-ring-color: rgb(var(--primary-500) / 0.4)}.focus\:yd-ring-primary-500\/50:focus{--tw-ring-color: rgb(var(--primary-500) / 0.5)}.focus\:yd-ring-primary-600\/50:focus{--tw-ring-color: rgb(var(--primary-600) / 0.5)}.focus\:yd-ring-offset-2:focus{--tw-ring-offset-width: 2px}.focus\:yd-ring-offset-4:focus{--tw-ring-offset-width: 4px}.focus\:yd-ring-offset-\[3px\]:focus{--tw-ring-offset-width: 3px}.focus\:yd-ring-offset-white:focus{--tw-ring-offset-color: #fff}.active\:yd-border-gray-200:active{--tw-border-opacity: 1;border-color:rgb(229, 231, 235, var(--tw-border-opacity))}.active\:yd-bg-gray-50:active{--tw-bg-opacity: 1;background-color:rgb(249, 250, 251, var(--tw-bg-opacity))}.active\:yd-shadow-none:active{--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.active\:yd-outline-none:active{outline:2px solid rgba(0,0,0,0);outline-offset:2px}.yd-group:hover .group-hover\:yd-opacity-100{opacity:1}.yd-group:focus .group-focus\:yd-border-primary-400{--tw-border-opacity: 1;border-color:rgb(var(--primary-400)/var(--tw-border-opacity))}.yd-peer:-moz-placeholder-shown~.peer-placeholder-shown\:yd-hidden{display:none}.yd-peer:placeholder-shown~.peer-placeholder-shown\:yd-hidden{display:none}.yd-peer:-moz-placeholder-shown~.peer-placeholder-shown\:yd-translate-y-0{--tw-translate-y: 0px;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-peer:placeholder-shown~.peer-placeholder-shown\:yd-translate-y-0{--tw-translate-y: 0px;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-peer:-moz-placeholder-shown~.peer-placeholder-shown\:yd-scale-100{--tw-scale-x: 1;--tw-scale-y: 1;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-peer:placeholder-shown~.peer-placeholder-shown\:yd-scale-100{--tw-scale-x: 1;--tw-scale-y: 1;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-peer:-moz-placeholder-shown~.peer-placeholder-shown\:yd-scale-110{--tw-scale-x: 1.1;--tw-scale-y: 1.1;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-peer:placeholder-shown~.peer-placeholder-shown\:yd-scale-110{--tw-scale-x: 1.1;--tw-scale-y: 1.1;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-peer:-moz-placeholder-shown~.peer-placeholder-shown\:yd-text-gray-400{--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}.yd-peer:placeholder-shown~.peer-placeholder-shown\:yd-text-gray-400{--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}.yd-peer:focus~.peer-focus\:yd-left-3{left:.75rem}.yd-peer:focus~.peer-focus\:-yd-translate-y-3{--tw-translate-y: -0.75rem;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-peer:focus~.peer-focus\:yd-scale-90{--tw-scale-x: .9;--tw-scale-y: .9;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.yd-peer:focus~.peer-focus\:yd-border-gray-400{--tw-border-opacity: 1;border-color:rgb(156, 163, 175, var(--tw-border-opacity))}.yd-peer:focus~.peer-focus\:yd-border-primary-500{--tw-border-opacity: 1;border-color:rgb(var(--primary-500)/var(--tw-border-opacity))}.yd-peer:focus~.peer-focus\:yd-bg-gray-50{--tw-bg-opacity: 1;background-color:rgb(249, 250, 251, var(--tw-bg-opacity))}.yd-peer:focus~.peer-focus\:yd-bg-primary-50{--tw-bg-opacity: 1;background-color:rgb(var(--primary-50)/var(--tw-bg-opacity))}.yd-peer:focus~.peer-focus\:yd-text-gray-400{--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}.yd-peer:focus~.peer-focus\:yd-text-primary-400{--tw-text-opacity: 1;color:rgb(var(--primary-400)/var(--tw-text-opacity))}.yd-peer:focus~.peer-focus\:yd-text-primary-500{--tw-text-opacity: 1;color:rgb(var(--primary-500)/var(--tw-text-opacity))}.dark\:yd-border-gray-500:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(107, 114, 128, var(--tw-border-opacity))}.dark\:yd-border-gray-600:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(75, 85, 99, var(--tw-border-opacity))}.dark\:yd-border-gray-700:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(55, 65, 81, var(--tw-border-opacity))}.dark\:yd-border-gray-700\/50:is([data-mode=dark] *){border-color:rgba(55,65,81,.5)}.dark\:yd-border-gray-800:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(31, 41, 55, var(--tw-border-opacity))}.dark\:yd-border-primary-400:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(var(--primary-400)/var(--tw-border-opacity))}.dark\:yd-border-primary-400\/50:is([data-mode=dark] *){border-color:rgb(var(--primary-400)/0.5)}.dark\:yd-border-primary-500:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(var(--primary-500)/var(--tw-border-opacity))}.dark\:yd-border-red-300:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(252, 165, 165, var(--tw-border-opacity))}.dark\:yd-border-red-400:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(248, 113, 113, var(--tw-border-opacity))}.dark\:yd-border-transparent:is([data-mode=dark] *){border-color:rgba(0,0,0,0)}.dark\:yd-border-white:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(255, 255, 255, var(--tw-border-opacity))}.dark\:\!yd-bg-gray-600:is([data-mode=dark] *){--tw-bg-opacity: 1 !important;background-color:rgb(75, 85, 99, var(--tw-bg-opacity)) !important}.dark\:yd-bg-amber-400\/20:is([data-mode=dark] *){background-color:rgba(251,191,36,.2)}.dark\:yd-bg-black\/50:is([data-mode=dark] *){background-color:rgba(0,0,0,.5)}.dark\:yd-bg-gray-500:is([data-mode=dark] *){--tw-bg-opacity: 1;background-color:rgb(107, 114, 128, var(--tw-bg-opacity))}.dark\:yd-bg-gray-600:is([data-mode=dark] *){--tw-bg-opacity: 1;background-color:rgb(75, 85, 99, var(--tw-bg-opacity))}.dark\:yd-bg-gray-700:is([data-mode=dark] *){--tw-bg-opacity: 1;background-color:rgb(55, 65, 81, var(--tw-bg-opacity))}.dark\:yd-bg-gray-800:is([data-mode=dark] *){--tw-bg-opacity: 1;background-color:rgb(31, 41, 55, var(--tw-bg-opacity))}.dark\:yd-bg-gray-900:is([data-mode=dark] *){--tw-bg-opacity: 1;background-color:rgb(17, 24, 39, var(--tw-bg-opacity))}.dark\:yd-bg-gray-900\/30:is([data-mode=dark] *){background-color:rgba(17,24,39,.3)}.dark\:yd-bg-gray-900\/50:is([data-mode=dark] *){background-color:rgba(17,24,39,.5)}.dark\:yd-bg-gray-950:is([data-mode=dark] *){--tw-bg-opacity: 1;background-color:rgb(3, 7, 18, var(--tw-bg-opacity))}.dark\:yd-bg-gray-950\/50:is([data-mode=dark] *){background-color:rgba(3,7,18,.5)}.dark\:yd-bg-gray-950\/70:is([data-mode=dark] *){background-color:rgba(3,7,18,.7)}.dark\:yd-bg-lime-600\/20:is([data-mode=dark] *){background-color:rgba(101,163,13,.2)}.dark\:yd-bg-primary-400:is([data-mode=dark] *){--tw-bg-opacity: 1;background-color:rgb(var(--primary-400)/var(--tw-bg-opacity))}.dark\:yd-bg-primary-500:is([data-mode=dark] *){--tw-bg-opacity: 1;background-color:rgb(var(--primary-500)/var(--tw-bg-opacity))}.dark\:yd-bg-red-600\/25:is([data-mode=dark] *){background-color:rgba(220,38,38,.25)}.dark\:yd-bg-transparent:is([data-mode=dark] *){background-color:rgba(0,0,0,0)}.dark\:\!yd-text-gray-300:is([data-mode=dark] *){--tw-text-opacity: 1 !important;color:rgb(209, 213, 219, var(--tw-text-opacity)) !important}.dark\:\!yd-text-red-400:is([data-mode=dark] *){--tw-text-opacity: 1 !important;color:rgb(248, 113, 113, var(--tw-text-opacity)) !important}.dark\:yd-text-amber-200:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(253, 230, 138, var(--tw-text-opacity))}.dark\:yd-text-amber-300:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(252, 211, 77, var(--tw-text-opacity))}.dark\:yd-text-blue-300:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(147, 197, 253, var(--tw-text-opacity))}.dark\:yd-text-blue-400:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(96, 165, 250, var(--tw-text-opacity))}.dark\:yd-text-cyan-300:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(103, 232, 249, var(--tw-text-opacity))}.dark\:yd-text-emerald-300:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(110, 231, 183, var(--tw-text-opacity))}.dark\:yd-text-fuchsia-300:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(240, 171, 252, var(--tw-text-opacity))}.dark\:yd-text-gray-100:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(243, 244, 246, var(--tw-text-opacity))}.dark\:yd-text-gray-200:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(229, 231, 235, var(--tw-text-opacity))}.dark\:yd-text-gray-300:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(209, 213, 219, var(--tw-text-opacity))}.dark\:yd-text-gray-400:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}.dark\:yd-text-gray-500:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(107, 114, 128, var(--tw-text-opacity))}.dark\:yd-text-gray-600:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(75, 85, 99, var(--tw-text-opacity))}.dark\:yd-text-green-300:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(134, 239, 172, var(--tw-text-opacity))}.dark\:yd-text-indigo-300:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(165, 180, 252, var(--tw-text-opacity))}.dark\:yd-text-lime-300:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(190, 242, 100, var(--tw-text-opacity))}.dark\:yd-text-lime-500:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(132, 204, 22, var(--tw-text-opacity))}.dark\:yd-text-orange-300:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(253, 186, 116, var(--tw-text-opacity))}.dark\:yd-text-pink-300:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(249, 168, 212, var(--tw-text-opacity))}.dark\:yd-text-primary-300:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(var(--primary-300)/var(--tw-text-opacity))}.dark\:yd-text-primary-400:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(var(--primary-400)/var(--tw-text-opacity))}.dark\:yd-text-purple-300:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(216, 180, 254, var(--tw-text-opacity))}.dark\:yd-text-red-200:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(254, 202, 202, var(--tw-text-opacity))}.dark\:yd-text-red-300:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(252, 165, 165, var(--tw-text-opacity))}.dark\:yd-text-red-400:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(248, 113, 113, var(--tw-text-opacity))}.dark\:yd-text-sky-300:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(125, 211, 252, var(--tw-text-opacity))}.dark\:yd-text-teal-300:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(94, 234, 212, var(--tw-text-opacity))}.dark\:yd-text-violet-300:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(196, 181, 253, var(--tw-text-opacity))}.dark\:yd-text-white:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(255, 255, 255, var(--tw-text-opacity))}.dark\:yd-text-yellow-300:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(253, 224, 71, var(--tw-text-opacity))}.dark\:yd-shadow-none:is([data-mode=dark] *){--tw-shadow: 0 0 #0000;--tw-shadow-colored: 0 0 #0000;box-shadow:var(--tw-ring-offset-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-ring-shadow, 0 0 rgba(0, 0, 0, 0)),var(--tw-shadow)}.dark\:yd-outline-primary-400:is([data-mode=dark] *){outline-color:rgb(var(--primary-400)/1)}.dark\:yd-outline-red-400:is([data-mode=dark] *){outline-color:#f87171}.dark\:yd-ring-gray-950:is([data-mode=dark] *){--tw-ring-opacity: 1;--tw-ring-color: rgb(3 7 18 / var(--tw-ring-opacity))}.dark\:yd-ring-primary-400:is([data-mode=dark] *){--tw-ring-opacity: 1;--tw-ring-color: rgb(var(--primary-400) / var(--tw-ring-opacity))}.dark\:yd-ring-red-400:is([data-mode=dark] *){--tw-ring-opacity: 1;--tw-ring-color: rgb(248 113 113 / var(--tw-ring-opacity))}.dark\:yd-ring-red-400\/50:is([data-mode=dark] *){--tw-ring-color: rgb(248 113 113 / 0.5)}.dark\:yd-ring-offset-gray-800:is([data-mode=dark] *){--tw-ring-offset-color: #1f2937}.dark\:yd-ring-offset-gray-900:is([data-mode=dark] *){--tw-ring-offset-color: #111827}.dark\:yd-invert:is([data-mode=dark] *){--tw-invert: invert(100%);filter:var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow)}.dark\:placeholder\:yd-text-gray-500:is([data-mode=dark] *)::-moz-placeholder{--tw-text-opacity: 1;color:rgb(107, 114, 128, var(--tw-text-opacity))}.dark\:placeholder\:yd-text-gray-500:is([data-mode=dark] *)::placeholder{--tw-text-opacity: 1;color:rgb(107, 114, 128, var(--tw-text-opacity))}.dark\:placeholder\:yd-text-gray-600:is([data-mode=dark] *)::-moz-placeholder{--tw-text-opacity: 1;color:rgb(75, 85, 99, var(--tw-text-opacity))}.dark\:placeholder\:yd-text-gray-600:is([data-mode=dark] *)::placeholder{--tw-text-opacity: 1;color:rgb(75, 85, 99, var(--tw-text-opacity))}.dark\:after\:yd-bg-\[repeating-linear-gradient\(to_right\,transparent\,transparent_calc\(100\%-1px\)\,theme\(colors\.black\/\.4\)_calc\(100\%-1px\)\,theme\(colors\.black\/\.4\)_calc\(100\%\+1px\)\)\]:is([data-mode=dark] *)::after{content:var(--tw-content);background-image:repeating-linear-gradient(to right, transparent, transparent calc(100% - 1px), rgba(0, 0, 0, 0.4) calc(100% - 1px), rgba(0, 0, 0, 0.4) calc(100% + 1px))}.dark\:after\:yd-bg-\[repeating-linear-gradient\(to_right\,transparent\,transparent_calc\(var\(--segments-width\)-1px\)\,theme\(colors\.black\/\.4\)_calc\(var\(--segments-width\)-1px\)\,theme\(colors\.black\/\.4\)_calc\(var\(--segments-width\)\+1px\)\)\]:is([data-mode=dark] *)::after{content:var(--tw-content);background-image:repeating-linear-gradient(to right, transparent, transparent calc(var(--segments-width) - 1px), rgba(0, 0, 0, 0.4) calc(var(--segments-width) - 1px), rgba(0, 0, 0, 0.4) calc(var(--segments-width) + 1px))}.dark\:checked\:yd-border-primary-400:checked:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(var(--primary-400)/var(--tw-border-opacity))}.dark\:checked\:yd-bg-primary-500:checked:is([data-mode=dark] *){--tw-bg-opacity: 1;background-color:rgb(var(--primary-500)/var(--tw-bg-opacity))}.dark\:hover\:yd-border-gray-600:hover:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(75, 85, 99, var(--tw-border-opacity))}.dark\:hover\:yd-bg-black\/25:hover:is([data-mode=dark] *){background-color:rgba(0,0,0,.25)}.dark\:hover\:yd-bg-gray-700:hover:is([data-mode=dark] *){--tw-bg-opacity: 1;background-color:rgb(55, 65, 81, var(--tw-bg-opacity))}.dark\:hover\:yd-bg-gray-950:hover:is([data-mode=dark] *){--tw-bg-opacity: 1;background-color:rgb(3, 7, 18, var(--tw-bg-opacity))}.dark\:hover\:yd-bg-primary-600:hover:is([data-mode=dark] *){--tw-bg-opacity: 1;background-color:rgb(var(--primary-600)/var(--tw-bg-opacity))}.dark\:hover\:yd-bg-primary-800:hover:is([data-mode=dark] *){--tw-bg-opacity: 1;background-color:rgb(var(--primary-800)/var(--tw-bg-opacity))}.dark\:hover\:yd-bg-opacity-50:hover:is([data-mode=dark] *){--tw-bg-opacity: 0.5}.dark\:hover\:yd-text-gray-100:hover:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(243, 244, 246, var(--tw-text-opacity))}.dark\:hover\:yd-text-gray-200:hover:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(229, 231, 235, var(--tw-text-opacity))}.dark\:hover\:yd-text-gray-400:hover:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(156, 163, 175, var(--tw-text-opacity))}.dark\:hover\:yd-text-gray-500:hover:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(107, 114, 128, var(--tw-text-opacity))}.dark\:hover\:yd-text-primary-400:hover:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(var(--primary-400)/var(--tw-text-opacity))}.dark\:hover\:yd-text-primary-500:hover:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(var(--primary-500)/var(--tw-text-opacity))}.dark\:focus\:yd-border-gray-600:focus:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(75, 85, 99, var(--tw-border-opacity))}.dark\:focus\:yd-border-primary-400:focus:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(var(--primary-400)/var(--tw-border-opacity))}.dark\:focus\:yd-ring-gray-600\/50:focus:is([data-mode=dark] *){--tw-ring-color: rgb(75 85 99 / 0.5)}.dark\:focus\:yd-ring-primary-300\/50:focus:is([data-mode=dark] *){--tw-ring-color: rgb(var(--primary-300) / 0.5)}.dark\:focus\:yd-ring-primary-400:focus:is([data-mode=dark] *){--tw-ring-opacity: 1;--tw-ring-color: rgb(var(--primary-400) / var(--tw-ring-opacity))}.dark\:focus\:yd-ring-primary-400\/50:focus:is([data-mode=dark] *){--tw-ring-color: rgb(var(--primary-400) / 0.5)}.dark\:focus\:yd-ring-primary-500\/25:focus:is([data-mode=dark] *){--tw-ring-color: rgb(var(--primary-500) / 0.25)}.dark\:focus\:yd-ring-offset-2:focus:is([data-mode=dark] *){--tw-ring-offset-width: 2px}.dark\:focus\:yd-ring-offset-gray-900:focus:is([data-mode=dark] *){--tw-ring-offset-color: #111827}.dark\:focus\:yd-ring-offset-primary-500:focus:is([data-mode=dark] *){--tw-ring-offset-color: rgb(var(--primary-500) / 1)}.dark\:active\:yd-border-gray-700:active:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(55, 65, 81, var(--tw-border-opacity))}.yd-peer:-moz-placeholder-shown~.dark\:peer-placeholder-shown\:yd-text-gray-500:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(107, 114, 128, var(--tw-text-opacity))}.yd-peer:placeholder-shown~.dark\:peer-placeholder-shown\:yd-text-gray-500:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(107, 114, 128, var(--tw-text-opacity))}.yd-peer:focus~.dark\:peer-focus\:yd-border-gray-600:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(75, 85, 99, var(--tw-border-opacity))}.yd-peer:focus~.dark\:peer-focus\:yd-border-primary-400:is([data-mode=dark] *){--tw-border-opacity: 1;border-color:rgb(var(--primary-400)/var(--tw-border-opacity))}.yd-peer:focus~.dark\:peer-focus\:yd-bg-gray-900\/50:is([data-mode=dark] *){background-color:rgba(17,24,39,.5)}.yd-peer:focus~.dark\:peer-focus\:yd-text-gray-500:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(107, 114, 128, var(--tw-text-opacity))}.yd-peer:focus~.dark\:peer-focus\:yd-text-primary-500:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(var(--primary-500)/var(--tw-text-opacity))}.yd-peer:focus~.peer-focus\:dark\:yd-text-primary-400:is([data-mode=dark] *){--tw-text-opacity: 1;color:rgb(var(--primary-400)/var(--tw-text-opacity))}@media(min-width: 640px){.sm\:yd-col-span-1{grid-column:span 1/span 1}.sm\:yd-col-span-10{grid-column:span 10/span 10}.sm\:yd-col-span-11{grid-column:span 11/span 11}.sm\:yd-col-span-12{grid-column:span 12/span 12}.sm\:yd-col-span-2{grid-column:span 2/span 2}.sm\:yd-col-span-3{grid-column:span 3/span 3}.sm\:yd-col-span-4{grid-column:span 4/span 4}.sm\:yd-col-span-5{grid-column:span 5/span 5}.sm\:yd-col-span-6{grid-column:span 6/span 6}.sm\:yd-col-span-7{grid-column:span 7/span 7}.sm\:yd-col-span-8{grid-column:span 8/span 8}.sm\:yd-col-span-9{grid-column:span 9/span 9}.sm\:yd-mx-0{margin-left:0px;margin-right:0px}.sm\:yd-my-8{margin-top:2rem;margin-bottom:2rem}.sm\:yd-block{display:block}.sm\:yd-inline-block{display:inline-block}.sm\:yd-size-\[30px\]{width:30px;height:30px}.sm\:yd-h-screen{height:100vh}.sm\:yd-max-w-3xl{max-width:48rem}.sm\:yd-grid-cols-12{grid-template-columns:repeat(12, minmax(0, 1fr))}.sm\:yd-flex-row{flex-direction:row}.sm\:yd-place-items-center{place-items:center}.sm\:yd-items-end{align-items:flex-end}.sm\:yd-p-0{padding:0px}.sm\:yd-px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:yd-text-left{text-align:left}.sm\:yd-align-middle{vertical-align:middle}}.\[\&\[yd-cloak\]\]\:yd-hidden[yd-cloak]{display:none}
/*-- Copyright 2024 Yabdab Inc. --*/
#stacks_in_163.aspen_split{
	position: relative;
	font-size: 13px;
	padding: 40px 20px 40px 20px;
}
@media screen and (min-width: 770px){
	#stacks_in_163.aspen_split{
		padding: 70px 20px 70px 20px;
	}
}
#stacks_in_163.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_163.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_163.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_163.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_163 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


#stacks_in_163.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_163.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_163.aspen_split h1, 
#stacks_in_163.aspen_split h2,
#stacks_in_163.aspen_split h3, 
#stacks_in_163.aspen_split h4, 
#stacks_in_163.aspen_split h5, 
#stacks_in_163.aspen_split h6{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_163.aspen_split a{color: rgba(128, 80, 175, 1.00);} 
#stacks_in_163.aspen_split a:hover{color: rgba(161, 101, 222, 1.00);}.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_387 {
	height: 20px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_416Calligrapher{			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_416Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_416Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_416Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_416Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_416Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_416Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_416Calligrapher h6, .stacks_in_416Calligrapher h5, .stacks_in_416Calligrapher h4, .stacks_in_416Calligrapher h3, .stacks_in_416Calligrapher h2, .stacks_in_416Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_416Calligrapher, .stacks_in_416Calligrapher h1, .stacks_in_416Calligrapher h2, .stacks_in_416Calligrapher h3, .stacks_in_416Calligrapher h4, .stacks_in_416Calligrapher h5, .stacks_in_416Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_416targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_416Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_416Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_416Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_416Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_419 {
	font-size: 109%;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_1009Calligrapher{			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_1009Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1009Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1009Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1009Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1009Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1009Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1009Calligrapher h6, .stacks_in_1009Calligrapher h5, .stacks_in_1009Calligrapher h4, .stacks_in_1009Calligrapher h3, .stacks_in_1009Calligrapher h2, .stacks_in_1009Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_1009Calligrapher, .stacks_in_1009Calligrapher h1, .stacks_in_1009Calligrapher h2, .stacks_in_1009Calligrapher h3, .stacks_in_1009Calligrapher h4, .stacks_in_1009Calligrapher h5, .stacks_in_1009Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1009targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_1009Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_1009Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_1009Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_1009Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_1012 {
	font-size: 109%;
}
.spacerStack {
	height: 10px;
}

#spacerStackstacks_in_420 {
	height: 10px;
}#stacks_in_421>.s3_row {
	margin: 0 -0px;
}

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

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

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

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








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



}



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


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


}



.spacerStack {
	height: 2px;
}

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

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

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

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

#spacerStackstacks_in_429 {
	height: 50px;
}.spacerStack {
	height: 30px;
}

#spacerStackstacks_in_430 {
	height: 30px;
}
#stacks_in_391 {
	font-size: 109%;
}

#stacks_in_1250 {
	font-size: 109%;
}
.spacerStack {
	height: 2px;
}

#spacerStackstacks_in_393 {
	height: 2px;
}
#stacks_in_393 {
	border: solid rgba(225, 2, 34, 1.00);
	border-width: 1px 0px 0px 0px;
}

#stacks_out_393 {
	width: 400px;
	margin-left:0;
}
.spacerStack {
	height: 2px;
}

#spacerStackstacks_in_394 {
	height: 2px;
}
#stacks_in_394 {
	border: solid rgba(225, 2, 34, 1.00);
	border-width: 1px 0px 0px 0px;
}

#stacks_out_394 {
	width: 200px;
	margin-left:0;
}
.spacerStack {
	height: 50px;
}

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


#stacks_in_432 img {
	margin: 0 !important;
}




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

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

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

#spacerStackstacks_in_446 {
	height: 60px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_447 {
	text-align: justify !important;
}





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

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

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


#stacks_in_450 img {
	margin: 0 !important;
}




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

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

#spacerStackstacks_in_695 {
	height: 40px;
}.spacerStack {
	height: 50px;
}

#spacerStackstacks_in_452 {
	height: 50px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_459 {
	text-align: justify !important;
}





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

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

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


#stacks_in_455 img {
	margin: 0 !important;
}




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

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

#spacerStackstacks_in_472 {
	height: 40px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_473 {
	text-align: justify !important;
}





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

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

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


#stacks_in_476 img {
	margin: 0 !important;
}




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

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

#spacerStackstacks_in_1008 {
	height: 40px;
}
#stacks_in_506 {
	background-color: rgba(226, 238, 255, 1.00);
	padding:  20px;
}
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_492 {
	height: 20px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_487Calligrapher{			font-size: 250% !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: center !important;		}				.stacks_in_487Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_487Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_487Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_487Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_487Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_487Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_487Calligrapher h6, .stacks_in_487Calligrapher h5, .stacks_in_487Calligrapher h4, .stacks_in_487Calligrapher h3, .stacks_in_487Calligrapher h2, .stacks_in_487Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_487Calligrapher, .stacks_in_487Calligrapher h1, .stacks_in_487Calligrapher h2, .stacks_in_487Calligrapher h3, .stacks_in_487Calligrapher h4, .stacks_in_487Calligrapher h5, .stacks_in_487Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_487targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_487Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_487Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_487Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_487Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_488 *,
#stacks_in_488 *:before,
#stacks_in_488 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/* -- Start Textalign Each css Template -- */
#stacks_in_489 {
	text-align: center !important;
}





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

@media only screen and (max-width: 480px) {
    #stacks_in_489 {
		text-align: center !important;
	}
	
	#stacks_in_489 img {
		margin: 0 auto !important;
	}
	
	
	
	
}
/* -- End Textalign Each css Template -- *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_512Calligrapher{			font-size: 220% !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: center !important;		}				.stacks_in_512Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_512Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_512Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_512Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_512Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_512Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_512Calligrapher h6, .stacks_in_512Calligrapher h5, .stacks_in_512Calligrapher h4, .stacks_in_512Calligrapher h3, .stacks_in_512Calligrapher h2, .stacks_in_512Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_512Calligrapher, .stacks_in_512Calligrapher h1, .stacks_in_512Calligrapher h2, .stacks_in_512Calligrapher h3, .stacks_in_512Calligrapher h4, .stacks_in_512Calligrapher h5, .stacks_in_512Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_512targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_512Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_512Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_512Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_512Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */#stacks_in_517 *,
#stacks_in_517 *:before,
#stacks_in_517 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/* -- Start Textalign Each css Template -- */
#stacks_in_518 {
	text-align: center !important;
}





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

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

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





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

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

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

#spacerStackstacks_in_531 {
	height: 60px;
}#stacks_in_570>.s3_row {
	margin: 0 -5px;
}

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

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




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










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



}



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


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


}





.spacerStack {
	height: 40px;
}

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





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

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





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

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

#spacerStackstacks_in_569 {
	height: 20px;
}#stacks_in_562>.s3_row {
	margin: 0 -0px;
}

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

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

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

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








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



}



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


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


}



.spacerStack {
	height: 2px;
}

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

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

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

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

#spacerStackstacks_in_561 {
	height: 20px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_559 {
	text-align: center !important;
}





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

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

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

#spacerStackstacks_in_552 {
	height: 40px;
}
#stacks_in_643 {
	background-color: rgba(226, 238, 255, 1.00);
	padding:  20px;
}
.spacerStack {
	height: 30px;
}

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





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

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

#spacerStackstacks_in_692 {
	height: 10px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_540 {
	text-align: center !important;
}





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

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

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

#spacerStackstacks_in_709 {
	height: 60px;
}
#stacks_in_709 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 1px 0px 0px 0px;
}
#stacks_in_601>.s3_row {
	margin: 0 -16px;
}

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

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

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

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








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



}



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


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


}



.spacerStack {
	height: 20px;
}

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

#spacerStackstacks_in_718 {
	height: 10px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_719 {
	text-align: left !important;
}


#stacks_in_719 img {
	margin: 0 !important;
}




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

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

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

#spacerStackstacks_in_712 {
	height: 10px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_713 {
	text-align: left !important;
}


#stacks_in_713 img {
	margin: 0 !important;
}




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

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

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

#spacerStackstacks_in_717 {
	height: 10px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_715 {
	text-align: left !important;
}


#stacks_in_715 img {
	margin: 0 !important;
}




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

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

#spacerStackstacks_in_741 {
	height: 10px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_739 {
	text-align: left !important;
}


#stacks_in_739 img {
	margin: 0 !important;
}




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

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

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

#spacerStackstacks_in_707 {
	height: 60px;
}
#stacks_in_707 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width: 1px 0px 0px 0px;
}
#stacks_in_626>.s3_row {
	margin: 0 -16px;
}

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

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

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

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








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



}



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


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


}



.spacerStack {
	height: 20px;
}

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

#spacerStackstacks_in_723 {
	height: 10px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_724 {
	text-align: left !important;
}


#stacks_in_724 img {
	margin: 0 !important;
}




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

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

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

#spacerStackstacks_in_728 {
	height: 10px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_726 {
	text-align: left !important;
}


#stacks_in_726 img {
	margin: 0 !important;
}




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

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

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

#spacerStackstacks_in_731 {
	height: 10px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_732 {
	text-align: left !important;
}


#stacks_in_732 img {
	margin: 0 !important;
}




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

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

#spacerStackstacks_in_691 {
	height: 60px;
}#stacks_in_777>.s3_row {
	margin: 0 -10px;
}

#stacks_in_777>.s3_row>.s3_column_left {
	width: 62.63%;
}

#stacks_in_777>.s3_row>.s3_column_right {
	width: 37.369999%;
}




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










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



}



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


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


}






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

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

#spacerStackstacks_in_806 {
	height: 40px;
}#stacks_in_802 *,
#stacks_in_802 *:before,
#stacks_in_802 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_782Calligrapher{			font-size: 100% !important;			color: #0A56BE !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_782Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_782Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_782Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_782Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_782Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_782Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_782Calligrapher h6, .stacks_in_782Calligrapher h5, .stacks_in_782Calligrapher h4, .stacks_in_782Calligrapher h3, .stacks_in_782Calligrapher h2, .stacks_in_782Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_782Calligrapher, .stacks_in_782Calligrapher h1, .stacks_in_782Calligrapher h2, .stacks_in_782Calligrapher h3, .stacks_in_782Calligrapher h4, .stacks_in_782Calligrapher h5, .stacks_in_782Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_782targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_782Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_782Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_782Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_782Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_690 {
	font-size: 139%;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_795Calligrapher{			font-size: 120% !important;			color: #0A56BE !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_795Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_795Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_795Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_795Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_795Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_795Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_795Calligrapher h6, .stacks_in_795Calligrapher h5, .stacks_in_795Calligrapher h4, .stacks_in_795Calligrapher h3, .stacks_in_795Calligrapher h2, .stacks_in_795Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_795Calligrapher, .stacks_in_795Calligrapher h1, .stacks_in_795Calligrapher h2, .stacks_in_795Calligrapher h3, .stacks_in_795Calligrapher h4, .stacks_in_795Calligrapher h5, .stacks_in_795Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_795targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_795Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_795Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_795Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_795Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_798 {
	font-size: 139%;
}
.spacerStack {
	height: 10px;
}

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

#spacerStackstacks_in_800 {
	height: 10px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_788Calligrapher{			font-size: 50% !important;			color: #0A56BE !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_788Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_788Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_788Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_788Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_788Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_788Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_788Calligrapher h6, .stacks_in_788Calligrapher h5, .stacks_in_788Calligrapher h4, .stacks_in_788Calligrapher h3, .stacks_in_788Calligrapher h2, .stacks_in_788Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_788Calligrapher, .stacks_in_788Calligrapher h1, .stacks_in_788Calligrapher h2, .stacks_in_788Calligrapher h3, .stacks_in_788Calligrapher h4, .stacks_in_788Calligrapher h5, .stacks_in_788Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_788targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_788Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_788Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_788Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_788Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_781 {
	font-size: 139%;
}
.spacerStack {
	height: 60px;
}

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

#spacerStackstacks_in_774 {
	height: 60px;
}
#stacks_in_1162 {
	background-color: rgba(220, 220, 220, 1.00);
	padding: 20px 20px 20px 20px;
}
.spacerStack {
	height: 30px;
}

#spacerStackstacks_in_1163 {
	height: 30px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_1164 {
	text-align: center !important;
}





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

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

#spacerStackstacks_in_1166 {
	height: 20px;
}#stacks_in_1167>.s3_row {
	margin: 0 -0px;
}

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

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

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

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








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



}



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


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


}



.spacerStack {
	height: 2px;
}

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

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

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

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

#spacerStackstacks_in_1175 {
	height: 20px;
}#stacks_in_1176>.s3_row {
	margin: 0 -50px;
}

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

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

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

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








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



}



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


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


}




#stacks_in_1176 {
	padding: 0px 20px 0px 20px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_1187Calligrapher{			font-size: 60% !important;			color: #0A56BE !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_1187Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1187Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1187Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1187Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1187Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1187Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1187Calligrapher h6, .stacks_in_1187Calligrapher h5, .stacks_in_1187Calligrapher h4, .stacks_in_1187Calligrapher h3, .stacks_in_1187Calligrapher h2, .stacks_in_1187Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_1187Calligrapher, .stacks_in_1187Calligrapher h1, .stacks_in_1187Calligrapher h2, .stacks_in_1187Calligrapher h3, .stacks_in_1187Calligrapher h4, .stacks_in_1187Calligrapher h5, .stacks_in_1187Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1187targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_1187Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_1187Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_1187Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_1187Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_1190 {
	font-size: 139%;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_1182Calligrapher{			font-size: 60% !important;			color: #0A56BE !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_1182Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1182Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1182Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1182Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1182Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1182Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1182Calligrapher h6, .stacks_in_1182Calligrapher h5, .stacks_in_1182Calligrapher h4, .stacks_in_1182Calligrapher h3, .stacks_in_1182Calligrapher h2, .stacks_in_1182Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_1182Calligrapher, .stacks_in_1182Calligrapher h1, .stacks_in_1182Calligrapher h2, .stacks_in_1182Calligrapher h3, .stacks_in_1182Calligrapher h4, .stacks_in_1182Calligrapher h5, .stacks_in_1182Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1182targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_1182Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_1182Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_1182Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_1182Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_1185 {
	font-size: 139%;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_1177Calligrapher{			font-size: 60% !important;			color: #0A56BE !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_1177Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1177Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1177Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1177Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1177Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1177Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1177Calligrapher h6, .stacks_in_1177Calligrapher h5, .stacks_in_1177Calligrapher h4, .stacks_in_1177Calligrapher h3, .stacks_in_1177Calligrapher h2, .stacks_in_1177Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_1177Calligrapher, .stacks_in_1177Calligrapher h1, .stacks_in_1177Calligrapher h2, .stacks_in_1177Calligrapher h3, .stacks_in_1177Calligrapher h4, .stacks_in_1177Calligrapher h5, .stacks_in_1177Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1177targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_1177Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_1177Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_1177Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_1177Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_1180 {
	font-size: 139%;
}
.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_1192 {
	height: 20px;
}#stacks_in_1193>.s3_row {
	margin: 0 -50px;
}

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

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

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

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








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



}



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


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


}




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

#spacerStackstacks_in_1203 {
	height: 20px;
}
#stacks_in_1204 {
	background-color: rgba(220, 220, 220, 1.00);
	padding: 20px 20px 20px 20px;
}
.spacerStack {
	height: 30px;
}

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





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

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

#spacerStackstacks_in_1210 {
	height: 20px;
}#stacks_in_1211>.s3_row {
	margin: 0 -0px;
}

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

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

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

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








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



}



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


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


}



.spacerStack {
	height: 2px;
}

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

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

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

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

#spacerStackstacks_in_1219 {
	height: 20px;
}#stacks_in_1220>.s3_row {
	margin: 0 -0px;
}

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

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

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

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








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



}



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


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


}




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

#spacerStackstacks_in_1243 {
	height: 40px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_1228Calligrapher{			font-size: 60% !important;			color: #0A56BE !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_1228Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1228Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1228Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1228Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1228Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1228Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1228Calligrapher h6, .stacks_in_1228Calligrapher h5, .stacks_in_1228Calligrapher h4, .stacks_in_1228Calligrapher h3, .stacks_in_1228Calligrapher h2, .stacks_in_1228Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_1228Calligrapher, .stacks_in_1228Calligrapher h1, .stacks_in_1228Calligrapher h2, .stacks_in_1228Calligrapher h3, .stacks_in_1228Calligrapher h4, .stacks_in_1228Calligrapher h5, .stacks_in_1228Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1228targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_1228Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_1228Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_1228Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_1228Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_1231 {
	font-size: 139%;
}
.spacerStack {
	height: 40px;
}

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

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

#spacerStackstacks_in_1161 {
	height: 60px;
}
#stacks_in_648 {
	background-color: rgba(231, 234, 234, 1.00);
	-moz-border-radius:  10px;
	-webkit-border-radius:  10px;
	border-radius:  10px;
	padding: 50px 50px 20px 20px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_650Calligrapher{			font-size: 160% !important;			color: #6B6C71 !important;			font-weight:   normal !important;			font-style: 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_650Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_650Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_650Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_650Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_650Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_650Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_650Calligrapher h6, .stacks_in_650Calligrapher h5, .stacks_in_650Calligrapher h4, .stacks_in_650Calligrapher h3, .stacks_in_650Calligrapher h2, .stacks_in_650Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_650Calligrapher, .stacks_in_650Calligrapher h1, .stacks_in_650Calligrapher h2, .stacks_in_650Calligrapher h3, .stacks_in_650Calligrapher h4, .stacks_in_650Calligrapher h5, .stacks_in_650Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_650targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_650Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_650Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_650Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_650Calligrapher 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_654Calligrapher{			font-size: 130% !important;			color: #6B6C71 !important;			font-weight:   normal !important;			font-style: 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_654Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_654Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_654Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_654Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_654Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_654Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_654Calligrapher h6, .stacks_in_654Calligrapher h5, .stacks_in_654Calligrapher h4, .stacks_in_654Calligrapher h3, .stacks_in_654Calligrapher h2, .stacks_in_654Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_654Calligrapher, .stacks_in_654Calligrapher h1, .stacks_in_654Calligrapher h2, .stacks_in_654Calligrapher h3, .stacks_in_654Calligrapher h4, .stacks_in_654Calligrapher h5, .stacks_in_654Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_654targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_654Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_654Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_654Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_654Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 20px;
}

#spacerStackstacks_in_658 {
	height: 20px;
}/* -- Start Textalign Each css Template -- */
#stacks_in_660 {
	text-align: center !important;
}





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

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

#spacerStackstacks_in_663 {
	height: 40px;
}#stacks_in_664>.s3_row {
	margin: 0 -0px;
}

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

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

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

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








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



}



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


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


}



.spacerStack {
	height: 2px;
}

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

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

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

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





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

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

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

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

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

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


#stacks_in_704 a,
#stacks_in_704 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_704 a .flat_button_2_text {
  padding-left: 20px;
  padding-right: 20px;
  text-align: center !important;
  
}


#stacks_in_704 a i,
#stacks_in_704 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_704 a,
  #stacks_in_704 a:visited {
    background-color: rgba(83, 137, 204, 1.00);
    color: rgba(255, 255, 255, 1.00) !important;
  }

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

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

  #stacks_in_704 a:hover i,
  #stacks_in_704 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_704 a,
    #stacks_in_704 a:visited {
      width: 100%;
    }
  }

  




.spacerStack {
	height: 60px;
}

#spacerStackstacks_in_705 {
	height: 60px;
}#stacks_in_1110.aspen_split{
	position: relative;
	font-size: 13px;
	padding: 0px 0px 0px 0px;
}
@media screen and (min-width: 770px){
	#stacks_in_1110.aspen_split{
		padding: 0px 0px 0px 0px;
	}
}
#stacks_in_1110.aspen_split section.theme {position: relative;z-index: 1;}
#stacks_in_1110.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_1110.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_1110.aspen_split .bg{position: fixed;}
@supports (-ms-ime-align:auto) {
	#stacks_in_1110 .bg{ position: absolute; transform: none; background-attachment: fixed; }
}


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

#stacks_in_1110.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_1110.aspen_split{color:rgba(0, 0, 0, 1.00);} 
#stacks_in_1110.aspen_split h1, 
#stacks_in_1110.aspen_split h2,
#stacks_in_1110.aspen_split h3, 
#stacks_in_1110.aspen_split h4, 
#stacks_in_1110.aspen_split h5, 
#stacks_in_1110.aspen_split h6{color: rgba(0, 0, 0, 1.00);} 
#stacks_in_1110.aspen_split a{color: rgba(128, 80, 175, 1.00);} 
#stacks_in_1110.aspen_split a:hover{color: rgba(161, 101, 222, 1.00);}.spacerStack {
	height: 50px;
}

#spacerStackstacks_in_1111_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_1111_10 class*='bit-'] {
	float: left;
	padding: 10px;
}

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

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

/* Clearfix */

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

/* Main Widths */

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

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

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

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

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

#stacks_in_1111_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_1111_10 .bit-1,
#stacks_in_1111_10 .bit-2,
#stacks_in_1111_10 .bit-3,
#stacks_in_1111_10 .bit-4,
#stacks_in_1111_10 .bit-5,
#stacks_in_1111_10 .bit-6 {
	width: 100%;
}

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

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

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

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

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

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

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

}

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

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

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

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

}

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


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

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

#stacks_out_1111_23 {
	width: 100px;
	margin-left:0;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_1111_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_1111_25Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_25Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_25Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_25Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_25Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_25Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_25Calligrapher h6, .stacks_in_1111_25Calligrapher h5, .stacks_in_1111_25Calligrapher h4, .stacks_in_1111_25Calligrapher h3, .stacks_in_1111_25Calligrapher h2, .stacks_in_1111_25Calligrapher h1{			color: #D6D8E0 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_1111_25Calligrapher, .stacks_in_1111_25Calligrapher h1, .stacks_in_1111_25Calligrapher h2, .stacks_in_1111_25Calligrapher h3, .stacks_in_1111_25Calligrapher h4, .stacks_in_1111_25Calligrapher h5, .stacks_in_1111_25Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1111_25targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_1111_25Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_1111_25Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_1111_25Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_1111_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_1111_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_1111_33Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_33Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_33Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_33Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_33Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_33Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_33Calligrapher h6, .stacks_in_1111_33Calligrapher h5, .stacks_in_1111_33Calligrapher h4, .stacks_in_1111_33Calligrapher h3, .stacks_in_1111_33Calligrapher h2, .stacks_in_1111_33Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_1111_33Calligrapher, .stacks_in_1111_33Calligrapher h1, .stacks_in_1111_33Calligrapher h2, .stacks_in_1111_33Calligrapher h3, .stacks_in_1111_33Calligrapher h4, .stacks_in_1111_33Calligrapher h5, .stacks_in_1111_33Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1111_33targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_1111_33Calligrapher a:link{			color: #FDFFFF !important;			text-decoration: none !important;		}				.stacks_in_1111_33Calligrapher a:visited{			color: #FDFFFF !important;		}				.stacks_in_1111_33Calligrapher a:active{			color: #FDFFFF !important;		}				.stacks_in_1111_33Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 15px;
}

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

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

#spacerStackstacks_in_1111_39 {
	height: 20px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_1111_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_1111_41Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_41Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_41Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_41Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_41Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_41Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_41Calligrapher h6, .stacks_in_1111_41Calligrapher h5, .stacks_in_1111_41Calligrapher h4, .stacks_in_1111_41Calligrapher h3, .stacks_in_1111_41Calligrapher h2, .stacks_in_1111_41Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_1111_41Calligrapher, .stacks_in_1111_41Calligrapher h1, .stacks_in_1111_41Calligrapher h2, .stacks_in_1111_41Calligrapher h3, .stacks_in_1111_41Calligrapher h4, .stacks_in_1111_41Calligrapher h5, .stacks_in_1111_41Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1111_41targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_1111_41Calligrapher a:link{			color: #FDFFFF !important;			text-decoration: none !important;		}				.stacks_in_1111_41Calligrapher a:visited{			color: #FDFFFF !important;		}				.stacks_in_1111_41Calligrapher a:active{			color: #FDFFFF !important;		}				.stacks_in_1111_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_1111_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_1111_51Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_51Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_51Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_51Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_51Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_51Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_51Calligrapher h6, .stacks_in_1111_51Calligrapher h5, .stacks_in_1111_51Calligrapher h4, .stacks_in_1111_51Calligrapher h3, .stacks_in_1111_51Calligrapher h2, .stacks_in_1111_51Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_1111_51Calligrapher, .stacks_in_1111_51Calligrapher h1, .stacks_in_1111_51Calligrapher h2, .stacks_in_1111_51Calligrapher h3, .stacks_in_1111_51Calligrapher h4, .stacks_in_1111_51Calligrapher h5, .stacks_in_1111_51Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1111_51targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_1111_51Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_1111_51Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_1111_51Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_1111_51Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 25px;
}

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

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

#spacerStackstacks_in_1111_324 {
	height: 15px;
}
#stacks_out_1111_324 {
	width: 100px;
	margin-left:0;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_1111_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_1111_75Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_75Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_75Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_75Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_75Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_75Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_75Calligrapher h6, .stacks_in_1111_75Calligrapher h5, .stacks_in_1111_75Calligrapher h4, .stacks_in_1111_75Calligrapher h3, .stacks_in_1111_75Calligrapher h2, .stacks_in_1111_75Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_1111_75Calligrapher, .stacks_in_1111_75Calligrapher h1, .stacks_in_1111_75Calligrapher h2, .stacks_in_1111_75Calligrapher h3, .stacks_in_1111_75Calligrapher h4, .stacks_in_1111_75Calligrapher h5, .stacks_in_1111_75Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1111_75targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_1111_75Calligrapher a:link{			color: #CFD1DA !important;			text-decoration: none !important;		}				.stacks_in_1111_75Calligrapher a:visited{			color: #CFD1DA !important;		}				.stacks_in_1111_75Calligrapher a:active{			color: #CFD1DA !important;		}				.stacks_in_1111_75Calligrapher a:hover{			color: #F4F2F6 !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */#stacks_in_1111_77>.s3_row {
	margin: 0 -10px;
}

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

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




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










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



}



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


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


}





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




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


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

#stacks_in_1111_79 #listthingstacks_in_1111_79 {
	display: block;
	position: relative;
}

#stacks_in_1111_79 #listthingstacks_in_1111_79 ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

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

#stacks_in_1111_79 #listthingstacks_in_1111_79 li a {
	color: #5CA9FF;
	text-decoration:none;
}

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

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

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

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

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

/*  0. No Background  */

.hover_effect0stacks_in_1111_79 {
	background: transparent;
}

/*  1. Rollover   */

.hover_effect1stacks_in_1111_79 {
	background: #A1EBF9;
}

.hover_effect1stacks_in_1111_79:hover {
	background: #DA4453;
}



/*  4.  Brackets Effect  */

.hover_effect4stacks_in_1111_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_1111_79 a::before,
.hover_effect4stacks_in_1111_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_1111_79 a::before {
	margin-right: 10px;
	content: '[';
	-webkit-transform: translateX(20px);
	   -moz-transform: translateX(20px);
			transform: translateX(20px);
}

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

.hover_effect4stacks_in_1111_79 a:hover::before,
.hover_effect4stacks_in_1111_79 a:hover::after,
.hover_effect4stacks_in_1111_79 a:focus::before,
.hover_effect4stacks_in_1111_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_1111_79 a:hover {
 	text-decoration: none;
}

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

.hover_effect5stacks_in_1111_79 a:before, 
.hover_effect5stacks_in_1111_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_1111_79 a:after {
	left: 100%;
	left: 0;
}

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

/*  6 Sandwich  Effect */

.hover_effect6stacks_in_1111_79 {
}

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

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

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

.hover_effect6stacks_in_1111_79 a:hover::before,
.hover_effect6stacks_in_1111_79 a:focus::before,
.hover_effect6stacks_in_1111_79 a:hover::after,
.hover_effect6stacks_in_1111_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_1111_79 [class^="icon-mail"]:before, #stacks_in_1111_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_1111_80 {
	font-size: 110%;
}
.spacerStack {
	height: 10px;
}

#spacerStackstacks_in_1111_87 {
	height: 10px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_1111_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_1111_88Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_88Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_88Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_88Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_88Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_88Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_88Calligrapher h6, .stacks_in_1111_88Calligrapher h5, .stacks_in_1111_88Calligrapher h4, .stacks_in_1111_88Calligrapher h3, .stacks_in_1111_88Calligrapher h2, .stacks_in_1111_88Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_1111_88Calligrapher, .stacks_in_1111_88Calligrapher h1, .stacks_in_1111_88Calligrapher h2, .stacks_in_1111_88Calligrapher h3, .stacks_in_1111_88Calligrapher h4, .stacks_in_1111_88Calligrapher h5, .stacks_in_1111_88Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1111_88targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_1111_88Calligrapher a:link{			color: #CFD1DA !important;			text-decoration: none !important;		}				.stacks_in_1111_88Calligrapher a:visited{			color: #CFD1DA !important;		}				.stacks_in_1111_88Calligrapher a:active{			color: #CFD1DA !important;		}				.stacks_in_1111_88Calligrapher a:hover{			color: #F4F2F6 !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */#stacks_in_1111_90>.s3_row {
	margin: 0 -10px;
}

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

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




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










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



}



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


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


}





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




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


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

#stacks_in_1111_92 #listthingstacks_in_1111_92 {
	display: block;
	position: relative;
}

#stacks_in_1111_92 #listthingstacks_in_1111_92 ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

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

#stacks_in_1111_92 #listthingstacks_in_1111_92 li a {
	color: #5CA9FF;
	text-decoration:none;
}

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

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

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

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

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

/*  0. No Background  */

.hover_effect0stacks_in_1111_92 {
	background: transparent;
}

/*  1. Rollover   */

.hover_effect1stacks_in_1111_92 {
	background: #A1EBF9;
}

.hover_effect1stacks_in_1111_92:hover {
	background: #DA4453;
}



/*  4.  Brackets Effect  */

.hover_effect4stacks_in_1111_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_1111_92 a::before,
.hover_effect4stacks_in_1111_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_1111_92 a::before {
	margin-right: 10px;
	content: '[';
	-webkit-transform: translateX(20px);
	   -moz-transform: translateX(20px);
			transform: translateX(20px);
}

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

.hover_effect4stacks_in_1111_92 a:hover::before,
.hover_effect4stacks_in_1111_92 a:hover::after,
.hover_effect4stacks_in_1111_92 a:focus::before,
.hover_effect4stacks_in_1111_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_1111_92 a:hover {
 	text-decoration: none;
}

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

.hover_effect5stacks_in_1111_92 a:before, 
.hover_effect5stacks_in_1111_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_1111_92 a:after {
	left: 100%;
	left: 0;
}

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

/*  6 Sandwich  Effect */

.hover_effect6stacks_in_1111_92 {
}

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

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

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

.hover_effect6stacks_in_1111_92 a:hover::before,
.hover_effect6stacks_in_1111_92 a:focus::before,
.hover_effect6stacks_in_1111_92 a:hover::after,
.hover_effect6stacks_in_1111_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_1111_92 [class^="icon-newspaper"]:before, #stacks_in_1111_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_1111_93 {
	font-size: 110%;
}
.spacerStack {
	height: 15px;
}

#spacerStackstacks_in_1111_272 {
	height: 15px;
}#stacks_in_1111_263>.s3_row {
	margin: 0 -0px;
}

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

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

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

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








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



}



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


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


}




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


#CHAuImage_stacks_in_1111_267 {
		
}




#AuImage_stacks_in_1111_267, #CHAuImage_stacks_in_1111_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_1111_267 img, #CHAuImage_stacks_in_1111_267 img {
	width: 100%;
	height: 100%;
	text-align:center;
	margin: 0 auto;
	
	
}

#AuImage_stacks_in_1111_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_1111_267.circle{
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
}

#AuImage_stacks_in_1111_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_1111_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_1111_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_1111_267.top{
    top: 0 ; 
    bottom:auto;
}

.AuCaption_stacks_in_1111_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_1111_267 .BC {
	bottom: 0;	
}

#AuImage_stacks_in_1111_267 .top{
	top: 0;
}

/*/#AuImage_stacks_in_1111_267:hover #AuCaption_stacks_in_1111_267, #CHAuImage_stacks_in_1111_267:hover #AuCaption_stacks_in_1111_267 {
	opacity: 1;
	left: 0;
}*/

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

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


#AuImage_stacks_in_1111_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_1111_267:hover img, #AuImage_stacks_in_1111_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_1111_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_1111_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_1111_267 {
	opacity: 0;
	bottom: .75%; 
	left: -100%;
}

#AuImage_stacks_in_1111_267:hover .BSLCaption_stacks_in_1111_267 , #CHAuImage_stacks_in_1111_267:hover .BSLCaption_stacks_in_1111_267{
	opacity: 1;
	left: 0;
}*/

/*	BOTTOM SLIDE BOTTOM*/

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


#AuImage_stacks_in_1111_267:hover .BSBCaption_stacks_in_1111_267 , #CHAuImage_stacks_in_1111_267:hover .BSBCaption_stacks_in_1111_267{
	opacity: 1;
	left: 0;
    bottom: 0;
}

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

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

#AuImage_stacks_in_1111_267:hover .BSRCaption_stacks_in_1111_267 , #CHAuImage_stacks_in_1111_267:hover .BSRCaption_stacks_in_1111_267{
	opacity: 1;
	right: 0;
}
*/
	/*	TOP SLIDE LEFT*/

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

#AuImage_stacks_in_1111_267:hover .TSLCaption_stacks_in_1111_267 , #CHAuImage_stacks_in_1111_267:hover .TSLCaption_stacks_in_1111_267{
	opacity: 1;
	left: 0;
}*/

/*	TOP SLIDE TOP*/

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

#AuImage_stacks_in_1111_267:hover .TSTCaption_stacks_in_1111_267 , #CHAuImage_stacks_in_1111_267:hover .TSTCaption_stacks_in_1111_267{
	opacity: 1;
	top: 0;
}
*/
/*	TOP SLIDE RIGHT*/

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

#AuImage_stacks_in_1111_267:hover .TSRCaption_stacks_in_1111_267 , #CHAuImage_stacks_in_1111_267:hover .TSRCaption_stacks_in_1111_267{
	opacity: 1;
	right: 0;
}*/

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

	
	
	.AuCaption_stacks_in_1111_267  {
	opacity: 0;
	bottom: .75%; 
	left: 0;
	}
	
	/*	BOTTOM SLIDE BOTTOM*/
	
	.BSBCaption_stacks_in_1111_267 {
	opacity: 0;
	bottom: 0; 
	left: 0;
	}
	
	
	/*	BOTTOM SLIDE RIGHT*/
	
	.BSRCaption_stacks_in_1111_267 {
	opacity: 0;
	right: 0; 
	bottom:.75%;
	}
	
	/*	TOP SLIDE LEFT*/
	
	.TSLCaption_stacks_in_1111_267 {
	opacity: 0;
	top: 0; 
	left: 0;
	}
	
	/*	TOP SLIDE TOP*/
	
	.TSTCaption_stacks_in_1111_267 {
	opacity: 0;
	top: 0; 
	left: 0;
	}
	
	/*	TOP SLIDE RIGHT*/
	
	.TSRCaption_stacks_in_1111_267 {
	opacity: 0;
	right:0; 
	top: 0;
	}


	
}


@media (max-width: 600px){
	
	#AuImage_stacks_in_1111_267, #CHAuImage_stacks_in_1111_267 {
	margin: 0 auto;
	text-align:center;
	margin-bottom: 10px;
}
	
	
	/*	BOTTOM SLIDE LEFT*/
	
	.BSLCaption_stacks_in_1111_267 {
	opacity: 0;
	bottom: .75%; 
	left: 0;
	}
	
	/*	BOTTOM SLIDE BOTTOM*/
	
	.BSBCaption_stacks_in_1111_267 {
	opacity: 0;
	bottom: 0; 
	left: 0;
	}
	
	
	/*	BOTTOM SLIDE RIGHT*/
	
	.BSRCaption_stacks_in_1111_267 {
	opacity: 0;
	right: 0; 
	bottom:.75%;
	}
	
	/*	TOP SLIDE LEFT*/
	
	.TSLCaption_stacks_in_1111_267 {
	opacity: 0;
	top: 0; 
	left: 0;
	}
	
	/*	TOP SLIDE TOP*/
	
	.TSTCaption_stacks_in_1111_267 {
	opacity: 0;
	top: 0; 
	left: 0;
	}
	
	/*	TOP SLIDE RIGHT*/
	
	.TSRCaption_stacks_in_1111_267 {
	opacity: 0;
	right:0; 
	top: 0;
	}


	
}
	
	




.spacerStack {
	height: 1px;
}

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

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

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

#stacks_out_1111_110 {
	width: 100px;
	margin-left:0;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_1111_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_1111_112Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_112Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_112Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_112Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_112Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_112Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_112Calligrapher h6, .stacks_in_1111_112Calligrapher h5, .stacks_in_1111_112Calligrapher h4, .stacks_in_1111_112Calligrapher h3, .stacks_in_1111_112Calligrapher h2, .stacks_in_1111_112Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_1111_112Calligrapher, .stacks_in_1111_112Calligrapher h1, .stacks_in_1111_112Calligrapher h2, .stacks_in_1111_112Calligrapher h3, .stacks_in_1111_112Calligrapher h4, .stacks_in_1111_112Calligrapher h5, .stacks_in_1111_112Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1111_112targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_1111_112Calligrapher a:link{			color: #CFD1DA !important;			text-decoration: none !important;		}				.stacks_in_1111_112Calligrapher a:visited{			color: #CFD1DA !important;		}				.stacks_in_1111_112Calligrapher a:active{			color: #CFD1DA !important;		}				.stacks_in_1111_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_1111_115 #linklisterThingstacks_in_1111_115 {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
  	-webkit-backface-visibility: hidden;
  	-webkit-transform: rotate(0deg) skewY(0deg);
}

#stacks_in_1111_115 #listthingstacks_in_1111_115 {
	display: block;
	position: relative;
}

#stacks_in_1111_115 #listthingstacks_in_1111_115 ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

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

#stacks_in_1111_115 #listthingstacks_in_1111_115 li a {
	color: #5CA9FF;
	text-decoration:none;
}

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

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

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

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

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

/*  0. No Background  */

.hover_effect0stacks_in_1111_115 {
	background: transparent;
}

/*  1. Rollover   */

.hover_effect1stacks_in_1111_115 {
	background: #A1EBF9;
}

.hover_effect1stacks_in_1111_115:hover {
	background: #DA4453;
}



/*  4.  Brackets Effect  */

.hover_effect4stacks_in_1111_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_1111_115 a::before,
.hover_effect4stacks_in_1111_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_1111_115 a::before {
	margin-right: 10px;
	content: '[';
	-webkit-transform: translateX(20px);
	   -moz-transform: translateX(20px);
			transform: translateX(20px);
}

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

.hover_effect4stacks_in_1111_115 a:hover::before,
.hover_effect4stacks_in_1111_115 a:hover::after,
.hover_effect4stacks_in_1111_115 a:focus::before,
.hover_effect4stacks_in_1111_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_1111_115 a:hover {
 	text-decoration: none;
}

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

.hover_effect5stacks_in_1111_115 a:before, 
.hover_effect5stacks_in_1111_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_1111_115 a:after {
	left: 100%;
	left: 0;
}

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

/*  6 Sandwich  Effect */

.hover_effect6stacks_in_1111_115 {
}

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

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

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

.hover_effect6stacks_in_1111_115 a:hover::before,
.hover_effect6stacks_in_1111_115 a:focus::before,
.hover_effect6stacks_in_1111_115 a:hover::after,
.hover_effect6stacks_in_1111_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_1111_115 [class^="icon-dot"]:before, #stacks_in_1111_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_1111_132 {
	height: 15px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_1111_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_1111_134Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_134Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_134Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_134Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_134Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_134Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_134Calligrapher h6, .stacks_in_1111_134Calligrapher h5, .stacks_in_1111_134Calligrapher h4, .stacks_in_1111_134Calligrapher h3, .stacks_in_1111_134Calligrapher h2, .stacks_in_1111_134Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_1111_134Calligrapher, .stacks_in_1111_134Calligrapher h1, .stacks_in_1111_134Calligrapher h2, .stacks_in_1111_134Calligrapher h3, .stacks_in_1111_134Calligrapher h4, .stacks_in_1111_134Calligrapher h5, .stacks_in_1111_134Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1111_134targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_1111_134Calligrapher a:link{			color: #FDFFFF !important;			text-decoration: none !important;		}				.stacks_in_1111_134Calligrapher a:visited{			color: #FDFFFF !important;		}				.stacks_in_1111_134Calligrapher a:active{			color: #FDFFFF !important;		}				.stacks_in_1111_134Calligrapher a:hover{			color: #5CA9FF !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 30px;
}

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

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

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

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

#stacks_out_1111_156 {
	width: 100px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_1111_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_1111_297Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_297Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_297Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_297Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_297Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_297Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_297Calligrapher h6, .stacks_in_1111_297Calligrapher h5, .stacks_in_1111_297Calligrapher h4, .stacks_in_1111_297Calligrapher h3, .stacks_in_1111_297Calligrapher h2, .stacks_in_1111_297Calligrapher h1{			color: #D6D8E0 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_1111_297Calligrapher, .stacks_in_1111_297Calligrapher h1, .stacks_in_1111_297Calligrapher h2, .stacks_in_1111_297Calligrapher h3, .stacks_in_1111_297Calligrapher h4, .stacks_in_1111_297Calligrapher h5, .stacks_in_1111_297Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1111_297targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_1111_297Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_1111_297Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_1111_297Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_1111_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_1111_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_1111_301Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_301Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_301Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_301Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_301Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_301Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_301Calligrapher h6, .stacks_in_1111_301Calligrapher h5, .stacks_in_1111_301Calligrapher h4, .stacks_in_1111_301Calligrapher h3, .stacks_in_1111_301Calligrapher h2, .stacks_in_1111_301Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_1111_301Calligrapher, .stacks_in_1111_301Calligrapher h1, .stacks_in_1111_301Calligrapher h2, .stacks_in_1111_301Calligrapher h3, .stacks_in_1111_301Calligrapher h4, .stacks_in_1111_301Calligrapher h5, .stacks_in_1111_301Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1111_301targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_1111_301Calligrapher a:link{			color: #FDFFFF !important;			text-decoration: none !important;		}				.stacks_in_1111_301Calligrapher a:visited{			color: #FDFFFF !important;		}				.stacks_in_1111_301Calligrapher a:active{			color: #FDFFFF !important;		}				.stacks_in_1111_301Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 30px;
}

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

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

#spacerStackstacks_in_1111_167 {
	height: 40px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_1111_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_1111_168Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_168Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_168Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_168Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_168Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_168Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_168Calligrapher h6, .stacks_in_1111_168Calligrapher h5, .stacks_in_1111_168Calligrapher h4, .stacks_in_1111_168Calligrapher h3, .stacks_in_1111_168Calligrapher h2, .stacks_in_1111_168Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_1111_168Calligrapher, .stacks_in_1111_168Calligrapher h1, .stacks_in_1111_168Calligrapher h2, .stacks_in_1111_168Calligrapher h3, .stacks_in_1111_168Calligrapher h4, .stacks_in_1111_168Calligrapher h5, .stacks_in_1111_168Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1111_168targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_1111_168Calligrapher a:link{			color: #FDFFFF !important;			text-decoration: none !important;		}				.stacks_in_1111_168Calligrapher a:visited{			color: #FDFFFF !important;		}				.stacks_in_1111_168Calligrapher a:active{			color: #FDFFFF !important;		}				.stacks_in_1111_168Calligrapher a:hover{			color: #5CA9FF !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 60px;
}

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

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

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

#stacks_out_1111_178 {
	width: 100px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_1111_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_1111_183Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_183Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_183Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_183Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_183Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_183Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_183Calligrapher h6, .stacks_in_1111_183Calligrapher h5, .stacks_in_1111_183Calligrapher h4, .stacks_in_1111_183Calligrapher h3, .stacks_in_1111_183Calligrapher h2, .stacks_in_1111_183Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_1111_183Calligrapher, .stacks_in_1111_183Calligrapher h1, .stacks_in_1111_183Calligrapher h2, .stacks_in_1111_183Calligrapher h3, .stacks_in_1111_183Calligrapher h4, .stacks_in_1111_183Calligrapher h5, .stacks_in_1111_183Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1111_183targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_1111_183Calligrapher a:link{			color: #CFD1DA !important;			text-decoration: none !important;		}				.stacks_in_1111_183Calligrapher a:visited{			color: #CFD1DA !important;		}				.stacks_in_1111_183Calligrapher a:active{			color: #CFD1DA !important;		}				.stacks_in_1111_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_1111_185 #linklisterThingstacks_in_1111_185 {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
  	-webkit-backface-visibility: hidden;
  	-webkit-transform: rotate(0deg) skewY(0deg);
}

#stacks_in_1111_185 #listthingstacks_in_1111_185 {
	display: block;
	position: relative;
}

#stacks_in_1111_185 #listthingstacks_in_1111_185 ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

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

#stacks_in_1111_185 #listthingstacks_in_1111_185 li a {
	color: #5CA9FF;
	text-decoration:none;
}

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

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

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

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

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

/*  0. No Background  */

.hover_effect0stacks_in_1111_185 {
	background: transparent;
}

/*  1. Rollover   */

.hover_effect1stacks_in_1111_185 {
	background: #A1EBF9;
}

.hover_effect1stacks_in_1111_185:hover {
	background: #DA4453;
}



/*  4.  Brackets Effect  */

.hover_effect4stacks_in_1111_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_1111_185 a::before,
.hover_effect4stacks_in_1111_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_1111_185 a::before {
	margin-right: 10px;
	content: '[';
	-webkit-transform: translateX(20px);
	   -moz-transform: translateX(20px);
			transform: translateX(20px);
}

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

.hover_effect4stacks_in_1111_185 a:hover::before,
.hover_effect4stacks_in_1111_185 a:hover::after,
.hover_effect4stacks_in_1111_185 a:focus::before,
.hover_effect4stacks_in_1111_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_1111_185 a:hover {
 	text-decoration: none;
}

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

.hover_effect5stacks_in_1111_185 a:before, 
.hover_effect5stacks_in_1111_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_1111_185 a:after {
	left: 100%;
	left: 0;
}

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

/*  6 Sandwich  Effect */

.hover_effect6stacks_in_1111_185 {
}

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

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

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

.hover_effect6stacks_in_1111_185 a:hover::before,
.hover_effect6stacks_in_1111_185 a:focus::before,
.hover_effect6stacks_in_1111_185 a:hover::after,
.hover_effect6stacks_in_1111_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_1111_185 [class^="icon-mail"]:before, #stacks_in_1111_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_1111_186 {
	font-size: 110%;
}
.spacerStack {
	height: 30px;
}

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


#CHAuImage_stacks_in_1111_273 {
		
}




#AuImage_stacks_in_1111_273, #CHAuImage_stacks_in_1111_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_1111_273 img, #CHAuImage_stacks_in_1111_273 img {
	width: 100%;
	height: 100%;
	text-align:center;
	margin: 0 auto;
	
	
}

#AuImage_stacks_in_1111_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_1111_273.circle{
    -webkit-clip-path: circle(50% at 50% 50%);
    clip-path: circle(50% at 50% 50%);
}

#AuImage_stacks_in_1111_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_1111_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_1111_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_1111_273.top{
    top: 0 ; 
    bottom:auto;
}

.AuCaption_stacks_in_1111_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_1111_273 .BC {
	bottom: 0;	
}

#AuImage_stacks_in_1111_273 .top{
	top: 0;
}

/*/#AuImage_stacks_in_1111_273:hover #AuCaption_stacks_in_1111_273, #CHAuImage_stacks_in_1111_273:hover #AuCaption_stacks_in_1111_273 {
	opacity: 1;
	left: 0;
}*/

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

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


#AuImage_stacks_in_1111_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_1111_273:hover img, #AuImage_stacks_in_1111_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_1111_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_1111_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_1111_273 {
	opacity: 0;
	bottom: .75%; 
	left: -100%;
}

#AuImage_stacks_in_1111_273:hover .BSLCaption_stacks_in_1111_273 , #CHAuImage_stacks_in_1111_273:hover .BSLCaption_stacks_in_1111_273{
	opacity: 1;
	left: 0;
}*/

/*	BOTTOM SLIDE BOTTOM*/

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


#AuImage_stacks_in_1111_273:hover .BSBCaption_stacks_in_1111_273 , #CHAuImage_stacks_in_1111_273:hover .BSBCaption_stacks_in_1111_273{
	opacity: 1;
	left: 0;
    bottom: 0;
}

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

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

#AuImage_stacks_in_1111_273:hover .BSRCaption_stacks_in_1111_273 , #CHAuImage_stacks_in_1111_273:hover .BSRCaption_stacks_in_1111_273{
	opacity: 1;
	right: 0;
}
*/
	/*	TOP SLIDE LEFT*/

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

#AuImage_stacks_in_1111_273:hover .TSLCaption_stacks_in_1111_273 , #CHAuImage_stacks_in_1111_273:hover .TSLCaption_stacks_in_1111_273{
	opacity: 1;
	left: 0;
}*/

/*	TOP SLIDE TOP*/

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

#AuImage_stacks_in_1111_273:hover .TSTCaption_stacks_in_1111_273 , #CHAuImage_stacks_in_1111_273:hover .TSTCaption_stacks_in_1111_273{
	opacity: 1;
	top: 0;
}
*/
/*	TOP SLIDE RIGHT*/

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

#AuImage_stacks_in_1111_273:hover .TSRCaption_stacks_in_1111_273 , #CHAuImage_stacks_in_1111_273:hover .TSRCaption_stacks_in_1111_273{
	opacity: 1;
	right: 0;
}*/

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

	
	
	.AuCaption_stacks_in_1111_273  {
	opacity: 0;
	bottom: .75%; 
	left: 0;
	}
	
	/*	BOTTOM SLIDE BOTTOM*/
	
	.BSBCaption_stacks_in_1111_273 {
	opacity: 0;
	bottom: 0; 
	left: 0;
	}
	
	
	/*	BOTTOM SLIDE RIGHT*/
	
	.BSRCaption_stacks_in_1111_273 {
	opacity: 0;
	right: 0; 
	bottom:.75%;
	}
	
	/*	TOP SLIDE LEFT*/
	
	.TSLCaption_stacks_in_1111_273 {
	opacity: 0;
	top: 0; 
	left: 0;
	}
	
	/*	TOP SLIDE TOP*/
	
	.TSTCaption_stacks_in_1111_273 {
	opacity: 0;
	top: 0; 
	left: 0;
	}
	
	/*	TOP SLIDE RIGHT*/
	
	.TSRCaption_stacks_in_1111_273 {
	opacity: 0;
	right:0; 
	top: 0;
	}


	
}


@media (max-width: 600px){
	
	#AuImage_stacks_in_1111_273, #CHAuImage_stacks_in_1111_273 {
	margin: 0 auto;
	text-align:center;
	margin-bottom: 10px;
}
	
	
	/*	BOTTOM SLIDE LEFT*/
	
	.BSLCaption_stacks_in_1111_273 {
	opacity: 0;
	bottom: .75%; 
	left: 0;
	}
	
	/*	BOTTOM SLIDE BOTTOM*/
	
	.BSBCaption_stacks_in_1111_273 {
	opacity: 0;
	bottom: 0; 
	left: 0;
	}
	
	
	/*	BOTTOM SLIDE RIGHT*/
	
	.BSRCaption_stacks_in_1111_273 {
	opacity: 0;
	right: 0; 
	bottom:.75%;
	}
	
	/*	TOP SLIDE LEFT*/
	
	.TSLCaption_stacks_in_1111_273 {
	opacity: 0;
	top: 0; 
	left: 0;
	}
	
	/*	TOP SLIDE TOP*/
	
	.TSTCaption_stacks_in_1111_273 {
	opacity: 0;
	top: 0; 
	left: 0;
	}
	
	/*	TOP SLIDE RIGHT*/
	
	.TSRCaption_stacks_in_1111_273 {
	opacity: 0;
	right:0; 
	top: 0;
	}


	
}
	
	





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

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

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

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

#stacks_out_1111_206 {
	width: 100px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_1111_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_1111_207Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_207Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_207Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_207Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_207Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_207Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_207Calligrapher h6, .stacks_in_1111_207Calligrapher h5, .stacks_in_1111_207Calligrapher h4, .stacks_in_1111_207Calligrapher h3, .stacks_in_1111_207Calligrapher h2, .stacks_in_1111_207Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_1111_207Calligrapher, .stacks_in_1111_207Calligrapher h1, .stacks_in_1111_207Calligrapher h2, .stacks_in_1111_207Calligrapher h3, .stacks_in_1111_207Calligrapher h4, .stacks_in_1111_207Calligrapher h5, .stacks_in_1111_207Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1111_207targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_1111_207Calligrapher a:link{			color: #CFD1DA !important;			text-decoration: none !important;		}				.stacks_in_1111_207Calligrapher a:visited{			color: #CFD1DA !important;		}				.stacks_in_1111_207Calligrapher a:active{			color: #CFD1DA !important;		}				.stacks_in_1111_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_1111_209 #linklisterThingstacks_in_1111_209 {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
  	-webkit-backface-visibility: hidden;
  	-webkit-transform: rotate(0deg) skewY(0deg);
}

#stacks_in_1111_209 #listthingstacks_in_1111_209 {
	display: block;
	position: relative;
}

#stacks_in_1111_209 #listthingstacks_in_1111_209 ul {
	display: block;
	list-style: none;
	margin: 0;
	padding: 0;
}

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

#stacks_in_1111_209 #listthingstacks_in_1111_209 li a {
	color: #5CA9FF;
	text-decoration:none;
}

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

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

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

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

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

/*  0. No Background  */

.hover_effect0stacks_in_1111_209 {
	background: transparent;
}

/*  1. Rollover   */

.hover_effect1stacks_in_1111_209 {
	background: #A1EBF9;
}

.hover_effect1stacks_in_1111_209:hover {
	background: #DA4453;
}



/*  4.  Brackets Effect  */

.hover_effect4stacks_in_1111_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_1111_209 a::before,
.hover_effect4stacks_in_1111_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_1111_209 a::before {
	margin-right: 10px;
	content: '[';
	-webkit-transform: translateX(20px);
	   -moz-transform: translateX(20px);
			transform: translateX(20px);
}

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

.hover_effect4stacks_in_1111_209 a:hover::before,
.hover_effect4stacks_in_1111_209 a:hover::after,
.hover_effect4stacks_in_1111_209 a:focus::before,
.hover_effect4stacks_in_1111_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_1111_209 a:hover {
 	text-decoration: none;
}

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

.hover_effect5stacks_in_1111_209 a:before, 
.hover_effect5stacks_in_1111_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_1111_209 a:after {
	left: 100%;
	left: 0;
}

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

/*  6 Sandwich  Effect */

.hover_effect6stacks_in_1111_209 {
}

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

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

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

.hover_effect6stacks_in_1111_209 a:hover::before,
.hover_effect6stacks_in_1111_209 a:focus::before,
.hover_effect6stacks_in_1111_209 a:hover::after,
.hover_effect6stacks_in_1111_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_1111_209 [class^="icon-dot"]:before, #stacks_in_1111_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_1111_216 {
	height: 50px;
}.spacerStack {
	height: 15px;
}

#spacerStackstacks_in_1111_219 {
	height: 15px;
}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_1111_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_1111_220Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_220Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_220Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_220Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_220Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_220Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_1111_220Calligrapher h6, .stacks_in_1111_220Calligrapher h5, .stacks_in_1111_220Calligrapher h4, .stacks_in_1111_220Calligrapher h3, .stacks_in_1111_220Calligrapher h2, .stacks_in_1111_220Calligrapher h1{			color: #FDFFFF !important;		}	/* -----------------------------------------    Google   ----------------------------------------- */ .stacks_in_1111_220Calligrapher, .stacks_in_1111_220Calligrapher h1, .stacks_in_1111_220Calligrapher h2, .stacks_in_1111_220Calligrapher h3, .stacks_in_1111_220Calligrapher h4, .stacks_in_1111_220Calligrapher h5, .stacks_in_1111_220Calligrapher h6{	font-family: "Poppins" !important;}/* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- *//* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1111_220targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_1111_220Calligrapher a:link{			color: #FDFFFF !important;			text-decoration: none !important;		}				.stacks_in_1111_220Calligrapher a:visited{			color: #FDFFFF !important;		}				.stacks_in_1111_220Calligrapher a:active{			color: #FDFFFF !important;		}				.stacks_in_1111_220Calligrapher a:hover{			color: #5CA9FF !important;			text-decoration: none !important;		}/* End Calligrapher stack CSS code */.spacerStack {
	height: 60px;
}

#spacerStackstacks_in_1111_224 {
	height: 60px;
}