@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;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-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-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-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-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-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-name: elxr_puffIn;
  -moz-animation-name: elxr_puffIn;
  -ms-animation-name: elxr_puffIn;
  -o-animation-name: elxr_puffIn;
  animation-name: elxr_puffIn;
}
.elxr_elxr_twisterInUp {
  -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-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-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-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);
  }
}
@-moz-keyframes elxr_puffIn {
  0% {
    opacity: 0;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(2,2);
    -moz-filter: blur(2px);
  }

  100% {
    opacity: 1;
    -moz-transform-origin: 50% 50%;
    -moz-transform: scale(1,1);
    -moz-filter: blur(0px);
  }
}
@-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);
  }
}
@-o-keyframes elxr_puffIn {
  0% {
    opacity: 0;
    -o-transform-origin: 50% 50%;
    -o-transform: scale(2,2);
    -webkit-filter: blur(2px);
  }

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

  100% {
    opacity: 1;
    filter: alpha(opacity=100);
    -ms-transform-origin: 50% 50%;
    -ms-transform: scale(1,1);
    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);
  }
}.customiser-warning{display:none}



.theme-warning{
	text-align: center;
	width: 50%;
	top: 0;
	margin: 100px auto;
	padding: 20px;
	background: red;
	color: white;
	z-index:1000
}

 

.stacks_top.loaded,
.uikit-main.loaded{
	opacity:1!important
}

.image-right{float:right;padding-left:20px;padding-bottom:20px}
.image-left{float:left;padding-right:20px;padding-bottom:20px}

@media(max-width:320px){
	.image-right,.image-left{float:none;padding-left:0;padding-right:0}
}

@media(min-width:767px){
	.uk-navbar-brand{padding:0;margin-left:0}
}

em{color:rgba(68, 68, 68, 1.00)}
code{color:rgba(221, 0, 85, 1.00)!important}


.uk-container{
	max-width:960px
}

@media(min-width:1220px){
	.uk-container{max-width:1060px}
}

 

html,body{
	color:#242424;
	background:#FFFFFF
}

hr{border-top-color:#DDDDDD}

.uk-nav-divider{
	border-color:#DDDDDD!important
}

.uk-grid-divider>[class*='uk-width-medium-']:not(.uk-width-medium-1-1):nth-child(n+2){
	border-left-color:#DDDDDD!important
}

.uk-subnav-line>:nth-child(n+2):before{
	border-left-color:#DDDDDD
}

html{color:#242424}

h1,.uk-h1{
	color:rgba(68, 68, 68, 1.00);
	font-weight: bold;
}

h2,h3,h4,h5,h6,
.uk-h2,.uk-h3,.uk-h4,.uk-h5,.uk-h6{
	color:rgba(68, 68, 68, 1.00);
	font-weight: bold;
}

a,.uk-link{
	color:rgba(0, 153, 204, 1.00)
}

a:hover,a.active:hover,.uk-link:hover{
	color:rgba(68, 68, 68, 1.00)
}

a,.uk-link,.uk-button-link{
	text-decoration:none
}

a:hover,.uk-link:hover,.uk-button-link:hover{
	text-decoration:none
}

.uk-button,.uk-button:visited{background-color:rgba(238, 238, 238, 1.00);color:rgba(68, 68, 68, 1.00)}
.uk-button:hover,.uk-button:focus{background-color:rgba(245, 245, 245, 1.00);color:rgba(68, 68, 68, 1.00)}
.uk-button-primary,.uk-button-primary:visited{background-color:rgba(0, 168, 230, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-primary:hover,.uk-button-primary:focus{background-color:rgba(53, 179, 238, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-success,.uk-button-success:visited{background-color:rgba(140, 193, 76, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-success:hover,.uk-button-success:focus{background-color:rgba(142, 199, 59, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-danger,.uk-button-danger:visited{background-color:rgba(233, 177, 78, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-danger:hover,.uk-button-danger:focus{background-color:rgba(228, 53, 79, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-link,.uk-button-link:visited{color:rgba(68, 68, 68, 1.00); background-color: transparent;}
.uk-button-link:hover,.uk-button-link:focus{color:rgba(204, 204, 204, 1.00); background-color: transparent;}

.uk-navbar-content .uk-button-primary,
.uk-navbar-content .uk-button-primary:visited{background-color:rgba(0, 168, 230, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-primary:hover,
.uk-navbar-content .uk-button-primary:focus{background-color:rgba(53, 179, 238, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-success,
.uk-navbar-content .uk-button-success:visited{background-color:rgba(140, 193, 76, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-success:hover,
.uk-navbar-content .uk-button-success:focus{background-color:rgba(142, 199, 59, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-danger,
.uk-navbar-content .uk-button-danger:visited{background-color:rgba(233, 177, 78, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-danger:hover,
.uk-navbar-content .uk-button-danger:focus{background-color:rgba(228, 53, 79, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-link,
.uk-navbar-content .uk-button-link:visited{color:rgba(68, 68, 68, 1.00)!important}
.uk-navbar-content .uk-button-link:hover,
.uk-navbar-content .uk-button-link:focus{color:rgba(204, 204, 204, 1.00)!important}

h1,.h1-family{}

h2,h3,h4,h5,h6,.headings-family, 
.uk-navbar-nav>*>*, 
.uk-offcanvas-bar>*>*,
::-webkit-input-placeholder{}

::-ms-input-placeholder{}
::-moz-placeholder{}

body,.body-family{}
h1,.uk-h1{font-size:36px;line-height:42px}
h2,.uk-h2{font-size:24px;line-height:30px}
h3,.uk-h3{font-size:18px;line-height:24px}
h4,.uk-h4{font-size:16px;line-height:22px}
h5,.uk-h5{font-size:14px;line-height:20px}
h6,.uk-h6{font-size:12px;line-height:18px}
html{font-size:14px;line-height:20px}

 

.uk-panel>h3,.uk-panel:hover>h3{background:transparent}
.uk-block-default,.uk-panel-box-default{color:rgba(68, 68, 68, 1.00)!important;background:rgba(255, 255, 255, 1.00)}
.uk-subnav.default-scheme>*>*{color:rgba(68, 68, 68, 1.00)}
.uk-subnav.default-scheme>*>a:hover,.uk-subnav.default-scheme>*>a:focus{color:rgba(234, 234, 234, 1.00)}
.uk-subnav.default-scheme>.uk-active>*{color:rgba(59, 167, 212, 1.00)}
.uk-block-primary,.uk-panel-box-primary{color:rgba(0, 0, 0, 1.00)!important;background:rgba(0, 168, 230, 1.00)}
.uk-subnav.primary-scheme>*>*{color:rgba(0, 0, 0, 1.00)}
.uk-subnav.primary-scheme>*>a:hover,.uk-subnav.primary-scheme>*>a:focus{color:rgba(234, 234, 234, 1.00)}
.uk-subnav.primary-scheme>.uk-active>*{color:rgba(59, 167, 212, 1.00)}

.uk-block-secondary,.uk-panel-box-secondary{color:rgba(255, 204, 51, 1.00)!important;background:rgba(34, 34, 34, 1.00)}
.uk-subnav.secondary-scheme>*>*{color:rgba(255, 204, 51, 1.00)}
.uk-subnav.secondary-scheme>*>a:hover,.uk-subnav.secondary-scheme>*>a:focus{color:rgba(234, 234, 234, 1.00)}
.uk-subnav.secondary-scheme>.uk-active>*{color:rgba(59, 167, 212, 1.00)}
.uk-block-muted{color:rgba(68, 68, 68, 1.00)!important;background:rgba(249, 249, 249, 1.00)}
.uk-subnav>.uk-disabled>*{color:rgba(68, 68, 68, 1.00)!important}

.uk-subnav .body-family > * > *{
	font-family: custom!important;
}
.uk-subnav .headings-family > * > *{
	font-family: custom!important;
}
#stacks_in_p757635_n755002_page16 {
	background-color: rgba(204, 204, 204, 1.00);
}
.customiser-warning{display:none}



.theme-warning{
	text-align: center;
	width: 50%;
	top: 0;
	margin: 100px auto;
	padding: 20px;
	background: red;
	color: white;
	z-index:1000
}

 

.stacks_top.loaded,
.uikit-main.loaded{
	opacity:1!important
}

.image-right{float:right;padding-left:20px;padding-bottom:20px}
.image-left{float:left;padding-right:20px;padding-bottom:20px}

@media(max-width:320px){
	.image-right,.image-left{float:none;padding-left:0;padding-right:0}
}

@media(min-width:767px){
	.uk-navbar-brand{padding:0;margin-left:0}
}

em{color:rgba(68, 68, 68, 1.00)}
code{color:rgba(221, 0, 85, 1.00)!important}


.uk-container{
	max-width:960px
}

@media(min-width:1220px){
	.uk-container{max-width:1060px}
}

 

html,body{
	color:#242424;
	background:#FFFFFF
}

hr{border-top-color:#DDDDDD}

.uk-nav-divider{
	border-color:#DDDDDD!important
}

.uk-grid-divider>[class*='uk-width-medium-']:not(.uk-width-medium-1-1):nth-child(n+2){
	border-left-color:#DDDDDD!important
}

.uk-subnav-line>:nth-child(n+2):before{
	border-left-color:#DDDDDD
}

html{color:#242424}

h1,.uk-h1{
	color:rgba(68, 68, 68, 1.00);
	font-weight: bold;
}

h2,h3,h4,h5,h6,
.uk-h2,.uk-h3,.uk-h4,.uk-h5,.uk-h6{
	color:rgba(68, 68, 68, 1.00);
	font-weight: bold;
}

a,.uk-link{
	color:rgba(0, 153, 204, 1.00)
}

a:hover,a.active:hover,.uk-link:hover{
	color:rgba(68, 68, 68, 1.00)
}

a,.uk-link,.uk-button-link{
	text-decoration:none
}

a:hover,.uk-link:hover,.uk-button-link:hover{
	text-decoration:none
}

.uk-button,.uk-button:visited{background-color:rgba(238, 238, 238, 1.00);color:rgba(68, 68, 68, 1.00)}
.uk-button:hover,.uk-button:focus{background-color:rgba(245, 245, 245, 1.00);color:rgba(68, 68, 68, 1.00)}
.uk-button-primary,.uk-button-primary:visited{background-color:rgba(0, 168, 230, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-primary:hover,.uk-button-primary:focus{background-color:rgba(53, 179, 238, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-success,.uk-button-success:visited{background-color:rgba(140, 193, 76, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-success:hover,.uk-button-success:focus{background-color:rgba(142, 199, 59, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-danger,.uk-button-danger:visited{background-color:rgba(233, 177, 78, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-danger:hover,.uk-button-danger:focus{background-color:rgba(228, 53, 79, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-link,.uk-button-link:visited{color:rgba(68, 68, 68, 1.00); background-color: transparent;}
.uk-button-link:hover,.uk-button-link:focus{color:rgba(204, 204, 204, 1.00); background-color: transparent;}

.uk-navbar-content .uk-button-primary,
.uk-navbar-content .uk-button-primary:visited{background-color:rgba(0, 168, 230, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-primary:hover,
.uk-navbar-content .uk-button-primary:focus{background-color:rgba(53, 179, 238, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-success,
.uk-navbar-content .uk-button-success:visited{background-color:rgba(140, 193, 76, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-success:hover,
.uk-navbar-content .uk-button-success:focus{background-color:rgba(142, 199, 59, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-danger,
.uk-navbar-content .uk-button-danger:visited{background-color:rgba(233, 177, 78, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-danger:hover,
.uk-navbar-content .uk-button-danger:focus{background-color:rgba(228, 53, 79, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-link,
.uk-navbar-content .uk-button-link:visited{color:rgba(68, 68, 68, 1.00)!important}
.uk-navbar-content .uk-button-link:hover,
.uk-navbar-content .uk-button-link:focus{color:rgba(204, 204, 204, 1.00)!important}

h1,.h1-family{}

h2,h3,h4,h5,h6,.headings-family, 
.uk-navbar-nav>*>*, 
.uk-offcanvas-bar>*>*,
::-webkit-input-placeholder{}

::-ms-input-placeholder{}
::-moz-placeholder{}

body,.body-family{}
h1,.uk-h1{font-size:36px;line-height:42px}
h2,.uk-h2{font-size:24px;line-height:30px}
h3,.uk-h3{font-size:18px;line-height:24px}
h4,.uk-h4{font-size:16px;line-height:22px}
h5,.uk-h5{font-size:14px;line-height:20px}
h6,.uk-h6{font-size:12px;line-height:18px}
html{font-size:14px;line-height:20px}

 

.uk-panel>h3,.uk-panel:hover>h3{background:transparent}
.uk-block-default,.uk-panel-box-default{color:rgba(68, 68, 68, 1.00)!important;background:rgba(255, 255, 255, 1.00)}
.uk-subnav.default-scheme>*>*{color:rgba(68, 68, 68, 1.00)}
.uk-subnav.default-scheme>*>a:hover,.uk-subnav.default-scheme>*>a:focus{color:rgba(234, 234, 234, 1.00)}
.uk-subnav.default-scheme>.uk-active>*{color:rgba(59, 167, 212, 1.00)}
.uk-block-primary,.uk-panel-box-primary{color:rgba(0, 0, 0, 1.00)!important;background:rgba(0, 168, 230, 1.00)}
.uk-subnav.primary-scheme>*>*{color:rgba(0, 0, 0, 1.00)}
.uk-subnav.primary-scheme>*>a:hover,.uk-subnav.primary-scheme>*>a:focus{color:rgba(234, 234, 234, 1.00)}
.uk-subnav.primary-scheme>.uk-active>*{color:rgba(59, 167, 212, 1.00)}

.uk-block-secondary,.uk-panel-box-secondary{color:rgba(255, 204, 51, 1.00)!important;background:rgba(34, 34, 34, 1.00)}
.uk-subnav.secondary-scheme>*>*{color:rgba(255, 204, 51, 1.00)}
.uk-subnav.secondary-scheme>*>a:hover,.uk-subnav.secondary-scheme>*>a:focus{color:rgba(234, 234, 234, 1.00)}
.uk-subnav.secondary-scheme>.uk-active>*{color:rgba(59, 167, 212, 1.00)}
.uk-block-muted{color:rgba(68, 68, 68, 1.00)!important;background:rgba(249, 249, 249, 1.00)}
.uk-subnav>.uk-disabled>*{color:rgba(68, 68, 68, 1.00)!important}

.uk-subnav .body-family > * > *{
	font-family: custom!important;
}
.uk-subnav .headings-family > * > *{
	font-family: custom!important;
}
#stacks_in_p757635_n755005_page16 {
	padding:  10px;
}
#press_group_stacks_in_p757635_n788407_page16 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
  /*  */ }
  #press_group_stacks_in_p757635_n788407_page16 [tag="node"]:first-child {
    width: 100% !important; }
  #press_group_stacks_in_p757635_n788407_page16 .out.stack:first-child {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important; }
    #press_group_stacks_in_p757635_n788407_page16 .out.stack:first-child .out {
      width: 100% !important;
      -webkit-box-flex: 1 !important;
          -ms-flex: 1 1 auto !important;
              flex: 1 1 auto !important;
      margin-left: 0 !important;
      margin-right: 0 !important; }
    #press_group_stacks_in_p757635_n788407_page16 .out.stack:first-child [tag="slice"] .mez {
      padding: 1px;
      margin: 0px;
      margin-left: 0 !important;
      margin-right: 0 !important; }
    #press_group_stacks_in_p757635_n788407_page16 .out.stack:first-child [tag="slice"]:first-child .press {
      border-top-left-radius: 4px;
      border-bottom-left-radius: 4px; }
    #press_group_stacks_in_p757635_n788407_page16 .out.stack:first-child [tag="slice"]:last-child .press {
      margin-right: 0px !important;
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px; }
  #press_group_stacks_in_p757635_n788407_page16 .press-text [tag="node"] {
    min-width: 0px !important; }
  #press_group_stacks_in_p757635_n788407_page16 .press {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 12px;
    padding-bottom: 12px;
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
    margin-left: 0 !important;
    margin-right: 5px !important;
    border-radius: 0px; }
    #press_group_stacks_in_p757635_n788407_page16 .press:first-child, #press_group_stacks_in_p757635_n788407_page16 .press:first-of-type {
      /*  */
      border-top-left-radius: 4px;
      border-bottom-left-radius: 4px;
      /*  */ }
    #press_group_stacks_in_p757635_n788407_page16 .press:last-child, #press_group_stacks_in_p757635_n788407_page16 .press:last-of-type {
      /*  */
      margin-right: 0px !important;
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px;
      /*  */ }
  #press_group_stacks_in_p757635_n788407_page16 [id*="press_alignment"] {
    width: auto !important;
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
    text-align: left !important; }
    #press_group_stacks_in_p757635_n788407_page16 [id*="press_alignment"] .press {
      padding-top: 12px;
      padding-bottom: 12px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 1 !important;
          -ms-flex: 1 1 auto !important;
              flex: 1 1 auto !important;
      margin-left: 0 !important;
      margin-right: 5px !important; }
      #press_group_stacks_in_p757635_n788407_page16 [id*="press_alignment"] .press:last-child, #press_group_stacks_in_p757635_n788407_page16 [id*="press_alignment"] .press:first-child, #press_group_stacks_in_p757635_n788407_page16 [id*="press_alignment"] .press:first-of-type, #press_group_stacks_in_p757635_n788407_page16 [id*="press_alignment"] .press:last-of-type {
        border-radius: 0px; }
    #press_group_stacks_in_p757635_n788407_page16 [id*="press_alignment"]:first-child .press {
      /*  */
      border-top-left-radius: 4px;
      border-bottom-left-radius: 4px;
      /*  */ }
    #press_group_stacks_in_p757635_n788407_page16 [id*="press_alignment"]:last-child .press {
      /*  */
      margin-right: 0px !important;
      border-top-right-radius: 4px;
      border-bottom-right-radius: 4px;
      /*  */ }
@important "partials/maps";
.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; }
  .animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s; }

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom; }

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

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

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

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

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

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

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

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

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

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

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

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

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

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

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

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

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

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

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

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

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

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

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

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

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

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

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

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

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

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

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

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

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

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

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

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

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

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

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

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

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

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

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

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

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

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

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

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

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

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

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

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

@-webkit-keyframes hinge {
  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: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

@keyframes hinge {
  0% {
    -webkit-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: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

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

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

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

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

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

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

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

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

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

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

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

#stacks_out_p757635_n788401_page16 {
  padding: 20px 0px !important; }

#press_alignment_stacks_in_p757635_n788401_page16 {
  width: 100%; }
  #press_alignment_stacks_in_p757635_n788401_page16.press-left {
    text-align: left; }
  #press_alignment_stacks_in_p757635_n788401_page16.press-center {
    text-align: center; }
  #press_alignment_stacks_in_p757635_n788401_page16.press-right {
    text-align: right; }

#press_stacks_in_p757635_n788401_page16 {
  /*  */
  /*  */
  background: rgba(255, 0, 0, 0.70);
  /*  */
  /*  */
  /*  */
  /*  */
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*  */
  /*  */
  /*  */
  overflow: hidden;
  color: rgba(255, 255, 255, 1.00);
  margin: 10px 10px 10px 10px;
  padding: 12px 14px 12px 14px;
  border-radius: 10px 10px 10px 10px;
  cursor: pointer;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  text-decoration: none; }
  #press_stacks_in_p757635_n788401_page16:hover {
    /*  */
    /*  */
    /*  */
    /*  */ }
    #press_stacks_in_p757635_n788401_page16:hover .press-icon i {
      /*  */ }
  #press_stacks_in_p757635_n788401_page16:active {
    /*  */
    /*  */
    /*  */
    /*  */ }
    #press_stacks_in_p757635_n788401_page16:active .press-icon i {
      /*  */ }
  #press_stacks_in_p757635_n788401_page16 .press-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*  */
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    /*  */
    /*  */
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding: 0px 0px 0px 5px;
    border-radius: 0px 0px 0px 0px;
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    width: 30px;
    height: 30px;
    /*  */ }
    #press_stacks_in_p757635_n788401_page16 .press-icon i {
      font-size: 30px;
      color: rgba(255, 255, 255, 1.00);
      vertical-align: middle; }
  #press_stacks_in_p757635_n788401_page16 .press-text {
    /*  */
    /*  */
    /*  */
    font-family: "Nunito";
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 16px;
    padding: 0px 0px 0px 0px;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    line-height: 22px;
    /*  */
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    /*  */
    /*  */ }
    #press_stacks_in_p757635_n788401_page16 .press-text .out {
      margin: 0 !important; }

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga'; }
@important "partials/maps";
.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; }
  .animated.flipOutX, .animated.flipOutY, .animated.bounceIn, .animated.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s; }

@-webkit-keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  40%, 43% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0); }
  70% {
    -webkit-animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0); }
  90% {
    -webkit-transform: translate3d(0, -4px, 0);
    transform: translate3d(0, -4px, 0); } }

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-transform-origin: center bottom;
  transform-origin: center bottom; }

@-webkit-keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

@keyframes flash {
  from, 50%, to {
    opacity: 1; }
  25%, 75% {
    opacity: 0; } }

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes pulse {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

@-webkit-keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes rubberBand {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1); }
  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1); }
  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1); }
  65% {
    -webkit-transform: scale3d(0.95, 1.05, 1);
    transform: scale3d(0.95, 1.05, 1); }
  75% {
    -webkit-transform: scale3d(1.05, 0.95, 1);
    transform: scale3d(1.05, 0.95, 1); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

@-webkit-keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); } }

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

@-webkit-keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

@keyframes headShake {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  6.5% {
    -webkit-transform: translateX(-6px) rotateY(-9deg);
    transform: translateX(-6px) rotateY(-9deg); }
  18.5% {
    -webkit-transform: translateX(5px) rotateY(7deg);
    transform: translateX(5px) rotateY(7deg); }
  31.5% {
    -webkit-transform: translateX(-3px) rotateY(-5deg);
    transform: translateX(-3px) rotateY(-5deg); }
  43.5% {
    -webkit-transform: translateX(2px) rotateY(3deg);
    transform: translateX(2px) rotateY(3deg); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); } }

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg); }
  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg); }
  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg); }
  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg); }
  to {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg); } }

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

@-webkit-keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes tada {
  from {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); }
  10%, 20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg); }
  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg); }
  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg); }
  to {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes wobble {
  from {
    -webkit-transform: none;
    transform: none; }
  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg); }
  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg); }
  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg); }
  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg); }
  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

@keyframes jello {
  from, 11.1%, to {
    -webkit-transform: none;
    transform: none; }
  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
    transform: skewX(-12.5deg) skewY(-12.5deg); }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
    transform: skewX(6.25deg) skewY(6.25deg); }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
    transform: skewX(-3.125deg) skewY(-3.125deg); }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
    transform: skewX(1.5625deg) skewY(1.5625deg); }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
    transform: skewX(-0.78125deg) skewY(-0.78125deg); }
  77.7% {
    -webkit-transform: skewX(0.39063deg) skewY(0.39063deg);
    transform: skewX(0.39063deg) skewY(0.39063deg); }
  88.8% {
    -webkit-transform: skewX(-0.19531deg) skewY(-0.19531deg);
    transform: skewX(-0.19531deg) skewY(-0.19531deg); } }

.jello {
  -webkit-animation-name: jello;
  animation-name: jello;
  -webkit-transform-origin: center;
  transform-origin: center; }

@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  40% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03); }
  80% {
    -webkit-transform: scale3d(0.97, 0.97, 0.97);
    transform: scale3d(0.97, 0.97, 0.97); }
  to {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1); } }

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

@-webkit-keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0); }
  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0); }
  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0); }
  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0); }
  to {
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0); }
  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0); }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(0.9, 0.9, 0.9);
    transform: scale3d(0.9, 0.9, 0.9); }
  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); } }

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

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

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

@-webkit-keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(20px, 0, 0);
    transform: translate3d(20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

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

@-webkit-keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes bounceOutRight {
  20% {
    opacity: 1;
    -webkit-transform: translate3d(-20px, 0, 0);
    transform: translate3d(-20px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0); }
  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0); }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

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

@-webkit-keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

@keyframes fadeIn {
  from {
    opacity: 0; }
  to {
    opacity: 1; } }

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

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInDownBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

@-webkit-keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

@keyframes fadeOut {
  from {
    opacity: 1; }
  to {
    opacity: 0; } }

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

@-webkit-keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes fadeOutDown {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

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

@-webkit-keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

@keyframes fadeOutDownBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, 2000px, 0);
    transform: translate3d(0, 2000px, 0); } }

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

@-webkit-keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes fadeOutLeft {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

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

@-webkit-keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

@keyframes fadeOutLeftBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(-2000px, 0, 0);
    transform: translate3d(-2000px, 0, 0); } }

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

@-webkit-keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes fadeOutRight {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

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

@-webkit-keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

@keyframes fadeOutRightBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(2000px, 0, 0);
    transform: translate3d(2000px, 0, 0); } }

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

@-webkit-keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes fadeOutUp {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

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

@-webkit-keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

@keyframes fadeOutUpBig {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(0, -2000px, 0);
    transform: translate3d(0, -2000px, 0); } }

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

@-webkit-keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

@keyframes flip {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }
  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  80% {
    -webkit-transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; } }

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

@-webkit-keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInX {
  from {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

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

@-webkit-keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

@keyframes flipInY {
  from {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
    opacity: 0; }
  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }
  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1; }
  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg); }
  to {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); } }

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

@-webkit-keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutX {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0; } }

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

@-webkit-keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

@keyframes flipOutY {
  from {
    -webkit-transform: perspective(400px);
    transform: perspective(400px); }
  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1; }
  to {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0; } }

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

@-webkit-keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes lightSpeedIn {
  from {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0; }
  60% {
    -webkit-transform: skewX(20deg);
    transform: skewX(20deg);
    opacity: 1; }
  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1; }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

@-webkit-keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

@keyframes lightSpeedOut {
  from {
    opacity: 1; }
  to {
    -webkit-transform: translate3d(100%, 0, 0) skewX(30deg);
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0; } }

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

@-webkit-keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateIn {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, -200deg);
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

@-webkit-keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

@-webkit-keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

@-webkit-keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

@-webkit-keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

@keyframes rotateInUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -90deg);
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1; } }

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

@-webkit-keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

@keyframes rotateOut {
  from {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1; }
  to {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: rotate3d(0, 0, 1, 200deg);
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0; } }

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

@-webkit-keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

@keyframes rotateOutDownLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0; } }

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

@-webkit-keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutDownRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

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

@-webkit-keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

@keyframes rotateOutUpLeft {
  from {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0; } }

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

@-webkit-keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

@keyframes rotateOutUpRight {
  from {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1; }
  to {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0; } }

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

@-webkit-keyframes hinge {
  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: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

@keyframes hinge {
  0% {
    -webkit-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: rotate3d(0, 0, 1, 80deg);
    transform: rotate3d(0, 0, 1, 80deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out; }
  40%, 80% {
    -webkit-transform: rotate3d(0, 0, 1, 60deg);
    transform: rotate3d(0, 0, 1, 60deg);
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    opacity: 1; }
  to {
    -webkit-transform: translate3d(0, 700px, 0);
    transform: translate3d(0, 700px, 0);
    opacity: 0; } }

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

@keyframes rollIn {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg); }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

@keyframes rollOut {
  from {
    opacity: 1; }
  to {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg); } }

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

@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  50% {
    opacity: 1; } }

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

@-webkit-keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInDown {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInLeft {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInRight {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomInUp {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  60% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

@keyframes zoomOut {
  from {
    opacity: 1; }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3); }
  to {
    opacity: 0; } }

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    -webkit-transform-origin: left center;
    transform-origin: left center; } }

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0); }
  to {
    opacity: 0;
    -webkit-transform: scale(0.1) translate3d(2000px, 0, 0);
    transform: scale(0.1) translate3d(2000px, 0, 0);
    -webkit-transform-origin: right center;
    transform-origin: right center; } }

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
  to {
    opacity: 0;
    -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1); } }

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

@-webkit-keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInDown {
  from {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInLeft {
  from {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInRight {
  from {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

@keyframes slideInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible; }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); } }

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

@-webkit-keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

@keyframes slideOutDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0); } }

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

@-webkit-keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

@keyframes slideOutLeft {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0); } }

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

@-webkit-keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

@keyframes slideOutRight {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0); } }

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

@-webkit-keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

@keyframes slideOutUp {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }
  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0); } }

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

#stacks_out_p757635_n788405_page16 {
  padding: 20px 0px !important; }

#press_alignment_stacks_in_p757635_n788405_page16 {
  width: 100%; }
  #press_alignment_stacks_in_p757635_n788405_page16.press-left {
    text-align: left; }
  #press_alignment_stacks_in_p757635_n788405_page16.press-center {
    text-align: center; }
  #press_alignment_stacks_in_p757635_n788405_page16.press-right {
    text-align: right; }

#press_stacks_in_p757635_n788405_page16 {
  /*  */
  /*  */
  background: rgba(0, 0, 255, 0.70);
  /*  */
  /*  */
  /*  */
  /*  */
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  /*  */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /*  */
  /*  */
  /*  */
  overflow: hidden;
  color: rgba(255, 255, 255, 1.00);
  margin: 10px 10px 10px 10px;
  padding: 12px 14px 12px 14px;
  border-radius: 10px 10px 10px 10px;
  cursor: pointer;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  text-decoration: none; }
  #press_stacks_in_p757635_n788405_page16:hover {
    /*  */
    /*  */
    /*  */
    /*  */ }
    #press_stacks_in_p757635_n788405_page16:hover .press-icon i {
      /*  */ }
  #press_stacks_in_p757635_n788405_page16:active {
    /*  */
    /*  */
    /*  */
    /*  */ }
    #press_stacks_in_p757635_n788405_page16:active .press-icon i {
      /*  */ }
  #press_stacks_in_p757635_n788405_page16 .press-icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    /*  */
    /*  */
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    /*  */
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
    padding: 0px 0px 0px 0px;
    border-radius: 0px 0px 0px 0px;
    /*  */
    background: none;
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    margin-right: 8px;
    /*  */
    /*  */
    /*  */ }
    #press_stacks_in_p757635_n788405_page16 .press-icon i {
      font-size: 34px;
      color: rgba(255, 255, 255, 1.00);
      vertical-align: middle; }
  #press_stacks_in_p757635_n788405_page16 .press-text {
    /*  */
    /*  */
    /*  */
    font-family: "Nunito";
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    /*  */
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 16px;
    padding: 0px 0px 0px 0px;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    line-height: 22px;
    /*  */
    -webkit-box-flex: 0;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
    /*  */
    /*  */ }
    #press_stacks_in_p757635_n788405_page16 .press-text .out {
      margin: 0 !important; }

.material-icons {
  font-family: 'Material Icons';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  line-height: 1;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  /* Support for all WebKit browsers. */
  -webkit-font-smoothing: antialiased;
  /* Support for Safari and Chrome. */
  text-rendering: optimizeLegibility;
  /* Support for Firefox. */
  -moz-osx-font-smoothing: grayscale;
  /* Support for IE. */
  -webkit-font-feature-settings: 'liga';
          font-feature-settings: 'liga'; }
.customiser-warning{display:none}



.theme-warning{
	text-align: center;
	width: 50%;
	top: 0;
	margin: 100px auto;
	padding: 20px;
	background: red;
	color: white;
	z-index:1000
}

 

.stacks_top.loaded,
.uikit-main.loaded{
	opacity:1!important
}

.image-right{float:right;padding-left:20px;padding-bottom:20px}
.image-left{float:left;padding-right:20px;padding-bottom:20px}

@media(max-width:320px){
	.image-right,.image-left{float:none;padding-left:0;padding-right:0}
}

@media(min-width:767px){
	.uk-navbar-brand{padding:0;margin-left:0}
}

em{color:rgba(68, 68, 68, 1.00)}
code{color:rgba(221, 0, 85, 1.00)!important}


.uk-container{
	max-width:960px
}

@media(min-width:1220px){
	.uk-container{max-width:1060px}
}

 

html,body{
	color:#242424;
	background:#FFFFFF
}

hr{border-top-color:#DDDDDD}

.uk-nav-divider{
	border-color:#DDDDDD!important
}

.uk-grid-divider>[class*='uk-width-medium-']:not(.uk-width-medium-1-1):nth-child(n+2){
	border-left-color:#DDDDDD!important
}

.uk-subnav-line>:nth-child(n+2):before{
	border-left-color:#DDDDDD
}

html{color:#242424}

h1,.uk-h1{
	color:rgba(68, 68, 68, 1.00);
	font-weight: normal;
}

h2,h3,h4,h5,h6,
.uk-h2,.uk-h3,.uk-h4,.uk-h5,.uk-h6{
	color:rgba(68, 68, 68, 1.00);
	font-weight: normal;
}

a,.uk-link{
	color:rgba(0, 119, 221, 1.00)
}

a:hover,a.active:hover,.uk-link:hover{
	color:rgba(68, 68, 68, 1.00)
}

a,.uk-link,.uk-button-link{
	text-decoration:none
}

a:hover,.uk-link:hover,.uk-button-link:hover{
	text-decoration:none
}

.uk-button,.uk-button:visited{background-color:rgba(238, 238, 238, 1.00);color:rgba(68, 68, 68, 1.00)}
.uk-button:hover,.uk-button:focus{background-color:rgba(245, 245, 245, 1.00);color:rgba(68, 68, 68, 1.00)}
.uk-button-primary,.uk-button-primary:visited{background-color:rgba(0, 168, 230, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-primary:hover,.uk-button-primary:focus{background-color:rgba(53, 179, 238, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-success,.uk-button-success:visited{background-color:rgba(140, 193, 76, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-success:hover,.uk-button-success:focus{background-color:rgba(142, 199, 59, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-danger,.uk-button-danger:visited{background-color:rgba(218, 49, 75, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-danger:hover,.uk-button-danger:focus{background-color:rgba(228, 53, 79, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-link,.uk-button-link:visited{color:rgba(68, 68, 68, 1.00); background-color: transparent;}
.uk-button-link:hover,.uk-button-link:focus{color:rgba(204, 204, 204, 1.00); background-color: transparent;}

.uk-navbar-content .uk-button-primary,
.uk-navbar-content .uk-button-primary:visited{background-color:rgba(0, 168, 230, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-primary:hover,
.uk-navbar-content .uk-button-primary:focus{background-color:rgba(53, 179, 238, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-success,
.uk-navbar-content .uk-button-success:visited{background-color:rgba(140, 193, 76, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-success:hover,
.uk-navbar-content .uk-button-success:focus{background-color:rgba(142, 199, 59, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-danger,
.uk-navbar-content .uk-button-danger:visited{background-color:rgba(218, 49, 75, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-danger:hover,
.uk-navbar-content .uk-button-danger:focus{background-color:rgba(228, 53, 79, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-link,
.uk-navbar-content .uk-button-link:visited{color:rgba(68, 68, 68, 1.00)!important}
.uk-navbar-content .uk-button-link:hover,
.uk-navbar-content .uk-button-link:focus{color:rgba(204, 204, 204, 1.00)!important}

h1,.h1-family{font-family:Tahoma, Geneva, sans-serif}

h2,h3,h4,h5,h6,.headings-family, 
.uk-navbar-nav>*>*, 
.uk-offcanvas-bar>*>*,
::-webkit-input-placeholder{font-family:Tahoma, Geneva, sans-serif!important}

::-ms-input-placeholder{font-family: Tahoma, Geneva, sans-serif!important}
::-moz-placeholder{font-family: Tahoma, Geneva, sans-serif!important}

body,.body-family{font-family:Verdana, Geneva, sans-serif}
h1,.uk-h1{font-size:36px;line-height:42px}
h2,.uk-h2{font-size:24px;line-height:30px}
h3,.uk-h3{font-size:18px;line-height:24px}
h4,.uk-h4{font-size:16px;line-height:22px}
h5,.uk-h5{font-size:14px;line-height:20px}
h6,.uk-h6{font-size:12px;line-height:18px}
html{font-size:14px;line-height:20px}

 

.uk-panel>h3,.uk-panel:hover>h3{background:transparent}
.uk-block-default,.uk-panel-box-default{color:rgba(68, 68, 68, 1.00)!important;background:rgba(255, 255, 255, 1.00)}
.uk-subnav.default-scheme>*>*{color:rgba(68, 68, 68, 1.00)}
.uk-subnav.default-scheme>*>a:hover,.uk-subnav.default-scheme>*>a:focus{color:rgba(234, 234, 234, 1.00)}
.uk-subnav.default-scheme>.uk-active>*{color:rgba(59, 167, 212, 1.00)}
.uk-block-primary,.uk-panel-box-primary{color:rgba(255, 255, 255, 1.00)!important;background:rgba(0, 168, 230, 1.00)}
.uk-subnav.primary-scheme>*>*{color:rgba(255, 255, 255, 1.00)}
.uk-subnav.primary-scheme>*>a:hover,.uk-subnav.primary-scheme>*>a:focus{color:rgba(204, 204, 204, 0.60)}
.uk-subnav.primary-scheme>.uk-active>*{color:rgba(59, 167, 212, 1.00)}

.uk-block-secondary,.uk-panel-box-secondary{color:rgba(255, 255, 255, 1.00)!important;background:rgba(34, 34, 34, 1.00)}
.uk-subnav.secondary-scheme>*>*{color:rgba(255, 255, 255, 1.00)}
.uk-subnav.secondary-scheme>*>a:hover,.uk-subnav.secondary-scheme>*>a:focus{color:rgba(234, 234, 234, 1.00)}
.uk-subnav.secondary-scheme>.uk-active>*{color:rgba(59, 167, 212, 1.00)}
.uk-block-muted{color:rgba(68, 68, 68, 1.00)!important;background:rgba(249, 249, 249, 1.00)}
.uk-subnav>.uk-disabled>*{color:rgba(68, 68, 68, 1.00)!important}

.uk-subnav .body-family > * > *{
	font-family: Verdana, Geneva, sans-serif!important;
}
.uk-subnav .headings-family > * > *{
	font-family: Tahoma, Geneva, sans-serif!important;
}
#stacks_in_818047_page16 {
	background-color: rgba(204, 204, 204, 0.75);
	margin: 100px 0px 0px 0px;
	padding: 0px 75px 0px 75px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_818049_page16Calligrapher{			font-size: 125% !important;			color: #333333 !important;			font-weight:   normal !important;			font-style: normal !important;			line-height: 1.2em !important;			font-variant: normal !important;			letter-spacing: 0px !important;			word-spacing: 0 !important;			text-indent:none;			text-align: center !important;		}				.stacks_in_818049_page16Calligrapher h1{			font-size: 2em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_818049_page16Calligrapher h2{			font-size: 1.7em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_818049_page16Calligrapher h3{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_818049_page16Calligrapher h4{			font-size: 1.5em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_818049_page16Calligrapher h5{			font-size: 1.3em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_818049_page16Calligrapher h6{			font-size: 1.1em !important;			line-height: normal;			font-weight: bold !important;		}		.stacks_in_818049_page16Calligrapher h6, .stacks_in_818049_page16Calligrapher h5, .stacks_in_818049_page16Calligrapher h4, .stacks_in_818049_page16Calligrapher h3, .stacks_in_818049_page16Calligrapher h2, .stacks_in_818049_page16Calligrapher h1{			color: #333333 !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_818049_page16Calligrapher, .stacks_in_818049_page16Calligrapher h1, .stacks_in_818049_page16Calligrapher h2, .stacks_in_818049_page16Calligrapher h3, .stacks_in_818049_page16Calligrapher h4, .stacks_in_818049_page16Calligrapher h5, .stacks_in_818049_page16Calligrapher h6{	font-family: "Muli" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_818049_page16targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- */		.stacks_in_818049_page16Calligrapher a:link{			color: #124A7A !important;			text-decoration: none !important;		}				.stacks_in_818049_page16Calligrapher a:visited{			color: #124A7A !important;		}				.stacks_in_818049_page16Calligrapher a:active{			color: #124A7A !important;		}				.stacks_in_818049_page16Calligrapher a:hover{			color: #1C72BD !important;			text-decoration: underline !important;		}/* End Calligrapher stack CSS code */
#stacks_in_818049_page16 {
	background-color: rgba(255, 255, 255, 0.00);
}

#stacks_in_818051_page16 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_818051_page16 .pullquote:before, #stacks_in_818051_page16 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_818051_page16 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_818051_page16 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_818051_page16 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_818051_page16 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_818051_page16 {
	margin: 0px 40px 0px 10px;
	padding: 0px 15px 0px 15px;
}

#stacks_in_818052_page16 {
	display:inline-block; width:100%; line-height: 1.520000em;
	font-size: 131%;
	font-weight: lighter;
}

#stacks_in_1100087_page16 .pullquote {
font-size:1.25em;
display:block;

padding:2.5em 0.5em;

font-style:italic;
}


#stacks_in_1100087_page16 .pullquote:before, #stacks_in_1100087_page16 .pullquote:after {
display:block;
position:relative;
font-size:100px;
line-height:0px;
overflow:display;
text-align:left;
font-style:normal;
opacity:0.25;
}
	
#stacks_in_1100087_page16 .pullquote:before {
content:"\201C";
top:5px;
left:-5px;
}
	
#stacks_in_1100087_page16 .pullquote:after {
content:"\201D";
bottom:-40px;
right:-5px;
text-align:right;
}


#stacks_in_1100087_page16 .pullquote-source {
font-size:0.65em;
text-align:right;
font-style:normal;
}

#stacks_in_1100087_page16 .pullquote-source:before {
	content:"\2014\200A";
	font-style:normal;
}
#stacks_in_1100087_page16 {
	margin: 0px 40px 0px 10px;
	padding: 0px 15px 0px 15px;
}

#stacks_in_1100088_page16 {
	display:inline-block; width:100%; line-height: 1.520000em;
	font-size: 131%;
	font-weight: lighter;
}

#stacks_in_912695_page16 {
	padding: 0px 0px 20px 0px;
}
/*! UIkit 2.26.3 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
[data-uk-sticky].uk-active{z-index:980;box-sizing:border-box}[data-uk-sticky][class*=uk-animation-]{-webkit-animation-duration:.2s;animation-duration:.2s}[data-uk-sticky].uk-animation-reverse{-webkit-animation-duration:.2s;animation-duration:.2s}.styles-warning{
	text-align: center;
	width: 50%;
	top: 0;
	margin: 100px auto;
	padding: 20px;
	background: red;
	color: white;
}

.uikit-sticky_stacks_in_p757636_n755255_page16{z-index: 1;}

.customiser-warning{display:none}



.theme-warning{
	text-align: center;
	width: 50%;
	top: 0;
	margin: 100px auto;
	padding: 20px;
	background: red;
	color: white;
	z-index:1000
}

 

.stacks_top.loaded,
.uikit-main.loaded{
	opacity:1!important
}

.image-right{float:right;padding-left:20px;padding-bottom:20px}
.image-left{float:left;padding-right:20px;padding-bottom:20px}

@media(max-width:320px){
	.image-right,.image-left{float:none;padding-left:0;padding-right:0}
}

@media(min-width:767px){
	.uk-navbar-brand{padding:0;margin-left:0}
}

em{color:rgba(68, 68, 68, 1.00)}
code{color:rgba(221, 0, 85, 1.00)!important}


.uk-container{
	max-width:960px
}

@media(min-width:1220px){
	.uk-container{max-width:1060px}
}

 

html,body{
	color:#242424;
	background:#FFFFFF
}

hr{border-top-color:#DDDDDD}

.uk-nav-divider{
	border-color:#DDDDDD!important
}

.uk-grid-divider>[class*='uk-width-medium-']:not(.uk-width-medium-1-1):nth-child(n+2){
	border-left-color:#DDDDDD!important
}

.uk-subnav-line>:nth-child(n+2):before{
	border-left-color:#DDDDDD
}

html{color:#242424}

h1,.uk-h1{
	color:rgba(68, 68, 68, 1.00);
	font-weight: bold;
}

h2,h3,h4,h5,h6,
.uk-h2,.uk-h3,.uk-h4,.uk-h5,.uk-h6{
	color:rgba(68, 68, 68, 1.00);
	font-weight: bold;
}

a,.uk-link{
	color:rgba(0, 153, 204, 1.00)
}

a:hover,a.active:hover,.uk-link:hover{
	color:rgba(68, 68, 68, 1.00)
}

a,.uk-link,.uk-button-link{
	text-decoration:none
}

a:hover,.uk-link:hover,.uk-button-link:hover{
	text-decoration:none
}

.uk-button,.uk-button:visited{background-color:rgba(238, 238, 238, 1.00);color:rgba(68, 68, 68, 1.00)}
.uk-button:hover,.uk-button:focus{background-color:rgba(245, 245, 245, 1.00);color:rgba(68, 68, 68, 1.00)}
.uk-button-primary,.uk-button-primary:visited{background-color:rgba(0, 168, 230, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-primary:hover,.uk-button-primary:focus{background-color:rgba(53, 179, 238, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-success,.uk-button-success:visited{background-color:rgba(140, 193, 76, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-success:hover,.uk-button-success:focus{background-color:rgba(142, 199, 59, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-danger,.uk-button-danger:visited{background-color:rgba(233, 177, 78, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-danger:hover,.uk-button-danger:focus{background-color:rgba(228, 53, 79, 1.00);color:rgba(255, 255, 255, 1.00)}
.uk-button-link,.uk-button-link:visited{color:rgba(68, 68, 68, 1.00); background-color: transparent;}
.uk-button-link:hover,.uk-button-link:focus{color:rgba(204, 204, 204, 1.00); background-color: transparent;}

.uk-navbar-content .uk-button-primary,
.uk-navbar-content .uk-button-primary:visited{background-color:rgba(0, 168, 230, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-primary:hover,
.uk-navbar-content .uk-button-primary:focus{background-color:rgba(53, 179, 238, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-success,
.uk-navbar-content .uk-button-success:visited{background-color:rgba(140, 193, 76, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-success:hover,
.uk-navbar-content .uk-button-success:focus{background-color:rgba(142, 199, 59, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-danger,
.uk-navbar-content .uk-button-danger:visited{background-color:rgba(233, 177, 78, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-danger:hover,
.uk-navbar-content .uk-button-danger:focus{background-color:rgba(228, 53, 79, 1.00);color:rgba(255, 255, 255, 1.00)!important}
.uk-navbar-content .uk-button-link,
.uk-navbar-content .uk-button-link:visited{color:rgba(68, 68, 68, 1.00)!important}
.uk-navbar-content .uk-button-link:hover,
.uk-navbar-content .uk-button-link:focus{color:rgba(204, 204, 204, 1.00)!important}

h1,.h1-family{}

h2,h3,h4,h5,h6,.headings-family, 
.uk-navbar-nav>*>*, 
.uk-offcanvas-bar>*>*,
::-webkit-input-placeholder{}

::-ms-input-placeholder{}
::-moz-placeholder{}

body,.body-family{}
h1,.uk-h1{font-size:36px;line-height:42px}
h2,.uk-h2{font-size:24px;line-height:30px}
h3,.uk-h3{font-size:18px;line-height:24px}
h4,.uk-h4{font-size:16px;line-height:22px}
h5,.uk-h5{font-size:14px;line-height:20px}
h6,.uk-h6{font-size:12px;line-height:18px}
html{font-size:14px;line-height:20px}

 

.uk-panel>h3,.uk-panel:hover>h3{background:transparent}
.uk-block-default,.uk-panel-box-default{color:rgba(68, 68, 68, 1.00)!important;background:rgba(255, 255, 255, 1.00)}
.uk-subnav.default-scheme>*>*{color:rgba(68, 68, 68, 1.00)}
.uk-subnav.default-scheme>*>a:hover,.uk-subnav.default-scheme>*>a:focus{color:rgba(234, 234, 234, 1.00)}
.uk-subnav.default-scheme>.uk-active>*{color:rgba(59, 167, 212, 1.00)}
.uk-block-primary,.uk-panel-box-primary{color:rgba(0, 0, 0, 1.00)!important;background:rgba(0, 168, 230, 1.00)}
.uk-subnav.primary-scheme>*>*{color:rgba(0, 0, 0, 1.00)}
.uk-subnav.primary-scheme>*>a:hover,.uk-subnav.primary-scheme>*>a:focus{color:rgba(234, 234, 234, 1.00)}
.uk-subnav.primary-scheme>.uk-active>*{color:rgba(59, 167, 212, 1.00)}

.uk-block-secondary,.uk-panel-box-secondary{color:rgba(255, 204, 51, 1.00)!important;background:rgba(34, 34, 34, 1.00)}
.uk-subnav.secondary-scheme>*>*{color:rgba(255, 204, 51, 1.00)}
.uk-subnav.secondary-scheme>*>a:hover,.uk-subnav.secondary-scheme>*>a:focus{color:rgba(234, 234, 234, 1.00)}
.uk-subnav.secondary-scheme>.uk-active>*{color:rgba(59, 167, 212, 1.00)}
.uk-block-muted{color:rgba(68, 68, 68, 1.00)!important;background:rgba(249, 249, 249, 1.00)}
.uk-subnav>.uk-disabled>*{color:rgba(68, 68, 68, 1.00)!important}

.uk-subnav .body-family > * > *{
	font-family: custom!important;
}
.uk-subnav .headings-family > * > *{
	font-family: custom!important;
}#stacks_in_p757636_n755257_page16{overflow:visible}



	










.uk-navbar-brand{
	min-height: 60px;
}

.tm-title{
	font-size: 24px;
}

.tm-logo img{
	max-height: 60px;
	width: auto
}

.uk-navbar-nav > li > a,
.uk-navbar-toggle{
	margin: 10px 0;
}

.uk-navbar-content{
margin-top: 10px;
}

.uk-navbar-center{
margin-top: -18px
}








/*begin*/
/*colors*/
.tm-title{
	color: rgba(68, 68, 68, 1.00);
}

.tm-title:hover{
	color: rgba(238, 238, 238, 1.00);
}

.tm-slogan{
	color: #444444;
}

/*background bg*/
.uk-navbar {
  background: rgba(0, 153, 204, 0.90);
  
}

/*dropdown bg*/
.uk-dropdown-navbar {
  background: rgba(238, 238, 238, 1.00)!important;
}

/*normal item*/
.uk-navbar-nav > li > a{
	color: #444444;
}

.uk-navbar-content a:link,
.uk-navbar-content a:visited{
	color: #444444;
}

/*top items hover*/
.uk-navbar-nav > li:hover > a,
.uk-navbar-nav > li > a:focus,
.uk-navbar-nav > li.uk-open > a{
	color: rgba(68, 68, 68, 1.00);
    background: rgba(245, 245, 245, 1.00);
    
}

.uk-navbar-content a:hover{
	color: rgba(68, 68, 68, 1.00)!important;
}

/*active*/
.uk-navbar-nav > li.uk-active > a,
.uk-dropdown-navbar li.uk-active > a {
	color: rgba(68, 68, 68, 1.00)!important;
    background-color: rgba(245, 245, 245, 1.00);
    
}

/*dropdown*/
.uk-dropdown-navbar li > a{
	color: #444444;
}

.uk-dropdown-navbar li > a:hover {
	color: #FFFFFF;
	background: #00A8E6;
}

/*dropdown border option*/


/*parent header*/
.uk-nav-header{
	color: #444444!important;
}

/*dividers*/
.uk-dropdown-grid .uk-width-1-2,
.uk-dropdown-grid .uk-width-1-3, 
.uk-nav-divider {
	border-color:#CCCCCC!important;
}

/*toggles*/
.uk-navbar-toggle{
	color: rgba(68, 68, 68, 1.00);
}

.uk-navbar-toggle:hover{
	color: rgba(68, 68, 68, 1.00);
}

/*search*/
.uk-shownoitems .uk-dropdown {width: 100%}
.uk-shownoitems .uk-dropdown:empty:before {
	content: "No results found";
}

.uk-navbar-content .uk-search-field {
	color: rgba(68, 68, 68, 1.00)!important;
}

.uk-navbar-content .uk-search:before{
	color: rgba(68, 68, 68, 1.00)!important;
}

/*I know but leave it this way!*/
#stacks_in_p757636_n755257_page16 ::-webkit-input-placeholder{color: #444444!important;} 
#stacks_in_p757636_n755257_page16 ::-ms-input-placeholder{color: #444444!important;} 
#stacks_in_p757636_n755257_page16 ::-moz-placeholder{color: #444444!important;} 
#stacks_in_p757636_n755257_page16 input:-moz-placeholder{color: #444444!important;} 


.uk-navbar-content .uk-dropdown-search{
	background: transparent!important;
}

.uk-navbar-content .uk-dropdown-search  {
	color: #444444!important;
}

.uk-autocomplete-results > li > a,
.uk-navbar-content .uk-dropdown-search {
	color: #444444!important;
	background: #00A8E6!important;
}

.uk-autocomplete-results > li.uk-active > a:hover {
	color: #FFFFFF!important;
	background: #00A8E6!important;
}

.uk-autocomplete-results .tm-search-title{
	color:rgba(68, 68, 68, 1.00)!important;
}

.uk-autocomplete-results{margin-top: -15px!important;}
.uk-autocomplete-results li{margin-top: -20px!important; padding-top: 15px!important;}
.uk-autocomplete-results li{margin-bottom: 10px}

/*end*//*! UIkit 2.26.2 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-autocomplete{display:inline-block;position:relative;max-width:100%;vertical-align:middle}.uk-dropdown-flip{left:auto;right:0}.uk-nav-autocomplete>li>a{color:#444}.uk-nav-autocomplete>li.uk-active>a{background:#00a8e6;color:#fff;outline:0}.uk-nav-autocomplete .uk-nav-header{color:#999}.uk-nav-autocomplete .uk-nav-divider{border-top:1px solid #ddd}/*! UIkit 2.26.2 | http://www.getuikit.com | (c) 2014 YOOtheme | MIT License */
.uk-search{display:inline-block;position:relative;margin:0}.uk-search:before{content:"\f002";position:absolute;top:0;left:0;width:30px;line-height:30px;text-align:center;font-family:FontAwesome;font-size:14px;color:rgba(0,0,0,.2)}.uk-search-field::-moz-focus-inner{border:0;padding:0}.uk-search-field::-webkit-search-cancel-button,.uk-search-field::-webkit-search-decoration{-webkit-appearance:none}.uk-search-field::-ms-clear{display:none}.uk-search-field::-moz-placeholder{opacity:1}.uk-search-field{box-sizing:border-box;margin:0;border-radius:0;font:inherit;color:#444;-webkit-appearance:none;width:120px;height:30px;padding:0 0 0 30px;border:1px solid transparent;background:transparent;-webkit-transition:all linear .2s;transition:all linear .2s;vertical-align:middle}.uk-search-field:-ms-input-placeholder{color:#999!important}.uk-search-field::-moz-placeholder{color:#999}.uk-search-field::-webkit-input-placeholder{color:#999}.uk-search-field:focus{outline:0}.uk-search-field:focus,.uk-search.uk-active .uk-search-field{width:180px}.uk-dropdown-search{width:300px;margin-top:0;background:#f5f5f5;color:#444}.uk-open>.uk-dropdown-search{-webkit-animation:uk-slide-top-fixed .2s ease-in-out;animation:uk-slide-top-fixed .2s ease-in-out}.uk-navbar-flip .uk-dropdown-search{margin-top:5px;margin-right:-15px}.uk-nav-search>li>a{color:#444}.uk-nav-search>li.uk-active>a{background:#00a8e6;color:#fff;outline:0}.uk-nav-search .uk-nav-header{color:#999}.uk-nav-search .uk-nav-divider{border-top:1px solid #ddd}.uk-nav-search ul a{color:#07d}.uk-nav-search ul a:hover{color:#059}.uk-offcanvas .uk-search{display:block;margin:20px 15px}.uk-offcanvas .uk-search:before{color:#777}.uk-offcanvas .uk-search-field{width:100%;border-color:transparent;background:#1a1a1a;color:#ccc}.uk-offcanvas .uk-search-field:-ms-input-placeholder{color:#777!important}.uk-offcanvas .uk-search-field::-moz-placeholder{color:#777}.uk-offcanvas .uk-search-field::-webkit-input-placeholder{color:#777}#stacks_in_p757636_n755257_page16{overflow:visible}#stacks_in_p757636_n856987_page16{overflow:visible}



.uk-nav-offcanvas ul > li > a {
  padding: 5px 20px;
}

.uk-nav-offcanvas ul li{
	margin-left: -15px;
}

/*offcanvasbg*/
.uk-offcanvas-bar{
	background: rgba(0, 0, 0, 1.00);
}

.uk-nav-offcanvas li {
border-bottom: 1px solid #222222;
}

.uk-nav-offcanvas > li li{
border: none!important;
}

.uk-offcanvas-bar ul > li > a:link,
.uk-offcanvas-bar ul > li > a:visited{
color: rgba(255, 255, 255, 1.00);
background: rgba(0, 0, 0, 1.00)!important;
}

html:not(.uk-touch) .uk-offcanvas-bar ul > li > a:hover{
color: rgba(255, 255, 255, 1.00)!important;
background: rgba(68, 68, 68, 1.00)!important
}

.uk-offcanvas-bar ul > li.uk-active > a{
color: rgba(255, 255, 255, 1.00)!important;
background: rgba(0, 0, 0, 1.00)!important
}

/*offcanvas alt*/
.uk-icon-close{
	padding: 15px;
	color: rgba(255, 255, 255, 1.00);
}

.uk-icon-close:hover{
	color: rgba(255, 255, 255, 1.00);
}

/*offcanvas text*/
.uikit-offcanvas-top,
.uikit-offcanvas-middle,
.uikit-offcanvas-bottom{
	color: rgba(255, 255, 255, 1.00);
}

.uikit-offcanvas-top a:link, .uikit-offcanvas-top a:visited, 
.uikit-offcanvas-middle a:link, .uikit-offcanvas-middle a:visited,
.uikit-offcanvas-bottom a:link, .uikit-offcanvas-bottom a:visited {
	color: rgba(255, 255, 255, 1.00);
}

html:not(.uk-touch) .uikit-offcanvas-top a:hover, 
html:not(.uk-touch) .uikit-offcanvas-middle a:hover,
html:not(.uk-touch) .uikit-offcanvas-bottom a:hover{
	color: rgba(204, 204, 204, 1.00);
}



/*begin*/
#stacks_in_p757636_n857035_page16 h3{
	text-align: 3;
	
}
/*end*/
#stacks_in_p757636_n857035_page16 {
	margin: 20px 0px 0px 150px;
}
hr.solid{}

hr.dashed{
	border-style: dashed;
}

hr.dotted{
	border-style: dotted;
}

hr.double{
	border-style: double;
}


#stacks_in_818083_page16 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-weight: bolder;
}

#stacks_in_818084_page16 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-weight: bolder;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_p818082_n783843_page16Calligrapher{			line-height: normal !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_p818082_n783843_page16Calligrapher, .stacks_in_p818082_n783843_page16Calligrapher h1, .stacks_in_p818082_n783843_page16Calligrapher h2, .stacks_in_p818082_n783843_page16Calligrapher h3, .stacks_in_p818082_n783843_page16Calligrapher h4, .stacks_in_p818082_n783843_page16Calligrapher h5, .stacks_in_p818082_n783843_page16Calligrapher h6{	font-family: "Muli" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_p818082_n783843_page16targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- *//* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_p818082_n783845_page16x{	display: block !important;		text-align: center !important;		}@media (max-width:768px) {	.stacks_in_p818082_n783845_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_p818082_n783845_page16x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_p818082_n783845_page16 {
	background-color: rgba(204, 204, 204, 0.50);
	padding: 25px 10px 0px 10px;
}

#stacks_in_p818082_n783846_page16 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-weight: bolder;
}
/* Start dooHeader X stack CSS code */.stacks_in_p818082_n783847_page16x{	display: block !important;		text-align: center !important;		}@media (max-width:768px) {	.stacks_in_p818082_n783847_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_p818082_n783847_page16x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_p818082_n783847_page16 {
	background-color: rgba(204, 204, 204, 0.50);
	padding: 0px 10px 10px 10px;
}

#stacks_in_p818082_n783848_page16 {
	display:inline-block; width:100%; line-height: 1.500000em;
	font-weight: bolder;
}

#stacks_in_1014317_page16 {
	padding:  10px;
}
/* Marquee stack v1.1.0 */


body {
    -webkit-transform: translateZ(0);
}

#stacks_in_1014319_page16 {
    overflow: hidden;
}

#stacks_in_1014319_page16-marquee {
	-webkit-font-smoothing: antialiased;
	-webkit-backface-visibility: hidden;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;-webkit-line-clamp: 1;
    box-sizing: border-box;
	-webkit-animation: stacks_in_1014319_page16-marquee 13s linear infinite;
	   -moz-animation: stacks_in_1014319_page16-marquee 13s linear infinite;
	    -ms-animation: stacks_in_1014319_page16-marquee 13s linear infinite;
	     -o-animation: stacks_in_1014319_page16-marquee 13s linear infinite;
	        animation: stacks_in_1014319_page16-marquee 13s linear infinite;
}

#stacks_in_1014319_page16-marquee p {
	text-align: left !important;
}

#stacks_in_1014319_page16-marquee:hover {
	-webkit-animation-play-state: paused;
	   -moz-animation-play-state: paused;
	    -ms-animation-play-state: paused;
	     -o-animation-play-state: paused;
	        animation-play-state: paused;
}

@-webkit-keyframes stacks_in_1014319_page16-marquee {
    0%   { text-indent: 100% }
    100% { text-indent: -100% }
}

@-moz-keyframes stacks_in_1014319_page16-marquee {
    0%   { text-indent: 100% }
    100% { text-indent: -100% }
}

@-ms-keyframes stacks_in_1014319_page16-marquee {
    0%   { text-indent: 100% }
    100% { text-indent: -100% }
}

@-o-keyframes stacks_in_1014319_page16-marquee {
    0%   { text-indent: 100% }
    100% { text-indent: -100% }
}

@keyframes stacks_in_1014319_page16-marquee {
    0%   { text-indent: 100% }
    100% { text-indent: -100% }
}

/* End of Marquee stack */
#stacks_in_1014319_page16 {
	margin: 20px 0px 0px 0px;
}

#stacks_in_1014320_page16 {
	letter-spacing: 5px;
	font-size: 131%;
	font-weight: bolder;
}
/* Marquee stack v1.1.0 */


body {
    -webkit-transform: translateZ(0);
}

#stacks_in_1100079_page16 {
    overflow: hidden;
}

#stacks_in_1100079_page16-marquee {
	-webkit-font-smoothing: antialiased;
	-webkit-backface-visibility: hidden;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;-webkit-line-clamp: 1;
    box-sizing: border-box;
	-webkit-animation: stacks_in_1100079_page16-marquee 17s linear infinite;
	   -moz-animation: stacks_in_1100079_page16-marquee 17s linear infinite;
	    -ms-animation: stacks_in_1100079_page16-marquee 17s linear infinite;
	     -o-animation: stacks_in_1100079_page16-marquee 17s linear infinite;
	        animation: stacks_in_1100079_page16-marquee 17s linear infinite;
}

#stacks_in_1100079_page16-marquee p {
	text-align: left !important;
}

#stacks_in_1100079_page16-marquee:hover {
	-webkit-animation-play-state: paused;
	   -moz-animation-play-state: paused;
	    -ms-animation-play-state: paused;
	     -o-animation-play-state: paused;
	        animation-play-state: paused;
}

@-webkit-keyframes stacks_in_1100079_page16-marquee {
    0%   { text-indent: 100% }
    100% { text-indent: -100% }
}

@-moz-keyframes stacks_in_1100079_page16-marquee {
    0%   { text-indent: 100% }
    100% { text-indent: -100% }
}

@-ms-keyframes stacks_in_1100079_page16-marquee {
    0%   { text-indent: 100% }
    100% { text-indent: -100% }
}

@-o-keyframes stacks_in_1100079_page16-marquee {
    0%   { text-indent: 100% }
    100% { text-indent: -100% }
}

@keyframes stacks_in_1100079_page16-marquee {
    0%   { text-indent: 100% }
    100% { text-indent: -100% }
}

/* End of Marquee stack */
#stacks_in_1100079_page16 {
	margin: 20px 0px 0px 0px;
}

#stacks_in_1100080_page16 {
	letter-spacing: 5px;
	font-size: 131%;
	font-weight: bolder;
}
/* Marquee stack v1.1.0 */


body {
    -webkit-transform: translateZ(0);
}

#stacks_in_1100085_page16 {
    overflow: hidden;
}

#stacks_in_1100085_page16-marquee {
	-webkit-font-smoothing: antialiased;
	-webkit-backface-visibility: hidden;
    margin: 0 auto;
    overflow: hidden;
    white-space: nowrap;-webkit-line-clamp: 1;
    box-sizing: border-box;
	-webkit-animation: stacks_in_1100085_page16-marquee 13s linear infinite;
	   -moz-animation: stacks_in_1100085_page16-marquee 13s linear infinite;
	    -ms-animation: stacks_in_1100085_page16-marquee 13s linear infinite;
	     -o-animation: stacks_in_1100085_page16-marquee 13s linear infinite;
	        animation: stacks_in_1100085_page16-marquee 13s linear infinite;
}

#stacks_in_1100085_page16-marquee p {
	text-align: left !important;
}

#stacks_in_1100085_page16-marquee:hover {
	-webkit-animation-play-state: paused;
	   -moz-animation-play-state: paused;
	    -ms-animation-play-state: paused;
	     -o-animation-play-state: paused;
	        animation-play-state: paused;
}

@-webkit-keyframes stacks_in_1100085_page16-marquee {
    0%   { text-indent: 100% }
    100% { text-indent: -100% }
}

@-moz-keyframes stacks_in_1100085_page16-marquee {
    0%   { text-indent: 100% }
    100% { text-indent: -100% }
}

@-ms-keyframes stacks_in_1100085_page16-marquee {
    0%   { text-indent: 100% }
    100% { text-indent: -100% }
}

@-o-keyframes stacks_in_1100085_page16-marquee {
    0%   { text-indent: 100% }
    100% { text-indent: -100% }
}

@keyframes stacks_in_1100085_page16-marquee {
    0%   { text-indent: 100% }
    100% { text-indent: -100% }
}

/* End of Marquee stack */
#stacks_in_1100085_page16 {
	margin: 20px 0px 0px 0px;
}

#stacks_in_1100086_page16 {
	letter-spacing: 5px;
	font-size: 131%;
	font-weight: bolder;
}

/* START QUARENTINE CSS */





     
/* END QUARENTINE CSS */      

#stacks_in_818526_page16 {
	margin: 25px 0px 0px 0px;
}
/* Start dooHeader X stack CSS code */.stacks_in_818506_page16x{	display: block !important;		text-align: left !important;		}@media (max-width:768px) {	.stacks_in_818506_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_818506_page16x{		text-align: left !important;	}}/* End dooHeader X stack CSS code *//* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_1100092_page16Calligrapher{			line-height: normal !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_1100092_page16Calligrapher, .stacks_in_1100092_page16Calligrapher h1, .stacks_in_1100092_page16Calligrapher h2, .stacks_in_1100092_page16Calligrapher h3, .stacks_in_1100092_page16Calligrapher h4, .stacks_in_1100092_page16Calligrapher h5, .stacks_in_1100092_page16Calligrapher h6{	font-family: "Quicksand" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1100092_page16targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- *//* End Calligrapher stack CSS code *//*begin*/
#stacks_in_1100090_page16 h1{
	text-align: center;
	
}
/*end*/
#stacks_in_1100090_page16 {
	background-color: rgba(204, 204, 204, 0.50);
	padding: 20px 10px 10px 10px;
}
hr.solid{}

hr.dashed{
	border-style: dashed;
}

hr.dotted{
	border-style: dotted;
}

hr.double{
	border-style: double;
}


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


  /* Standard Responsive Image */
  #stacks_in_781121_page16 .structure_responsive_image img {
    max-width: 100%;
    height: auto;
  }
  




  

/* Align Image */



  

  








/* Image Styling */
  
  #stacks_in_781121_page16 .structure_responsive_image img {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
  }




#stacks_in_781121_page16 {
	margin: 70px 5px 0px 10px;
}

#stacks_in_781123_page16 {
	margin: 5px 0px 0px 10px;
}
/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_1100094_page16Calligrapher{			line-height: normal !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_1100094_page16Calligrapher, .stacks_in_1100094_page16Calligrapher h1, .stacks_in_1100094_page16Calligrapher h2, .stacks_in_1100094_page16Calligrapher h3, .stacks_in_1100094_page16Calligrapher h4, .stacks_in_1100094_page16Calligrapher h5, .stacks_in_1100094_page16Calligrapher h6{	font-family: "Quicksand" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_1100094_page16targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- *//* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_1100081_page16x{	display: block !important;		text-align: left !important;		}@media (max-width:768px) {	.stacks_in_1100081_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_1100081_page16x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_1100081_page16 {
	margin: 0px 0px 10px 10px;
}
/*
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/cleanTabs/
 * Support: support@1littledesigner.com
 * cleanTabs Version 3.9.3
 * Uses jQuery EasyTabs plugin 3.2.0 (licensing listed in script.js)
 */

/* ====================
 * CLEARFIX
 ====================== */
.clearfix:after,
	display: block;
	font-size: 0;
	content: " ";
	clear: both;
	height: 0;
}
.clearfix,
.forceClearfix .panel-container div {
	display: inline-block;
}
/* start commented backslash hack \*/
* html .clearfix,
* html .forceClearfix .panel-container div {
	height: 1%;
}
.clearfix,
.forceClearfix .panel-container div {
	display: block;
}
/* close commented backslash hack */
/* ====================
 * REMOVE INTRUSIVE CODING
 ====================== */
#tabContainer_stacks_in_1029320_page16,
#tabContainer_stacks_in_1029320_page16 .tab-container,
#tabContainer_stacks_in_1029320_page16 .etabs,
#tabContainer_stacks_in_1029320_page16 .tab,
#tabContainer_stacks_in_1029320_page16 .tab a,
#tabContainer_stacks_in_1029320_page16 .panel-container,
#tabContainer_stacks_in_1029320_page16 .tabContent {
	margin: 0; 
	padding: 0;
	opacity: 1;
}
#tabContainer_stacks_in_1029320_page16 li {
	margin-left: 0;
	margin-right: 0;
}
#tabContainer_stacks_in_1029320_page16 li a {
	line-height: 2.1 !important;
}
#tabContainer_stacks_in_1029320_page16 li a.active {
	line-height: 2.1 !important; 
	-webkit-backface-visible: visible !important;
}
#tabContainer_stacks_in_1029320_page16 a,
#tabContainer_stacks_in_1029320_page16 a:hover {
	text-decoration: none;
}
#tabContainer_stacks_in_1029320_page16 .tab a,
#tabContainer_stacks_in_1029320_page16 .tab a:focus,
#tabContainer_stacks_in_1029320_page16 .tab a:active,
#tabContainer_stacks_in_1029320_page16 .tab a:visited,
#tabContainer_stacks_in_1029320_page16 .tab a:link {
	outline: none !important;
	border: none !important;
}
#tabContainer_stacks_in_1029320_page16 li,
#tabContainer_stacks_in_1029320_page16 li a {
	cursor: pointer;
}
/* ====================
 * TRANSPARENCY OPTION
 ====================== */
#tabContainer_stacks_in_1029320_page16.borderTransparencyOn .tab,
.tabDemo #tabContainer_stacks_in_1029320_page16.borderTransparencyOn .tab,
#tabContainer_stacks_in_1029320_page16.borderTransparencyOn #tab-container ul.etabs,
#tabContainer_stacks_in_1029320_page16.borderTransparencyOn #tab-container .panel-container,
.tabDemo #tabContainer_stacks_in_1029320_page16.borderTransparencyOn #tab-container .panel-container {
	border: none !important;
	border-top: none !important;
	border-right: none !important;
	border-left: none !important;
}
#tabContainer_stacks_in_1029320_page16.tabTransparencyOn .tab,
.tabDemo #tabContainer_stacks_in_1029320_page16.tabTransparencyOn .tab,
#tabContainer_stacks_in_1029320_page16.tabTransparencyOn .tab:hover,
.tabDemo #tabContainer_stacks_in_1029320_page16.tabTransparencyOn .tab:hover {
	background: none !important;
	background-color: none !important;
}
#tabContainer_stacks_in_1029320_page16.contentTransparencyOn #tab-container .panel-container {
	background: none !important;
	background-color: none !important;
}
/* ====================
 * DEFAULT STYLING
 ====================== */
#tabContainer_stacks_in_1029320_page16 {
	width: 98%;
	padding-right: 3px;
}
#tabContainer_stacks_in_1029320_page16 #tab-container {
	min-width: 400px;
}
#tabContainer_stacks_in_1029320_page16 .etabs { 
	margin: 0; 
	padding: 0; 
}
#tabContainer_stacks_in_1029320_page16.controlTabWidthOn #tab-container ul.etabs li.tab {
	width: 150px;
}
#tabContainer_stacks_in_1029320_page16 .tab, .tabDemo #tabContainer_stacks_in_1029320_page16 .tab { 
	display: inline-block; 
	zoom: 1; 
	*display: inline; /* IE7 */
	background: #EEEEEE; 
	border: solid 1px #999999; 
	border-bottom: none;
	border-radius: 4px 4px 0 0; 
	-moz-border-radius: 4px 4px 0 0; 
	-webkit-border-radius: 4px 4px 0 0;
	
}
#tabContainer_stacks_in_1029320_page16 #tab-container ul.etabs.firstTabPixels li.tab:first-child {
	margin-left: 0px;
}
#tabContainer_stacks_in_1029320_page16 #tab-container ul.etabs.firstTabPerc li.tab:first-child {
	margin-left: 0%;
}
#tabContainer_stacks_in_1029320_page16 #tab-container ul.etabs .tab:hover,
.tabDemo #tabContainer_stacks_in_1029320_page16 #tab-container ul.etabs .tab:hover {
	background-color: #E0E0E0;
	border-color: #999999;
}
#tabContainer_stacks_in_1029320_page16 #tab-container .tab a {
	position: relative;
	font-size: 18px; 
	line-height: 2em;
	display: block; 
	padding: 0 10px; 
	outline: none; 
	text-decoration: none;
}
#tabContainer_stacks_in_1029320_page16.linkInheritOff #tab-container ul.etabs .tab a {
	color: #708090 !important;
}
#tabContainer_stacks_in_1029320_page16.linkInheritOff #tab-container ul.etabs .tab a:hover { 
	text-decoration: none;
	color: #0D4F8B !important;
}
#tabContainer_stacks_in_1029320_page16 #tab-container ul.etabs .tab.active { 
	background: #FFFFFF; 
	padding-top: 6px; 
	position: relative; 
	top: 1px; 
	border-color: #666666; 
}
#tabContainer_stacks_in_1029320_page16.linkInheritOff #tab-container ul.etabs .tab a.active { 
	font-weight: bold;
	color: #4E78A0 !important; 
}
#tabContainer_stacks_in_1029320_page16.linkInheritOff #tab-container ul.etabs .tab a.active:hover {
	color: #0D4F8B !important;
}
#tabContainer_stacks_in_1029320_page16 #tab-container .panel-container {
	background: #FFFFFF;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 15px;
	padding-bottom: 10px;
	border-radius: 0 4px 4px 4px; 
	-moz-border-radius: 0 4px 4px 4px; 
	-webkit-border-radius: 0 4px 4px 4px;
}
#tabContainer_stacks_in_1029320_page16.textInheritOff #tab-container .panel-container {
	color: #333333 !important;
	font-size: 18px;
}
#tabContainer_stacks_in_1029320_page16.borderTransparencyOff #tab-container .panel-container {
	border: solid #666666 1px; 
}
#tabContainer_stacks_in_1029320_page16.linkInheritOff #tab-container .panel-container a {
	color: #4E78A0;
}
#tabContainer_stacks_in_1029320_page16.linkInheritOff #tab-container .panel-container a:hover {
	color: #0D4F8B;
}
#tabContainer_stacks_in_1029320_page16 .panel-container { 
	margin-bottom: 10px; 
}

/* ====================
 * TAB COUNT CONTROL
 * Adds display none depending on total count
 ====================== */
#tabContainer_stacks_in_1029320_page16 .tabCounter1 .tabContent2, 
#tabContainer_stacks_in_1029320_page16 .tabCounter1 .tabContent3, 
#tabContainer_stacks_in_1029320_page16 .tabCounter1 .tabContent4, 
#tabContainer_stacks_in_1029320_page16 .tabCounter1 .tabContent5, 
#tabContainer_stacks_in_1029320_page16 .tabCounter1 .tabContent6, 
#tabContainer_stacks_in_1029320_page16 .tabCounter1 .tabContent7, 
#tabContainer_stacks_in_1029320_page16 .tabCounter1 .tabContent8, 
#tabContainer_stacks_in_1029320_page16 .tabCounter1 .tabContent9, 
#tabContainer_stacks_in_1029320_page16 .tabCounter1 .tabContent10, 
#tabContainer_stacks_in_1029320_page16 .tabCounter1 .tabContent11, 
#tabContainer_stacks_in_1029320_page16 .tabCounter1 .tabContent12,
#tabContainer_stacks_in_1029320_page16 .tabCounter1 .tabContent13, 
#tabContainer_stacks_in_1029320_page16 .tabCounter1 .tabContent14, 
#tabContainer_stacks_in_1029320_page16 .tabCounter1 .tabContent15, 
#tabContainer_stacks_in_1029320_page16 .tabCounter1 .tabContent16, 
#tabContainer_stacks_in_1029320_page16 .tabCounter1 .tabContent17, 
#tabContainer_stacks_in_1029320_page16 .tabCounter1 .tabContent18, 
#tabContainer_stacks_in_1029320_page16 .tabCounter1 .tabContent19, 
#tabContainer_stacks_in_1029320_page16 .tabCounter1 .tabContent20, 

#tabContainer_stacks_in_1029320_page16 .tabCounter2 .tabContent3, 
#tabContainer_stacks_in_1029320_page16 .tabCounter2 .tabContent4, 
#tabContainer_stacks_in_1029320_page16 .tabCounter2 .tabContent5, 
#tabContainer_stacks_in_1029320_page16 .tabCounter2 .tabContent6, 
#tabContainer_stacks_in_1029320_page16 .tabCounter2 .tabContent7, 
#tabContainer_stacks_in_1029320_page16 .tabCounter2 .tabContent8, 
#tabContainer_stacks_in_1029320_page16 .tabCounter2 .tabContent9, 
#tabContainer_stacks_in_1029320_page16 .tabCounter2 .tabContent10, 
#tabContainer_stacks_in_1029320_page16 .tabCounter2 .tabContent11, 
#tabContainer_stacks_in_1029320_page16 .tabCounter2 .tabContent12, 
#tabContainer_stacks_in_1029320_page16 .tabCounter2 .tabContent13, 
#tabContainer_stacks_in_1029320_page16 .tabCounter2 .tabContent14, 
#tabContainer_stacks_in_1029320_page16 .tabCounter2 .tabContent15, 
#tabContainer_stacks_in_1029320_page16 .tabCounter2 .tabContent16, 
#tabContainer_stacks_in_1029320_page16 .tabCounter2 .tabContent17, 
#tabContainer_stacks_in_1029320_page16 .tabCounter2 .tabContent18, 
#tabContainer_stacks_in_1029320_page16 .tabCounter2 .tabContent19, 
#tabContainer_stacks_in_1029320_page16 .tabCounter2 .tabContent20, 

#tabContainer_stacks_in_1029320_page16 .tabCounter3 .tabContent4, 
#tabContainer_stacks_in_1029320_page16 .tabCounter3 .tabContent5, 
#tabContainer_stacks_in_1029320_page16 .tabCounter3 .tabContent6, 
#tabContainer_stacks_in_1029320_page16 .tabCounter3 .tabContent7, 
#tabContainer_stacks_in_1029320_page16 .tabCounter3 .tabContent8, 
#tabContainer_stacks_in_1029320_page16 .tabCounter3 .tabContent9, 
#tabContainer_stacks_in_1029320_page16 .tabCounter3 .tabContent10, 
#tabContainer_stacks_in_1029320_page16 .tabCounter3 .tabContent11, 
#tabContainer_stacks_in_1029320_page16 .tabCounter3 .tabContent12,
#tabContainer_stacks_in_1029320_page16 .tabCounter3 .tabContent13, 
#tabContainer_stacks_in_1029320_page16 .tabCounter3 .tabContent14, 
#tabContainer_stacks_in_1029320_page16 .tabCounter3 .tabContent15, 
#tabContainer_stacks_in_1029320_page16 .tabCounter3 .tabContent16, 
#tabContainer_stacks_in_1029320_page16 .tabCounter3 .tabContent17, 
#tabContainer_stacks_in_1029320_page16 .tabCounter3 .tabContent18, 
#tabContainer_stacks_in_1029320_page16 .tabCounter3 .tabContent19, 
#tabContainer_stacks_in_1029320_page16 .tabCounter3 .tabContent20, 

#tabContainer_stacks_in_1029320_page16 .tabCounter4 .tabContent5, 
#tabContainer_stacks_in_1029320_page16 .tabCounter4 .tabContent6, 
#tabContainer_stacks_in_1029320_page16 .tabCounter4 .tabContent7, 
#tabContainer_stacks_in_1029320_page16 .tabCounter4 .tabContent8, 
#tabContainer_stacks_in_1029320_page16 .tabCounter4 .tabContent9, 
#tabContainer_stacks_in_1029320_page16 .tabCounter4 .tabContent10, 
#tabContainer_stacks_in_1029320_page16 .tabCounter4 .tabContent11, 
#tabContainer_stacks_in_1029320_page16 .tabCounter4 .tabContent12, 
#tabContainer_stacks_in_1029320_page16 .tabCounter4 .tabContent13, 
#tabContainer_stacks_in_1029320_page16 .tabCounter4 .tabContent14, 
#tabContainer_stacks_in_1029320_page16 .tabCounter4 .tabContent15, 
#tabContainer_stacks_in_1029320_page16 .tabCounter4 .tabContent16, 
#tabContainer_stacks_in_1029320_page16 .tabCounter4 .tabContent17, 
#tabContainer_stacks_in_1029320_page16 .tabCounter4 .tabContent18, 
#tabContainer_stacks_in_1029320_page16 .tabCounter4 .tabContent19, 
#tabContainer_stacks_in_1029320_page16 .tabCounter4 .tabContent20, 

#tabContainer_stacks_in_1029320_page16 .tabCounter5 .tabContent6, 
#tabContainer_stacks_in_1029320_page16 .tabCounter5 .tabContent7, 
#tabContainer_stacks_in_1029320_page16 .tabCounter5 .tabContent8, 
#tabContainer_stacks_in_1029320_page16 .tabCounter5 .tabContent9, 
#tabContainer_stacks_in_1029320_page16 .tabCounter5 .tabContent10, 
#tabContainer_stacks_in_1029320_page16 .tabCounter5 .tabContent11, 
#tabContainer_stacks_in_1029320_page16 .tabCounter5 .tabContent12, 
#tabContainer_stacks_in_1029320_page16 .tabCounter5 .tabContent13, 
#tabContainer_stacks_in_1029320_page16 .tabCounter5 .tabContent14, 
#tabContainer_stacks_in_1029320_page16 .tabCounter5 .tabContent15, 
#tabContainer_stacks_in_1029320_page16 .tabCounter5 .tabContent16, 
#tabContainer_stacks_in_1029320_page16 .tabCounter5 .tabContent17, 
#tabContainer_stacks_in_1029320_page16 .tabCounter5 .tabContent18, 
#tabContainer_stacks_in_1029320_page16 .tabCounter5 .tabContent19, 
#tabContainer_stacks_in_1029320_page16 .tabCounter5 .tabContent20, 

#tabContainer_stacks_in_1029320_page16 .tabCounter6 .tabContent7, 
#tabContainer_stacks_in_1029320_page16 .tabCounter6 .tabContent8, 
#tabContainer_stacks_in_1029320_page16 .tabCounter6 .tabContent9, 
#tabContainer_stacks_in_1029320_page16 .tabCounter6 .tabContent10, 
#tabContainer_stacks_in_1029320_page16 .tabCounter6 .tabContent11, 
#tabContainer_stacks_in_1029320_page16 .tabCounter6 .tabContent12, 
#tabContainer_stacks_in_1029320_page16 .tabCounter6 .tabContent13, 
#tabContainer_stacks_in_1029320_page16 .tabCounter6 .tabContent14, 
#tabContainer_stacks_in_1029320_page16 .tabCounter6 .tabContent15, 
#tabContainer_stacks_in_1029320_page16 .tabCounter6 .tabContent16, 
#tabContainer_stacks_in_1029320_page16 .tabCounter6 .tabContent17, 
#tabContainer_stacks_in_1029320_page16 .tabCounter6 .tabContent18, 
#tabContainer_stacks_in_1029320_page16 .tabCounter6 .tabContent19, 
#tabContainer_stacks_in_1029320_page16 .tabCounter6 .tabContent20, 

#tabContainer_stacks_in_1029320_page16 .tabCounter7 .tabContent8, 
#tabContainer_stacks_in_1029320_page16 .tabCounter7 .tabContent9, 
#tabContainer_stacks_in_1029320_page16 .tabCounter7 .tabContent10, 
#tabContainer_stacks_in_1029320_page16 .tabCounter7 .tabContent11, 
#tabContainer_stacks_in_1029320_page16 .tabCounter7 .tabContent12, 
#tabContainer_stacks_in_1029320_page16 .tabCounter7 .tabContent13, 
#tabContainer_stacks_in_1029320_page16 .tabCounter7 .tabContent14, 
#tabContainer_stacks_in_1029320_page16 .tabCounter7 .tabContent15, 
#tabContainer_stacks_in_1029320_page16 .tabCounter7 .tabContent16, 
#tabContainer_stacks_in_1029320_page16 .tabCounter7 .tabContent17, 
#tabContainer_stacks_in_1029320_page16 .tabCounter7 .tabContent18, 
#tabContainer_stacks_in_1029320_page16 .tabCounter7 .tabContent19, 
#tabContainer_stacks_in_1029320_page16 .tabCounter7 .tabContent20, 

#tabContainer_stacks_in_1029320_page16 .tabCounter8 .tabContent9, 
#tabContainer_stacks_in_1029320_page16 .tabCounter8 .tabContent10, 
#tabContainer_stacks_in_1029320_page16 .tabCounter8 .tabContent11, 
#tabContainer_stacks_in_1029320_page16 .tabCounter8 .tabContent12, 
#tabContainer_stacks_in_1029320_page16 .tabCounter8 .tabContent13, 
#tabContainer_stacks_in_1029320_page16 .tabCounter8 .tabContent14, 
#tabContainer_stacks_in_1029320_page16 .tabCounter8 .tabContent15, 
#tabContainer_stacks_in_1029320_page16 .tabCounter8 .tabContent16, 
#tabContainer_stacks_in_1029320_page16 .tabCounter8 .tabContent17, 
#tabContainer_stacks_in_1029320_page16 .tabCounter8 .tabContent18, 
#tabContainer_stacks_in_1029320_page16 .tabCounter8 .tabContent19, 
#tabContainer_stacks_in_1029320_page16 .tabCounter8 .tabContent20, 

#tabContainer_stacks_in_1029320_page16 .tabCounter9 .tabContent10, 
#tabContainer_stacks_in_1029320_page16 .tabCounter9 .tabContent11, 
#tabContainer_stacks_in_1029320_page16 .tabCounter9 .tabContent12, 
#tabContainer_stacks_in_1029320_page16 .tabCounter9 .tabContent13, 
#tabContainer_stacks_in_1029320_page16 .tabCounter9 .tabContent14, 
#tabContainer_stacks_in_1029320_page16 .tabCounter9 .tabContent15, 
#tabContainer_stacks_in_1029320_page16 .tabCounter9 .tabContent16, 
#tabContainer_stacks_in_1029320_page16 .tabCounter9 .tabContent17, 
#tabContainer_stacks_in_1029320_page16 .tabCounter9 .tabContent18, 
#tabContainer_stacks_in_1029320_page16 .tabCounter9 .tabContent19, 
#tabContainer_stacks_in_1029320_page16 .tabCounter9 .tabContent20, 

#tabContainer_stacks_in_1029320_page16 .tabCounter10 .tabContent11, 
#tabContainer_stacks_in_1029320_page16 .tabCounter10 .tabContent12,
#tabContainer_stacks_in_1029320_page16 .tabCounter10 .tabContent13, 
#tabContainer_stacks_in_1029320_page16 .tabCounter10 .tabContent14, 
#tabContainer_stacks_in_1029320_page16 .tabCounter10 .tabContent15, 
#tabContainer_stacks_in_1029320_page16 .tabCounter10 .tabContent16, 
#tabContainer_stacks_in_1029320_page16 .tabCounter10 .tabContent17, 
#tabContainer_stacks_in_1029320_page16 .tabCounter10 .tabContent18, 
#tabContainer_stacks_in_1029320_page16 .tabCounter10 .tabContent19, 
#tabContainer_stacks_in_1029320_page16 .tabCounter10 .tabContent20, 

#tabContainer_stacks_in_1029320_page16 .tabCounter11 .tabContent12,
#tabContainer_stacks_in_1029320_page16 .tabCounter11 .tabContent13, 
#tabContainer_stacks_in_1029320_page16 .tabCounter11 .tabContent14, 
#tabContainer_stacks_in_1029320_page16 .tabCounter11 .tabContent15, 
#tabContainer_stacks_in_1029320_page16 .tabCounter11 .tabContent16, 
#tabContainer_stacks_in_1029320_page16 .tabCounter11 .tabContent17, 
#tabContainer_stacks_in_1029320_page16 .tabCounter11 .tabContent18, 
#tabContainer_stacks_in_1029320_page16 .tabCounter11 .tabContent19, 
#tabContainer_stacks_in_1029320_page16 .tabCounter11 .tabContent20, 

#tabContainer_stacks_in_1029320_page16 .tabCounter12 .tabContent13, 
#tabContainer_stacks_in_1029320_page16 .tabCounter12 .tabContent14, 
#tabContainer_stacks_in_1029320_page16 .tabCounter12 .tabContent15, 
#tabContainer_stacks_in_1029320_page16 .tabCounter12 .tabContent16, 
#tabContainer_stacks_in_1029320_page16 .tabCounter12 .tabContent17, 
#tabContainer_stacks_in_1029320_page16 .tabCounter12 .tabContent18, 
#tabContainer_stacks_in_1029320_page16 .tabCounter12 .tabContent19, 
#tabContainer_stacks_in_1029320_page16 .tabCounter12 .tabContent20,

#tabContainer_stacks_in_1029320_page16 .tabCounter13 .tabContent14, 
#tabContainer_stacks_in_1029320_page16 .tabCounter13 .tabContent15, 
#tabContainer_stacks_in_1029320_page16 .tabCounter13 .tabContent16, 
#tabContainer_stacks_in_1029320_page16 .tabCounter13 .tabContent17, 
#tabContainer_stacks_in_1029320_page16 .tabCounter13 .tabContent18, 
#tabContainer_stacks_in_1029320_page16 .tabCounter13 .tabContent19, 
#tabContainer_stacks_in_1029320_page16 .tabCounter13 .tabContent20, 

#tabContainer_stacks_in_1029320_page16 .tabCounter14 .tabContent15, 
#tabContainer_stacks_in_1029320_page16 .tabCounter14 .tabContent16, 
#tabContainer_stacks_in_1029320_page16 .tabCounter14 .tabContent17, 
#tabContainer_stacks_in_1029320_page16 .tabCounter14 .tabContent18, 
#tabContainer_stacks_in_1029320_page16 .tabCounter14 .tabContent19, 
#tabContainer_stacks_in_1029320_page16 .tabCounter14 .tabContent20,

#tabContainer_stacks_in_1029320_page16 .tabCounter15 .tabContent16, 
#tabContainer_stacks_in_1029320_page16 .tabCounter15 .tabContent17, 
#tabContainer_stacks_in_1029320_page16 .tabCounter15 .tabContent18, 
#tabContainer_stacks_in_1029320_page16 .tabCounter15 .tabContent19, 
#tabContainer_stacks_in_1029320_page16 .tabCounter15 .tabContent20, 

#tabContainer_stacks_in_1029320_page16 .tabCounter16 .tabContent17, 
#tabContainer_stacks_in_1029320_page16 .tabCounter16 .tabContent18, 
#tabContainer_stacks_in_1029320_page16 .tabCounter16 .tabContent19, 
#tabContainer_stacks_in_1029320_page16 .tabCounter16 .tabContent20, 

#tabContainer_stacks_in_1029320_page16 .tabCounter17 .tabContent18, 
#tabContainer_stacks_in_1029320_page16 .tabCounter17 .tabContent19, 
#tabContainer_stacks_in_1029320_page16 .tabCounter17 .tabContent20, 

#tabContainer_stacks_in_1029320_page16 .tabCounter18 .tabContent19, 
#tabContainer_stacks_in_1029320_page16 .tabCounter18 .tabContent20, 

#tabContainer_stacks_in_1029320_page16 .tabCounter19 .tabContent20 {
	display: none !important;
}
/* ====================
 * BACKEND
 ====================== */
.tabDemo #tabContainer_stacks_in_1029320_page16 .panel-container div.tabContent div {
	padding-top: 5px;
}
.tabDemo #tabContainer_stacks_in_1029320_page16 .tab {
	width: inherit;
}
/* ====================
 * THEMES
 ====================== */
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme2 ul.etabs .tab.active,
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme3 ul.etabs .tab.active {
	border-color: #666666;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme2 ul.etabs {
	margin-bottom: 5px;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme2 .panel-container {
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme2 ul.etabs .tab {
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
	border-bottom: solid 1px #999999;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme2 ul.etabs .tab.active,
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme3 ul.etabs .tab.active,
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme7 ul.etabs .tab.active {
	padding-top: 1px; 
	padding-bottom: -1px;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme3 ul.etabs {
	padding: 3px 4px; 
	border-right: solid 1px #666666; 
	border-left: solid 1px #666666;
	background: #FFFFFF;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme3.tabsBottomOff ul.etabs {
	border-radius: 4px 4px 0 0;
	-webkit-border-radius: 4px 4px 0 0;
	-moz-border-radius: 4px 4px 0 0;
	border-top: solid 1px #666666; 
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme3.tabsBottomOn ul.etabs {
	border-radius: 0 0 4px 4px;
	-webkit-border-radius: 0 0 4px 4px;
	-moz-border-radius: 0 0 4px 4px;
	border-bottom: solid 1px #666666; 
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme3 ul.etabs .tab {
	border-bottom: solid 1px #999999;
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme3.tabsBottomOff .panel-container {
	border-radius: 0 0 4px 4px;
	border-top: 0;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme3.tabsBottomOn .panel-container {
	border-radius: 4px 4px 0 0;
	border-bottom: 0;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme2.tabsBottomOn .panel-container,
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme3.tabsBottomOn .panel-container,
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme5.tabsBottomOn .panel-container,
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme6.tabsBottomOn .panel-container {
	margin-bottom: 0;
}  
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme4 .panel-container,
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme7 .panel-container {
	border-bottom: none;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme4 .panel-container,
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme5 .panel-container,
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme6 .panel-container,
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme7 .panel-container {
	border-right: none;
	border-left: none;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme5.tabsBottomOff .panel-container,
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme6.tabsBottomOff .panel-container {
	border-bottom: none;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme5.tabsBottomOn .panel-container {
	border-top: none;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme6.tabsBottomOn .panel-container {
	border: none;
	border-top: none;
	border-bottom: none;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme4 ul.etabs .tab.marginOpt,
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme5 ul.etabs .tab.marginOpt,
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme6 ul.etabs .tab.marginOpt {
	margin-left: 10px;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme5 ul.etabs .tab,
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme6 ul.etabs .tab,
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme7 ul.etabs .tab {
	border: none;
	background: none;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme5.tabsBottomOff ul.etabs .tab.active {
	border-bottom: solid 5px #666666;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme6.tabsBottomOff ul.etabs .tab.active {
	border-bottom: solid 5px #666666;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme6.tabsBottomOff .panel-container {
	border-top: none;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme5.tabsBottomOn ul.etabs .tab.active,
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme6.tabsBottomOn ul.etabs .tab.active {
	border-top: solid 5px #666666;
	top: 0;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme5.tabsBottomOn ul.etabs .tab,
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme6.tabsBottomOn ul.etabs .tab {
	border-radius: 0;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme7.themeDots1 ul.etabs li a {
	padding-bottom: 10px;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme7.themeDots1 ul.etabs li a:after {
	content:'';
	position: absolute;
	left: 45%;
	bottom: -6px;
	width: 12px;
	height: 12px;
	background: #00B2EE;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme7.themeDots1 ul.etabs li a:hover:after,
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme7.themeDots1 ul.etabs li a.active:after {
	background: #325C74;
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme7.themeDots2 ul.etabs li a.active:after {
	content: '';
	position: absolute;
	bottom: -12px;
	left: 45%;
	margin-left: 24px;
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 12px solid #00B2EE;
	margin: 0 auto;
	z-index: 0;
	
}
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme7.themeDots2 ul.etabs li a:hover:after,
#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme7.themeDots2 ul.etabs li a.active:after {
	border-top-color: #325C74;
}
/* ====================
 * RESPONSIVENESS
 ====================== */

/* iPads */
@media (max-width : 768px) {
	#tabContainer_stacks_in_1029320_page16.responsiveOn #tab-container.tabTheme1 ul.etabs .tab,
	#tabContainer_stacks_in_1029320_page16.responsiveOn #tab-container.tabTheme2 ul.etabs .tab,
	#tabContainer_stacks_in_1029320_page16.responsiveOn #tab-container.tabTheme3 ul.etabs .tab,
	#tabContainer_stacks_in_1029320_page16.responsiveOn #tab-container.tabTheme4 ul.etabs .tab,
	#tabContainer_stacks_in_1029320_page16.responsiveOn #tab-container.tabTheme5 ul.etabs .tab,
	#tabContainer_stacks_in_1029320_page16.responsiveOn #tab-container.tabTheme6 ul.etabs .tab {
		width: 47%;
		margin: 1%;
		border-bottom: solid 1px #666666;
		border-radius: 4px; 
		-moz-border-radius: 4px; 
		-webkit-border-radius: 4px;
	}
	#tabContainer_stacks_in_1029320_page16.responsiveOn ul.etabs .tab.active {padding-top: 0;}
	#tabContainer_stacks_in_1029320_page16.responsiveOn #tab-container.tabTheme4 ul.etabs .tab.marginOpt,
	#tabContainer_stacks_in_1029320_page16.responsiveOn #tab-container.tabTheme5 ul.etabs .tab.marginOpt,
	#tabContainer_stacks_in_1029320_page16.responsiveOn #tab-container.tabTheme6 ul.etabs .tab.marginOpt {
		margin-left: 1%;
	}
	#tabContainer_stacks_in_1029320_page16.responsiveOn #tab-container.tabTheme5 ul.etabs .tab,
	#tabContainer_stacks_in_1029320_page16.responsiveOn #tab-container.tabTheme6 ul.etabs .tab {
		border-radius: 0;
		-moz-border-radius: 0;
		-webkit-border-radius: 0;
	}
	#tabContainer_stacks_in_1029320_page16.responsiveOn #tab-container.tabTheme5 .panel-container {
		border-top: none;
	}
	#tabContainer_stacks_in_1029320_page16 #tab-container ul.etabs.firstTabPixels li.tab:first-child {
		margin-left: 3px;
	}
	#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme3 ul.etabs.firstTabPixels li.tab:first-child {
		margin-left: 6px;
	}
	#tabContainer_stacks_in_1029320_page16 #tab-container ul.etabs .tab.active {
		padding-top: 0;
		top: 0;
	}
}

/* iPhones */
@media (max-width : 480px) {
	#tabContainer_stacks_in_1029320_page16.responsiveOn #tab-container.tabTheme1 ul.etabs .tab,
	#tabContainer_stacks_in_1029320_page16.responsiveOn #tab-container.tabTheme2 ul.etabs .tab,
	#tabContainer_stacks_in_1029320_page16.responsiveOn #tab-container.tabTheme3 ul.etabs .tab,
	#tabContainer_stacks_in_1029320_page16.responsiveOn #tab-container.tabTheme4 ul.etabs .tab,
	#tabContainer_stacks_in_1029320_page16.responsiveOn #tab-container.tabTheme5 ul.etabs .tab,
	#tabContainer_stacks_in_1029320_page16.responsiveOn #tab-container.tabTheme6 ul.etabs .tab {
		width: 98%;
	}
	#tabContainer_stacks_in_1029320_page16.responsiveOn #tab-container.tabTheme7 .panel-container {
		border-top: none;
	}
	#tabContainer_stacks_in_1029320_page16 #tab-container.tabTheme3 ul.etabs.firstTabPixels li.tab:first-child {
		margin-left: 3px;
	}
}
/* Start dooHeader X stack CSS code */.stacks_in_1100096_page16x{	display: block !important;		text-align: left !important;		}@media (max-width:768px) {	.stacks_in_1100096_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_1100096_page16x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_1100096_page16 {
	margin: 0px 0px 10px 10px;
}
/* Start dooText X stack CSS code */.stacks_in_781175_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_781175_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_781175_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */
#stacks_in_781175_page16 {
	margin: 10px 0px 0px 5px;
}
hr.solid{}

hr.dashed{
	border-style: dashed;
}

hr.dotted{
	border-style: dotted;
}

hr.double{
	border-style: double;
}


#stacks_in_819482_page16 {
	padding:  20px;
}

#stacks_in_818519_page16 {
	padding:  20px;
}
/* Start dooHeader X stack CSS code */.stacks_in_1100098_page16x{	display: block !important;		text-align: left !important;		}@media (max-width:768px) {	.stacks_in_1100098_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_1100098_page16x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_1100098_page16 {
	margin: 0px 0px 10px 10px;
	padding:  5px;
}
/* Start dooHeader X stack CSS code */.stacks_in_819457_page16x{	display: block !important;		text-align: left !important;		}@media (max-width:768px) {	.stacks_in_819457_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_819457_page16x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_819457_page16 {
	margin: 15px 0px 0px 0px;
}
#stacks_in_825647_page16 .ZiplistTitle{font-size:152%;padding:0.25em 0 0}#stacks_in_825647_page16 .ZiplistItem{font-size: 112%;margin:10px 0;}#stacks_in_825647_page16 .ZiplistItemTitle_stacks_in_825647_page16{font-size:112%;}#stacks_in_825647_page16 .ZiplistItemTitle_stacks_in_825647_page16 .ZiplistClosed,#stacks_in_825647_page16 .ZiplistItemTitle_stacks_in_825647_page16 .ZiplistOpen{text-decoration: none;}#stacks_in_825647_page16 .Ziplist{padding-bottom: 1em;}#stacks_in_825647_page16 ul.Ziplist{list-style-type:disc;}#stacks_in_825647_page16 .ZiplistShowHide{display:inline;font-size:0.7em;margin-left: 0.5em;}#stacks_in_825647_page16 .ZiplistContent{border-bottom:1px solid #BEBEBE;display:none;font-size: 100%;margin-bottom:1em;padding-bottom: 1em;}
#stacks_in_825647_page16 {
	margin: 5px 0px 0px 0px;
}
hr.solid{}

hr.dashed{
	border-style: dashed;
}

hr.dotted{
	border-style: dotted;
}

hr.double{
	border-style: double;
}

/* Start dooText X stack CSS code */.stacks_in_852383_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_852383_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_852383_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */hr.solid{}

hr.dashed{
	border-style: dashed;
}

hr.dotted{
	border-style: dotted;
}

hr.double{
	border-style: double;
}

/* Start dooText X stack CSS code */.stacks_in_1100102_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_1100102_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_1100102_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */hr.solid{}

hr.dashed{
	border-style: dashed;
}

hr.dotted{
	border-style: dotted;
}

hr.double{
	border-style: double;
}

/* Start dooText X stack CSS code */.stacks_in_852379_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_852379_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_852379_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */hr.solid{}

hr.dashed{
	border-style: dashed;
}

hr.dotted{
	border-style: dotted;
}

hr.double{
	border-style: double;
}

/* Start dooText X stack CSS code */.stacks_in_852377_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_852377_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_852377_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_825673_page16 {
	text-align: left !important;
}


#stacks_in_825673_page16 img {
	margin: 0 !important;
}




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

@media only screen and (max-width: 480px) {
    #stacks_in_825673_page16 {
		text-align: left !important;
	}
	
	#stacks_in_825673_page16 img {
		margin: 0 auto !important;
	}
	
	
	#stacks_in_825673_page16 img {
		margin: 0 !important;
	}
	
	
	
}
/* -- End Textalign Each css Template -- */#stacks_in_825821_page16 .ZiplistTitle{font-size:156%;padding:0.25em 0 0}#stacks_in_825821_page16 .ZiplistItem{font-size: 110%;margin:10px 0;}#stacks_in_825821_page16 .ZiplistItemTitle_stacks_in_825821_page16{font-size:110%;}#stacks_in_825821_page16 .ZiplistItemTitle_stacks_in_825821_page16 .ZiplistClosed,#stacks_in_825821_page16 .ZiplistItemTitle_stacks_in_825821_page16 .ZiplistOpen{text-decoration: none;}#stacks_in_825821_page16 .Ziplist{padding-bottom: 1em;}#stacks_in_825821_page16 ul.Ziplist{list-style-type:disc;}#stacks_in_825821_page16 .ZiplistShowHide{display:inline;font-size:0.7em;margin-left: 0.5em;}#stacks_in_825821_page16 .ZiplistContent{border-bottom:1px solid #BEBEBE;display:none;font-size: 100%;margin-bottom:1em;padding-bottom: 1em;}
#stacks_in_825821_page16 {
	margin: 5px 0px 0px 0px;
}
hr.solid{}

hr.dashed{
	border-style: dashed;
}

hr.dotted{
	border-style: dotted;
}

hr.double{
	border-style: double;
}

/* Start dooText X stack CSS code */.stacks_in_852369_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_852369_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_852369_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */hr.solid{}

hr.dashed{
	border-style: dashed;
}

hr.dotted{
	border-style: dotted;
}

hr.double{
	border-style: double;
}

/* Start dooText X stack CSS code */.stacks_in_852361_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_852361_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_852361_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */hr.solid{}

hr.dashed{
	border-style: dashed;
}

hr.dotted{
	border-style: dotted;
}

hr.double{
	border-style: double;
}

/* Start dooText X stack CSS code */.stacks_in_852363_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_852363_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_852363_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */hr.solid{}

hr.dashed{
	border-style: dashed;
}

hr.dotted{
	border-style: dotted;
}

hr.double{
	border-style: double;
}

/* Start dooText X stack CSS code */.stacks_in_852365_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_852365_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_852365_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */hr.solid{}

hr.dashed{
	border-style: dashed;
}

hr.dotted{
	border-style: dotted;
}

hr.double{
	border-style: double;
}

/* Start dooText X stack CSS code */.stacks_in_852367_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_852367_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_852367_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */#stacks_in_825734_page16 .ZiplistTitle{font-size:150%;padding:0.25em 0 0}#stacks_in_825734_page16 .ZiplistItem{font-size: 110%;margin:10px 0;}#stacks_in_825734_page16 .ZiplistItemTitle_stacks_in_825734_page16{font-size:110%;}#stacks_in_825734_page16 .ZiplistItemTitle_stacks_in_825734_page16 .ZiplistClosed,#stacks_in_825734_page16 .ZiplistItemTitle_stacks_in_825734_page16 .ZiplistOpen{text-decoration: none;}#stacks_in_825734_page16 .Ziplist{padding-bottom: 1em;}#stacks_in_825734_page16 ul.Ziplist{list-style-type:disc;}#stacks_in_825734_page16 .ZiplistShowHide{display:inline;font-size:0.7em;margin-left: 0.5em;}#stacks_in_825734_page16 .ZiplistContent{border-bottom:1px solid #BEBEBE;display:none;font-size: 100%;margin-bottom:1em;padding-bottom: 1em;}
#stacks_in_825734_page16 {
	margin: 5px 0px 0px 0px;
}
hr.solid{}

hr.dashed{
	border-style: dashed;
}

hr.dotted{
	border-style: dotted;
}

hr.double{
	border-style: double;
}

/* Start dooText X stack CSS code */.stacks_in_852371_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_852371_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_852371_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */hr.solid{}

hr.dashed{
	border-style: dashed;
}

hr.dotted{
	border-style: dotted;
}

hr.double{
	border-style: double;
}

/* Start dooText X stack CSS code */.stacks_in_852373_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_852373_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_852373_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */hr.solid{}

hr.dashed{
	border-style: dashed;
}

hr.dotted{
	border-style: dotted;
}

hr.double{
	border-style: double;
}

/* Start dooText X stack CSS code */.stacks_in_852375_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_852375_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_852375_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code *//* -- Start Textalign Each css Template -- */
#stacks_in_825753_page16 {
	text-align: left !important;
}


#stacks_in_825753_page16 img {
	margin: 0 !important;
}




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

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


#stacks_in_825758_page16 img {
	margin: 0 !important;
}




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

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

#stacks_in_819474_page16 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
}

#stacks_in_819476_page16 {
	border: solid rgba(77, 77, 77, 1.00);
	border-width:  1px;
}
/* Start dooHeader X stack CSS code */.stacks_in_819494_page16x{	display: block !important;		text-align: left !important;		}@media (max-width:768px) {	.stacks_in_819494_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_819494_page16x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */
#stacks_in_819494_page16 {
	margin: 10px 0px 0px 0px;
}
hr.solid{}

hr.dashed{
	border-style: dashed;
}

hr.dotted{
	border-style: dotted;
}

hr.double{
	border-style: double;
}

/* TimelineThing Stack by RapidWeaver Central */

#timelinethingstacks_in_819297_page16 {
	border-left: 10px solid #37BC9B;
	margin-left: 140px;
	padding-left: 1em;
	position: relative;
	padding-top: 5px;
	z-index: 0;
}

#timelinethingstacks_in_819297_page16 .timelinething {
	padding: 0em 1em 4em 1em;
	position: relative;
	display: block;
}

#timelinethingstacks_in_819297_page16 .datelabelThing {
	position: absolute;
	top: 10px;
	left: -140px !important;
	font-size: 16px;
	color: ;
	text-decoration: none;
	vertical-align: middle;
	line-height: 36px;
	-webkit-transition: all .2s ease;
}

#timelinethingstacks_in_819297_page16 .nub {
	content: "";
  	display: block;
	vertical-align: middle;
	height: 24px;
	width: 24px;
	background: #FFCE54;
	border: 5px solid #37BC9B;
	position: absolute;
	border-radius: 100%;
	left: -22px;
	top: 0px;
 	line-height: 24px;
 	margin-top: 5px;
	z-index: 1;
}

#timelinethingstacks_in_819297_page16 .nub:hover {
 	pointer-events: auto;	
	background: #FFCE54;
}

#slidethingWrapper_stacks_in_819297_page16 {
	position: relative;
	display: block;
	margin-left: 40px;
	padding-bottom: 40px;
}

#slidethingTrigger_stacks_in_819297_page16 {
	margin: 0;
	font-weight: normal;
	display: block;
	position: relative;
	color: ;
	border-bottom: 0px solid #3BAFDA;
	text-decoration: none;
	background: ;	
	-webkit-border-top-left-radius: 0px;
	-webkit-border-top-right-radius: 0px;
		-moz-border-radius-topleft: 0px;
		-moz-border-radius-topright: 0px;
			border-top-left-radius: 0px;
			border-top-right-radius: 0px;
	-webkit-border-bottom-right-radius: 0px;
	-webkit-border-bottom-left-radius: 0px;
		-moz-border-radius-bottomright: 0px;
		-moz-border-radius-bottomleft: 0px;
			border-bottom-right-radius: 0px;
			border-bottom-left-radius: 0px;
}
	
#slidethingTrigger_stacks_in_819297_page16:hover { 
	color: ;
	cursor: pointer; 
}

#slidethingContainer_stacks_in_819297_page16 {
	display: block;
	margin-top: px;
	padding: px;
	overflow: hidden;
	color: ;
	-webkit-border-radius: px;
	-moz-border-radius: px;
	border-radius: px;
}

.static-bg0stacks_in_819297_page16 {
	background: transparent;
}

.static-bg1stacks_in_819297_page16 {
	background: #333333;
}

.static-bg2stacks_in_819297_page16 {
	background-color: #FFFFFF;
	background-repeat: repeat-x;
	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);}.static-bg3stacks_in_819297_page16 {	background-color: #FFFFFF;	background-repeat: repeat-x;	background-image: -khtml-gradient(linear, left top, left bottom, from(#FFFFFF), to(#FFFFFF));	background-image: -moz-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: -ms-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));	background-image: -webkit-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: -o-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: linear-gradient(top, #FFFFFF, #FFFFFF);	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=0);}.static-bg4stacks_in_819297_page16 {	background: url();	background-position: center center;	background-repeat: repeat;}.static-bg5stacks_in_819297_page16 {	background: url();	background-position: Center Center;	background-repeat: Center Center;}.content-bg0stacks_in_819297_page16 {	background: transparent;}.content-bg1stacks_in_819297_page16 {	background: #333333;}.content-bg2stacks_in_819297_page16 {	background-color: #FFFFFF;	background-repeat: repeat-x;	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);}.content-bg3stacks_in_819297_page16 {	background-color: #FFFFFF;	background-repeat: repeat-x;	background-image: -khtml-gradient(linear, left top, left bottom, from(#FFFFFF), to(#FFFFFF));	background-image: -moz-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: -ms-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));	background-image: -webkit-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: -o-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: linear-gradient(top, #FFFFFF, #FFFFFF);	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=0);}.content-bg4stacks_in_819297_page16 {	background: url();	background-position: center center;	background-repeat: repeat;}.content-bg5stacks_in_819297_page16 {	background: url();	background-position: Center Center;	background-repeat: Center Center;}/* @end */ /* Start dooHeader X stack CSS code */.stacks_in_819483_page16x{	display: block !important;		text-align: left !important;		}@media (max-width:768px) {	.stacks_in_819483_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_819483_page16x{		text-align: left !important;	}}/* End dooHeader X stack CSS code *//* -- Start Textalign Each css Template -- */#stacks_in_819487_page16 {	text-align: justify !important;}@media only screen and (max-width: 768px) {#stacks_in_819487_page16 {		text-align: justify !important;	}		#stacks_in_819487_page16 img {		margin: 0 auto !important;	}				}@media only screen and (max-width: 480px) {#stacks_in_819487_page16 {		text-align: justify !important;	}		#stacks_in_819487_page16 img {		margin: 0 auto !important;	}				}/* -- End Textalign Each css Template -- *//* -- Start Textalign Each css Template -- */#stacks_in_819490_page16 {	text-align: justify !important;}@media only screen and (max-width: 768px) {#stacks_in_819490_page16 {		text-align: justify !important;	}		#stacks_in_819490_page16 img {		margin: 0 auto !important;	}				}@media only screen and (max-width: 480px) {#stacks_in_819490_page16 {		text-align: justify !important;	}		#stacks_in_819490_page16 img {		margin: 0 auto !important;	}				}/* -- End Textalign Each css Template -- *//* TimelineThing Stack by RapidWeaver Central */#timelinethingstacks_in_819523_page16 {	border-left: 10px solid #37BC9B;	margin-left: 140px;	padding-left: 1em;	position: relative;	padding-top: 5px;	z-index: 0;}#timelinethingstacks_in_819523_page16 .timelinething {	padding: 0em 1em 4em 1em;	position: relative;	display: block;}#timelinethingstacks_in_819523_page16 .datelabelThing {	position: absolute;	top: 4px;	left: -140px !important;	font-size: 16px;	color: ;	text-decoration: none;	vertical-align: middle;	line-height: 36px;	-webkit-transition: all .2s ease;}#timelinethingstacks_in_819523_page16 .nub {	content: "";	display: block;	vertical-align: middle;	height: 35px;	width: 35px;	background: #CC9900;	border: 5px solid #37BC9B;	position: absolute;	border-radius: 100%;	left: -22px;	top: 0px;	line-height: 35px;	margin-top: 5px;	z-index: 1;}#timelinethingstacks_in_819523_page16 .nub:hover {	pointer-events: auto;		background: #FFCE54;}#slidethingWrapper_stacks_in_819523_page16 {	position: relative;	display: block;	margin-left: 40px;	padding-bottom: 40px;}#slidethingTrigger_stacks_in_819523_page16 {	margin: 0;	font-weight: normal;	display: block;	position: relative;	color: ;	border-bottom: 0px solid #3BAFDA;	text-decoration: none;	background: ;		-webkit-border-top-left-radius: 0px;	-webkit-border-top-right-radius: 0px;		-moz-border-radius-topleft: 0px;		-moz-border-radius-topright: 0px;			border-top-left-radius: 0px;			border-top-right-radius: 0px;	-webkit-border-bottom-right-radius: 0px;	-webkit-border-bottom-left-radius: 0px;		-moz-border-radius-bottomright: 0px;		-moz-border-radius-bottomleft: 0px;			border-bottom-right-radius: 0px;			border-bottom-left-radius: 0px;}	#slidethingTrigger_stacks_in_819523_page16:hover {	color: ;	cursor: pointer;}#slidethingContainer_stacks_in_819523_page16 {	display: block;	margin-top: px;	padding: px;	overflow: hidden;	color: ;	-webkit-border-radius: px;	-moz-border-radius: px;	border-radius: px;}.static-bg0stacks_in_819523_page16 {	background: transparent;}.static-bg1stacks_in_819523_page16 {	background: #333333;}.static-bg2stacks_in_819523_page16 {	background-color: #FFFFFF;	background-repeat: repeat-x;	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);}.static-bg3stacks_in_819523_page16 {	background-color: #FFFFFF;	background-repeat: repeat-x;	background-image: -khtml-gradient(linear, left top, left bottom, from(#FFFFFF), to(#FFFFFF));	background-image: -moz-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: -ms-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));	background-image: -webkit-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: -o-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: linear-gradient(top, #FFFFFF, #FFFFFF);	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=0);}.static-bg4stacks_in_819523_page16 {	background: url();	background-position: center center;	background-repeat: repeat;}.static-bg5stacks_in_819523_page16 {	background: url();	background-position: Center Center;	background-repeat: Center Center;}.content-bg0stacks_in_819523_page16 {	background: transparent;}.content-bg1stacks_in_819523_page16 {	background: #333333;}.content-bg2stacks_in_819523_page16 {	background-color: #FFFFFF;	background-repeat: repeat-x;	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);}.content-bg3stacks_in_819523_page16 {	background-color: #FFFFFF;	background-repeat: repeat-x;	background-image: -khtml-gradient(linear, left top, left bottom, from(#FFFFFF), to(#FFFFFF));	background-image: -moz-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: -ms-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));	background-image: -webkit-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: -o-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: linear-gradient(top, #FFFFFF, #FFFFFF);	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=0);}.content-bg4stacks_in_819523_page16 {	background: url();	background-position: center center;	background-repeat: repeat;}.content-bg5stacks_in_819523_page16 {	background: url();	background-position: Center Center;	background-repeat: Center Center;}/* @end */ /* Start dooHeader X stack CSS code */.stacks_in_819526_page16x{	display: block !important;		text-align: left !important;		}@media (max-width:768px) {	.stacks_in_819526_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_819526_page16x{		text-align: left !important;	}}/* End dooHeader X stack CSS code *//* -- Start Textalign Each css Template -- */#stacks_in_819529_page16 {	text-align: justify !important;}@media only screen and (max-width: 768px) {#stacks_in_819529_page16 {		text-align: justify !important;	}		#stacks_in_819529_page16 img {		margin: 0 auto !important;	}				}@media only screen and (max-width: 480px) {#stacks_in_819529_page16 {		text-align: justify !important;	}		#stacks_in_819529_page16 img {		margin: 0 auto !important;	}				}/* -- End Textalign Each css Template -- *//* TimelineThing Stack by RapidWeaver Central */#timelinethingstacks_in_819577_page16 {	border-left: 10px solid #37BC9B;	margin-left: 140px;	padding-left: 1em;	position: relative;	padding-top: 5px;	z-index: 0;}#timelinethingstacks_in_819577_page16 .timelinething {	padding: 0em 1em 4em 1em;	position: relative;	display: block;}#timelinethingstacks_in_819577_page16 .datelabelThing {	position: absolute;	top: 4px;	left: -140px !important;	font-size: 16px;	color: ;	text-decoration: none;	vertical-align: middle;	line-height: 36px;	-webkit-transition: all .2s ease;}#timelinethingstacks_in_819577_page16 .nub {	content: "";	display: block;	vertical-align: middle;	height: 35px;	width: 35px;	background: #996600;	border: 5px solid #37BC9B;	position: absolute;	border-radius: 100%;	left: -22px;	top: 0px;	line-height: 35px;	margin-top: 5px;	z-index: 1;}#timelinethingstacks_in_819577_page16 .nub:hover {	pointer-events: auto;		background: #FFCE54;}#slidethingWrapper_stacks_in_819577_page16 {	position: relative;	display: block;	margin-left: 40px;	padding-bottom: 40px;}#slidethingTrigger_stacks_in_819577_page16 {	margin: 0;	font-weight: normal;	display: block;	position: relative;	color: ;	border-bottom: 0px solid #3BAFDA;	text-decoration: none;	background: ;		-webkit-border-top-left-radius: 0px;	-webkit-border-top-right-radius: 0px;		-moz-border-radius-topleft: 0px;		-moz-border-radius-topright: 0px;			border-top-left-radius: 0px;			border-top-right-radius: 0px;	-webkit-border-bottom-right-radius: 0px;	-webkit-border-bottom-left-radius: 0px;		-moz-border-radius-bottomright: 0px;		-moz-border-radius-bottomleft: 0px;			border-bottom-right-radius: 0px;			border-bottom-left-radius: 0px;}	#slidethingTrigger_stacks_in_819577_page16:hover {	color: ;	cursor: pointer;}#slidethingContainer_stacks_in_819577_page16 {	display: block;	margin-top: px;	padding: px;	overflow: hidden;	color: ;	-webkit-border-radius: px;	-moz-border-radius: px;	border-radius: px;}.static-bg0stacks_in_819577_page16 {	background: transparent;}.static-bg1stacks_in_819577_page16 {	background: #333333;}.static-bg2stacks_in_819577_page16 {	background-color: #FFFFFF;	background-repeat: repeat-x;	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);}.static-bg3stacks_in_819577_page16 {	background-color: #FFFFFF;	background-repeat: repeat-x;	background-image: -khtml-gradient(linear, left top, left bottom, from(#FFFFFF), to(#FFFFFF));	background-image: -moz-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: -ms-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));	background-image: -webkit-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: -o-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: linear-gradient(top, #FFFFFF, #FFFFFF);	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=0);}.static-bg4stacks_in_819577_page16 {	background: url();	background-position: center center;	background-repeat: repeat;}.static-bg5stacks_in_819577_page16 {	background: url();	background-position: Center Center;	background-repeat: Center Center;}.content-bg0stacks_in_819577_page16 {	background: transparent;}.content-bg1stacks_in_819577_page16 {	background: #333333;}.content-bg2stacks_in_819577_page16 {	background-color: #FFFFFF;	background-repeat: repeat-x;	background-image: -khtml-gradient(linear, left top, right bottom, from(#FFFFFF), to(#FFFFFF));	background-image: -moz-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: -ms-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: -webkit-gradient(linear, left top, right bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));	background-image: -webkit-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: -o-linear-gradient(left, #FFFFFF, #FFFFFF);	background-image: linear-gradient(left, #FFFFFF, #FFFFFF);	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=1);}.content-bg3stacks_in_819577_page16 {	background-color: #FFFFFF;	background-repeat: repeat-x;	background-image: -khtml-gradient(linear, left top, left bottom, from(#FFFFFF), to(#FFFFFF));	background-image: -moz-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: -ms-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #FFFFFF), color-stop(100%, #FFFFFF));	background-image: -webkit-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: -o-linear-gradient(top, #FFFFFF, #FFFFFF);	background-image: linear-gradient(top, #FFFFFF, #FFFFFF);	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='#FFFFFF', GradientType=0);}.content-bg4stacks_in_819577_page16 {	background: url();	background-position: center center;	background-repeat: repeat;}.content-bg5stacks_in_819577_page16 {	background: url();	background-position: Center Center;	background-repeat: Center Center;}/* @end */ /* Start dooHeader X stack CSS code */.stacks_in_819580_page16x{	display: block !important;		text-align: left !important;		}@media (max-width:768px) {	.stacks_in_819580_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_819580_page16x{		text-align: left !important;	}}/* End dooHeader X stack CSS code *//* -- Start Textalign Each css Template -- */#stacks_in_819583_page16 {	text-align: justify !important;}@media only screen and (max-width: 768px) {#stacks_in_819583_page16 {		text-align: justify !important;	}		#stacks_in_819583_page16 img {		margin: 0 auto !important;	}				}@media only screen and (max-width: 480px) {#stacks_in_819583_page16 {		text-align: justify !important;	}		#stacks_in_819583_page16 img {		margin: 0 auto !important;	}				}/* -- End Textalign Each css Template -- */hr.solid{}hr.dashed{	border-style: dashed;}hr.dotted{	border-style: dotted;}hr.double{	border-style: double;}/* Centerer styles *//* Copyright Bryn Owen Design, 2015 */#stacks_in_853284_page16 {	text-align: center;	}.Centerer_stacks_in_853284_page16 {	text-align: center;	position: relative;	}.Centerer_stacks_in_853284_page16 div {	position: relative;	}.Centerer_Inner_stacks_in_853284_page16 {	width: 100%;	position: absolute;	}/* Centerer main container div styles */#Centerer_Stack1_stacks_in_853284_page16 {			opacity: 1.00;			text-align: center !important;			}/* Centerer inner div overrides */#Centerer_Stack1_stacks_in_853284_page16 div {	display: inline-block;			}/* Centerer inner text overrides for alignment */#Centerer_Stack1_stacks_in_853284_page16 div div {		}.styles-warning{	text-align: center;	width: 50%;	top: 0;	margin: 100px auto;	padding: 20px;	background: red;	color: white;}		.uk-button-group .uk-button{		margin-left: 2px;		margin-right: 2px;	}	#stacks_in_1100104_page16 {	padding:  20px;}#stacks_in_852274_page16 .ZiplistTitle{font-size:151%;padding:0.25em 0 0}#stacks_in_852274_page16 .ZiplistItem{font-size: 110%;margin:10px 0;}#stacks_in_852274_page16 .ZiplistItemTitle_stacks_in_852274_page16{font-size:110%;}#stacks_in_852274_page16 .ZiplistItemTitle_stacks_in_852274_page16 .ZiplistClosed,#stacks_in_852274_page16 .ZiplistItemTitle_stacks_in_852274_page16 .ZiplistOpen{text-decoration: none;}#stacks_in_852274_page16 .Ziplist{padding-bottom: 1em;}#stacks_in_852274_page16 ul.Ziplist{list-style-type:disc;}#stacks_in_852274_page16 .ZiplistShowHide{display:inline;font-size:0.7em;margin-left: 0.5em;}#stacks_in_852274_page16 .ZiplistContent{border-bottom:1px solid #BEBEBE;display:none;font-size: 100%;margin-bottom:1em;padding-bottom: 1em;}#stacks_in_852274_page16 {	margin: 5px 0px 0px 0px;}hr.solid{}hr.dashed{	border-style: dashed;}hr.dotted{	border-style: dotted;}hr.double{	border-style: double;}/* Start dooText X stack CSS code */.stacks_in_852311_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_852311_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_852311_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */hr.solid{}hr.dashed{	border-style: dashed;}hr.dotted{	border-style: dotted;}hr.double{	border-style: double;}/* Start dooText X stack CSS code */.stacks_in_852313_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_852313_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_852313_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */hr.solid{}hr.dashed{	border-style: dashed;}hr.dotted{	border-style: dotted;}hr.double{	border-style: double;}/* Start dooText X stack CSS code */.stacks_in_852309_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_852309_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_852309_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */hr.solid{}hr.dashed{	border-style: dashed;}hr.dotted{	border-style: dotted;}hr.double{	border-style: double;}/* Start dooText X stack CSS code */.stacks_in_852307_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_852307_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_852307_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */hr.solid{}hr.dashed{	border-style: dashed;}hr.dotted{	border-style: dotted;}hr.double{	border-style: double;}/* Start dooText X stack CSS code */.stacks_in_852305_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_852305_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_852305_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */hr.solid{}hr.dashed{	border-style: dashed;}hr.dotted{	border-style: dotted;}hr.double{	border-style: double;}/* Start dooText X stack CSS code */.stacks_in_852303_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_852303_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_852303_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */hr.solid{}hr.dashed{	border-style: dashed;}hr.dotted{	border-style: dotted;}hr.double{	border-style: double;}/* Start dooText X stack CSS code */.stacks_in_852321_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_852321_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_852321_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */hr.solid{}hr.dashed{	border-style: dashed;}hr.dotted{	border-style: dotted;}hr.double{	border-style: double;}/* Start dooText X stack CSS code */.stacks_in_852323_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_852323_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_852323_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */#stacks_in_852325_page16 {	margin: 10px 0px 0px 0px;}#stacks_in_1100105_page16 {	margin: 10px 0px 0px 0px;}hr.solid{}hr.dashed{	border-style: dashed;}hr.dotted{	border-style: dotted;}hr.double{	border-style: double;}/* Start dooText X stack CSS code */.stacks_in_852335_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_852335_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_852335_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */hr.solid{}hr.dashed{	border-style: dashed;}hr.dotted{	border-style: dotted;}hr.double{	border-style: double;}/* Start dooText X stack CSS code */.stacks_in_852338_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_852338_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_852338_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */#stacks_in_852339_page16 {	display:inline-block;width:100%;line-height: 1.240000em;	font-size: 122%;	font-weight: bolder;}hr.solid{}hr.dashed{	border-style: dashed;}hr.dotted{	border-style: dotted;}hr.double{	border-style: double;}#stacks_in_820095_page16 {	border: solid rgba(77, 77, 77, 1.00);	border-width:  1px;}/* Start dooText X stack CSS code */.stacks_in_894437_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_894437_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_894437_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */#stacks_in_894438_page16 {	display:inline-block;width:100%;line-height: 1.250000em;	font-size: 119%;}#stacks_in_1100106_page16 {	padding:  20px;}/* Start dooHeader X stack CSS code */.stacks_in_820087_page16x{	display: block !important;		text-align: left !important;		}@media (max-width:768px) {	.stacks_in_820087_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_820087_page16x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */hr.solid{}hr.dashed{	border-style: dashed;}hr.dotted{	border-style: dotted;}hr.double{	border-style: double;}/* Start dooText X stack CSS code */.stacks_in_820090_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_820090_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_820090_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_819402_page16x{	display: block !important;		text-align: left !important;		}@media (max-width:768px) {	.stacks_in_819402_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_819402_page16x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */hr.solid{}hr.dashed{	border-style: dashed;}hr.dotted{	border-style: dotted;}hr.double{	border-style: double;}/* -- Start Textalign Each css Template -- */#stacks_in_819405_page16 {	text-align: center !important;}@media only screen and (max-width: 768px) {#stacks_in_819405_page16 {		text-align: center !important;	}		#stacks_in_819405_page16 img {		margin: 0 auto !important;	}				}@media only screen and (max-width: 480px) {#stacks_in_819405_page16 {		text-align: center !important;	}		#stacks_in_819405_page16 img {		margin: 0 auto !important;	}				}/* -- End Textalign Each css Template -- */hr.solid{}hr.dashed{	border-style: dashed;}hr.dotted{	border-style: dotted;}hr.double{	border-style: double;}#stacks_in_863054_page16>.s3_row {	margin: 0 -10px;}#stacks_in_863054_page16>.s3_row>.s3_column_left {	width: 30.30%;}#stacks_in_863054_page16>.s3_row>.s3_column_right {	width: 69.699997%;}#stacks_in_863054_page16>.s3_row>.s3_column {	padding: 0 10px;}@media only screen and (max-width: 770px) {}@media only screen and (max-width: 400px) {	#stacks_in_863054_page16>.s3_row  {		margin: -10px 0;	}	#stacks_in_863054_page16>.s3_row>.s3_column {		padding: 10px 0;		width:100%;	}}/* Start dooHeader X stack CSS code */.stacks_in_863059_page16x{	display: block !important;		text-align: left !important;		}@media (max-width:768px) {	.stacks_in_863059_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_863059_page16x{		text-align: left !important;	}}/* End dooHeader X stack CSS code *//* Start dooText X stack CSS code */.stacks_in_863061_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_863061_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_863061_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */.customiser-warning{display:none}.theme-warning{	text-align: center;	width: 50%;	top: 0;	margin: 100px auto;	padding: 20px;	background: red;	color: white;	z-index:1000} .stacks_top.loaded,.uikit-main.loaded{	opacity:1!important}.image-right{float:right;padding-left:20px;padding-bottom:20px}.image-left{float:left;padding-right:20px;padding-bottom:20px}@media(max-width:320px){	.image-right,.image-left{float:none;padding-left:0;padding-right:0}}@media(min-width:767px){	.uk-navbar-brand{padding:0;margin-left:0}}em{color:rgba(68, 68, 68, 1.00)}code{color:rgba(221, 0, 85, 1.00)!important}.uk-container{	max-width:980px}@media(min-width:1220px){	.uk-container{max-width:980px}} html,body{	color:#242424;	background:#FFFFFF}hr{border-top-color:#DDDDDD}.uk-nav-divider{	border-color:#DDDDDD!important}.uk-grid-divider>[class*='uk-width-medium-']:not(.uk-width-medium-1-1):nth-child(n+2){	border-left-color:#DDDDDD!important}.uk-subnav-line>:nth-child(n+2):before{	border-left-color:#DDDDDD}html{color:#242424}h1,.uk-h1{	color:rgba(68, 68, 68, 1.00);	font-weight: normal;}h2,h3,h4,h5,h6,.uk-h2,.uk-h3,.uk-h4,.uk-h5,.uk-h6{	color:rgba(68, 68, 68, 1.00);	font-weight: normal;}a,.uk-link{	color:rgba(0, 119, 221, 1.00)}a:hover,a.active:hover,.uk-link:hover{	color:rgba(68, 68, 68, 1.00)}a,.uk-link,.uk-button-link{	text-decoration:none}a:hover,.uk-link:hover,.uk-button-link:hover{	text-decoration:none}.uk-button,.uk-button:visited{background-color:rgba(238, 238, 238, 1.00);color:rgba(68, 68, 68, 1.00)}.uk-button:hover,.uk-button:focus{background-color:rgba(245, 245, 245, 1.00);color:rgba(68, 68, 68, 1.00)}.uk-button-primary,.uk-button-primary:visited{background-color:rgba(0, 168, 230, 1.00);color:rgba(255, 255, 255, 1.00)}.uk-button-primary:hover,.uk-button-primary:focus{background-color:rgba(53, 179, 238, 1.00);color:rgba(255, 255, 255, 1.00)}.uk-button-success,.uk-button-success:visited{background-color:rgba(140, 193, 76, 1.00);color:rgba(255, 255, 255, 1.00)}.uk-button-success:hover,.uk-button-success:focus{background-color:rgba(142, 199, 59, 1.00);color:rgba(255, 255, 255, 1.00)}.uk-button-danger,.uk-button-danger:visited{background-color:rgba(218, 49, 75, 1.00);color:rgba(255, 255, 255, 1.00)}.uk-button-danger:hover,.uk-button-danger:focus{background-color:rgba(228, 53, 79, 1.00);color:rgba(255, 255, 255, 1.00)}.uk-button-link,.uk-button-link:visited{color:rgba(68, 68, 68, 1.00);background-color: transparent;}.uk-button-link:hover,.uk-button-link:focus{color:rgba(204, 204, 204, 1.00);background-color: transparent;}.uk-navbar-content .uk-button-primary,.uk-navbar-content .uk-button-primary:visited{background-color:rgba(0, 168, 230, 1.00);color:rgba(255, 255, 255, 1.00)!important}.uk-navbar-content .uk-button-primary:hover,.uk-navbar-content .uk-button-primary:focus{background-color:rgba(53, 179, 238, 1.00);color:rgba(255, 255, 255, 1.00)!important}.uk-navbar-content .uk-button-success,.uk-navbar-content .uk-button-success:visited{background-color:rgba(140, 193, 76, 1.00);color:rgba(255, 255, 255, 1.00)!important}.uk-navbar-content .uk-button-success:hover,.uk-navbar-content .uk-button-success:focus{background-color:rgba(142, 199, 59, 1.00);color:rgba(255, 255, 255, 1.00)!important}.uk-navbar-content .uk-button-danger,.uk-navbar-content .uk-button-danger:visited{background-color:rgba(218, 49, 75, 1.00);color:rgba(255, 255, 255, 1.00)!important}.uk-navbar-content .uk-button-danger:hover,.uk-navbar-content .uk-button-danger:focus{background-color:rgba(228, 53, 79, 1.00);color:rgba(255, 255, 255, 1.00)!important}.uk-navbar-content .uk-button-link,.uk-navbar-content .uk-button-link:visited{color:rgba(68, 68, 68, 1.00)!important}.uk-navbar-content .uk-button-link:hover,.uk-navbar-content .uk-button-link:focus{color:rgba(204, 204, 204, 1.00)!important}h1,.h1-family{font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif}h2,h3,h4,h5,h6,.headings-family, .uk-navbar-nav>*>*, .uk-offcanvas-bar>*>*,::-webkit-input-placeholder{font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif!important}::-ms-input-placeholder{font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif!important}::-moz-placeholder{font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif!important}body,.body-family{font-family:Arial, 'Helvetica Neue', Helvetica, sans-serif}h1,.uk-h1{font-size:36px;line-height:42px}h2,.uk-h2{font-size:24px;line-height:30px}h3,.uk-h3{font-size:18px;line-height:24px}h4,.uk-h4{font-size:16px;line-height:22px}h5,.uk-h5{font-size:14px;line-height:20px}h6,.uk-h6{font-size:12px;line-height:18px}html{font-size:14px;line-height:20px} .uk-panel>h3,.uk-panel:hover>h3{background:transparent}.uk-block-default,.uk-panel-box-default{color:rgba(68, 68, 68, 1.00)!important;background:rgba(255, 255, 255, 1.00)}.uk-subnav.default-scheme>*>*{color:rgba(68, 68, 68, 1.00)}.uk-subnav.default-scheme>*>a:hover,.uk-subnav.default-scheme>*>a:focus{color:rgba(234, 234, 234, 1.00)}.uk-subnav.default-scheme>.uk-active>*{color:rgba(59, 167, 212, 1.00)}.uk-block-primary,.uk-panel-box-primary{color:rgba(255, 255, 255, 1.00)!important;background:rgba(0, 168, 230, 1.00)}.uk-subnav.primary-scheme>*>*{color:rgba(255, 255, 255, 1.00)}.uk-subnav.primary-scheme>*>a:hover,.uk-subnav.primary-scheme>*>a:focus{color:rgba(234, 234, 234, 1.00)}.uk-subnav.primary-scheme>.uk-active>*{color:rgba(59, 167, 212, 1.00)}.uk-block-secondary,.uk-panel-box-secondary{color:rgba(255, 255, 255, 1.00)!important;background:rgba(34, 34, 34, 1.00)}.uk-subnav.secondary-scheme>*>*{color:rgba(255, 255, 255, 1.00)}.uk-subnav.secondary-scheme>*>a:hover,.uk-subnav.secondary-scheme>*>a:focus{color:rgba(234, 234, 234, 1.00)}.uk-subnav.secondary-scheme>.uk-active>*{color:rgba(59, 167, 212, 1.00)}.uk-block-muted{color:rgba(68, 68, 68, 1.00)!important;background:rgba(249, 249, 249, 1.00)}.uk-subnav>.uk-disabled>*{color:rgba(68, 68, 68, 1.00)!important}.uk-subnav .body-family > * > *{	font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif!important;}.uk-subnav .headings-family > * > *{	font-family: Arial, 'Helvetica Neue', Helvetica, sans-serif!important;}/* Start dooHeader X stack CSS code */.stacks_in_p819609_n788388_page16x{	display: block !important;		text-align: left !important;		}@media (max-width:768px) {	.stacks_in_p819609_n788388_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_p819609_n788388_page16x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */hr.solid{}hr.dashed{	border-style: dashed;}hr.dotted{	border-style: dotted;}hr.double{	border-style: double;}.styles-warning{	text-align: center;	width: 50%;	top: 0;	margin: 100px auto;	padding: 20px;	background: red;	color: white;}/*I know, leave this way...*/.uk-form ::-webkit-input-placeholder{opacity: .4}.uk-form ::-moz-input-placeholder{opacity: .4}.uk-form ::-ms-input-placeholder{opacity: .4}.uk-notify{z-index: 999;}.uk-form-width-large {width: 260px;}.uk-form-help-block{margin: 10px 0}.customiser-warning{display:none}.theme-warning{	text-align: center;	width: 50%;	top: 0;	margin: 100px auto;	padding: 20px;	background: red;	color: white;	z-index:1000} .stacks_top.loaded,.uikit-main.loaded{	opacity:1!important}.image-right{float:right;padding-left:20px;padding-bottom:20px}.image-left{float:left;padding-right:20px;padding-bottom:20px}@media(max-width:320px){	.image-right,.image-left{float:none;padding-left:0;padding-right:0}}@media(min-width:767px){	.uk-navbar-brand{padding:0;margin-left:0}}em{color:rgba(68, 68, 68, 1.00)}code{color:rgba(221, 0, 85, 1.00)!important}.uk-container{	max-width:960px}@media(min-width:1220px){	.uk-container{max-width:1060px}} html,body{	color:#242424;	background:#FFFFFF}hr{border-top-color:#DDDDDD}.uk-nav-divider{	border-color:#DDDDDD!important}.uk-grid-divider>[class*='uk-width-medium-']:not(.uk-width-medium-1-1):nth-child(n+2){	border-left-color:#DDDDDD!important}.uk-subnav-line>:nth-child(n+2):before{	border-left-color:#DDDDDD}html{color:#242424}h1,.uk-h1{	color:rgba(68, 68, 68, 1.00);	font-weight: bold;}h2,h3,h4,h5,h6,.uk-h2,.uk-h3,.uk-h4,.uk-h5,.uk-h6{	color:rgba(68, 68, 68, 1.00);	font-weight: bold;}a,.uk-link{	color:rgba(0, 153, 204, 1.00)}a:hover,a.active:hover,.uk-link:hover{	color:rgba(68, 68, 68, 1.00)}a,.uk-link,.uk-button-link{	text-decoration:none}a:hover,.uk-link:hover,.uk-button-link:hover{	text-decoration:none}.uk-button,.uk-button:visited{background-color:rgba(238, 238, 238, 1.00);color:rgba(68, 68, 68, 1.00)}.uk-button:hover,.uk-button:focus{background-color:rgba(245, 245, 245, 1.00);color:rgba(68, 68, 68, 1.00)}.uk-button-primary,.uk-button-primary:visited{background-color:rgba(0, 168, 230, 1.00);color:rgba(255, 255, 255, 1.00)}.uk-button-primary:hover,.uk-button-primary:focus{background-color:rgba(53, 179, 238, 1.00);color:rgba(255, 255, 255, 1.00)}.uk-button-success,.uk-button-success:visited{background-color:rgba(140, 193, 76, 1.00);color:rgba(255, 255, 255, 1.00)}.uk-button-success:hover,.uk-button-success:focus{background-color:rgba(142, 199, 59, 1.00);color:rgba(255, 255, 255, 1.00)}.uk-button-danger,.uk-button-danger:visited{background-color:rgba(233, 177, 78, 1.00);color:rgba(255, 255, 255, 1.00)}.uk-button-danger:hover,.uk-button-danger:focus{background-color:rgba(228, 53, 79, 1.00);color:rgba(255, 255, 255, 1.00)}.uk-button-link,.uk-button-link:visited{color:rgba(68, 68, 68, 1.00);background-color: transparent;}.uk-button-link:hover,.uk-button-link:focus{color:rgba(204, 204, 204, 1.00);background-color: transparent;}.uk-navbar-content .uk-button-primary,.uk-navbar-content .uk-button-primary:visited{background-color:rgba(0, 168, 230, 1.00);color:rgba(255, 255, 255, 1.00)!important}.uk-navbar-content .uk-button-primary:hover,.uk-navbar-content .uk-button-primary:focus{background-color:rgba(53, 179, 238, 1.00);color:rgba(255, 255, 255, 1.00)!important}.uk-navbar-content .uk-button-success,.uk-navbar-content .uk-button-success:visited{background-color:rgba(140, 193, 76, 1.00);color:rgba(255, 255, 255, 1.00)!important}.uk-navbar-content .uk-button-success:hover,.uk-navbar-content .uk-button-success:focus{background-color:rgba(142, 199, 59, 1.00);color:rgba(255, 255, 255, 1.00)!important}.uk-navbar-content .uk-button-danger,.uk-navbar-content .uk-button-danger:visited{background-color:rgba(233, 177, 78, 1.00);color:rgba(255, 255, 255, 1.00)!important}.uk-navbar-content .uk-button-danger:hover,.uk-navbar-content .uk-button-danger:focus{background-color:rgba(228, 53, 79, 1.00);color:rgba(255, 255, 255, 1.00)!important}.uk-navbar-content .uk-button-link,.uk-navbar-content .uk-button-link:visited{color:rgba(68, 68, 68, 1.00)!important}.uk-navbar-content .uk-button-link:hover,.uk-navbar-content .uk-button-link:focus{color:rgba(204, 204, 204, 1.00)!important}h1,.h1-family{}h2,h3,h4,h5,h6,.headings-family, .uk-navbar-nav>*>*, .uk-offcanvas-bar>*>*,::-webkit-input-placeholder{}::-ms-input-placeholder{}::-moz-placeholder{}body,.body-family{}h1,.uk-h1{font-size:36px;line-height:42px}h2,.uk-h2{font-size:24px;line-height:30px}h3,.uk-h3{font-size:18px;line-height:24px}h4,.uk-h4{font-size:16px;line-height:22px}h5,.uk-h5{font-size:14px;line-height:20px}h6,.uk-h6{font-size:12px;line-height:18px}html{font-size:14px;line-height:20px} .uk-panel>h3,.uk-panel:hover>h3{background:transparent}.uk-block-default,.uk-panel-box-default{color:rgba(68, 68, 68, 1.00)!important;background:rgba(255, 255, 255, 1.00)}.uk-subnav.default-scheme>*>*{color:rgba(68, 68, 68, 1.00)}.uk-subnav.default-scheme>*>a:hover,.uk-subnav.default-scheme>*>a:focus{color:rgba(234, 234, 234, 1.00)}.uk-subnav.default-scheme>.uk-active>*{color:rgba(59, 167, 212, 1.00)}.uk-block-primary,.uk-panel-box-primary{color:rgba(0, 0, 0, 1.00)!important;background:rgba(0, 168, 230, 1.00)}.uk-subnav.primary-scheme>*>*{color:rgba(0, 0, 0, 1.00)}.uk-subnav.primary-scheme>*>a:hover,.uk-subnav.primary-scheme>*>a:focus{color:rgba(234, 234, 234, 1.00)}.uk-subnav.primary-scheme>.uk-active>*{color:rgba(59, 167, 212, 1.00)}.uk-block-secondary,.uk-panel-box-secondary{color:rgba(255, 204, 51, 1.00)!important;background:rgba(34, 34, 34, 1.00)}.uk-subnav.secondary-scheme>*>*{color:rgba(255, 204, 51, 1.00)}.uk-subnav.secondary-scheme>*>a:hover,.uk-subnav.secondary-scheme>*>a:focus{color:rgba(234, 234, 234, 1.00)}.uk-subnav.secondary-scheme>.uk-active>*{color:rgba(59, 167, 212, 1.00)}.uk-block-muted{color:rgba(68, 68, 68, 1.00)!important;background:rgba(249, 249, 249, 1.00)}.uk-subnav>.uk-disabled>*{color:rgba(68, 68, 68, 1.00)!important}.uk-subnav .body-family > * > *{	font-family: custom!important;}.uk-subnav .headings-family > * > *{	font-family: custom!important;}/* AdThing by RapidWeaver Central */#adThingstacks_in_p808430_n806379_page16 {	display: block;	overflow: visible;	position: relative;	max-width:100% !important;	height:auto;				max-width: 800px;		}#stacks_in_p808430_n806379_page16 .contentThingTop {	display: block;	overflow: hidden;	position: absolute;		height: 100%;	width: 100%;		z-index: 10;	 		 		background-color: #fff;	background-repeat: repeat-x;	background-image: -webkit-gradient(linear, left right, color-stop(16%,#FFFFFF), rgba(255,255,255,0)),color-stop(70%, rgba(255,255,255,0));	background: -webkit-linear-gradient(0deg,  #FFFFFF) 16%,  rgba(255,255,255,0) 70%);	background: -moz-linear-gradient(0deg,  #FFFFFF 16%,  rgba(255,255,255,0) 70%);	background: -ms-linear-gradient(0deg, #FFFFFF 16%,  rgba(255,255,255,0) 70%);	background: linear-gradient(90deg,  #FFFFFF 16%,  rgba(255,255,255,0) 70%);	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFF', endColorstr='transparent', GradientType=1);	 		 /* 		 */}*/#stacks_in_p808430_n806379_page16 .contentThingBottom {	width: 100%;	max-width:100% !important;	height:auto;		display: block;margin: 0px;	overflow: hidden;	position: absolute;		top: 0;	left: 0;	background-color: #fff;	z-index: 1;}#adThingstacks_in_p808430_n806379_page16  img{		    margin: -5px -10px -10px 0px;	-webkit-filter: blur(2px);		-ms-filter: blur(2px);			filter: blur(2px);	filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='2');		}#adThingstacks_in_p808430_n806379_page16:hover img {		    margin: -5px -10px -10px 0px;	-webkit-filter:  blur(0px);		 -ms-filter: blur(0px);	filter: none;	filter:progid:DXImageTransform.Microsoft.Blur(PixelRadius='0');}	#stacks_in_p808430_n806379_page16  .diskthing {	 		display:none;	 		}#diskthingstacks_in_p808430_n806379_page16 {	display: block;	overflow: hidden;	position: relative;	-webkit-border-radius: 100%;	   -moz-border-radius: 100%;			border-radius: 100%;}#disker_stacks_in_p808430_n806379_page16 {	background: #D47352 url(0) center no-repeat;	width: 100px;	height: 100px;	border: 1px solid #EEEEEE;	margin: 0px auto;	vertical-align: top;	overflow: hidden;	position: relative;	-webkit-border-radius: 100%;	   -moz-border-radius: 100%;			border-radius: 100%;}#stacks_in_p808430_n806379_page16 .centerslice {	display: table-cell;	width: 100px;	height: 100px;	vertical-align: middle;	-webkit-border-radius: 100%;	   -moz-border-radius: 100%;			border-radius: 100%;	z-index: 13;} .shadow-style0stacks_in_p808430_n806379_page16 {	-webkit-box-shadow: none;	   -moz-box-shadow: none;			box-shadow: none;}#stacks_in_p808430_n806379_page16 .shadow-style1stacks_in_p808430_n806379_page16 {	-webkit-box-shadow: 0px 0px 5px rgba(0,0,0,0.50);	   -moz-box-shadow: 0px 0px 5px rgba(0,0,0,0.50);			box-shadow: 0px 0px 5px rgba(0,0,0,0.50);}#stacks_in_p808430_n806379_page16 .shadow-style1stacks_in_p808430_n806379_page16 {	margin: 6px auto;}.shadow-style2stacks_in_p808430_n806379_page16 {	-webkit-box-shadow: inset 0px 0px 5px rgba(0,0,0,0.50);	   -moz-box-shadow: inset 0px 0px 5px rgba(0,0,0,0.50);			box-shadow: inset 0px 0px 5px rgba(0,0,0,0.50);}#stacks_in_p808430_n806379_page16 {	padding:  10px;}/* ********* *//* Normalize *//* ********* *//* HTML5 display definitions   ========================================================================== *//** * Correct `block` display not defined for any HTML5 element in IE 8/9. * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox. * Correct `block` display not defined for `main` in IE 11. */#stacks_in_p808430_n806382_page16 article,#stacks_in_p808430_n806382_page16 aside,#stacks_in_p808430_n806382_page16 details,#stacks_in_p808430_n806382_page16 figcaption,#stacks_in_p808430_n806382_page16 figure,#stacks_in_p808430_n806382_page16 footer,#stacks_in_p808430_n806382_page16 header,#stacks_in_p808430_n806382_page16 hgroup,#stacks_in_p808430_n806382_page16 main,#stacks_in_p808430_n806382_page16 nav,#stacks_in_p808430_n806382_page16 section,#stacks_in_p808430_n806382_page16 summary {display: block;}/** * 1. Correct `inline-block` display not defined in IE 8/9. * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */#stacks_in_p808430_n806382_page16 audio,#stacks_in_p808430_n806382_page16 canvas,#stacks_in_p808430_n806382_page16 progress,#stacks_in_p808430_n806382_page16 video {display: inline-block;/* 1 */  vertical-align: baseline;/* 2 */}/** * Prevent modern browsers from displaying `audio` without controls. * Remove excess height in iOS 5 devices. */#stacks_in_p808430_n806382_page16 audio:not([controls]) {display: none;height: 0;}/** * Address `[hidden]` styling not present in IE 8/9/10. * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. */#stacks_in_p808430_n806382_page16 [hidden],#stacks_in_p808430_n806382_page16 template {display: none;}/* Embedded content   ========================================================================== *//** * Remove border when inside `a` element in IE 8/9/10. */#stacks_in_p808430_n806382_page16 img {border: 0;}/** * Correct overflow not hidden in IE 9/10/11. */#stacks_in_p808430_n806382_page16 svg:not(:root) {overflow: hidden;}/* Grouping content   ========================================================================== *//** * Address differences between Firefox and other browsers. */#stacks_in_p808430_n806382_page16 hr {-moz-box-sizing: content-box;box-sizing: content-box;height: 0;}/** * Contain overflow in all browsers. */#stacks_in_p808430_n806382_page16 pre {overflow: auto;}/** * Address odd `em`-unit font size rendering in all browsers. */#stacks_in_p808430_n806382_page16 code,#stacks_in_p808430_n806382_page16 kbd,#stacks_in_p808430_n806382_page16 pre,#stacks_in_p808430_n806382_page16 samp {font-family: monospace, monospace;font-size: 1em;}/* **************** *//* Stack Specific   *//* **************** */#stacks_in_p808430_n806382_page16 *,#stacks_in_p808430_n806382_page16 *:before,#stacks_in_p808430_n806382_page16 *:after {-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;}#stacks_in_p808430_n806382_page16 .wow {visibility: hidden;}/* We use this media query to add styles to any device that supports media queries */@media only screen {#stacks_in_p808430_n806382_page16 .column_base_margin {    margin-bottom: 0px;}}@media only screen and (max-width: 1024px) {#stacks_in_p808430_n806382_page16 .column_base_margin {    margin-bottom: 40px;}}/* Used to alter styles for screens at least 768px wide. */@media only screen and (max-width: 768px) {#stacks_in_p808430_n806382_page16 .column_base_margin {    margin-bottom: 40px;}}/* Used to alter styles for screens at least 480px wide. */@media only screen and (max-width: 640px) {#stacks_in_p808430_n806382_page16 .column_base_margin {    margin-bottom: 20px;}}/* Handles making images responsive inside the stack */#stacks_in_p808430_n806382_page16 img {max-width: 100%;height: auto;}/* **************** *//* Foundation START *//* **************** *//*Copyright (c) 2013-2014 ZURB, inc.MIT LicensePermission is hereby granted, free of charge, to any person obtaininga copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, includingwithout limitation the rights to use, copy, modify, merge, publish,distribute, sublicense, and/or sell copies of the Software, and topermit persons to whom the Software is furnished to do so, subject tothe following conditions:The above copyright notice and this permission notice shall beincluded 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 OFMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE ANDNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BELIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTIONOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTIONWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.*/#stacks_in_p808430_n806382_page16 meta.foundation-version {font-family: "/5.3.1/";}#stacks_in_p808430_n806382_page16 meta.foundation-mq-small {font-family: "/only screen/";width: 0em;}#stacks_in_p808430_n806382_page16 meta.foundation-mq-medium {font-family: "/only screen and (min-width:40.063em)/";width: 40.063em;}#stacks_in_p808430_n806382_page16 meta.foundation-mq-large {font-family: "/only screen and (min-width:64.063em)/";width: 64.063em;}#stacks_in_p808430_n806382_page16 meta.foundation-mq-xlarge {font-family: "/only screen and (min-width:90.063em)/";width: 90.063em;}#stacks_in_p808430_n806382_page16 meta.foundation-mq-xxlarge {font-family: "/only screen and (min-width:120.063em)/";width: 120.063em;}#stacks_in_p808430_n806382_page16 meta.foundation-data-attribute-namespace {font-family: false;}#stacks_in_p808430_n806382_page16 *,#stacks_in_p808430_n806382_page16 *:before,#stacks_in_p808430_n806382_page16 *:after {-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}#stacks_in_p808430_n806382_page16 .left {float: left !important;}#stacks_in_p808430_n806382_page16 .right {float: right !important;}#stacks_in_p808430_n806382_page16 .clearfix:before,#stacks_in_p808430_n806382_page16 .clearfix:after {content: " ";display: table;}#stacks_in_p808430_n806382_page16 .clearfix:after {clear: both;}#stacks_in_p808430_n806382_page16 .hide {display: none;}#stacks_in_p808430_n806382_page16 .antialiased {-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}#stacks_in_p808430_n806382_page16 img {display: inline-block;vertical-align: middle;}#stacks_in_p808430_n806382_page16 textarea {height: auto;min-height: 50px;}#stacks_in_p808430_n806382_page16 select {width: 100%;}#stacks_in_p808430_n806382_page16 .row {width: 100%;margin-left: auto;margin-right: auto;margin-top: 0;margin-bottom: 0;}#stacks_in_p808430_n806382_page16 .row:before,#stacks_in_p808430_n806382_page16 .row:after {content: " ";display: table;}#stacks_in_p808430_n806382_page16 .row:after {clear: both;}#stacks_in_p808430_n806382_page16 .row.collapse > .column,#stacks_in_p808430_n806382_page16 .row.collapse > .columns {padding-left: 0;padding-right: 0;}#stacks_in_p808430_n806382_page16 .row.collapse .row {margin-left: 0;margin-right: 0;}#stacks_in_p808430_n806382_page16 .row .row {width: auto;margin-left: -0.9375em;margin-right: -0.9375em;margin-top: 0;margin-bottom: 0;max-width: none;}#stacks_in_p808430_n806382_page16 .row .row:before,#stacks_in_p808430_n806382_page16 .row .row:after {content: " ";display: table;}#stacks_in_p808430_n806382_page16 .row .row:after {clear: both;}#stacks_in_p808430_n806382_page16 .row .row.collapse {width: auto;margin: 0;max-width: none;}#stacks_in_p808430_n806382_page16 .row .row.collapse:before,#stacks_in_p808430_n806382_page16 .row .row.collapse:after {content: " ";display: table;}#stacks_in_p808430_n806382_page16 .row .row.collapse:after {clear: both;}#stacks_in_p808430_n806382_page16 .column,#stacks_in_p808430_n806382_page16 .columns {padding-left: 0.9375em;padding-right: 0.9375em;margin-right: 0;/* Fixes comaptiblity with some themes using skeleton.css */  margin-left: 0;/* Fixes comaptiblity with some themes using skeleton.css */  width: 100%;float: left;}#stacks_in_p808430_n806382_page16 [class*="column"] + [class*="column"]:last-child {float: right;}#stacks_in_p808430_n806382_page16 [class*="column"] + [class*="column"].end {float: left;}@media only screen {#stacks_in_p808430_n806382_page16 .small-push-0 {    position: relative;left: 0%;right: auto;}  #stacks_in_p808430_n806382_page16 .small-pull-0 {position: relative;right: 0%;left: auto;}  #stacks_in_p808430_n806382_page16 .small-push-1 {position: relative;left: 8.33333%;right: auto;}  #stacks_in_p808430_n806382_page16 .small-pull-1 {position: relative;right: 8.33333%;left: auto;}  #stacks_in_p808430_n806382_page16 .small-push-2 {position: relative;left: 16.66667%;right: auto;}  #stacks_in_p808430_n806382_page16 .small-pull-2 {position: relative;right: 16.66667%;left: auto;}  #stacks_in_p808430_n806382_page16 .small-push-3 {position: relative;left: 25%;right: auto;}  #stacks_in_p808430_n806382_page16 .small-pull-3 {position: relative;right: 25%;left: auto;}  #stacks_in_p808430_n806382_page16 .small-push-4 {position: relative;left: 33.33333%;right: auto;}  #stacks_in_p808430_n806382_page16 .small-pull-4 {position: relative;right: 33.33333%;left: auto;}  #stacks_in_p808430_n806382_page16 .small-push-5 {position: relative;left: 41.66667%;right: auto;}  #stacks_in_p808430_n806382_page16 .small-pull-5 {position: relative;right: 41.66667%;left: auto;}  #stacks_in_p808430_n806382_page16 .small-push-6 {position: relative;left: 50%;right: auto;}  #stacks_in_p808430_n806382_page16 .small-pull-6 {position: relative;right: 50%;left: auto;}  #stacks_in_p808430_n806382_page16 .small-push-7 {position: relative;left: 58.33333%;right: auto;}  #stacks_in_p808430_n806382_page16 .small-pull-7 {position: relative;right: 58.33333%;left: auto;}  #stacks_in_p808430_n806382_page16 .small-push-8 {position: relative;left: 66.66667%;right: auto;}  #stacks_in_p808430_n806382_page16 .small-pull-8 {position: relative;right: 66.66667%;left: auto;}  #stacks_in_p808430_n806382_page16 .small-push-9 {position: relative;left: 75%;right: auto;}  #stacks_in_p808430_n806382_page16 .small-pull-9 {position: relative;right: 75%;left: auto;}  #stacks_in_p808430_n806382_page16 .small-push-10 {position: relative;left: 83.33333%;right: auto;}  #stacks_in_p808430_n806382_page16 .small-pull-10 {position: relative;right: 83.33333%;left: auto;}  #stacks_in_p808430_n806382_page16 .small-push-11 {position: relative;left: 91.66667%;right: auto;}  #stacks_in_p808430_n806382_page16 .small-pull-11 {position: relative;right: 91.66667%;left: auto;}  #stacks_in_p808430_n806382_page16 .column,  #stacks_in_p808430_n806382_page16 .columns {position: relative;padding-left: 0.9375em;padding-right: 0.9375em;float: left;}  #stacks_in_p808430_n806382_page16 .small-1 {width: 8.33333%;}  #stacks_in_p808430_n806382_page16 .small-2 {width: 16.66667%;}  #stacks_in_p808430_n806382_page16 .small-3 {width: 25%;}  #stacks_in_p808430_n806382_page16 .small-4 {width: 33.33333%;}  #stacks_in_p808430_n806382_page16 .small-5 {width: 41.66667%;}  #stacks_in_p808430_n806382_page16 .small-6 {width: 50%;}  #stacks_in_p808430_n806382_page16 .small-7 {width: 58.33333%;}  #stacks_in_p808430_n806382_page16 .small-8 {width: 66.66667%;}  #stacks_in_p808430_n806382_page16 .small-9 {width: 75%;}  #stacks_in_p808430_n806382_page16 .small-10 {width: 83.33333%;}  #stacks_in_p808430_n806382_page16 .small-11 {width: 91.66667%;}  #stacks_in_p808430_n806382_page16 .small-12 {width: 100%;}  #stacks_in_p808430_n806382_page16 .small-offset-0 {margin-left: 0% !important;}  #stacks_in_p808430_n806382_page16 .small-offset-1 {margin-left: 8.33333% !important;}  #stacks_in_p808430_n806382_page16 .small-offset-2 {margin-left: 16.66667% !important;}  #stacks_in_p808430_n806382_page16 .small-offset-3 {margin-left: 25% !important;}  #stacks_in_p808430_n806382_page16 .small-offset-4 {margin-left: 33.33333% !important;}  #stacks_in_p808430_n806382_page16 .small-offset-5 {margin-left: 41.66667% !important;}  #stacks_in_p808430_n806382_page16 .small-offset-6 {margin-left: 50% !important;}  #stacks_in_p808430_n806382_page16 .small-offset-7 {margin-left: 58.33333% !important;}  #stacks_in_p808430_n806382_page16 .small-offset-8 {margin-left: 66.66667% !important;}  #stacks_in_p808430_n806382_page16 .small-offset-9 {margin-left: 75% !important;}  #stacks_in_p808430_n806382_page16 .small-offset-10 {margin-left: 83.33333% !important;}  #stacks_in_p808430_n806382_page16 .small-offset-11 {margin-left: 91.66667% !important;}  #stacks_in_p808430_n806382_page16 .small-reset-order {margin-left: 0;margin-right: 0;left: auto;right: auto;float: left;}  #stacks_in_p808430_n806382_page16 .column.small-centered,  #stacks_in_p808430_n806382_page16 .columns.small-centered {margin-left: auto;margin-right: auto;float: none;}  #stacks_in_p808430_n806382_page16 .column.small-uncentered,  #stacks_in_p808430_n806382_page16 .columns.small-uncentered {margin-left: 0;margin-right: 0;float: left;}  #stacks_in_p808430_n806382_page16 .column.small-centered:last-child,  #stacks_in_p808430_n806382_page16 .columns.small-centered:last-child {float: none;}  #stacks_in_p808430_n806382_page16 .column.small-uncentered:last-child,  #stacks_in_p808430_n806382_page16 .columns.small-uncentered:last-child {float: left;}  #stacks_in_p808430_n806382_page16 .column.small-uncentered.opposite,  #stacks_in_p808430_n806382_page16 .columns.small-uncentered.opposite {float: right;}}@media only screen and (min-width: 40.063em) {#stacks_in_p808430_n806382_page16 .medium-push-0 {    position: relative;left: 0%;right: auto;}  #stacks_in_p808430_n806382_page16 .medium-pull-0 {position: relative;right: 0%;left: auto;}  #stacks_in_p808430_n806382_page16 .medium-push-1 {position: relative;left: 8.33333%;right: auto;}  #stacks_in_p808430_n806382_page16 .medium-pull-1 {position: relative;right: 8.33333%;left: auto;}  #stacks_in_p808430_n806382_page16 .medium-push-2 {position: relative;left: 16.66667%;right: auto;}  #stacks_in_p808430_n806382_page16 .medium-pull-2 {position: relative;right: 16.66667%;left: auto;}  #stacks_in_p808430_n806382_page16 .medium-push-3 {position: relative;left: 25%;right: auto;}  #stacks_in_p808430_n806382_page16 .medium-pull-3 {position: relative;right: 25%;left: auto;}  #stacks_in_p808430_n806382_page16 .medium-push-4 {position: relative;left: 33.33333%;right: auto;}  #stacks_in_p808430_n806382_page16 .medium-pull-4 {position: relative;right: 33.33333%;left: auto;}  #stacks_in_p808430_n806382_page16 .medium-push-5 {position: relative;left: 41.66667%;right: auto;}  #stacks_in_p808430_n806382_page16 .medium-pull-5 {position: relative;right: 41.66667%;left: auto;}  #stacks_in_p808430_n806382_page16 .medium-push-6 {position: relative;left: 50%;right: auto;}  #stacks_in_p808430_n806382_page16 .medium-pull-6 {position: relative;right: 50%;left: auto;}  #stacks_in_p808430_n806382_page16 .medium-push-7 {position: relative;left: 58.33333%;right: auto;}  #stacks_in_p808430_n806382_page16 .medium-pull-7 {position: relative;right: 58.33333%;left: auto;}  #stacks_in_p808430_n806382_page16 .medium-push-8 {position: relative;left: 66.66667%;right: auto;}  #stacks_in_p808430_n806382_page16 .medium-pull-8 {position: relative;right: 66.66667%;left: auto;}  #stacks_in_p808430_n806382_page16 .medium-push-9 {position: relative;left: 75%;right: auto;}  #stacks_in_p808430_n806382_page16 .medium-pull-9 {position: relative;right: 75%;left: auto;}  #stacks_in_p808430_n806382_page16 .medium-push-10 {position: relative;left: 83.33333%;right: auto;}  #stacks_in_p808430_n806382_page16 .medium-pull-10 {position: relative;right: 83.33333%;left: auto;}  #stacks_in_p808430_n806382_page16 .medium-push-11 {position: relative;left: 91.66667%;right: auto;}  #stacks_in_p808430_n806382_page16 .medium-pull-11 {position: relative;right: 91.66667%;left: auto;}  #stacks_in_p808430_n806382_page16 .column,  #stacks_in_p808430_n806382_page16 .columns {position: relative;padding-left: 0.9375em;padding-right: 0.9375em;float: left;}  #stacks_in_p808430_n806382_page16 .medium-1 {width: 8.33333%;}  #stacks_in_p808430_n806382_page16 .medium-2 {width: 16.66667%;}  #stacks_in_p808430_n806382_page16 .medium-3 {width: 25%;}  #stacks_in_p808430_n806382_page16 .medium-4 {width: 33.33333%;}  #stacks_in_p808430_n806382_page16 .medium-5 {width: 41.66667%;}  #stacks_in_p808430_n806382_page16 .medium-6 {width: 50%;}  #stacks_in_p808430_n806382_page16 .medium-7 {width: 58.33333%;}  #stacks_in_p808430_n806382_page16 .medium-8 {width: 66.66667%;}  #stacks_in_p808430_n806382_page16 .medium-9 {width: 75%;}  #stacks_in_p808430_n806382_page16 .medium-10 {width: 83.33333%;}  #stacks_in_p808430_n806382_page16 .medium-11 {width: 91.66667%;}  #stacks_in_p808430_n806382_page16 .medium-12 {width: 100%;}  #stacks_in_p808430_n806382_page16 .medium-offset-0 {margin-left: 0% !important;}  #stacks_in_p808430_n806382_page16 .medium-offset-1 {margin-left: 8.33333% !important;}  #stacks_in_p808430_n806382_page16 .medium-offset-2 {margin-left: 16.66667% !important;}  #stacks_in_p808430_n806382_page16 .medium-offset-3 {margin-left: 25% !important;}  #stacks_in_p808430_n806382_page16 .medium-offset-4 {margin-left: 33.33333% !important;}  #stacks_in_p808430_n806382_page16 .medium-offset-5 {margin-left: 41.66667% !important;}  #stacks_in_p808430_n806382_page16 .medium-offset-6 {margin-left: 50% !important;}  #stacks_in_p808430_n806382_page16 .medium-offset-7 {margin-left: 58.33333% !important;}  #stacks_in_p808430_n806382_page16 .medium-offset-8 {margin-left: 66.66667% !important;}  #stacks_in_p808430_n806382_page16 .medium-offset-9 {margin-left: 75% !important;}  #stacks_in_p808430_n806382_page16 .medium-offset-10 {margin-left: 83.33333% !important;}  #stacks_in_p808430_n806382_page16 .medium-offset-11 {margin-left: 91.66667% !important;}  #stacks_in_p808430_n806382_page16 .medium-reset-order {margin-left: 0;margin-right: 0;left: auto;right: auto;float: left;}  #stacks_in_p808430_n806382_page16 .column.medium-centered,  #stacks_in_p808430_n806382_page16 .columns.medium-centered {margin-left: auto;margin-right: auto;float: none;}  #stacks_in_p808430_n806382_page16 .column.medium-uncentered,  #stacks_in_p808430_n806382_page16 .columns.medium-uncentered {margin-left: 0;margin-right: 0;float: left;}  #stacks_in_p808430_n806382_page16 .column.medium-centered:last-child,  #stacks_in_p808430_n806382_page16 .columns.medium-centered:last-child {float: none;}  #stacks_in_p808430_n806382_page16 .column.medium-uncentered:last-child,  #stacks_in_p808430_n806382_page16 .columns.medium-uncentered:last-child {float: left;}  #stacks_in_p808430_n806382_page16 .column.medium-uncentered.opposite,  #stacks_in_p808430_n806382_page16 .columns.medium-uncentered.opposite {float: right;}  #stacks_in_p808430_n806382_page16 .push-0 {position: relative;left: 0%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-0 {position: relative;right: 0%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-1 {position: relative;left: 8.33333%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-1 {position: relative;right: 8.33333%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-2 {position: relative;left: 16.66667%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-2 {position: relative;right: 16.66667%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-3 {position: relative;left: 25%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-3 {position: relative;right: 25%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-4 {position: relative;left: 33.33333%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-4 {position: relative;right: 33.33333%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-5 {position: relative;left: 41.66667%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-5 {position: relative;right: 41.66667%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-6 {position: relative;left: 50%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-6 {position: relative;right: 50%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-7 {position: relative;left: 58.33333%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-7 {position: relative;right: 58.33333%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-8 {position: relative;left: 66.66667%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-8 {position: relative;right: 66.66667%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-9 {position: relative;left: 75%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-9 {position: relative;right: 75%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-10 {position: relative;left: 83.33333%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-10 {position: relative;right: 83.33333%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-11 {position: relative;left: 91.66667%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-11 {position: relative;right: 91.66667%;left: auto;}}@media only screen and (min-width: 64.063em) {#stacks_in_p808430_n806382_page16 .large-push-0 {    position: relative;left: 0%;right: auto;}  #stacks_in_p808430_n806382_page16 .large-pull-0 {position: relative;right: 0%;left: auto;}  #stacks_in_p808430_n806382_page16 .large-push-1 {position: relative;left: 8.33333%;right: auto;}  #stacks_in_p808430_n806382_page16 .large-pull-1 {position: relative;right: 8.33333%;left: auto;}  #stacks_in_p808430_n806382_page16 .large-push-2 {position: relative;left: 16.66667%;right: auto;}  #stacks_in_p808430_n806382_page16 .large-pull-2 {position: relative;right: 16.66667%;left: auto;}  #stacks_in_p808430_n806382_page16 .large-push-3 {position: relative;left: 25%;right: auto;}  #stacks_in_p808430_n806382_page16 .large-pull-3 {position: relative;right: 25%;left: auto;}  #stacks_in_p808430_n806382_page16 .large-push-4 {position: relative;left: 33.33333%;right: auto;}  #stacks_in_p808430_n806382_page16 .large-pull-4 {position: relative;right: 33.33333%;left: auto;}  #stacks_in_p808430_n806382_page16 .large-push-5 {position: relative;left: 41.66667%;right: auto;}  #stacks_in_p808430_n806382_page16 .large-pull-5 {position: relative;right: 41.66667%;left: auto;}  #stacks_in_p808430_n806382_page16 .large-push-6 {position: relative;left: 50%;right: auto;}  #stacks_in_p808430_n806382_page16 .large-pull-6 {position: relative;right: 50%;left: auto;}  #stacks_in_p808430_n806382_page16 .large-push-7 {position: relative;left: 58.33333%;right: auto;}  #stacks_in_p808430_n806382_page16 .large-pull-7 {position: relative;right: 58.33333%;left: auto;}  #stacks_in_p808430_n806382_page16 .large-push-8 {position: relative;left: 66.66667%;right: auto;}  #stacks_in_p808430_n806382_page16 .large-pull-8 {position: relative;right: 66.66667%;left: auto;}  #stacks_in_p808430_n806382_page16 .large-push-9 {position: relative;left: 75%;right: auto;}  #stacks_in_p808430_n806382_page16 .large-pull-9 {position: relative;right: 75%;left: auto;}  #stacks_in_p808430_n806382_page16 .large-push-10 {position: relative;left: 83.33333%;right: auto;}  #stacks_in_p808430_n806382_page16 .large-pull-10 {position: relative;right: 83.33333%;left: auto;}  #stacks_in_p808430_n806382_page16 .large-push-11 {position: relative;left: 91.66667%;right: auto;}  #stacks_in_p808430_n806382_page16 .large-pull-11 {position: relative;right: 91.66667%;left: auto;}  #stacks_in_p808430_n806382_page16 .column,  #stacks_in_p808430_n806382_page16 .columns {position: relative;padding-left: 0.9375em;padding-right: 0.9375em;float: left;}  #stacks_in_p808430_n806382_page16 .large-1 {width: 8.33333%;}  #stacks_in_p808430_n806382_page16 .large-2 {width: 16.66667%;}  #stacks_in_p808430_n806382_page16 .large-3 {width: 25%;}  #stacks_in_p808430_n806382_page16 .large-4 {width: 33.33333%;}  #stacks_in_p808430_n806382_page16 .large-5 {width: 41.66667%;}  #stacks_in_p808430_n806382_page16 .large-6 {width: 50%;}  #stacks_in_p808430_n806382_page16 .large-7 {width: 58.33333%;}  #stacks_in_p808430_n806382_page16 .large-8 {width: 66.66667%;}  #stacks_in_p808430_n806382_page16 .large-9 {width: 75%;}  #stacks_in_p808430_n806382_page16 .large-10 {width: 83.33333%;}  #stacks_in_p808430_n806382_page16 .large-11 {width: 91.66667%;}  #stacks_in_p808430_n806382_page16 .large-12 {width: 100%;}  #stacks_in_p808430_n806382_page16 .large-offset-0 {margin-left: 0% !important;}  #stacks_in_p808430_n806382_page16 .large-offset-1 {margin-left: 8.33333% !important;}  #stacks_in_p808430_n806382_page16 .large-offset-2 {margin-left: 16.66667% !important;}  #stacks_in_p808430_n806382_page16 .large-offset-3 {margin-left: 25% !important;}  #stacks_in_p808430_n806382_page16 .large-offset-4 {margin-left: 33.33333% !important;}  #stacks_in_p808430_n806382_page16 .large-offset-5 {margin-left: 41.66667% !important;}  #stacks_in_p808430_n806382_page16 .large-offset-6 {margin-left: 50% !important;}  #stacks_in_p808430_n806382_page16 .large-offset-7 {margin-left: 58.33333% !important;}  #stacks_in_p808430_n806382_page16 .large-offset-8 {margin-left: 66.66667% !important;}  #stacks_in_p808430_n806382_page16 .large-offset-9 {margin-left: 75% !important;}  #stacks_in_p808430_n806382_page16 .large-offset-10 {margin-left: 83.33333% !important;}  #stacks_in_p808430_n806382_page16 .large-offset-11 {margin-left: 91.66667% !important;}  #stacks_in_p808430_n806382_page16 .large-reset-order {margin-left: 0;margin-right: 0;left: auto;right: auto;float: left;}  #stacks_in_p808430_n806382_page16 .column.large-centered,  #stacks_in_p808430_n806382_page16 .columns.large-centered {margin-left: auto;margin-right: auto;float: none;}  #stacks_in_p808430_n806382_page16 .column.large-uncentered,  #stacks_in_p808430_n806382_page16 .columns.large-uncentered {margin-left: 0;margin-right: 0;float: left;}  #stacks_in_p808430_n806382_page16 .column.large-centered:last-child,  #stacks_in_p808430_n806382_page16 .columns.large-centered:last-child {float: none;}  #stacks_in_p808430_n806382_page16 .column.large-uncentered:last-child,  #stacks_in_p808430_n806382_page16 .columns.large-uncentered:last-child {float: left;}  #stacks_in_p808430_n806382_page16 .column.large-uncentered.opposite,  #stacks_in_p808430_n806382_page16 .columns.large-uncentered.opposite {float: right;}  #stacks_in_p808430_n806382_page16 .push-0 {position: relative;left: 0%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-0 {position: relative;right: 0%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-1 {position: relative;left: 8.33333%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-1 {position: relative;right: 8.33333%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-2 {position: relative;left: 16.66667%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-2 {position: relative;right: 16.66667%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-3 {position: relative;left: 25%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-3 {position: relative;right: 25%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-4 {position: relative;left: 33.33333%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-4 {position: relative;right: 33.33333%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-5 {position: relative;left: 41.66667%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-5 {position: relative;right: 41.66667%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-6 {position: relative;left: 50%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-6 {position: relative;right: 50%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-7 {position: relative;left: 58.33333%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-7 {position: relative;right: 58.33333%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-8 {position: relative;left: 66.66667%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-8 {position: relative;right: 66.66667%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-9 {position: relative;left: 75%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-9 {position: relative;right: 75%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-10 {position: relative;left: 83.33333%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-10 {position: relative;right: 83.33333%;left: auto;}  #stacks_in_p808430_n806382_page16 .push-11 {position: relative;left: 91.66667%;right: auto;}  #stacks_in_p808430_n806382_page16 .pull-11 {position: relative;right: 91.66667%;left: auto;}}#stacks_in_p808430_n806382_page16 [class*="block-grid-"] {display: block;padding: 0;margin: 0 -0.625rem;}#stacks_in_p808430_n806382_page16 [class*="block-grid-"]:before, [class*="block-grid-"]:after {content: " ";display: table;}#stacks_in_p808430_n806382_page16 [class*="block-grid-"]:after {clear: both;}#stacks_in_p808430_n806382_page16 [class*="block-grid-"] > li {display: block;height: auto;float: left;padding: 0 0.625rem 1.25rem;}@media only screen {#stacks_in_p808430_n806382_page16 .small-block-grid-1 > li {width: 100%;list-style: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-1 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-1 > li:nth-of-type(1n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .small-block-grid-2 > li {width: 50%;list-style: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-2 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-2 > li:nth-of-type(2n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .small-block-grid-3 > li {width: 33.33333%;list-style: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-3 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-3 > li:nth-of-type(3n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .small-block-grid-4 > li {width: 25%;list-style: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-4 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-4 > li:nth-of-type(4n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .small-block-grid-5 > li {width: 20%;list-style: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-5 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-5 > li:nth-of-type(5n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .small-block-grid-6 > li {width: 16.66667%;list-style: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-6 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-6 > li:nth-of-type(6n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .small-block-grid-7 > li {width: 14.28571%;list-style: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-7 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-7 > li:nth-of-type(7n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .small-block-grid-8 > li {width: 12.5%;list-style: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-8 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-8 > li:nth-of-type(8n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .small-block-grid-9 > li {width: 11.11111%;list-style: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-9 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-9 > li:nth-of-type(9n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .small-block-grid-10 > li {width: 10%;list-style: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-10 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-10 > li:nth-of-type(10n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .small-block-grid-11 > li {width: 9.09091%;list-style: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-11 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-11 > li:nth-of-type(11n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .small-block-grid-12 > li {width: 8.33333%;list-style: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-12 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .small-block-grid-12 > li:nth-of-type(12n+1) {clear: both;}}@media only screen and (min-width: 40.063em) {#stacks_in_p808430_n806382_page16 .medium-block-grid-1 > li {  width: 100%;list-style: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-1 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-1 > li:nth-of-type(1n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .medium-block-grid-2 > li {width: 50%;list-style: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-2 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-2 > li:nth-of-type(2n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .medium-block-grid-3 > li {width: 33.33333%;list-style: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-3 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-3 > li:nth-of-type(3n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .medium-block-grid-4 > li {width: 25%;list-style: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-4 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-4 > li:nth-of-type(4n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .medium-block-grid-5 > li {width: 20%;list-style: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-5 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-5 > li:nth-of-type(5n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .medium-block-grid-6 > li {width: 16.66667%;list-style: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-6 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-6 > li:nth-of-type(6n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .medium-block-grid-7 > li {width: 14.28571%;list-style: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-7 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-7 > li:nth-of-type(7n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .medium-block-grid-8 > li {width: 12.5%;list-style: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-8 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-8 > li:nth-of-type(8n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .medium-block-grid-9 > li {width: 11.11111%;list-style: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-9 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-9 > li:nth-of-type(9n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .medium-block-grid-10 > li {width: 10%;list-style: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-10 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-10 > li:nth-of-type(10n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .medium-block-grid-11 > li {width: 9.09091%;list-style: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-11 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-11 > li:nth-of-type(11n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .medium-block-grid-12 > li {width: 8.33333%;list-style: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-12 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .medium-block-grid-12 > li:nth-of-type(12n+1) {clear: both;}}@media only screen and (min-width: 64.063em) {#stacks_in_p808430_n806382_page16 .large-block-grid-1 > li {  width: 100%;list-style: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-1 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-1 > li:nth-of-type(1n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .large-block-grid-2 > li {width: 50%;list-style: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-2 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-2 > li:nth-of-type(2n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .large-block-grid-3 > li {width: 33.33333%;list-style: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-3 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-3 > li:nth-of-type(3n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .large-block-grid-4 > li {width: 25%;list-style: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-4 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-4 > li:nth-of-type(4n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .large-block-grid-5 > li {width: 20%;list-style: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-5 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-5 > li:nth-of-type(5n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .large-block-grid-6 > li {width: 16.66667%;list-style: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-6 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-6 > li:nth-of-type(6n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .large-block-grid-7 > li {width: 14.28571%;list-style: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-7 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-7 > li:nth-of-type(7n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .large-block-grid-8 > li {width: 12.5%;list-style: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-8 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-8 > li:nth-of-type(8n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .large-block-grid-9 > li {width: 11.11111%;list-style: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-9 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-9 > li:nth-of-type(9n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .large-block-grid-10 > li {width: 10%;list-style: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-10 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-10 > li:nth-of-type(10n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .large-block-grid-11 > li {width: 9.09091%;list-style: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-11 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-11 > li:nth-of-type(11n+1) {clear: both;}#stacks_in_p808430_n806382_page16 .large-block-grid-12 > li {width: 8.33333%;list-style: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-12 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806382_page16 .large-block-grid-12 > li:nth-of-type(12n+1) {clear: both;} }#stacks_in_p808430_n806382_page16 {	padding:  20px;}/* Start Calligrapher stack CSS code *//* -----------------------------------------    Main Body Text Global Styles   ----------------------------------------- */			.stacks_in_p808430_n806384_page16Calligrapher{			line-height: normal !important;		}	/* -----------------------------------------    Google   ----------------------------------------- *//* -----------------------------------------    Serifs   ----------------------------------------- *//* -----------------------------------------    Sans   ----------------------------------------- */ .stacks_in_p808430_n806384_page16Calligrapher, .stacks_in_p808430_n806384_page16Calligrapher h1, .stacks_in_p808430_n806384_page16Calligrapher h2, .stacks_in_p808430_n806384_page16Calligrapher h3, .stacks_in_p808430_n806384_page16Calligrapher h4, .stacks_in_p808430_n806384_page16Calligrapher h5, .stacks_in_p808430_n806384_page16Calligrapher h6{	font-family: "Josefin Sans" !important;}/* -----------------------------------------    Display   ----------------------------------------- *//* -----------------------------------------    Handwriting   ----------------------------------------- *//* -----------------------------------------    Universal   ----------------------------------------- *//* -----------------------------------------    Custom   ----------------------------------------- *//* -----------------------------------------    Text Shadow   ----------------------------------------- *//* -----------------------------------------    Drop Zone Managment   ----------------------------------------- */.stacks_in_p808430_n806384_page16targetNote{	display: none;}/* -----------------------------------------    Links Managment   ----------------------------------------- *//* End Calligrapher stack CSS code *//* Start dooHeader X stack CSS code */.stacks_in_p808430_n806386_page16x{	display: block !important;		text-align: left !important;		}@media (max-width:768px) {	.stacks_in_p808430_n806386_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_p808430_n806386_page16x{		text-align: left !important;	}}/* End dooHeader X stack CSS code */#stacks_in_p808430_n806386_page16 {	margin: 115px 0px 0px 20px;	padding:  20px;}#stacks_in_p808430_n806387_page16 {	line-height: 2em;	font-size: 151%;	font-weight: bolder;}/* ********* *//* Normalize *//* ********* *//* HTML5 display definitions   ========================================================================== *//** * Correct `block` display not defined for any HTML5 element in IE 8/9. * Correct `block` display not defined for `details` or `summary` in IE 10/11 and Firefox. * Correct `block` display not defined for `main` in IE 11. */#stacks_in_p808430_n806392_page16 article,#stacks_in_p808430_n806392_page16 aside,#stacks_in_p808430_n806392_page16 details,#stacks_in_p808430_n806392_page16 figcaption,#stacks_in_p808430_n806392_page16 figure,#stacks_in_p808430_n806392_page16 footer,#stacks_in_p808430_n806392_page16 header,#stacks_in_p808430_n806392_page16 hgroup,#stacks_in_p808430_n806392_page16 main,#stacks_in_p808430_n806392_page16 nav,#stacks_in_p808430_n806392_page16 section,#stacks_in_p808430_n806392_page16 summary {display: block;}/** * 1. Correct `inline-block` display not defined in IE 8/9. * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera. */#stacks_in_p808430_n806392_page16 audio,#stacks_in_p808430_n806392_page16 canvas,#stacks_in_p808430_n806392_page16 progress,#stacks_in_p808430_n806392_page16 video {display: inline-block;/* 1 */  vertical-align: baseline;/* 2 */}/** * Prevent modern browsers from displaying `audio` without controls. * Remove excess height in iOS 5 devices. */#stacks_in_p808430_n806392_page16 audio:not([controls]) {display: none;height: 0;}/** * Address `[hidden]` styling not present in IE 8/9/10. * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22. */#stacks_in_p808430_n806392_page16 [hidden],#stacks_in_p808430_n806392_page16 template {display: none;}/* Embedded content   ========================================================================== *//** * Remove border when inside `a` element in IE 8/9/10. */#stacks_in_p808430_n806392_page16 img {border: 0;}/** * Correct overflow not hidden in IE 9/10/11. */#stacks_in_p808430_n806392_page16 svg:not(:root) {overflow: hidden;}/* Grouping content   ========================================================================== *//** * Address differences between Firefox and other browsers. */#stacks_in_p808430_n806392_page16 hr {-moz-box-sizing: content-box;box-sizing: content-box;height: 0;}/** * Contain overflow in all browsers. */#stacks_in_p808430_n806392_page16 pre {overflow: auto;}/** * Address odd `em`-unit font size rendering in all browsers. */#stacks_in_p808430_n806392_page16 code,#stacks_in_p808430_n806392_page16 kbd,#stacks_in_p808430_n806392_page16 pre,#stacks_in_p808430_n806392_page16 samp {font-family: monospace, monospace;font-size: 1em;}/* **************** *//* Stack Specific   *//* **************** */#stacks_in_p808430_n806392_page16 *,#stacks_in_p808430_n806392_page16 *:before,#stacks_in_p808430_n806392_page16 *:after {-moz-box-sizing: border-box;-webkit-box-sizing: border-box;box-sizing: border-box;}#stacks_in_p808430_n806392_page16 .wow {visibility: hidden;}/* We use this media query to add styles to any device that supports media queries */@media only screen {#stacks_in_p808430_n806392_page16 .column_base_margin {    margin-bottom: 0px;}}@media only screen and (max-width: 1024px) {#stacks_in_p808430_n806392_page16 .column_base_margin {    margin-bottom: 40px;}}/* Used to alter styles for screens at least 768px wide. */@media only screen and (max-width: 768px) {#stacks_in_p808430_n806392_page16 .column_base_margin {    margin-bottom: 40px;}}/* Used to alter styles for screens at least 480px wide. */@media only screen and (max-width: 640px) {#stacks_in_p808430_n806392_page16 .column_base_margin {    margin-bottom: 20px;}}/* Handles making images responsive inside the stack */#stacks_in_p808430_n806392_page16 img {max-width: 100%;height: auto;}/* **************** *//* Foundation START *//* **************** *//*Copyright (c) 2013-2014 ZURB, inc.MIT LicensePermission is hereby granted, free of charge, to any person obtaininga copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, includingwithout limitation the rights to use, copy, modify, merge, publish,distribute, sublicense, and/or sell copies of the Software, and topermit persons to whom the Software is furnished to do so, subject tothe following conditions:The above copyright notice and this permission notice shall beincluded 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 OFMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE ANDNONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BELIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTIONOF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTIONWITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.*/#stacks_in_p808430_n806392_page16 meta.foundation-version {font-family: "/5.3.1/";}#stacks_in_p808430_n806392_page16 meta.foundation-mq-small {font-family: "/only screen/";width: 0em;}#stacks_in_p808430_n806392_page16 meta.foundation-mq-medium {font-family: "/only screen and (min-width:40.063em)/";width: 40.063em;}#stacks_in_p808430_n806392_page16 meta.foundation-mq-large {font-family: "/only screen and (min-width:64.063em)/";width: 64.063em;}#stacks_in_p808430_n806392_page16 meta.foundation-mq-xlarge {font-family: "/only screen and (min-width:90.063em)/";width: 90.063em;}#stacks_in_p808430_n806392_page16 meta.foundation-mq-xxlarge {font-family: "/only screen and (min-width:120.063em)/";width: 120.063em;}#stacks_in_p808430_n806392_page16 meta.foundation-data-attribute-namespace {font-family: false;}#stacks_in_p808430_n806392_page16 *,#stacks_in_p808430_n806392_page16 *:before,#stacks_in_p808430_n806392_page16 *:after {-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}#stacks_in_p808430_n806392_page16 .left {float: left !important;}#stacks_in_p808430_n806392_page16 .right {float: right !important;}#stacks_in_p808430_n806392_page16 .clearfix:before,#stacks_in_p808430_n806392_page16 .clearfix:after {content: " ";display: table;}#stacks_in_p808430_n806392_page16 .clearfix:after {clear: both;}#stacks_in_p808430_n806392_page16 .hide {display: none;}#stacks_in_p808430_n806392_page16 .antialiased {-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;}#stacks_in_p808430_n806392_page16 img {display: inline-block;vertical-align: middle;}#stacks_in_p808430_n806392_page16 textarea {height: auto;min-height: 50px;}#stacks_in_p808430_n806392_page16 select {width: 100%;}#stacks_in_p808430_n806392_page16 .row {width: 100%;margin-left: auto;margin-right: auto;margin-top: 0;margin-bottom: 0;}#stacks_in_p808430_n806392_page16 .row:before,#stacks_in_p808430_n806392_page16 .row:after {content: " ";display: table;}#stacks_in_p808430_n806392_page16 .row:after {clear: both;}#stacks_in_p808430_n806392_page16 .row.collapse > .column,#stacks_in_p808430_n806392_page16 .row.collapse > .columns {padding-left: 0;padding-right: 0;}#stacks_in_p808430_n806392_page16 .row.collapse .row {margin-left: 0;margin-right: 0;}#stacks_in_p808430_n806392_page16 .row .row {width: auto;margin-left: -0.9375em;margin-right: -0.9375em;margin-top: 0;margin-bottom: 0;max-width: none;}#stacks_in_p808430_n806392_page16 .row .row:before,#stacks_in_p808430_n806392_page16 .row .row:after {content: " ";display: table;}#stacks_in_p808430_n806392_page16 .row .row:after {clear: both;}#stacks_in_p808430_n806392_page16 .row .row.collapse {width: auto;margin: 0;max-width: none;}#stacks_in_p808430_n806392_page16 .row .row.collapse:before,#stacks_in_p808430_n806392_page16 .row .row.collapse:after {content: " ";display: table;}#stacks_in_p808430_n806392_page16 .row .row.collapse:after {clear: both;}#stacks_in_p808430_n806392_page16 .column,#stacks_in_p808430_n806392_page16 .columns {padding-left: 0.9375em;padding-right: 0.9375em;margin-right: 0;/* Fixes comaptiblity with some themes using skeleton.css */  margin-left: 0;/* Fixes comaptiblity with some themes using skeleton.css */  width: 100%;float: left;}#stacks_in_p808430_n806392_page16 [class*="column"] + [class*="column"]:last-child {float: right;}#stacks_in_p808430_n806392_page16 [class*="column"] + [class*="column"].end {float: left;}@media only screen {#stacks_in_p808430_n806392_page16 .small-push-0 {    position: relative;left: 0%;right: auto;}  #stacks_in_p808430_n806392_page16 .small-pull-0 {position: relative;right: 0%;left: auto;}  #stacks_in_p808430_n806392_page16 .small-push-1 {position: relative;left: 8.33333%;right: auto;}  #stacks_in_p808430_n806392_page16 .small-pull-1 {position: relative;right: 8.33333%;left: auto;}  #stacks_in_p808430_n806392_page16 .small-push-2 {position: relative;left: 16.66667%;right: auto;}  #stacks_in_p808430_n806392_page16 .small-pull-2 {position: relative;right: 16.66667%;left: auto;}  #stacks_in_p808430_n806392_page16 .small-push-3 {position: relative;left: 25%;right: auto;}  #stacks_in_p808430_n806392_page16 .small-pull-3 {position: relative;right: 25%;left: auto;}  #stacks_in_p808430_n806392_page16 .small-push-4 {position: relative;left: 33.33333%;right: auto;}  #stacks_in_p808430_n806392_page16 .small-pull-4 {position: relative;right: 33.33333%;left: auto;}  #stacks_in_p808430_n806392_page16 .small-push-5 {position: relative;left: 41.66667%;right: auto;}  #stacks_in_p808430_n806392_page16 .small-pull-5 {position: relative;right: 41.66667%;left: auto;}  #stacks_in_p808430_n806392_page16 .small-push-6 {position: relative;left: 50%;right: auto;}  #stacks_in_p808430_n806392_page16 .small-pull-6 {position: relative;right: 50%;left: auto;}  #stacks_in_p808430_n806392_page16 .small-push-7 {position: relative;left: 58.33333%;right: auto;}  #stacks_in_p808430_n806392_page16 .small-pull-7 {position: relative;right: 58.33333%;left: auto;}  #stacks_in_p808430_n806392_page16 .small-push-8 {position: relative;left: 66.66667%;right: auto;}  #stacks_in_p808430_n806392_page16 .small-pull-8 {position: relative;right: 66.66667%;left: auto;}  #stacks_in_p808430_n806392_page16 .small-push-9 {position: relative;left: 75%;right: auto;}  #stacks_in_p808430_n806392_page16 .small-pull-9 {position: relative;right: 75%;left: auto;}  #stacks_in_p808430_n806392_page16 .small-push-10 {position: relative;left: 83.33333%;right: auto;}  #stacks_in_p808430_n806392_page16 .small-pull-10 {position: relative;right: 83.33333%;left: auto;}  #stacks_in_p808430_n806392_page16 .small-push-11 {position: relative;left: 91.66667%;right: auto;}  #stacks_in_p808430_n806392_page16 .small-pull-11 {position: relative;right: 91.66667%;left: auto;}  #stacks_in_p808430_n806392_page16 .column,  #stacks_in_p808430_n806392_page16 .columns {position: relative;padding-left: 0.9375em;padding-right: 0.9375em;float: left;}  #stacks_in_p808430_n806392_page16 .small-1 {width: 8.33333%;}  #stacks_in_p808430_n806392_page16 .small-2 {width: 16.66667%;}  #stacks_in_p808430_n806392_page16 .small-3 {width: 25%;}  #stacks_in_p808430_n806392_page16 .small-4 {width: 33.33333%;}  #stacks_in_p808430_n806392_page16 .small-5 {width: 41.66667%;}  #stacks_in_p808430_n806392_page16 .small-6 {width: 50%;}  #stacks_in_p808430_n806392_page16 .small-7 {width: 58.33333%;}  #stacks_in_p808430_n806392_page16 .small-8 {width: 66.66667%;}  #stacks_in_p808430_n806392_page16 .small-9 {width: 75%;}  #stacks_in_p808430_n806392_page16 .small-10 {width: 83.33333%;}  #stacks_in_p808430_n806392_page16 .small-11 {width: 91.66667%;}  #stacks_in_p808430_n806392_page16 .small-12 {width: 100%;}  #stacks_in_p808430_n806392_page16 .small-offset-0 {margin-left: 0% !important;}  #stacks_in_p808430_n806392_page16 .small-offset-1 {margin-left: 8.33333% !important;}  #stacks_in_p808430_n806392_page16 .small-offset-2 {margin-left: 16.66667% !important;}  #stacks_in_p808430_n806392_page16 .small-offset-3 {margin-left: 25% !important;}  #stacks_in_p808430_n806392_page16 .small-offset-4 {margin-left: 33.33333% !important;}  #stacks_in_p808430_n806392_page16 .small-offset-5 {margin-left: 41.66667% !important;}  #stacks_in_p808430_n806392_page16 .small-offset-6 {margin-left: 50% !important;}  #stacks_in_p808430_n806392_page16 .small-offset-7 {margin-left: 58.33333% !important;}  #stacks_in_p808430_n806392_page16 .small-offset-8 {margin-left: 66.66667% !important;}  #stacks_in_p808430_n806392_page16 .small-offset-9 {margin-left: 75% !important;}  #stacks_in_p808430_n806392_page16 .small-offset-10 {margin-left: 83.33333% !important;}  #stacks_in_p808430_n806392_page16 .small-offset-11 {margin-left: 91.66667% !important;}  #stacks_in_p808430_n806392_page16 .small-reset-order {margin-left: 0;margin-right: 0;left: auto;right: auto;float: left;}  #stacks_in_p808430_n806392_page16 .column.small-centered,  #stacks_in_p808430_n806392_page16 .columns.small-centered {margin-left: auto;margin-right: auto;float: none;}  #stacks_in_p808430_n806392_page16 .column.small-uncentered,  #stacks_in_p808430_n806392_page16 .columns.small-uncentered {margin-left: 0;margin-right: 0;float: left;}  #stacks_in_p808430_n806392_page16 .column.small-centered:last-child,  #stacks_in_p808430_n806392_page16 .columns.small-centered:last-child {float: none;}  #stacks_in_p808430_n806392_page16 .column.small-uncentered:last-child,  #stacks_in_p808430_n806392_page16 .columns.small-uncentered:last-child {float: left;}  #stacks_in_p808430_n806392_page16 .column.small-uncentered.opposite,  #stacks_in_p808430_n806392_page16 .columns.small-uncentered.opposite {float: right;}}@media only screen and (min-width: 40.063em) {#stacks_in_p808430_n806392_page16 .medium-push-0 {    position: relative;left: 0%;right: auto;}  #stacks_in_p808430_n806392_page16 .medium-pull-0 {position: relative;right: 0%;left: auto;}  #stacks_in_p808430_n806392_page16 .medium-push-1 {position: relative;left: 8.33333%;right: auto;}  #stacks_in_p808430_n806392_page16 .medium-pull-1 {position: relative;right: 8.33333%;left: auto;}  #stacks_in_p808430_n806392_page16 .medium-push-2 {position: relative;left: 16.66667%;right: auto;}  #stacks_in_p808430_n806392_page16 .medium-pull-2 {position: relative;right: 16.66667%;left: auto;}  #stacks_in_p808430_n806392_page16 .medium-push-3 {position: relative;left: 25%;right: auto;}  #stacks_in_p808430_n806392_page16 .medium-pull-3 {position: relative;right: 25%;left: auto;}  #stacks_in_p808430_n806392_page16 .medium-push-4 {position: relative;left: 33.33333%;right: auto;}  #stacks_in_p808430_n806392_page16 .medium-pull-4 {position: relative;right: 33.33333%;left: auto;}  #stacks_in_p808430_n806392_page16 .medium-push-5 {position: relative;left: 41.66667%;right: auto;}  #stacks_in_p808430_n806392_page16 .medium-pull-5 {position: relative;right: 41.66667%;left: auto;}  #stacks_in_p808430_n806392_page16 .medium-push-6 {position: relative;left: 50%;right: auto;}  #stacks_in_p808430_n806392_page16 .medium-pull-6 {position: relative;right: 50%;left: auto;}  #stacks_in_p808430_n806392_page16 .medium-push-7 {position: relative;left: 58.33333%;right: auto;}  #stacks_in_p808430_n806392_page16 .medium-pull-7 {position: relative;right: 58.33333%;left: auto;}  #stacks_in_p808430_n806392_page16 .medium-push-8 {position: relative;left: 66.66667%;right: auto;}  #stacks_in_p808430_n806392_page16 .medium-pull-8 {position: relative;right: 66.66667%;left: auto;}  #stacks_in_p808430_n806392_page16 .medium-push-9 {position: relative;left: 75%;right: auto;}  #stacks_in_p808430_n806392_page16 .medium-pull-9 {position: relative;right: 75%;left: auto;}  #stacks_in_p808430_n806392_page16 .medium-push-10 {position: relative;left: 83.33333%;right: auto;}  #stacks_in_p808430_n806392_page16 .medium-pull-10 {position: relative;right: 83.33333%;left: auto;}  #stacks_in_p808430_n806392_page16 .medium-push-11 {position: relative;left: 91.66667%;right: auto;}  #stacks_in_p808430_n806392_page16 .medium-pull-11 {position: relative;right: 91.66667%;left: auto;}  #stacks_in_p808430_n806392_page16 .column,  #stacks_in_p808430_n806392_page16 .columns {position: relative;padding-left: 0.9375em;padding-right: 0.9375em;float: left;}  #stacks_in_p808430_n806392_page16 .medium-1 {width: 8.33333%;}  #stacks_in_p808430_n806392_page16 .medium-2 {width: 16.66667%;}  #stacks_in_p808430_n806392_page16 .medium-3 {width: 25%;}  #stacks_in_p808430_n806392_page16 .medium-4 {width: 33.33333%;}  #stacks_in_p808430_n806392_page16 .medium-5 {width: 41.66667%;}  #stacks_in_p808430_n806392_page16 .medium-6 {width: 50%;}  #stacks_in_p808430_n806392_page16 .medium-7 {width: 58.33333%;}  #stacks_in_p808430_n806392_page16 .medium-8 {width: 66.66667%;}  #stacks_in_p808430_n806392_page16 .medium-9 {width: 75%;}  #stacks_in_p808430_n806392_page16 .medium-10 {width: 83.33333%;}  #stacks_in_p808430_n806392_page16 .medium-11 {width: 91.66667%;}  #stacks_in_p808430_n806392_page16 .medium-12 {width: 100%;}  #stacks_in_p808430_n806392_page16 .medium-offset-0 {margin-left: 0% !important;}  #stacks_in_p808430_n806392_page16 .medium-offset-1 {margin-left: 8.33333% !important;}  #stacks_in_p808430_n806392_page16 .medium-offset-2 {margin-left: 16.66667% !important;}  #stacks_in_p808430_n806392_page16 .medium-offset-3 {margin-left: 25% !important;}  #stacks_in_p808430_n806392_page16 .medium-offset-4 {margin-left: 33.33333% !important;}  #stacks_in_p808430_n806392_page16 .medium-offset-5 {margin-left: 41.66667% !important;}  #stacks_in_p808430_n806392_page16 .medium-offset-6 {margin-left: 50% !important;}  #stacks_in_p808430_n806392_page16 .medium-offset-7 {margin-left: 58.33333% !important;}  #stacks_in_p808430_n806392_page16 .medium-offset-8 {margin-left: 66.66667% !important;}  #stacks_in_p808430_n806392_page16 .medium-offset-9 {margin-left: 75% !important;}  #stacks_in_p808430_n806392_page16 .medium-offset-10 {margin-left: 83.33333% !important;}  #stacks_in_p808430_n806392_page16 .medium-offset-11 {margin-left: 91.66667% !important;}  #stacks_in_p808430_n806392_page16 .medium-reset-order {margin-left: 0;margin-right: 0;left: auto;right: auto;float: left;}  #stacks_in_p808430_n806392_page16 .column.medium-centered,  #stacks_in_p808430_n806392_page16 .columns.medium-centered {margin-left: auto;margin-right: auto;float: none;}  #stacks_in_p808430_n806392_page16 .column.medium-uncentered,  #stacks_in_p808430_n806392_page16 .columns.medium-uncentered {margin-left: 0;margin-right: 0;float: left;}  #stacks_in_p808430_n806392_page16 .column.medium-centered:last-child,  #stacks_in_p808430_n806392_page16 .columns.medium-centered:last-child {float: none;}  #stacks_in_p808430_n806392_page16 .column.medium-uncentered:last-child,  #stacks_in_p808430_n806392_page16 .columns.medium-uncentered:last-child {float: left;}  #stacks_in_p808430_n806392_page16 .column.medium-uncentered.opposite,  #stacks_in_p808430_n806392_page16 .columns.medium-uncentered.opposite {float: right;}  #stacks_in_p808430_n806392_page16 .push-0 {position: relative;left: 0%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-0 {position: relative;right: 0%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-1 {position: relative;left: 8.33333%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-1 {position: relative;right: 8.33333%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-2 {position: relative;left: 16.66667%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-2 {position: relative;right: 16.66667%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-3 {position: relative;left: 25%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-3 {position: relative;right: 25%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-4 {position: relative;left: 33.33333%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-4 {position: relative;right: 33.33333%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-5 {position: relative;left: 41.66667%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-5 {position: relative;right: 41.66667%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-6 {position: relative;left: 50%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-6 {position: relative;right: 50%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-7 {position: relative;left: 58.33333%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-7 {position: relative;right: 58.33333%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-8 {position: relative;left: 66.66667%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-8 {position: relative;right: 66.66667%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-9 {position: relative;left: 75%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-9 {position: relative;right: 75%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-10 {position: relative;left: 83.33333%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-10 {position: relative;right: 83.33333%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-11 {position: relative;left: 91.66667%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-11 {position: relative;right: 91.66667%;left: auto;}}@media only screen and (min-width: 64.063em) {#stacks_in_p808430_n806392_page16 .large-push-0 {    position: relative;left: 0%;right: auto;}  #stacks_in_p808430_n806392_page16 .large-pull-0 {position: relative;right: 0%;left: auto;}  #stacks_in_p808430_n806392_page16 .large-push-1 {position: relative;left: 8.33333%;right: auto;}  #stacks_in_p808430_n806392_page16 .large-pull-1 {position: relative;right: 8.33333%;left: auto;}  #stacks_in_p808430_n806392_page16 .large-push-2 {position: relative;left: 16.66667%;right: auto;}  #stacks_in_p808430_n806392_page16 .large-pull-2 {position: relative;right: 16.66667%;left: auto;}  #stacks_in_p808430_n806392_page16 .large-push-3 {position: relative;left: 25%;right: auto;}  #stacks_in_p808430_n806392_page16 .large-pull-3 {position: relative;right: 25%;left: auto;}  #stacks_in_p808430_n806392_page16 .large-push-4 {position: relative;left: 33.33333%;right: auto;}  #stacks_in_p808430_n806392_page16 .large-pull-4 {position: relative;right: 33.33333%;left: auto;}  #stacks_in_p808430_n806392_page16 .large-push-5 {position: relative;left: 41.66667%;right: auto;}  #stacks_in_p808430_n806392_page16 .large-pull-5 {position: relative;right: 41.66667%;left: auto;}  #stacks_in_p808430_n806392_page16 .large-push-6 {position: relative;left: 50%;right: auto;}  #stacks_in_p808430_n806392_page16 .large-pull-6 {position: relative;right: 50%;left: auto;}  #stacks_in_p808430_n806392_page16 .large-push-7 {position: relative;left: 58.33333%;right: auto;}  #stacks_in_p808430_n806392_page16 .large-pull-7 {position: relative;right: 58.33333%;left: auto;}  #stacks_in_p808430_n806392_page16 .large-push-8 {position: relative;left: 66.66667%;right: auto;}  #stacks_in_p808430_n806392_page16 .large-pull-8 {position: relative;right: 66.66667%;left: auto;}  #stacks_in_p808430_n806392_page16 .large-push-9 {position: relative;left: 75%;right: auto;}  #stacks_in_p808430_n806392_page16 .large-pull-9 {position: relative;right: 75%;left: auto;}  #stacks_in_p808430_n806392_page16 .large-push-10 {position: relative;left: 83.33333%;right: auto;}  #stacks_in_p808430_n806392_page16 .large-pull-10 {position: relative;right: 83.33333%;left: auto;}  #stacks_in_p808430_n806392_page16 .large-push-11 {position: relative;left: 91.66667%;right: auto;}  #stacks_in_p808430_n806392_page16 .large-pull-11 {position: relative;right: 91.66667%;left: auto;}  #stacks_in_p808430_n806392_page16 .column,  #stacks_in_p808430_n806392_page16 .columns {position: relative;padding-left: 0.9375em;padding-right: 0.9375em;float: left;}  #stacks_in_p808430_n806392_page16 .large-1 {width: 8.33333%;}  #stacks_in_p808430_n806392_page16 .large-2 {width: 16.66667%;}  #stacks_in_p808430_n806392_page16 .large-3 {width: 25%;}  #stacks_in_p808430_n806392_page16 .large-4 {width: 33.33333%;}  #stacks_in_p808430_n806392_page16 .large-5 {width: 41.66667%;}  #stacks_in_p808430_n806392_page16 .large-6 {width: 50%;}  #stacks_in_p808430_n806392_page16 .large-7 {width: 58.33333%;}  #stacks_in_p808430_n806392_page16 .large-8 {width: 66.66667%;}  #stacks_in_p808430_n806392_page16 .large-9 {width: 75%;}  #stacks_in_p808430_n806392_page16 .large-10 {width: 83.33333%;}  #stacks_in_p808430_n806392_page16 .large-11 {width: 91.66667%;}  #stacks_in_p808430_n806392_page16 .large-12 {width: 100%;}  #stacks_in_p808430_n806392_page16 .large-offset-0 {margin-left: 0% !important;}  #stacks_in_p808430_n806392_page16 .large-offset-1 {margin-left: 8.33333% !important;}  #stacks_in_p808430_n806392_page16 .large-offset-2 {margin-left: 16.66667% !important;}  #stacks_in_p808430_n806392_page16 .large-offset-3 {margin-left: 25% !important;}  #stacks_in_p808430_n806392_page16 .large-offset-4 {margin-left: 33.33333% !important;}  #stacks_in_p808430_n806392_page16 .large-offset-5 {margin-left: 41.66667% !important;}  #stacks_in_p808430_n806392_page16 .large-offset-6 {margin-left: 50% !important;}  #stacks_in_p808430_n806392_page16 .large-offset-7 {margin-left: 58.33333% !important;}  #stacks_in_p808430_n806392_page16 .large-offset-8 {margin-left: 66.66667% !important;}  #stacks_in_p808430_n806392_page16 .large-offset-9 {margin-left: 75% !important;}  #stacks_in_p808430_n806392_page16 .large-offset-10 {margin-left: 83.33333% !important;}  #stacks_in_p808430_n806392_page16 .large-offset-11 {margin-left: 91.66667% !important;}  #stacks_in_p808430_n806392_page16 .large-reset-order {margin-left: 0;margin-right: 0;left: auto;right: auto;float: left;}  #stacks_in_p808430_n806392_page16 .column.large-centered,  #stacks_in_p808430_n806392_page16 .columns.large-centered {margin-left: auto;margin-right: auto;float: none;}  #stacks_in_p808430_n806392_page16 .column.large-uncentered,  #stacks_in_p808430_n806392_page16 .columns.large-uncentered {margin-left: 0;margin-right: 0;float: left;}  #stacks_in_p808430_n806392_page16 .column.large-centered:last-child,  #stacks_in_p808430_n806392_page16 .columns.large-centered:last-child {float: none;}  #stacks_in_p808430_n806392_page16 .column.large-uncentered:last-child,  #stacks_in_p808430_n806392_page16 .columns.large-uncentered:last-child {float: left;}  #stacks_in_p808430_n806392_page16 .column.large-uncentered.opposite,  #stacks_in_p808430_n806392_page16 .columns.large-uncentered.opposite {float: right;}  #stacks_in_p808430_n806392_page16 .push-0 {position: relative;left: 0%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-0 {position: relative;right: 0%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-1 {position: relative;left: 8.33333%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-1 {position: relative;right: 8.33333%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-2 {position: relative;left: 16.66667%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-2 {position: relative;right: 16.66667%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-3 {position: relative;left: 25%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-3 {position: relative;right: 25%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-4 {position: relative;left: 33.33333%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-4 {position: relative;right: 33.33333%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-5 {position: relative;left: 41.66667%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-5 {position: relative;right: 41.66667%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-6 {position: relative;left: 50%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-6 {position: relative;right: 50%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-7 {position: relative;left: 58.33333%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-7 {position: relative;right: 58.33333%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-8 {position: relative;left: 66.66667%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-8 {position: relative;right: 66.66667%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-9 {position: relative;left: 75%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-9 {position: relative;right: 75%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-10 {position: relative;left: 83.33333%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-10 {position: relative;right: 83.33333%;left: auto;}  #stacks_in_p808430_n806392_page16 .push-11 {position: relative;left: 91.66667%;right: auto;}  #stacks_in_p808430_n806392_page16 .pull-11 {position: relative;right: 91.66667%;left: auto;}}#stacks_in_p808430_n806392_page16 [class*="block-grid-"] {display: block;padding: 0;margin: 0 -0.625rem;}#stacks_in_p808430_n806392_page16 [class*="block-grid-"]:before, [class*="block-grid-"]:after {content: " ";display: table;}#stacks_in_p808430_n806392_page16 [class*="block-grid-"]:after {clear: both;}#stacks_in_p808430_n806392_page16 [class*="block-grid-"] > li {display: block;height: auto;float: left;padding: 0 0.625rem 1.25rem;}@media only screen {#stacks_in_p808430_n806392_page16 .small-block-grid-1 > li {width: 100%;list-style: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-1 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-1 > li:nth-of-type(1n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .small-block-grid-2 > li {width: 50%;list-style: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-2 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-2 > li:nth-of-type(2n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .small-block-grid-3 > li {width: 33.33333%;list-style: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-3 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-3 > li:nth-of-type(3n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .small-block-grid-4 > li {width: 25%;list-style: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-4 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-4 > li:nth-of-type(4n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .small-block-grid-5 > li {width: 20%;list-style: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-5 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-5 > li:nth-of-type(5n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .small-block-grid-6 > li {width: 16.66667%;list-style: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-6 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-6 > li:nth-of-type(6n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .small-block-grid-7 > li {width: 14.28571%;list-style: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-7 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-7 > li:nth-of-type(7n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .small-block-grid-8 > li {width: 12.5%;list-style: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-8 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-8 > li:nth-of-type(8n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .small-block-grid-9 > li {width: 11.11111%;list-style: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-9 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-9 > li:nth-of-type(9n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .small-block-grid-10 > li {width: 10%;list-style: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-10 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-10 > li:nth-of-type(10n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .small-block-grid-11 > li {width: 9.09091%;list-style: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-11 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-11 > li:nth-of-type(11n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .small-block-grid-12 > li {width: 8.33333%;list-style: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-12 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .small-block-grid-12 > li:nth-of-type(12n+1) {clear: both;}}@media only screen and (min-width: 40.063em) {#stacks_in_p808430_n806392_page16 .medium-block-grid-1 > li {  width: 100%;list-style: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-1 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-1 > li:nth-of-type(1n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .medium-block-grid-2 > li {width: 50%;list-style: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-2 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-2 > li:nth-of-type(2n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .medium-block-grid-3 > li {width: 33.33333%;list-style: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-3 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-3 > li:nth-of-type(3n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .medium-block-grid-4 > li {width: 25%;list-style: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-4 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-4 > li:nth-of-type(4n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .medium-block-grid-5 > li {width: 20%;list-style: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-5 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-5 > li:nth-of-type(5n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .medium-block-grid-6 > li {width: 16.66667%;list-style: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-6 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-6 > li:nth-of-type(6n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .medium-block-grid-7 > li {width: 14.28571%;list-style: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-7 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-7 > li:nth-of-type(7n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .medium-block-grid-8 > li {width: 12.5%;list-style: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-8 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-8 > li:nth-of-type(8n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .medium-block-grid-9 > li {width: 11.11111%;list-style: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-9 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-9 > li:nth-of-type(9n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .medium-block-grid-10 > li {width: 10%;list-style: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-10 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-10 > li:nth-of-type(10n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .medium-block-grid-11 > li {width: 9.09091%;list-style: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-11 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-11 > li:nth-of-type(11n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .medium-block-grid-12 > li {width: 8.33333%;list-style: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-12 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .medium-block-grid-12 > li:nth-of-type(12n+1) {clear: both;}}@media only screen and (min-width: 64.063em) {#stacks_in_p808430_n806392_page16 .large-block-grid-1 > li {  width: 100%;list-style: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-1 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-1 > li:nth-of-type(1n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .large-block-grid-2 > li {width: 50%;list-style: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-2 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-2 > li:nth-of-type(2n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .large-block-grid-3 > li {width: 33.33333%;list-style: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-3 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-3 > li:nth-of-type(3n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .large-block-grid-4 > li {width: 25%;list-style: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-4 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-4 > li:nth-of-type(4n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .large-block-grid-5 > li {width: 20%;list-style: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-5 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-5 > li:nth-of-type(5n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .large-block-grid-6 > li {width: 16.66667%;list-style: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-6 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-6 > li:nth-of-type(6n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .large-block-grid-7 > li {width: 14.28571%;list-style: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-7 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-7 > li:nth-of-type(7n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .large-block-grid-8 > li {width: 12.5%;list-style: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-8 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-8 > li:nth-of-type(8n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .large-block-grid-9 > li {width: 11.11111%;list-style: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-9 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-9 > li:nth-of-type(9n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .large-block-grid-10 > li {width: 10%;list-style: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-10 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-10 > li:nth-of-type(10n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .large-block-grid-11 > li {width: 9.09091%;list-style: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-11 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-11 > li:nth-of-type(11n+1) {clear: both;}#stacks_in_p808430_n806392_page16 .large-block-grid-12 > li {width: 8.33333%;list-style: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-12 > li:nth-of-type(1n) {clear: none;}  #stacks_in_p808430_n806392_page16 .large-block-grid-12 > li:nth-of-type(12n+1) {clear: both;} }#stacks_in_p808430_n806392_page16 {	margin: 15px 0px 20px 0px;}#stacks_in_p808430_n806394_page16 {	margin: 0px 13px 0px 29px;}/* Start Contact Form stack CSS code */.stacks_in_p808430_n806396_page16formwrap{	margin: 0;}#stacks_in_p808430_n806396_page16comment{display: none;height: 0px;padding: 0px;margin: 0px;}.stacks_in_p808430_n806396_page16mail{padding: 0;}.stacks_in_p808430_n806396_page16fieldset{	border: none;	outline: none;	float : none !important;	text-align: left !important;}.stacks_in_p808430_n806396_page16formail{}.stacks_in_p808430_n806396_page16fieldset{	padding: 0 20px 0 3px;}#stacks_in_p808430_n806396_page16 label{display: block;margin: 10px 0 0 0;padding: 0 0 5px 0;line-height: 1.1em;}#stacks_in_p808430_n806396_page16 label *{display: inline;}#stacks_in_p808430_n806396_page16 .stacks_in_p808430_n806396_page16input{padding: 3px 7px 3px 7px;width: 100%;font-size: 12px;background: #FFFFFF;color: #555555;margin: 0;border: 1px solid #D8D8D8;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;}#stacks_in_p808430_n806396_page16 textarea{padding: 7px;width: 100%;font-size: 13px;border: 1px solid #D8D8D8;background: #FFFFFF;color: #555555;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;}.stacks_in_p808430_n806396_page16sendmail{margin-top: 20px;padding: 4px 7px 4px 7px;display: block;font-size: 12px;color: #444444;border: 1px solid #D8D8D8;background-color: #FFFFFF;-moz-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px;cursor: pointer;}#sendmail:hover{cursor: pointer;}.stacks_in_p808430_n806396_page16response{display: none;width: 80%;border: 1px solid #D6392B;background: #FEF4FA;padding: 10px;margin: 20px auto 0 0;color: #444444;-moz-border-radius: 5px;-webkit-border-radius: 5px;border-radius: 5px;min-height: 35px;}.stacks_in_p808430_n806396_page16loader{float: left;width: 35px;height: 35px;padding: 0 15px 30px 0;}.stacks_in_p808430_n806396_page16autoreplay{visibility: hidden;height: 0px;display: none;}#stacks_in_p808430_n806396_page16 textarea{	color: #555555 !important;}/* End Contact Form stack CSS code */#stacks_in_p808430_n806396_page16 {	padding:  20px;}/*!*  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)*/@font-face{font-family:'FontAwesome';src:url('fonts/fontawesome-webfont.eot?v=4.7.0');src:url('fonts/fontawesome-webfont.eot?#iefix&v=4.7.0') format('embedded-opentype'),url('fonts/fontawesome-webfont.woff2?v=4.7.0') format('woff2'),url('fonts/fontawesome-webfont.woff?v=4.7.0') format('woff'),url('fonts/fontawesome-webfont.ttf?v=4.7.0') format('truetype'),url('fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular') format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.fa-pull-left{float:left}.fa-pull-right{float:right}.fa.fa-pull-left{margin-right:.3em}.fa.fa-pull-right{margin-left:.3em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{-ms-filter:"progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-feed:before,.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper-pp:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-resistance:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-y-combinator-square:before,.fa-yc-square:before,.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-intersex:before,.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-genderless:before{content:"\f22d"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}.fa-yc:before,.fa-y-combinator:before{content:"\f23b"}.fa-optin-monster:before{content:"\f23c"}.fa-opencart:before{content:"\f23d"}.fa-expeditedssl:before{content:"\f23e"}.fa-battery-4:before,.fa-battery:before,.fa-battery-full:before{content:"\f240"}.fa-battery-3:before,.fa-battery-three-quarters:before{content:"\f241"}.fa-battery-2:before,.fa-battery-half:before{content:"\f242"}.fa-battery-1:before,.fa-battery-quarter:before{content:"\f243"}.fa-battery-0:before,.fa-battery-empty:before{content:"\f244"}.fa-mouse-pointer:before{content:"\f245"}.fa-i-cursor:before{content:"\f246"}.fa-object-group:before{content:"\f247"}.fa-object-ungroup:before{content:"\f248"}.fa-sticky-note:before{content:"\f249"}.fa-sticky-note-o:before{content:"\f24a"}.fa-cc-jcb:before{content:"\f24b"}.fa-cc-diners-club:before{content:"\f24c"}.fa-clone:before{content:"\f24d"}.fa-balance-scale:before{content:"\f24e"}.fa-hourglass-o:before{content:"\f250"}.fa-hourglass-1:before,.fa-hourglass-start:before{content:"\f251"}.fa-hourglass-2:before,.fa-hourglass-half:before{content:"\f252"}.fa-hourglass-3:before,.fa-hourglass-end:before{content:"\f253"}.fa-hourglass:before{content:"\f254"}.fa-hand-grab-o:before,.fa-hand-rock-o:before{content:"\f255"}.fa-hand-stop-o:before,.fa-hand-paper-o:before{content:"\f256"}.fa-hand-scissors-o:before{content:"\f257"}.fa-hand-lizard-o:before{content:"\f258"}.fa-hand-spock-o:before{content:"\f259"}.fa-hand-pointer-o:before{content:"\f25a"}.fa-hand-peace-o:before{content:"\f25b"}.fa-trademark:before{content:"\f25c"}.fa-registered:before{content:"\f25d"}.fa-creative-commons:before{content:"\f25e"}.fa-gg:before{content:"\f260"}.fa-gg-circle:before{content:"\f261"}.fa-tripadvisor:before{content:"\f262"}.fa-odnoklassniki:before{content:"\f263"}.fa-odnoklassniki-square:before{content:"\f264"}.fa-get-pocket:before{content:"\f265"}.fa-wikipedia-w:before{content:"\f266"}.fa-safari:before{content:"\f267"}.fa-chrome:before{content:"\f268"}.fa-firefox:before{content:"\f269"}.fa-opera:before{content:"\f26a"}.fa-internet-explorer:before{content:"\f26b"}.fa-tv:before,.fa-television:before{content:"\f26c"}.fa-contao:before{content:"\f26d"}.fa-500px:before{content:"\f26e"}.fa-amazon:before{content:"\f270"}.fa-calendar-plus-o:before{content:"\f271"}.fa-calendar-minus-o:before{content:"\f272"}.fa-calendar-times-o:before{content:"\f273"}.fa-calendar-check-o:before{content:"\f274"}.fa-industry:before{content:"\f275"}.fa-map-pin:before{content:"\f276"}.fa-map-signs:before{content:"\f277"}.fa-map-o:before{content:"\f278"}.fa-map:before{content:"\f279"}.fa-commenting:before{content:"\f27a"}.fa-commenting-o:before{content:"\f27b"}.fa-houzz:before{content:"\f27c"}.fa-vimeo:before{content:"\f27d"}.fa-black-tie:before{content:"\f27e"}.fa-fonticons:before{content:"\f280"}.fa-reddit-alien:before{content:"\f281"}.fa-edge:before{content:"\f282"}.fa-credit-card-alt:before{content:"\f283"}.fa-codiepie:before{content:"\f284"}.fa-modx:before{content:"\f285"}.fa-fort-awesome:before{content:"\f286"}.fa-usb:before{content:"\f287"}.fa-product-hunt:before{content:"\f288"}.fa-mixcloud:before{content:"\f289"}.fa-scribd:before{content:"\f28a"}.fa-pause-circle:before{content:"\f28b"}.fa-pause-circle-o:before{content:"\f28c"}.fa-stop-circle:before{content:"\f28d"}.fa-stop-circle-o:before{content:"\f28e"}.fa-shopping-bag:before{content:"\f290"}.fa-shopping-basket:before{content:"\f291"}.fa-hashtag:before{content:"\f292"}.fa-bluetooth:before{content:"\f293"}.fa-bluetooth-b:before{content:"\f294"}.fa-percent:before{content:"\f295"}.fa-gitlab:before{content:"\f296"}.fa-wpbeginner:before{content:"\f297"}.fa-wpforms:before{content:"\f298"}.fa-envira:before{content:"\f299"}.fa-universal-access:before{content:"\f29a"}.fa-wheelchair-alt:before{content:"\f29b"}.fa-question-circle-o:before{content:"\f29c"}.fa-blind:before{content:"\f29d"}.fa-audio-description:before{content:"\f29e"}.fa-volume-control-phone:before{content:"\f2a0"}.fa-braille:before{content:"\f2a1"}.fa-assistive-listening-systems:before{content:"\f2a2"}.fa-asl-interpreting:before,.fa-american-sign-language-interpreting:before{content:"\f2a3"}.fa-deafness:before,.fa-hard-of-hearing:before,.fa-deaf:before{content:"\f2a4"}.fa-glide:before{content:"\f2a5"}.fa-glide-g:before{content:"\f2a6"}.fa-signing:before,.fa-sign-language:before{content:"\f2a7"}.fa-low-vision:before{content:"\f2a8"}.fa-viadeo:before{content:"\f2a9"}.fa-viadeo-square:before{content:"\f2aa"}.fa-snapchat:before{content:"\f2ab"}.fa-snapchat-ghost:before{content:"\f2ac"}.fa-snapchat-square:before{content:"\f2ad"}.fa-pied-piper:before{content:"\f2ae"}.fa-first-order:before{content:"\f2b0"}.fa-yoast:before{content:"\f2b1"}.fa-themeisle:before{content:"\f2b2"}.fa-google-plus-circle:before,.fa-google-plus-official:before{content:"\f2b3"}.fa-fa:before,.fa-font-awesome:before{content:"\f2b4"}.fa-handshake-o:before{content:"\f2b5"}.fa-envelope-open:before{content:"\f2b6"}.fa-envelope-open-o:before{content:"\f2b7"}.fa-linode:before{content:"\f2b8"}.fa-address-book:before{content:"\f2b9"}.fa-address-book-o:before{content:"\f2ba"}.fa-vcard:before,.fa-address-card:before{content:"\f2bb"}.fa-vcard-o:before,.fa-address-card-o:before{content:"\f2bc"}.fa-user-circle:before{content:"\f2bd"}.fa-user-circle-o:before{content:"\f2be"}.fa-user-o:before{content:"\f2c0"}.fa-id-badge:before{content:"\f2c1"}.fa-drivers-license:before,.fa-id-card:before{content:"\f2c2"}.fa-drivers-license-o:before,.fa-id-card-o:before{content:"\f2c3"}.fa-quora:before{content:"\f2c4"}.fa-free-code-camp:before{content:"\f2c5"}.fa-telegram:before{content:"\f2c6"}.fa-thermometer-4:before,.fa-thermometer:before,.fa-thermometer-full:before{content:"\f2c7"}.fa-thermometer-3:before,.fa-thermometer-three-quarters:before{content:"\f2c8"}.fa-thermometer-2:before,.fa-thermometer-half:before{content:"\f2c9"}.fa-thermometer-1:before,.fa-thermometer-quarter:before{content:"\f2ca"}.fa-thermometer-0:before,.fa-thermometer-empty:before{content:"\f2cb"}.fa-shower:before{content:"\f2cc"}.fa-bathtub:before,.fa-s15:before,.fa-bath:before{content:"\f2cd"}.fa-podcast:before{content:"\f2ce"}.fa-window-maximize:before{content:"\f2d0"}.fa-window-minimize:before{content:"\f2d1"}.fa-window-restore:before{content:"\f2d2"}.fa-times-rectangle:before,.fa-window-close:before{content:"\f2d3"}.fa-times-rectangle-o:before,.fa-window-close-o:before{content:"\f2d4"}.fa-bandcamp:before{content:"\f2d5"}.fa-grav:before{content:"\f2d6"}.fa-etsy:before{content:"\f2d7"}.fa-imdb:before{content:"\f2d8"}.fa-ravelry:before{content:"\f2d9"}.fa-eercast:before{content:"\f2da"}.fa-microchip:before{content:"\f2db"}.fa-snowflake-o:before{content:"\f2dc"}.fa-superpowers:before{content:"\f2dd"}.fa-wpexplorer:before{content:"\f2de"}.fa-meetup:before{content:"\f2e0"}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}.sr-only-focusable:active,.sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}/* * Scotty * Author: Jeremy Hawes * Version: 1.1.0 * URL: http://onelittledesigner.com/rapidweaver-stack/scotty * Support: http://forum.onelittledesigner.com * Description: Teleports you back to the top of the page */#scrollUp_stacks_in_pp757637_n846856_n846855_page16,a#scrollUp_stacks_in_pp757637_n846856_n846855_page16 {			bottom: 20px;									left: 50%;					padding: 10px 20px;	color: #FFFFFF !important;	border-radius: 10px;	-webkit-border-radius: 10px;	-moz-border-radius: 10px;	-ms-border-radius: 10px;	-o-border-radius: 10px;	text-decoration: none;	font-size: 24px;	text-align: center;	display: inline-block;}#scrollUp_stacks_in_pp757637_n846856_n846855_page16:hover,a#scrollUp_stacks_in_pp757637_n846856_n846855_page16:hover {	color: #007FFF !important;}#scrollUp_stacks_in_pp757637_n846856_n846855_page16.scrollUpTheme1,#scrollUp_stacks_in_pp757637_n846856_n846855_page16.scrollUpTheme3 {	border-color: #C0C0C0;	border-width: 0px;	border-style: solid;}#scrollUp_stacks_in_pp757637_n846856_n846855_page16.scrollUpTheme1.transparencyOff,#scrollUp_stacks_in_pp757637_n846856_n846855_page16.scrollUpTheme3.transparencyOff {	background-color: #555555;}#scrollUp_stacks_in_pp757637_n846856_n846855_page16.scrollUpTheme1.transparencyOn,#scrollUp_stacks_in_pp757637_n846856_n846855_page16.scrollUpTheme3.transparencyOn {	background-color: none;	border-color: none;}#scrollUp_stacks_in_pp757637_n846856_n846855_page16.scrollUpTheme1.gradientOn,#scrollUp_stacks_in_pp757637_n846856_n846855_page16.scrollUpTheme3.gradientOn {	background-color: #EBEBEB;	background-image: -moz-linear-gradient(top, #EBEBEB, #DEDEDE);	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#EBEBEB), to(#DEDEDE));	background-image: -webkit-linear-gradient(top, #EBEBEB, #DEDEDE);	background-image: -o-linear-gradient(top, #EBEBEB, #DEDEDE);	background-image: linear-gradient(to bottom, #EBEBEB, #DEDEDE);	background-repeat: repeat-x;}#scrollUp_stacks_in_pp757637_n846856_n846855_page16.textShadowOn {	text-shadow: 0 1px 0 #FFFFFF;}#scrollUp_stacks_in_pp757637_n846856_n846855_page16.scrollUpTheme1.boxShadowOn,#scrollUp_stacks_in_pp757637_n846856_n846855_page16.scrollUpTheme3.boxShadowOn {	-webkit-box-shadow: 0 0 2px 1px #CCCCCC;	-moz-box-shadow: 0 0 2px 1px #CCCCCC;	-ms-box-shadow: 0 0 2px 1px #CCCCCC;	-o-box-shadow: 0 0 2px 1px #CCCCCC;	box-shadow: 0 0 2px 1px #CCCCCC;}/* ==================== * THEME 2 - IMAGE * ==================== *//* ==================== * THEME 3 - TAB * ==================== */	#scrollUp_stacks_in_pp757637_n846856_n846855_page16.scrollUpTheme3 {		border-radius: 10px;		-webkit-border-radius: 10px;		-moz-border-radius: 10px;		-ms-border-radius: 10px;		-o-border-radius: 10px;		border-bottom-right-radius: 0;		border-bottom-left-radius: 0;		border-bottom-width: 0;		border-bottom: none;		bottom: 0 !important;		width: 60px;		height: 75px;		margin-bottom: -10px;		-webkit-transition: margin-bottom 150ms linear;		-moz-transition: margin-bottom 150ms linear;		-ms-transition: margin-bottom 150ms linear;		-o-transition: margin-bottom 150ms linear;		transition: margin-bottom 150ms linear;	}	#scrollUp_stacks_in_pp757637_n846856_n846855_page16.scrollUpTheme3:hover {		margin-bottom: 0px;	}	.footerzero{		position: relative;		left: 0;		bottom: 0;		width: 100%;		background: #EEEEEE;				z-index: 99999;		opacity:1!important;	}				.footerzero{			height: 200px;		}			.show{opacity: 1;}	.hide{opacity: 0;}		.fzSlideIn{		bottom: 0;		opacity: 1;		-webkit-transition-duration: 0.50s;		   -moz-transition-duration: 0.50s;			    transition-duration: 0.50s;	}		.fzSlideOut{		bottom: -100px;		opacity: 0;		-webkit-transition-duration: 0.50s;		   -moz-transition-duration: 0.50s;			    transition-duration: 0.50s;	}.customiser-warning{display:none}.theme-warning{	text-align: center;	width: 50%;	top: 0;	margin: 100px auto;	padding: 20px;	background: red;	color: white;	z-index:1000} .stacks_top.loaded,.uikit-main.loaded{	opacity:1!important}.image-right{float:right;padding-left:20px;padding-bottom:20px}.image-left{float:left;padding-right:20px;padding-bottom:20px}@media(max-width:320px){	.image-right,.image-left{float:none;padding-left:0;padding-right:0}}@media(min-width:767px){	.uk-navbar-brand{padding:0;margin-left:0}}em{color:rgba(68, 68, 68, 1.00)}code{color:rgba(221, 0, 85, 1.00)!important}.uk-container{	max-width:960px}@media(min-width:1220px){	.uk-container{max-width:1060px}} html,body{	color:#242424;	background:#FFFFFF}hr{border-top-color:#DDDDDD}.uk-nav-divider{	border-color:#DDDDDD!important}.uk-grid-divider>[class*='uk-width-medium-']:not(.uk-width-medium-1-1):nth-child(n+2){	border-left-color:#DDDDDD!important}.uk-subnav-line>:nth-child(n+2):before{	border-left-color:#DDDDDD}html{color:#242424}h1,.uk-h1{	color:rgba(68, 68, 68, 1.00);	font-weight: bold;}h2,h3,h4,h5,h6,.uk-h2,.uk-h3,.uk-h4,.uk-h5,.uk-h6{	color:rgba(68, 68, 68, 1.00);	font-weight: bold;}a,.uk-link{	color:rgba(0, 153, 204, 1.00)}a:hover,a.active:hover,.uk-link:hover{	color:rgba(68, 68, 68, 1.00)}a,.uk-link,.uk-button-link{	text-decoration:none}a:hover,.uk-link:hover,.uk-button-link:hover{	text-decoration:none}.uk-button,.uk-button:visited{background-color:rgba(238, 238, 238, 1.00);color:rgba(68, 68, 68, 1.00)}.uk-button:hover,.uk-button:focus{background-color:rgba(245, 245, 245, 1.00);color:rgba(68, 68, 68, 1.00)}.uk-button-primary,.uk-button-primary:visited{background-color:rgba(0, 168, 230, 1.00);color:rgba(255, 255, 255, 1.00)}.uk-button-primary:hover,.uk-button-primary:focus{background-color:rgba(53, 179, 238, 1.00);color:rgba(255, 255, 255, 1.00)}.uk-button-success,.uk-button-success:visited{background-color:rgba(140, 193, 76, 1.00);color:rgba(255, 255, 255, 1.00)}.uk-button-success:hover,.uk-button-success:focus{background-color:rgba(142, 199, 59, 1.00);color:rgba(255, 255, 255, 1.00)}.uk-button-danger,.uk-button-danger:visited{background-color:rgba(233, 177, 78, 1.00);color:rgba(255, 255, 255, 1.00)}.uk-button-danger:hover,.uk-button-danger:focus{background-color:rgba(228, 53, 79, 1.00);color:rgba(255, 255, 255, 1.00)}.uk-button-link,.uk-button-link:visited{color:rgba(68, 68, 68, 1.00);background-color: transparent;}.uk-button-link:hover,.uk-button-link:focus{color:rgba(204, 204, 204, 1.00);background-color: transparent;}.uk-navbar-content .uk-button-primary,.uk-navbar-content .uk-button-primary:visited{background-color:rgba(0, 168, 230, 1.00);color:rgba(255, 255, 255, 1.00)!important}.uk-navbar-content .uk-button-primary:hover,.uk-navbar-content .uk-button-primary:focus{background-color:rgba(53, 179, 238, 1.00);color:rgba(255, 255, 255, 1.00)!important}.uk-navbar-content .uk-button-success,.uk-navbar-content .uk-button-success:visited{background-color:rgba(140, 193, 76, 1.00);color:rgba(255, 255, 255, 1.00)!important}.uk-navbar-content .uk-button-success:hover,.uk-navbar-content .uk-button-success:focus{background-color:rgba(142, 199, 59, 1.00);color:rgba(255, 255, 255, 1.00)!important}.uk-navbar-content .uk-button-danger,.uk-navbar-content .uk-button-danger:visited{background-color:rgba(233, 177, 78, 1.00);color:rgba(255, 255, 255, 1.00)!important}.uk-navbar-content .uk-button-danger:hover,.uk-navbar-content .uk-button-danger:focus{background-color:rgba(228, 53, 79, 1.00);color:rgba(255, 255, 255, 1.00)!important}.uk-navbar-content .uk-button-link,.uk-navbar-content .uk-button-link:visited{color:rgba(68, 68, 68, 1.00)!important}.uk-navbar-content .uk-button-link:hover,.uk-navbar-content .uk-button-link:focus{color:rgba(204, 204, 204, 1.00)!important}h1,.h1-family{}h2,h3,h4,h5,h6,.headings-family, .uk-navbar-nav>*>*, .uk-offcanvas-bar>*>*,::-webkit-input-placeholder{}::-ms-input-placeholder{}::-moz-placeholder{}body,.body-family{}h1,.uk-h1{font-size:36px;line-height:42px}h2,.uk-h2{font-size:24px;line-height:30px}h3,.uk-h3{font-size:18px;line-height:24px}h4,.uk-h4{font-size:16px;line-height:22px}h5,.uk-h5{font-size:14px;line-height:20px}h6,.uk-h6{font-size:12px;line-height:18px}html{font-size:14px;line-height:20px} .uk-panel>h3,.uk-panel:hover>h3{background:transparent}.uk-block-default,.uk-panel-box-default{color:rgba(68, 68, 68, 1.00)!important;background:rgba(255, 255, 255, 1.00)}.uk-subnav.default-scheme>*>*{color:rgba(68, 68, 68, 1.00)}.uk-subnav.default-scheme>*>a:hover,.uk-subnav.default-scheme>*>a:focus{color:rgba(234, 234, 234, 1.00)}.uk-subnav.default-scheme>.uk-active>*{color:rgba(59, 167, 212, 1.00)}.uk-block-primary,.uk-panel-box-primary{color:rgba(0, 0, 0, 1.00)!important;background:rgba(0, 168, 230, 1.00)}.uk-subnav.primary-scheme>*>*{color:rgba(0, 0, 0, 1.00)}.uk-subnav.primary-scheme>*>a:hover,.uk-subnav.primary-scheme>*>a:focus{color:rgba(234, 234, 234, 1.00)}.uk-subnav.primary-scheme>.uk-active>*{color:rgba(59, 167, 212, 1.00)}.uk-block-secondary,.uk-panel-box-secondary{color:rgba(255, 204, 51, 1.00)!important;background:rgba(34, 34, 34, 1.00)}.uk-subnav.secondary-scheme>*>*{color:rgba(255, 204, 51, 1.00)}.uk-subnav.secondary-scheme>*>a:hover,.uk-subnav.secondary-scheme>*>a:focus{color:rgba(234, 234, 234, 1.00)}.uk-subnav.secondary-scheme>.uk-active>*{color:rgba(59, 167, 212, 1.00)}.uk-block-muted{color:rgba(68, 68, 68, 1.00)!important;background:rgba(249, 249, 249, 1.00)}.uk-subnav>.uk-disabled>*{color:rgba(68, 68, 68, 1.00)!important}.uk-subnav .body-family > * > *{	font-family: custom!important;}.uk-subnav .headings-family > * > *{	font-family: custom!important;}#stacks_in_p757637_n755051_page16 {	background-color: rgba(204, 204, 204, 1.00);}#stacks_in_p757637_n755053_page16>.s3_row {	margin: 0 -10px;}#stacks_in_p757637_n755053_page16>.s3_row>.s3_column_left {	width: 34.56%;}#stacks_in_p757637_n755053_page16>.s3_row>.s3_column_right {	width: 65.440002%;}#stacks_in_p757637_n755053_page16>.s3_row>.s3_column {	padding: 0 10px;}@media only screen and (max-width: 770px) {}@media only screen and (max-width: 400px) {}#stacks_in_p757637_n755053_page16 {	background-color: rgba(255, 255, 255, 0.00);	padding:  20px;}#stacks_in_p757637_n755055_page16>.s3_row {	margin: 0 -10px;}#stacks_in_p757637_n755055_page16>.s3_row>.s3_column_left {	width: 33.33%;}#stacks_in_p757637_n755055_page16>.s3_row>.s3_column_center {	width: 33.339996%;}#stacks_in_p757637_n755055_page16>.s3_row>.s3_column_right {	width: 33.33%;}#stacks_in_p757637_n755055_page16>.s3_row>.s3_column {	padding: 0 10px;}@media only screen and (max-width: 770px) {}@media only screen and (max-width: 400px) {	#stacks_in_p757637_n755055_page16>.s3_row  {		margin: -10px 0;	}	#stacks_in_p757637_n755055_page16>.s3_row>.s3_column {		padding: 10px 0;		width:100%;	}}  /* Standard Responsive Image */  #stacks_in_p757637_n757654_page16 .structure_responsive_image img {max-width: 100%;height: auto;}    /* Align Image */    /* Image Styling */    #stacks_in_p757637_n757654_page16 .structure_responsive_image img {-webkit-border-radius: 0px;-moz-border-radius: 0px;border-radius: 0px;}#stacks_in_p757637_n757654_page16 {	padding:  20px;}  /* Standard Responsive Image */  #stacks_in_p757637_n757656_page16 .structure_responsive_image img {max-width: 100%;height: auto;}    /* Align Image */    /* Image Styling */    #stacks_in_p757637_n757656_page16 .structure_responsive_image img {-webkit-border-radius: 0px;-moz-border-radius: 0px;border-radius: 0px;}#stacks_in_p757637_n757656_page16 {	padding:  20px;}  /* Standard Responsive Image */  #stacks_in_p757637_n755063_page16 .structure_responsive_image img {max-width: 100%;height: auto;}    /* Align Image */    /* Image Styling */    #stacks_in_p757637_n755063_page16 .structure_responsive_image img {-webkit-border-radius: 0px;-moz-border-radius: 0px;border-radius: 0px;}#stacks_in_p757637_n755063_page16 {	margin: 0px 25px 0px 25px;}#stacks_in_p757637_n755066_page16>.s3_row {	margin: 0 -10px;}#stacks_in_p757637_n755066_page16>.s3_row>.s3_column_left {	width: 71.11%;}#stacks_in_p757637_n755066_page16>.s3_row>.s3_column_right {	width: 28.889999%;}#stacks_in_p757637_n755066_page16>.s3_row>.s3_column {	padding: 0 10px;}@media only screen and (max-width: 770px) {}@media only screen and (max-width: 400px) {	#stacks_in_p757637_n755066_page16>.s3_row  {		margin: -10px 0;	}	#stacks_in_p757637_n755066_page16>.s3_row>.s3_column {		padding: 10px 0;		width:100%;	}}#stacks_in_p757637_n757715_page16 {	margin: 30px 0px 0px 0px;}/* @group CSS Reset */ #shareStackWrapperstacks_in_p757637_n755072_page16 *,#shareStackWrapperstacks_in_p757637_n755072_page16 *::after,#shareStackWrapperstacks_in_p757637_n755072_page16 *::before {	-webkit-box-sizing: content-box;	-moz-box-sizing: content-box;	box-sizing: content-box;}#shareStackWrapperstacks_in_p757637_n755072_page16 ul#shareStackArraystacks_in_p757637_n755072_page16 {	padding: 0;	margin: 0;	list-style: none;	height: auto;	overflow: auto;	text-align: left;}#shareStackWrapperstacks_in_p757637_n755072_page16 [class^="fa fa-"] {	line-height: 40px;	color: inherit;}/* @end */ /* @group Positioning */ /* @group Absolute Positioning */ /*  *//* @end */ /* @group Fixed Positioning */ /*  *//* @end */ /*  *//* @group Relative Positioning */ #shareStackWrapperstacks_in_p757637_n755072_page16 {	position: relative;	width: 100%;}/*  *//* @end */ /* @end */ /* @group Buttons */ #shareStackWrapperstacks_in_p757637_n755072_page16 ul#shareStackArraystacks_in_p757637_n755072_page16 li.shareStackItem {	padding: 0;	margin-bottom: 0px;	margin-left: 0px;	margin-right: 0px;	margin-top: 0px;	display: inline-block;	text-align: center;	font-size: 25px;	width: 40px;	height: 40px;	line-height: 40px;	cursor: pointer;	position: relative;	transition: opacity 300ms ease-in-out;	border-radius: 10px;	opacity: 0.99;	list-style: none;	overflow: hidden;}#shareStackWrapperstacks_in_p757637_n755072_page16 ul#shareStackArraystacks_in_p757637_n755072_page16 li.shareStackItem:hover {	opacity: 0.85;}#shareStackWrapperstacks_in_p757637_n755072_page16 ul#shareStackArraystacks_in_p757637_n755072_page16 li.shareStackItem a {	position: absolute;	top: 0;	left: 0;	width: 50px;	height: 50px;}/* @end */ /* @group Responsive */ #shareStackWrapperstacks_in_p757637_n755072_page16 ul#shareStackArraystacks_in_p757637_n755072_page16 {	display: none;}@media screen and (min-width: 380px) and (max-width: 100000px) {	#shareStackWrapperstacks_in_p757637_n755072_page16 ul#shareStackArraystacks_in_p757637_n755072_page16 {		display: block;	}}/* @end */ /* @group Icons */ #shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-baidustacks_in_p757637_n755072_page16 {	background: #FF4749;	color: #0000ff;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-bloggerstacks_in_p757637_n755072_page16 {	background: #F3881F;	color: #ffffff;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-deliciousstacks_in_p757637_n755072_page16 {	background: #0c83e8;	color: #ffffff;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-diggstacks_in_p757637_n755072_page16 {	background: #000000;	color: #ffffff;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-facebookstacks_in_p757637_n755072_page16 {	background: #406fac;	color: #ffffff;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-googleplusstacks_in_p757637_n755072_page16 {	background: #e15540;	color: #ffffff;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-linkedinstacks_in_p757637_n755072_page16 {	background: #0182bd;	color: #ffffff;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-livejournalstacks_in_p757637_n755072_page16 {	background: #083B51;	color: #9AECFF;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-myspacestacks_in_p757637_n755072_page16 {	background: #032087;	color: #ffffff;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-odnoklassnikistacks_in_p757637_n755072_page16 {	background: #E76E23;	color: #ffffff;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-pocketstacks_in_p757637_n755072_page16 {	background: #DC2447;	color: #ffffff;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-redditstacks_in_p757637_n755072_page16 {	background: #d3e6f8;	color: #000000;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-renrenstacks_in_p757637_n755072_page16 {	background: #f5f5f5;	color: #0164b4;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-stumbleuponstacks_in_p757637_n755072_page16 {	background: #ed5328;	color: #ffffff;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-tumblrstacks_in_p757637_n755072_page16 {	background: #3c4f67;	color: #ffffff;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-twitterstacks_in_p757637_n755072_page16 {	background: #44A6FD;	color: #ffffff;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-viadeostacks_in_p757637_n755072_page16 {	background: #333333;	color: #E88B25;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-vkontaktestacks_in_p757637_n755072_page16 {	background: #557fab;	color: #ffffff;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-weibostacks_in_p757637_n755072_page16 {	background: #db2f2d;	color: #ffffff;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-xingstacks_in_p757637_n755072_page16 {	background: #D0D607;	color: #0A5256;}/* Utility icons */#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-emailstacks_in_p757637_n755072_page16 {	background: #cdcdcd;	color: #333333;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-printstacks_in_p757637_n755072_page16 {	background: #808080;	color: #ffffff;}/* Custom Icons */#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-customonestacks_in_p757637_n755072_page16 {	background: #FF8000;	color: #333333;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-customtwostacks_in_p757637_n755072_page16 {	background: #FF8000;	color: #333333;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-customthreestacks_in_p757637_n755072_page16 {	background: #FF8000;	color: #333333;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-customfourstacks_in_p757637_n755072_page16 {	background: #FF8000;	color: #333333;}#shareStackWrapperstacks_in_p757637_n755072_page16 #shareStackItem-customfivestacks_in_p757637_n755072_page16 {	background: #FF8000;	color: #333333;}/* @end */ @media print {	#shareStackWrapperstacks_in_p757637_n755072_page16 {		display: none !important;	}}/* @group Edit Mode Styling */ /*  *//* @end */ #stacks_in_p757637_n755072_page16 {	margin: 5px 0px 0px 40px;	padding:  20px;}#stacks_in_p757637_n755073_page16 {	margin: 0px 0px 10px 25px;}/* Start dooText X stack CSS code */.stacks_in_p757637_n755075_page16x{	display: block !important;	text-align: left !important;	}@media (max-width:768px) {	.stacks_in_p757637_n755075_page16x{		text-align: left !important;	}}@media (max-width:480px) {	.stacks_in_p757637_n755075_page16x{		text-align: left !important;	}}/* End dooText X stack CSS code */#stacks_in_p757637_n755075_page16 {	margin: 0px 0px 10px 10px;}