@charset "UTF-8";

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

Copyright (c) 2013 Daniel Eden

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  50% {
    opacity: 1;
  }
}

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

  50% {
    opacity: 1;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 0;
  }
}

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

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

  100% {
    opacity: 0;
  }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



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

Copyright (c) 2014 Christian Pucci

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

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  60%, 80%, 100% {
    opacity: 1;
    transform: scale(1, 1) translateX(0);
  }
}
.com_bigwhiteduck_stacks_paragraphpro_stack p.text-center{text-align:center}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-left{text-align:left}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-right{text-align:right}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-justify{text-align:justify}.com_bigwhiteduck_stacks_paragraphpro_stack p.text-inherit{text-align:inherit}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_paragraphpro_stack p.small-only-text-center{text-align:center}.com_bigwhiteduck_stacks_paragraphpro_stack p.small-only-text-center + ul{display:table;margin:0 auto;text-align:left}}@media only screen and (max-width:640px){.com_bigwhiteduck_stacks_paragraphpro_stack p.text-justify.small-only-just-left{text-align:left !important}}
/*!
* animsition v4.0.2
* A simple and easy jQuery plugin for CSS animated page transitions.
* http://blivesta.github.io/animsition
* License : MIT
* Author : blivesta (http://blivesta.com/)
*/
body,.animsition-overlay{position:relative;opacity:0;-webkit-animation-fill-mode:both;animation-fill-mode:both; }}
.animsition-overlay-slide{position:fixed;z-index:1;width:100%;height:100%;background-color:#ddd}.fade-in{-webkit-animation-name:fade-in;animation-name:fade-in}@-webkit-keyframes fade-out{0%{opacity:1}100%{opacity:0}}@keyframes fade-out{0%{opacity:1}100%{opacity:0}}.fade-out{-webkit-animation-name:fade-out;animation-name:fade-out}@-webkit-keyframes fade-in-up{0%{-webkit-transform:translateY(500px);transform:translateY(500px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes fade-in-up{0%{-webkit-transform:translateY(500px);transform:translateY(500px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}.fade-in-up{-webkit-animation-name:fade-in-up;animation-name:fade-in-up}@-webkit-keyframes fade-out-up{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}100%{-webkit-transform:translateY(-500px);transform:translateY(-500px);opacity:0}}@keyframes fade-out-up{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}100%{-webkit-transform:translateY(-500px);transform:translateY(-500px);opacity:0}}.fade-out-up{-webkit-animation-name:fade-out-up;animation-name:fade-out-up}@-webkit-keyframes fade-in-up-sm{0%{-webkit-transform:translateY(100px);transform:translateY(100px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes fade-in-up-sm{0%{-webkit-transform:translateY(100px);transform:translateY(100px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}.fade-in-up-sm{-webkit-animation-name:fade-in-up-sm;animation-name:fade-in-up-sm}@-webkit-keyframes fade-out-up-sm{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}100%{-webkit-transform:translateY(-100px);transform:translateY(-100px);opacity:0}}@keyframes fade-out-up-sm{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}100%{-webkit-transform:translateY(-100px);transform:translateY(-100px);opacity:0}}.fade-out-up-sm{-webkit-animation-name:fade-out-up-sm;animation-name:fade-out-up-sm}@-webkit-keyframes fade-in-up-lg{0%{-webkit-transform:translateY(1000px);transform:translateY(1000px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes fade-in-up-lg{0%{-webkit-transform:translateY(1000px);transform:translateY(1000px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}.fade-in-up-lg{-webkit-animation-name:fade-in-up-lg;animation-name:fade-in-up-lg}@-webkit-keyframes fade-out-up-lg{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}100%{-webkit-transform:translateY(-1000px);transform:translateY(-1000px);opacity:0}}@keyframes fade-out-up-lg{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}100%{-webkit-transform:translateY(-1000px);transform:translateY(-1000px);opacity:0}}.fade-out-up-lg{-webkit-animation-name:fade-out-up-lg;animation-name:fade-out-up-lg}@-webkit-keyframes fade-in-down{0%{-webkit-transform:translateY(-500px);transform:translateY(-500px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes fade-in-down{0%{-webkit-transform:translateY(-500px);transform:translateY(-500px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}.fade-in-down{-webkit-animation-name:fade-in-down;animation-name:fade-in-down}@-webkit-keyframes fade-out-down{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}100%{-webkit-transform:translateY(500px);transform:translateY(500px);opacity:0}}@keyframes fade-out-down{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}100%{-webkit-transform:translateY(500px);transform:translateY(500px);opacity:0}}.fade-out-down{-webkit-animation-name:fade-out-down;animation-name:fade-out-down}@-webkit-keyframes fade-in-down-sm{0%{-webkit-transform:translateY(-100px);transform:translateY(-100px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes fade-in-down-sm{0%{-webkit-transform:translateY(-100px);transform:translateY(-100px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}.fade-in-down-sm{-webkit-animation-name:fade-in-down-sm;animation-name:fade-in-down-sm}@-webkit-keyframes fade-out-down-sm{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}100%{-webkit-transform:translateY(100px);transform:translateY(100px);opacity:0}}@keyframes fade-out-down-sm{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}100%{-webkit-transform:translateY(100px);transform:translateY(100px);opacity:0}}.fade-out-down-sm{-webkit-animation-name:fade-out-down-sm;animation-name:fade-out-down-sm}@-webkit-keyframes fade-in-down-lg{0%{-webkit-transform:translateY(-1000px);transform:translateY(-1000px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@keyframes fade-in-down-lg{0%{-webkit-transform:translateY(-1000px);transform:translateY(-1000px);opacity:0}100%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}.fade-in-down-lg{-webkit-animation-name:fade-in-down;animation-name:fade-in-down}@-webkit-keyframes fade-out-down-lg{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}100%{-webkit-transform:translateY(1000px);transform:translateY(1000px);opacity:0}}@keyframes fade-out-down-lg{0%{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}100%{-webkit-transform:translateY(1000px);transform:translateY(1000px);opacity:0}}.fade-out-down-lg{-webkit-animation-name:fade-out-down-lg;animation-name:fade-out-down-lg}@-webkit-keyframes fade-in-left{0%{-webkit-transform:translateX(-500px);transform:translateX(-500px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@keyframes fade-in-left{0%{-webkit-transform:translateX(-500px);transform:translateX(-500px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}.fade-in-left{-webkit-animation-name:fade-in-left;animation-name:fade-in-left}@-webkit-keyframes fade-out-left{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}100%{-webkit-transform:translateX(-500px);transform:translateX(-500px);opacity:0}}@keyframes fade-out-left{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}100%{-webkit-transform:translateX(-500px);transform:translateX(-500px);opacity:0}}.fade-out-left{-webkit-animation-name:fade-out-left;animation-name:fade-out-left}@-webkit-keyframes fade-in-left-sm{0%{-webkit-transform:translateX(-100px);transform:translateX(-100px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@keyframes fade-in-left-sm{0%{-webkit-transform:translateX(-100px);transform:translateX(-100px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}.fade-in-left-sm{-webkit-animation-name:fade-in-left-sm;animation-name:fade-in-left-sm}@-webkit-keyframes fade-out-left-sm{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}100%{-webkit-transform:translateX(-100px);transform:translateX(-100px);opacity:0}}@keyframes fade-out-left-sm{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}100%{-webkit-transform:translateX(-100px);transform:translateX(-100px);opacity:0}}.fade-out-left-sm{-webkit-animation-name:fade-out-left-sm;animation-name:fade-out-left-sm}@-webkit-keyframes fade-in-left-lg{0%{-webkit-transform:translateX(-1500px);transform:translateX(-1500px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@keyframes fade-in-left-lg{0%{-webkit-transform:translateX(-1500px);transform:translateX(-1500px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}.fade-in-left-lg{-webkit-animation-name:fade-in-left-lg;animation-name:fade-in-left-lg}@-webkit-keyframes fade-out-left-lg{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}100%{-webkit-transform:translateX(-1500px);transform:translateX(-1500px);opacity:0}}@keyframes fade-out-left-lg{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}100%{-webkit-transform:translateX(-1500px);transform:translateX(-1500px);opacity:0}}.fade-out-left-lg{-webkit-animation-name:fade-out-left-lg;animation-name:fade-out-left-lg}@-webkit-keyframes fade-in-right{0%{-webkit-transform:translateX(500px);transform:translateX(500px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@keyframes fade-in-right{0%{-webkit-transform:translateX(500px);transform:translateX(500px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}.fade-in-right{-webkit-animation-name:fade-in-right;animation-name:fade-in-right}@-webkit-keyframes fade-out-right{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}100%{-webkit-transform:translateX(500px);transform:translateX(500px);opacity:0}}@keyframes fade-out-right{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}100%{-webkit-transform:translateX(500px);transform:translateX(500px);opacity:0}}.fade-out-right{-webkit-animation-name:fade-out-right;animation-name:fade-out-right}@-webkit-keyframes fade-in-right-sm{0%{-webkit-transform:translateX(100px);transform:translateX(100px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@keyframes fade-in-right-sm{0%{-webkit-transform:translateX(100px);transform:translateX(100px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}.fade-in-right-sm{-webkit-animation-name:fade-in-right-sm;animation-name:fade-in-right-sm}@-webkit-keyframes fade-out-right-sm{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}100%{-webkit-transform:translateX(100px);transform:translateX(100px);opacity:0}}@keyframes fade-out-right-sm{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}100%{-webkit-transform:translateX(100px);transform:translateX(100px);opacity:0}}.fade-out-right-sm{-webkit-animation-name:fade-out-right-sm;animation-name:fade-out-right-sm}@-webkit-keyframes fade-in-right-lg{0%{-webkit-transform:translateX(1500px);transform:translateX(1500px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@keyframes fade-in-right-lg{0%{-webkit-transform:translateX(1500px);transform:translateX(1500px);opacity:0}100%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}.fade-in-right-lg{-webkit-animation-name:fade-in-right-lg;animation-name:fade-in-right-lg}@-webkit-keyframes fade-out-right-lg{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}100%{-webkit-transform:translateX(1500px);transform:translateX(1500px);opacity:0}}@keyframes fade-out-right-lg{0%{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}100%{-webkit-transform:translateX(1500px);transform:translateX(1500px);opacity:0}}.fade-out-right-lg{-webkit-animation-name:fade-out-right-lg;animation-name:fade-out-right-lg}@-webkit-keyframes rotate-in{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transform-origin:center center;transform-origin:center center;opacity:0}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:center center;transform-origin:center center;opacity:1}}@keyframes rotate-in{0%{-webkit-transform:rotate(-90deg);transform:rotate(-90deg);-webkit-transform-origin:center center;transform-origin:center center;opacity:0}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:center center;transform-origin:center center;opacity:1}}.rotate-in{-webkit-animation-name:rotate-in;animation-name:rotate-in}@-webkit-keyframes rotate-out{0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:center center;transform-origin:center center;opacity:1}100%{-webkit-transform:rotate(90deg);transform:rotate(90deg);-webkit-transform-origin:center center;transform-origin:center center;opacity:0}}@keyframes rotate-out{0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:center center;transform-origin:center center;opacity:1}100%{-webkit-transform:rotate(90deg);transform:rotate(90deg);-webkit-transform-origin:center center;transform-origin:center center;opacity:0}}.rotate-out{-webkit-animation-name:rotate-out;animation-name:rotate-out}@-webkit-keyframes rotate-in-sm{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:center center;transform-origin:center center;opacity:0}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:center center;transform-origin:center center;opacity:1}}@keyframes rotate-in-sm{0%{-webkit-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-transform-origin:center center;transform-origin:center center;opacity:0}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:center center;transform-origin:center center;opacity:1}}.rotate-in-sm{-webkit-animation-name:rotate-in-sm;animation-name:rotate-in-sm}@-webkit-keyframes rotate-out-sm{0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:center center;transform-origin:center center;opacity:1}100%{-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:center center;transform-origin:center center;opacity:0}}@keyframes rotate-out-sm{0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:center center;transform-origin:center center;opacity:1}100%{-webkit-transform:rotate(45deg);transform:rotate(45deg);-webkit-transform-origin:center center;transform-origin:center center;opacity:0}}.rotate-out-sm{-webkit-animation-name:rotate-out-sm;animation-name:rotate-out-sm}@-webkit-keyframes rotate-in-lg{0%{-webkit-transform:rotate(-180deg);transform:rotate(-180deg);-webkit-transform-origin:center center;transform-origin:center center;opacity:0}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:center center;transform-origin:center center;opacity:1}}@keyframes rotate-in-lg{0%{-webkit-transform:rotate(-180deg);transform:rotate(-180deg);-webkit-transform-origin:center center;transform-origin:center center;opacity:0}100%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:center center;transform-origin:center center;opacity:1}}.rotate-in-lg{-webkit-animation-name:rotate-in-lg;animation-name:rotate-in-lg}@-webkit-keyframes rotate-out-lg{0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:center center;transform-origin:center center;opacity:1}100%{-webkit-transform:rotate(180deg);transform:rotate(180deg);-webkit-transform-origin:center center;transform-origin:center center;opacity:0}}@keyframes rotate-out-lg{0%{-webkit-transform:rotate(0);transform:rotate(0);-webkit-transform-origin:center center;transform-origin:center center;opacity:1}100%{-webkit-transform:rotate(180deg);transform:rotate(180deg);-webkit-transform-origin:center center;transform-origin:center center;opacity:0}}.rotate-out-lg{-webkit-animation-name:rotate-out-lg;animation-name:rotate-out-lg}@-webkit-keyframes flip-in-x{0%{-webkit-transform:perspective(550px) rotateX(90deg);transform:perspective(550px) rotateX(90deg);opacity:0}100%{-webkit-transform:perspective(550px) rotateX(0);transform:perspective(550px) rotateX(0);opacity:1}}@keyframes flip-in-x{0%{-webkit-transform:perspective(550px) rotateX(90deg);transform:perspective(550px) rotateX(90deg);opacity:0}100%{-webkit-transform:perspective(550px) rotateX(0);transform:perspective(550px) rotateX(0);opacity:1}}.flip-in-x{-webkit-animation-name:flip-in-x;animation-name:flip-in-x;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}.flip-in-x-nr,.flip-out-x{-webkit-backface-visibility:visible!important}@-webkit-keyframes flip-out-x{0%{-webkit-transform:perspective(550px) rotateX(0);transform:perspective(550px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(550px) rotateX(90deg);transform:perspective(550px) rotateX(90deg);opacity:0}}@keyframes flip-out-x{0%{-webkit-transform:perspective(550px) rotateX(0);transform:perspective(550px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(550px) rotateX(90deg);transform:perspective(550px) rotateX(90deg);opacity:0}}.flip-out-x{-webkit-animation-name:flip-out-x;animation-name:flip-out-x;backface-visibility:visible!important}@-webkit-keyframes flip-in-x-nr{0%{-webkit-transform:perspective(100px) rotateX(90deg);transform:perspective(100px) rotateX(90deg);opacity:0}100%{-webkit-transform:perspective(100px) rotateX(0);transform:perspective(100px) rotateX(0);opacity:1}}@keyframes flip-in-x-nr{0%{-webkit-transform:perspective(100px) rotateX(90deg);transform:perspective(100px) rotateX(90deg);opacity:0}100%{-webkit-transform:perspective(100px) rotateX(0);transform:perspective(100px) rotateX(0);opacity:1}}.flip-in-x-nr{-webkit-animation-name:flip-in-x-nr;animation-name:flip-in-x-nr;backface-visibility:visible!important}.flip-in-x-fr,.flip-out-x-nr{-webkit-backface-visibility:visible!important}@-webkit-keyframes flip-out-x-nr{0%{-webkit-transform:perspective(100px) rotateX(0);transform:perspective(100px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(100px) rotateX(90deg);transform:perspective(100px) rotateX(90deg);opacity:0}}@keyframes flip-out-x-nr{0%{-webkit-transform:perspective(100px) rotateX(0);transform:perspective(100px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(100px) rotateX(90deg);transform:perspective(100px) rotateX(90deg);opacity:0}}.flip-out-x-nr{-webkit-animation-name:flip-out-x-nr;animation-name:flip-out-x-nr;backface-visibility:visible!important}@-webkit-keyframes flip-in-x-fr{0%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}100%{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0);opacity:1}}@keyframes flip-in-x-fr{0%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}100%{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0);opacity:1}}.flip-in-x-fr{-webkit-animation-name:flip-in-x-fr;animation-name:flip-in-x-fr;backface-visibility:visible!important}.flip-in-y,.flip-out-x-fr{-webkit-backface-visibility:visible!important}@-webkit-keyframes flip-out-x-fr{0%{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}}@keyframes flip-out-x-fr{0%{-webkit-transform:perspective(1000px) rotateX(0);transform:perspective(1000px) rotateX(0);opacity:1}100%{-webkit-transform:perspective(1000px) rotateX(90deg);transform:perspective(1000px) rotateX(90deg);opacity:0}}.flip-out-x-fr{-webkit-animation-name:flip-out-x-fr;animation-name:flip-out-x-fr;backface-visibility:visible!important}@-webkit-keyframes flip-in-y{0%{-webkit-transform:perspective(550px) rotateY(90deg);transform:perspective(550px) rotateY(90deg);opacity:0}100%{-webkit-transform:perspective(550px) rotateY(0);transform:perspective(550px) rotateY(0);opacity:1}}@keyframes flip-in-y{0%{-webkit-transform:perspective(550px) rotateY(90deg);transform:perspective(550px) rotateY(90deg);opacity:0}100%{-webkit-transform:perspective(550px) rotateY(0);transform:perspective(550px) rotateY(0);opacity:1}}.flip-in-y{-webkit-animation-name:flip-in-y;animation-name:flip-in-y;backface-visibility:visible!important}.flip-in-y-nr,.flip-out-y{-webkit-backface-visibility:visible!important}@-webkit-keyframes flip-out-y{0%{-webkit-transform:perspective(550px) rotateY(0);transform:perspective(550px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(550px) rotateY(90deg);transform:perspective(550px) rotateY(90deg);opacity:0}}@keyframes flip-out-y{0%{-webkit-transform:perspective(550px) rotateY(0);transform:perspective(550px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(550px) rotateY(90deg);transform:perspective(550px) rotateY(90deg);opacity:0}}.flip-out-y{-webkit-animation-name:flip-out-y;animation-name:flip-out-y;backface-visibility:visible!important}@-webkit-keyframes flip-in-y-nr{0%{-webkit-transform:perspective(100px) rotateY(90deg);transform:perspective(100px) rotateY(90deg);opacity:0}100%{-webkit-transform:perspective(100px) rotateY(0);transform:perspective(100px) rotateY(0);opacity:1}}@keyframes flip-in-y-nr{0%{-webkit-transform:perspective(100px) rotateY(90deg);transform:perspective(100px) rotateY(90deg);opacity:0}100%{-webkit-transform:perspective(100px) rotateY(0);transform:perspective(100px) rotateY(0);opacity:1}}.flip-in-y-nr{-webkit-animation-name:flip-in-y-nr;animation-name:flip-in-y-nr;backface-visibility:visible!important}.flip-in-y-fr,.flip-out-y-nr{-webkit-backface-visibility:visible!important}@-webkit-keyframes flip-out-y-nr{0%{-webkit-transform:perspective(100px) rotateY(0);transform:perspective(100px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(100px) rotateY(90deg);transform:perspective(100px) rotateY(90deg);opacity:0}}@keyframes flip-out-y-nr{0%{-webkit-transform:perspective(100px) rotateY(0);transform:perspective(100px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(100px) rotateY(90deg);transform:perspective(100px) rotateY(90deg);opacity:0}}.flip-out-y-nr{-webkit-animation-name:flip-out-y-nr;animation-name:flip-out-y-nr;backface-visibility:visible!important}@-webkit-keyframes flip-in-y-fr{0%{-webkit-transform:perspective(1000px) rotateY(90deg);transform:perspective(1000px) rotateY(90deg);opacity:0}100%{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0);opacity:1}}@keyframes flip-in-y-fr{0%{-webkit-transform:perspective(1000px) rotateY(90deg);transform:perspective(1000px) rotateY(90deg);opacity:0}100%{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0);opacity:1}}.flip-in-y-fr{-webkit-animation-name:flip-in-y-fr;animation-name:flip-in-y-fr;backface-visibility:visible!important}@-webkit-keyframes flip-out-y-fr{0%{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(1000px) rotateY(90deg);transform:perspective(1000px) rotateY(90deg);opacity:0}}@keyframes flip-out-y-fr{0%{-webkit-transform:perspective(1000px) rotateY(0);transform:perspective(1000px) rotateY(0);opacity:1}100%{-webkit-transform:perspective(1000px) rotateY(90deg);transform:perspective(1000px) rotateY(90deg);opacity:0}}.flip-out-y-fr{-webkit-animation-name:flip-out-y-fr;animation-name:flip-out-y-fr;-webkit-backface-visibility:visible!important;backface-visibility:visible!important}@-webkit-keyframes zoom-in{0%{-webkit-transform:scale(.7);transform:scale(.7);opacity:0}100%{opacity:1}}@keyframes zoom-in{0%{-webkit-transform:scale(.7);transform:scale(.7);opacity:0}100%{opacity:1}}.zoom-in{-webkit-animation-name:zoom-in;animation-name:zoom-in}@-webkit-keyframes zoom-out{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}50%{-webkit-transform:scale(.7);transform:scale(.7);opacity:0}100%{opacity:0}}@keyframes zoom-out{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}50%{-webkit-transform:scale(.7);transform:scale(.7);opacity:0}100%{opacity:0}}.zoom-out{-webkit-animation-name:zoom-out;animation-name:zoom-out}@-webkit-keyframes zoom-in-sm{0%{-webkit-transform:scale(.95);transform:scale(.95);opacity:0}100%{opacity:1}}@keyframes zoom-in-sm{0%{-webkit-transform:scale(.95);transform:scale(.95);opacity:0}100%{opacity:1}}.zoom-in-sm{-webkit-animation-name:zoom-in-sm;animation-name:zoom-in-sm}@-webkit-keyframes zoom-out-sm{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}50%{-webkit-transform:scale(.95);transform:scale(.95);opacity:0}100%{opacity:0}}@keyframes zoom-out-sm{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}50%{-webkit-transform:scale(.95);transform:scale(.95);opacity:0}100%{opacity:0}}.zoom-out-sm{-webkit-animation-name:zoom-out-sm;animation-name:zoom-out-sm}@-webkit-keyframes zoom-in-lg{0%{-webkit-transform:scale(.4);transform:scale(.4);opacity:0}100%{opacity:1}}@keyframes zoom-in-lg{0%{-webkit-transform:scale(.4);transform:scale(.4);opacity:0}100%{opacity:1}}.zoom-in-lg{-webkit-animation-name:zoom-in-lg;animation-name:zoom-in-lg}@-webkit-keyframes zoom-out-lg{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}50%{-webkit-transform:scale(.4);transform:scale(.4);opacity:0}100%{opacity:0}}@keyframes zoom-out-lg{0%{-webkit-transform:scale(1);transform:scale(1);opacity:1}50%{-webkit-transform:scale(.4);transform:scale(.4);opacity:0}100%{opacity:0}}.zoom-out-lg{-webkit-animation-name:zoom-out-lg;animation-name:zoom-out-lg}@-webkit-keyframes overlay-slide-in-top{0%{height:100%}100%{height:0}}@keyframes overlay-slide-in-top{0%{height:100%}100%{height:0}}.overlay-slide-in-top{top:0;height:0;-webkit-animation-name:overlay-slide-in-top;animation-name:overlay-slide-in-top}@-webkit-keyframes overlay-slide-out-top{0%{height:0}100%{height:100%}}@keyframes overlay-slide-out-top{0%{height:0}100%{height:100%}}.overlay-slide-out-top{top:0;height:100%;-webkit-animation-name:overlay-slide-out-top;animation-name:overlay-slide-out-top}@-webkit-keyframes overlay-slide-in-bottom{0%{height:100%}100%{height:0}}@keyframes overlay-slide-in-bottom{0%{height:100%}100%{height:0}}.overlay-slide-in-bottom{bottom:0;height:0;-webkit-animation-name:overlay-slide-in-bottom;animation-name:overlay-slide-in-bottom}@-webkit-keyframes overlay-slide-out-bottom{0%{height:0}100%{height:100%}}@keyframes overlay-slide-out-bottom{0%{height:0}100%{height:100%}}.overlay-slide-out-bottom{bottom:0;height:100%;-webkit-animation-name:overlay-slide-out-bottom;animation-name:overlay-slide-out-bottom}@-webkit-keyframes overlay-slide-in-left{0%{width:100%}100%{width:0}}@keyframes overlay-slide-in-left{0%{width:100%}100%{width:0}}.overlay-slide-in-left{width:0;-webkit-animation-name:overlay-slide-in-left;animation-name:overlay-slide-in-left}@-webkit-keyframes overlay-slide-out-left{0%{width:0}100%{width:100%}}@keyframes overlay-slide-out-left{0%{width:0}100%{width:100%}}.overlay-slide-out-left{left:0;width:100%;-webkit-animation-name:overlay-slide-out-left;animation-name:overlay-slide-out-left}@-webkit-keyframes overlay-slide-in-right{0%{width:100%}100%{width:0}}@keyframes overlay-slide-in-right{0%{width:100%}100%{width:0}}.overlay-slide-in-right{right:0;width:0;-webkit-animation-name:overlay-slide-in-right;animation-name:overlay-slide-in-right}@-webkit-keyframes overlay-slide-out-right{0%{width:0}100%{width:100%}}@keyframes overlay-slide-out-right{0%{width:0}100%{width:100%}}.overlay-slide-out-right{right:0;width:100%;-webkit-animation-name:overlay-slide-out-right;animation-name:overlay-slide-out-right}
@-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade-in {
  -webkit-animation-name: fade-in;
  animation-name: fade-in;
}
.fade-in {
  z-index: 1;
}
.loading_stacks_in_10897,
.loading_stacks_in_10897:after  {
  width: 150px;
  height: 150px;
  
  position: fixed;
  top: 50%;
  left: 50%;
  margin-top: -75.000000px;
  margin-left: -75.000000px;
  z-index: 100
  
}
.loading_stacks_in_10897 {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}
.animsition-overlay-slide {
  position: absolute;
  z-index: 99999;
  width: 100%;
}
.animsition-overlay-slide {
  background-color: #FFFFFF;
}







.loading_stacks_in_10897 {
  background-image: url(../files/loadingImage-10897.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 150px;
  height: 150px;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-duration: 2000ms;
  animation-duration: 2000ms;
  -webkit-animation-name: animsition-loading;
  animation-name: animsition-loading;
}

@-webkit-keyframes animsition-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

@keyframes animsition-loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg)
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn)
  }
}

/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_11813_2 {
	width: 100%;
	clear: both;
	padding-top: 10px;
	padding-bottom: 10px;
}
#simpleDivider_stacks_in_11813_2 .theDivider1,
#simpleDivider_stacks_in_11813_2 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_11813_2 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_11813_2.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #FCFFFF;
	border-bottom-color: #1A4061;
}
#simpleDivider_stacks_in_11813_2.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11813_2 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_11813_2.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_11813_2.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_11813_2.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11813_2.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_11813_3 *,
#stacks_in_11813_3 *:before,
#stacks_in_11813_3 *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}



.wow {
	visibility: hidden;
}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_11813_7 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_11813_7 .theDivider1,
#simpleDivider_stacks_in_11813_7 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_11813_7 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_11813_7.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_11813_7.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11813_7 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_11813_7.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_11813_7.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_11813_7.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11813_7.bgImageOn .theDivider1 img {
	display: block;
}

/*!
*  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}
html.ncd-photo-lock{overflow:hidden}a[data-photo-group]{cursor:pointer}.ncd-photo *{padding:0;margin:0;list-style:none}.ncd-photo *,.ncd-photo *:before,.ncd-photo *:after{box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box}.ncd-photo .cf:after{content:"";display:table;clear:both}.ncd-photo .ncd-photo{display:none}.ncd-photo ul{width:100%;margin:0 !important;padding:0 !important}.ncd-photo ul:after{content:"";display:table;clear:both}.ncd-photo li{cursor:-webkit-zoom-in;cursor:zoom-in;line-height:0}.ncd-photo li.hide{display:none !important}.ncd-photo li div{position:relative;background-repeat:no-repeat;background-position:center;background-size:cover;-webkit-transition:-webkit-box-shadow 150ms ease-out;transition:-webkit-box-shadow 150ms ease-out;transition:box-shadow 150ms ease-out;transition:box-shadow 150ms ease-out,-webkit-box-shadow 150ms ease-out;-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.08);box-shadow:inset 0 0 0 1px rgba(0,0,0,.08)}.ncd-photo li img{position:relative;z-index:10;-webkit-transform:-webkit-translateZ(0);transform:translateZ(0)}.ncd-photo ul p{display:inline-block;z-index:30;font-variant:normal;position:absolute;line-height:1.4;margin:0 0 10px;-moz-user-select:-moz-none;-webkit-user-select:none;-ms-user-select:none;user-select:none;-webkit-transform:-webkit-translateZ(0);transform:translateZ(0);-webkit-touch-callout:none}.ncd-photo ul p b{font-weight:normal;font-style:normal;padding-right:3px}.ncd-photo ul p em{font-weight:normal;font-style:normal}.ncd-photo ul p span{display:inline-block;padding:6px 12px}.ncd-photo ul p span.empty{visibility:hidden}.ncd-photo[data-italic-title="True"] p b,.ncd-photo[data-italic-caption="True"] p em{font-style:italic}.ncd-photo[data-bold-title="True"] p b,.ncd-photo[data-bold-caption="True"] p em{font-weight:bold}.ncd-photo[data-hide-title="True"] p b,.ncd-photo[data-hide-caption="True"] p em,.ncd-photo[data-hide-title="True"][data-hide-caption="True"] p{display:none}.ncd-photo[data-hide-caption="True"] ul p b{padding-right:0}.ncd-photo ul.cap-hov li p{opacity:0;-webkit-transition:-webkit-transform 300ms,opacity 300ms;-webkit-transition:opacity 300ms,-webkit-transform 300ms;transition:opacity 300ms,-webkit-transform 300ms;transition:transform 300ms,opacity 300ms;transition:transform 300ms,opacity 300ms,-webkit-transform 300ms;-webkit-transform:-webkit-translate3d(0,4px,0);transform:translate3d(0,4px,0)}.ncd-photo ul.cap-hov li:hover p{opacity:1;-webkit-transform:-webkit-translate3d(0,0,0);transform:translate3d(0,0,0)}.ncd-photo ul.cap-hide li p{display:none !important}.ncd-photo ul.cap-ibl p,.ncd-photo ul.cap-ibc p{left:0;bottom:0;right:0;margin:0;text-align:left}.ncd-photo ul.cap-ibl p span,.ncd-photo ul.cap-ibc p span{display:block}.ncd-photo ul.cap-imbl p,.ncd-photo ul.cap-imbc p{left:20px;bottom:10px;right:20px;text-align:left}.ncd-photo ul.cap-ibc p,.ncd-photo ul.cap-imbc p{text-align:center}.ncd-photo ul.cap-imbl p span,.ncd-photo ul.cap-imbc p span{border-radius:3px}.ncd-photo.photo-flow{margin:0;padding:0;width:100%;font-size:.85em;-moz-column-count:1;-webkit-column-count:1;column-count:1}.ncd-photo.photo-flow li div{display:inline-block;width:100%;background:none !important}.ncd-photo.photo-flow li div:before{position:absolute;top:0;left:0;width:100%;height:100%;z-index:20;content:"";display:block;-webkit-transition:box-shadow 150ms ease-out;-webkit-transition:-webkit-box-shadow 150ms ease-out;transition:-webkit-box-shadow 150ms ease-out;transition:box-shadow 150ms ease-out;transition:box-shadow 150ms ease-out,-webkit-box-shadow 150ms ease-out;-webkit-box-shadow:inset 0 0 0 1px rgba(0,0,0,.08);box-shadow:inset 0 0 0 1px rgba(0,0,0,.08)}.ncd-photo.photo-flow li img{max-width:100%;width:100%;height:auto;display:block}.ncd-photo.photo-flow ul.cap-ibl li p,.ncd-photo.photo-flow ul.cap-ibc li p{-webkit-transform:-webkit-translate3d(0,0,0);transform:translate3d(0,0,0)}.ncd-photo.space-0.photo-grid{margin:0}.ncd-photo.space-0.photo-grid li div{margin:0}.ncd-photo.space-0.photo-flow li div{margin:0}.ncd-photo.space-0.photo-flow{-moz-column-gap:0;-webkit-column-gap:0;column-gap:0}.ncd-photo.space-1.photo-grid{margin:0 -1px}.ncd-photo.space-1.photo-grid li div{margin:1px}.ncd-photo.space-1.photo-flow li div{margin:0 0 2px}.ncd-photo.space-1.photo-flow{-moz-column-gap:2px;-webkit-column-gap:2px;column-gap:2px}.ncd-photo.space-3.photo-grid{margin:0 -3px}.ncd-photo.space-3.photo-grid li div{margin:3px}.ncd-photo.space-3.photo-flow li div{margin:0 0 6px}.ncd-photo.space-3.photo-flow{-moz-column-gap:6px;-webkit-column-gap:6px;column-gap:6px}.ncd-photo.space-5.photo-grid{margin:0 -5px}.ncd-photo.space-5.photo-grid li div{margin:5px}.ncd-photo.space-5.photo-flow li div{margin:0 0 10px}.ncd-photo.space-5.photo-flow{-moz-column-gap:10px;-webkit-column-gap:10px;column-gap:10px}.ncd-photo.space-7.photo-grid{margin:0 -7px}.ncd-photo.space-7.photo-grid li div{margin:7px}.ncd-photo.space-7.photo-flow li div{margin:0 0 14px}.ncd-photo.space-7.photo-flow{-moz-column-gap:14px;-webkit-column-gap:14px;column-gap:14px}.ncd-photo.space-9.photo-grid{margin:0 -9px}.ncd-photo.space-9.photo-grid li div{margin:9px}.ncd-photo.space-9.photo-flow li div{margin:0 0 18px}.ncd-photo.space-9.photo-flow{-moz-column-gap:18px;-webkit-column-gap:18px;column-gap:18px}.ncd-photo.space-11.photo-grid{margin:0 -11px}.ncd-photo.space-11.photo-grid li div{margin:11px}.ncd-photo.space-11.photo-flow li div{margin:0 0 22px}.ncd-photo.space-11.photo-flow{-moz-column-gap:22px;-webkit-column-gap:22px;column-gap:22px}.ncd-photo.space-13.photo-grid{margin:0 -13px}.ncd-photo.space-13.photo-grid li div{margin:13px}.ncd-photo.space-13.photo-flow li div{margin:0 0 26px}.ncd-photo.space-13.photo-flow{-moz-column-gap:26px;-webkit-column-gap:26px;column-gap:26px}.ncd-photo.space-15.photo-grid{margin:0 -15px}.ncd-photo.space-15.photo-grid li div{margin:15px}.ncd-photo.space-15.photo-flow li div{margin:0 0 30px}.ncd-photo.space-15.photo-flow{-moz-column-gap:30px;-webkit-column-gap:30px;column-gap:30px}.ncd-photo.photo-grid li{line-height:0;float:left;display:block;position:relative;height:auto}.ncd-photo.photo-grid li div{overflow:hidden}.ncd-photo.photo-grid img{visibility:hidden;position:absolute;top:-9999px;left:-9999px}.ncd-photo.photo-grid ul li div:after{padding-top:100%;display:block;content:''}.ncd-photo.photo-col-1.photo-grid li,.ncd-photo.photo-col-2.photo-grid li,.ncd-photo.photo-col-3.photo-grid li,.ncd-photo.photo-col-4.photo-grid li,.ncd-photo.photo-col-5.photo-grid li{width:100%}.ncd-photo.rad-0 li div,.ncd-photo.rad-0.photo-flow li div:before,.ncd-photo.rad-0.photo-flow li img,.ncd-photo.rad-0.photo-flow li div{border-radius:0}.ncd-photo.rad-0 ul.cap-ibl p span,.ncd-photo.rad-0 ul.cap-ibc p span{border-radius:0}.ncd-photo.rad-3 li div,.ncd-photo.rad-3.photo-flow li div:before,.ncd-photo.rad-3.photo-flow li img,.ncd-photo.rad-3.photo-flow li div{border-radius:3px}.ncd-photo.rad-3 ul.cap-ibl p span,.ncd-photo.rad-3 ul.cap-ibc p span{border-radius:0 0 3px 3px}.ncd-photo.rad-5 li div,.ncd-photo.rad-5.photo-flow li div:before,.ncd-photo.rad-5.photo-flow li img,.ncd-photo.rad-5.photo-flow li div{border-radius:5px}.ncd-photo.rad-5 ul.cap-ibl p span,.ncd-photo.rad-5 ul.cap-ibc p span{border-radius:0 0 5px 5px}.ncd-photo.rad-7 li div,.ncd-photo.rad-7.photo-flow li div:before,.ncd-photo.rad-7.photo-flow li img,.ncd-photo.rad-7.photo-flow li div{border-radius:7px}.ncd-photo.rad-7 ul.cap-ibl p span,.ncd-photo.rad-7 ul.cap-ibc p span{border-radius:0 0 7px 7px}@media only screen and (min-width:400px){.ncd-photo.photo-col-1.photo-grid li,.ncd-photo.photo-col-2.photo-grid li,.ncd-photo.photo-col-3.photo-grid li,.ncd-photo.photo-col-4.photo-grid li,.ncd-photo.photo-col-5.photo-grid li{width:100%}.ncd-photo.photo-col-1.photo-flow,.ncd-photo.photo-col-2.photo-flow,.ncd-photo.photo-col-3.photo-flow,.ncd-photo.photo-col-4.photo-flow,.ncd-photo.photo-col-5.photo-flow{-moz-column-count:1;-webkit-column-count:1;column-count:1}}@media only screen and (min-width:550px){.ncd-photo.photo-col-2.photo-grid li,.ncd-photo.photo-col-3.photo-grid li,.ncd-photo.photo-col-4.photo-grid li,.ncd-photo.photo-col-5.photo-grid li{width:50%}.ncd-photo.photo-col-2.photo-flow,.ncd-photo.photo-col-3.photo-flow,.ncd-photo.photo-col-4.photo-flow,.ncd-photo.photo-col-5.photo-flow{-moz-column-count:2;-webkit-column-count:2;column-count:2}}@media only screen and (min-width:750px){.ncd-photo.photo-col-3.photo-grid li,.ncd-photo.photo-col-4.photo-grid li,.ncd-photo.photo-col-5.photo-grid li{width:33.3333%}.ncd-photo.photo-col-3.photo-flow,.ncd-photo.photo-col-4.photo-flow,.ncd-photo.photo-col-5.photo-flow{-moz-column-count:3;-webkit-column-count:3;column-count:3}}@media only screen and (min-width:950px){.ncd-photo.photo-col-4.photo-grid li,.ncd-photo.photo-col-5.photo-grid li{width:25%}.ncd-photo.photo-col-4.photo-flow,.ncd-photo.photo-col-5.photo-flow{-moz-column-count:4;-webkit-column-count:4;column-count:4}}@media only screen and (min-width:1200px){.ncd-photo.photo-col-5.photo-grid li{width:20%}.ncd-photo.photo-col-5.photo-flow{-moz-column-count:5;-webkit-column-count:5;column-count:5}}.batch-hide{position:absolute;opacity:0;top:-9999px;left:-9999px}@media only screen and (max-width:400px){.ncd-photo ul p{opacity:0 !important}}.ncd-photo.photo-flow.cap-under ul p,.ncd-photo.photo-flow.cap-under ul p span{position:static;display:block;margin-bottom:0}.ncd-photo.photo-flow.cap-under ul p span{border-top-right-radius:0 !important;border-top-left-radius:0 !important;padding:10px}.ncd-photo.photo-flow.cap-under ul img{border-bottom-right-radius:0 !important;border-bottom-left-radius:0 !important}.ncd-photo.photo-flow.cap-under li div{-webkit-box-shadow:none;box-shadow:none}#ncdPhotoLoader{position:absolute;color:#ff0000;top:50%;left:50%;opacity:0;-webkit-transition:opacity 350ms 150ms;transition:opacity 350ms 150ms;-webkit-transform:translate3d(-50%,-50%,0);transform:translate3d(-50%,-50%,0)}#ncdPhotoLoader.processing{opacity:1}#ncdPhotoLoader.processing #ncdPhotoLoaderSpinner{height:44px;width:44px;margin:0 auto;position:relative;-webkit-animation:rotation .6s infinite linear;animation:rotation .6s infinite linear;border-radius:100%}@-webkit-keyframes rotation{from{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(359deg)}}@keyframes rotation{from{-webkit-transform:rotate(0deg);transform:rotate(0deg)}to{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}#ncdPhotoBase{position:fixed;top:-9999px;left:-9999px;width:100%;height:100%;z-index:10;opacity:0;-webkit-transition:opacity 300ms 0ms,top 0ms 300ms,left 0ms 300ms;transition:opacity 300ms 0ms,top 0ms 300ms,left 0ms 300ms;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}#ncdPhotoBase *,#ncdPhotoBase *:before,#ncdPhotoBase *:after{-webkit-box-sizing:border-box;box-sizing:border-box}#ncdPhotoBase.on{top:0;left:0;opacity:1;z-index:10000;-webkit-transition:opacity 150ms ease-out,top 0ms ease-out,left 0ms ease-out;transition:opacity 150ms ease-out,top 0ms ease-out,left 0ms ease-out}#ncdPhotoBase.out{z-index:10000}.ncdPhotoZoom,.ncdPhotoClose,.ncdPhotoNext,.ncdPhotoPrev{z-index:100;width:50px;height:50px;border-radius:50px;cursor:pointer;position:absolute;border:2px solid transparent}.ncdPhotoZoom,.ncdPhotoClose{margin-top:4%;top:0;-webkit-transition:border 0.3s ease-out,box-shadow 0.15s ease-out;-webkit-transition:border 0.3s ease-out,-webkit-box-shadow 0.15s ease-out;transition:border 0.3s ease-out,-webkit-box-shadow 0.15s ease-out;transition:border 0.3s ease-out,box-shadow 0.15s ease-out;transition:border 0.3s ease-out,box-shadow 0.15s ease-out,-webkit-box-shadow 0.15s ease-out}.ncdPhotoZoom:before,.ncdPhotoZoom:after,.ncdPhotoClose:before,.ncdPhotoClose:after{top:50%;left:0;width:2px;height:18px;content:"";position:absolute;margin:-9px 22.5px 0;-webkit-transition:opacity 300ms,transform 300ms;-webkit-transition:opacity 300ms,-webkit-transform 300ms;transition:opacity 300ms,-webkit-transform 300ms;transition:opacity 300ms,transform 300ms;transition:opacity 300ms,transform 300ms,-webkit-transform 300ms}.ncdPhotoZoom{-webkit-transition:border 0.3s ease-out,box-shadow 0.15s ease-out,opacity 300ms ease-out,transform 300ms ease-out;-webkit-transition:border 0.3s ease-out,opacity 300ms ease-out,-webkit-box-shadow 0.15s ease-out,-webkit-transform 300ms ease-out;transition:border 0.3s ease-out,opacity 300ms ease-out,-webkit-box-shadow 0.15s ease-out,-webkit-transform 300ms ease-out;transition:border 0.3s ease-out,box-shadow 0.15s ease-out,opacity 300ms ease-out,transform 300ms ease-out;transition:border 0.3s ease-out,box-shadow 0.15s ease-out,opacity 300ms ease-out,transform 300ms ease-out,-webkit-box-shadow 0.15s ease-out,-webkit-transform 300ms ease-out;left:0;-webkit-transform:rotate(90deg);transform:rotate(90deg);opacity:0;margin-left:4%}.ncdPhotoZoom.enable{opacity:1;-webkit-transform:rotate(0deg);transform:rotate(0deg)}.ncdPhotoZoom:after{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.ncdPhotoZoom.zoom:after{opacity:0;-webkit-transform:rotate(-180deg);transform:rotate(-180deg)}.ncdPhotoZoom:before{-webkit-transform:rotate(0deg);transform:rotate(0deg)}.ncdPhotoZoom.zoom:before{-webkit-transform:rotate(-90deg);transform:rotate(-90deg)}.ncdPhotoClose{right:0;margin-right:4%}.ncdPhotoClose:before,.ncdPhotoClose:after{height:22px;margin:-11px 22.5px 0;-webkit-transform:rotate(45deg);transform:rotate(45deg)}.ncdPhotoClose:after{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.ncdPhotoNext,.ncdPhotoPrev{top:50%;margin-top:-25px;opacity:0;-webkit-transition:opacity 0.2s ease-out,border 0.3s ease-out,-webkit-transform 0.8s cubic-bezier(0.190,1.000,0.220,1.000),-webkit-box-shadow 0.15s ease-out;transition:opacity 0.2s ease-out,border 0.3s ease-out,-webkit-transform 0.8s cubic-bezier(0.190,1.000,0.220,1.000),-webkit-box-shadow 0.15s ease-out;transition:opacity 0.2s ease-out,transform 0.8s cubic-bezier(0.190,1.000,0.220,1.000),border 0.3s ease-out,box-shadow 0.15s ease-out;transition:opacity 0.2s ease-out,transform 0.8s cubic-bezier(0.190,1.000,0.220,1.000),border 0.3s ease-out,box-shadow 0.15s ease-out,-webkit-transform 0.8s cubic-bezier(0.190,1.000,0.220,1.000),-webkit-box-shadow 0.15s ease-out;-moz-transition:opacity 0.2s ease-out,-moz-transform 0.8s cubic-bezier(0.190,1.000,0.220,1.000),border 0.3s ease-out,box-shadow 0.15s ease-out;-webkit-transition:opacity 0.2s ease-out,-webkit-transform 0.8s cubic-bezier(0.190,1.000,0.220,1.000),border 0.3s ease-out,box-shadow 0.15s ease-out}.ncdPhotoNext:before,.ncdPhotoNext:after,.ncdPhotoPrev:before,.ncdPhotoPrev:after{top:50%;left:0;width:2px;height:15px;content:'';position:absolute;margin:-13px 24px 0}.ncdPhotoNext:after,.ncdPhotoPrev:after{margin-top:-3px}.ncdPhotoPrev:after,.ncdPhotoPrev:before{left:-3px}.ncdPhotoNext:after{-webkit-transform:rotate(45deg);transform:rotate(45deg)}.ncdPhotoNext:before{-webkit-transform:rotate(-45deg);transform:rotate(-45deg)}.ncdPhotoPrev:after{-webkit-transform:rotate(315deg);transform:rotate(315deg)}.ncdPhotoPrev:before{-webkit-transform:rotate(-315deg);transform:rotate(-315deg)}@media screen and (min-width:800px){#ncdPhotoControls #ncdPhotoCounter{display:none}}@media screen and (max-width:800px){#ncdPhotoControls{position:absolute;bottom:100%;left:0;width:100%;height:53px;-moz-user-select:-moz-none;-webkit-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;z-index:100}#ncdPhotoBase.cap-hide #ncdPhotoControls{height:70px}#ncdPhotoBase.cap-hide .ncd-ui{bottom:8px !important}.ncdPhotoZoom.zoom{-webkit-transform:translateY(-20px);transform:translateY(-20px)}}.ncdPhotoNext{-webkit-transform:translateX(-15px);transform:translateX(-15px);right:4%}.ncdPhotoPrev{-webkit-transform:translateX(15px);transform:translateX(15px);left:4%}#ncdPhotoBase:hover .ncdPhotoNext,#ncdPhotoBase:hover .ncdPhotoPrev{-webkit-transform:translateX(0) rotate(0deg);opacity:1;-moz-transform:translateX(0) rotate(0deg);opacity:1;transform:translateX(0) rotate(0deg);opacity:1}@media screen and (max-width:800px){#ncdPhotoBase .ncdPhotoNext,#ncdPhotoBase .ncdPhotoPrev{-webkit-transform:translateX(0) rotate(0deg);transform:translateX(0) rotate(0deg);margin-top:4%;top:0;opacity:1}#ncdPhotoBase .ncdPhotoNext{margin-right:20%}#ncdPhotoBase .ncdPhotoZoom{margin-left:-25px;left:50%}#ncdPhotoBase .ncdPhotoPrev{margin-left:20%}#ncdPhotoBase #ncdPhotoCounter,#ncdPhotoBase .ncdPhotoClose,#ncdPhotoBase .ncdPhotoNext,#ncdPhotoBase .ncdPhotoZoom,#ncdPhotoBase .ncdPhotoPrev{top:auto;bottom:0}#ncdPhotoOverlay div.slide p{position:absolute;bottom:100%;left:0}#ncdPhotoCounter{position:absolute;left:4%;margin-left:10px;font-family:'Helvetica Neue';font-weight:300;letter-spacing:-1px;height:27px;line-height:0;font-size:16px;z-index:100}#ncdPhotoCounter .lb-current{font-size:28px;padding-right:2px;letter-spacing:-2px}}#ncdPhotoBase.out .ncdPhotoNext{-webkit-transform:translateX(30px) rotate(0deg);opacity:0;-moz-transform:translateX(30px) rotate(0deg);opacity:0;transform:translateX(30px) rotate(0deg);opacity:0}#ncdPhotoBase.out .ncdPhotoPrev{-webkit-transform:translateX(-30px) rotate(0deg);opacity:0;-moz-transform:translateX(-30px) rotate(0deg);opacity:0;transform:translateX(-30px) rotate(0deg);opacity:0}#ncdPhotoBase .ncdPhotoNext.hide,#ncdPhotoBase .ncdPhotoPrev.hide{opacity:0}#ncdPhotoBase.single-image .ncdPhotoNext,#ncdPhotoBase.single-image .ncdPhotoPrev,#ncdPhotoOverlay[data-hide-full-title="True"] span b,#ncdPhotoOverlay[data-hide-full-caption="True"] span em{display:none}#ncdPhotoOverlay{position:absolute;height:100%;width:100%;-webkit-transform-style:preserve-3d;transform-style:preserve-3d}#ncdPhotoOverlay div.slide{display:block;height:100%;text-align:center;vertical-align:middle;line-height:0;position:absolute;top:-9999px;left:-9999px}#ncdPhotoOverlay div.slide.ncd-show{position:relative;top:50%;left:0%;height:auto;-webkit-transform:translateY(-50%);transform:translateY(-50%)}#ncdPhotoOverlay div.slide.out{position:absolute;top:50%;left:0;right:0;height:auto;-webkit-transform:translateY(-50%) translateX(-10px);transform:translateY(-50%) translateX(-10px);opacity:0;-webkit-transition:opacity 200ms ease-in,-webkit-transform 200ms ease-in;transition:opacity 200ms ease-in,-webkit-transform 200ms ease-in;transition:opacity 200ms ease-in,transform 200ms ease-in;transition:opacity 200ms ease-in,transform 200ms ease-in,-webkit-transform 200ms ease-in}#ncdPhotoBase.go-next #ncdPhotoOverlay div.slide.out{-webkit-transform:translateY(-50%) translateX(-10px);transform:translateY(-50%) translateX(-10px);opacity:0;-webkit-transition:opacity 200ms ease-in,-webkit-transform 200ms ease-in;transition:opacity 200ms ease-in,-webkit-transform 200ms ease-in;transition:opacity 200ms ease-in,transform 200ms ease-in;transition:opacity 200ms ease-in,transform 200ms ease-in,-webkit-transform 200ms ease-in}#ncdPhotoBase.go-prev #ncdPhotoOverlay div.slide.out{-webkit-transform:translateY(-50%) translateX(10px);transform:translateY(-50%) translateX(10px);opacity:0;-webkit-transition:opacity 200ms ease-in,-webkit-transform 200ms ease-in;transition:opacity 200ms ease-in,-webkit-transform 200ms ease-in;transition:opacity 200ms ease-in,transform 200ms ease-in;transition:opacity 200ms ease-in,transform 200ms ease-in,-webkit-transform 200ms ease-in}#ncdPhotoBase.go-next div.slide.out img,#ncdPhotoBase.go-prev div.slide.out img,#ncdPhotoBase.processing div.slide.ncd-show.out img{-webkit-animation:none !important;animation:none !important;opacity:1 !important}#ncdPhotoOverlay div.slide.out.ncd-show,.go-next #ncdPhotoOverlay div.slide.out.ncd-show,.go-prev #ncdPhotoOverlay div.slide.out.ncd-show{opacity:0;-webkit-transition:none;transition:none}#ncdPhotoOverlay div.slide > div{display:inline-block;position:relative;padding:4%;-webkit-backface-visibility:hidden;backface-visibility:hidden}#ncdPhotoOverlay div.slide.zoom.in > div{padding:0}#ncdPhotoOverlay div.slide.zoom.in,#ncdPhotoOverlay div.slide.zoom.in > div{font-size:0}#ncdPhotoOverlay div.slide.zoom{overflow:scroll;cursor:move;-webkit-overflow-scrolling:touch}#ncdPhotoOverlay div.slide.zoom::-webkit-scrollbar{display:none}#ncdPhotoOverlay div.slide.zoom.in br{display:none}#ncdPhotoOverlay div.slide.zoom.out br{display:block}#ncdPhotoOverlay div.slide.zoom.in.transition,#ncdPhotoOverlay div.slide.zoom.out{overflow:hidden}#ncdPhotoOverlay div.slide.zoom.transition div{-webkit-animation:float-zoom-in 250ms cubic-bezier(0.165,0.84,0.44,1) both;animation:float-zoom-in 250ms cubic-bezier(0.165,0.84,0.44,1) both}#ncdPhotoOverlay div.slide.zoom.in div{line-height:normal;-webkit-animation:float-zoom-in-complete 250ms cubic-bezier(0.165,0.84,0.44,1) both;animation:float-zoom-in-complete 250ms cubic-bezier(0.165,0.84,0.44,1) both}#ncdPhotoOverlay div.slide.zoom.in.transition div{-webkit-animation:float-zoom-out 250ms cubic-bezier(0.165,0.84,0.44,1) both;animation:float-zoom-out 250ms cubic-bezier(0.165,0.84,0.44,1) both}#ncdPhotoOverlay div.slide.zoom.out div{-webkit-animation:float-zoom-out-complete 250ms cubic-bezier(0.165,0.84,0.44,1) both;animation:float-zoom-out-complete 250ms cubic-bezier(0.165,0.84,0.44,1) both}#ncdPhotoOverlay div.slide.ncd-show > div{opacity:1}@-webkit-keyframes float-zoom-in{from{-webkit-transform:scale(1);opacity:1}to{-webkit-transform:scale(1.03);opacity:0}}@keyframes float-zoom-in{from{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(1.03);transform:scale(1.03);opacity:0}}@-webkit-keyframes float-zoom-in-complete{from{-webkit-transform:scale(.98);opacity:0}to{-webkit-transform:scale(1);opacity:1}}@keyframes float-zoom-in-complete{from{-webkit-transform:scale(.98);transform:scale(.98);opacity:0}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes float-zoom-out{from{-webkit-transform:scale(1);opacity:1}to{-webkit-transform:scale(.98);opacity:0}}@keyframes float-zoom-out{from{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(.98);transform:scale(.98);opacity:0}}@-webkit-keyframes float-zoom-out-complete{from{-webkit-transform:scale(1.03);opacity:0}to{-webkit-transform:scale(1);opacity:1}}@keyframes float-zoom-out-complete{from{-webkit-transform:scale(1.03);transform:scale(1.03);opacity:0}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes float-in{from{-webkit-transform:scale(1.04);opacity:0}to{-webkit-transform:scale(1);opacity:1}}@keyframes float-in{from{-webkit-transform:scale(1.02);transform:scale(1.02);opacity:0}to{-webkit-transform:scale(1);transform:scale(1);opacity:1}}@-webkit-keyframes float-down{from{-webkit-transform:translateY(-10px);opacity:0}to{-webkit-transform:translateY(0);opacity:1}}@keyframes float-down{from{-webkit-transform:translateY(-10px);transform:translateY(-10px);opacity:0}to{-webkit-transform:translateY(0);transform:translateY(0);opacity:1}}@-webkit-keyframes float-out{from{-webkit-transform:scale(1);opacity:1}to{-webkit-transform:scale(0.97);opacity:0}}@keyframes float-out{from{-webkit-transform:scale(1);transform:scale(1);opacity:1}to{-webkit-transform:scale(0.97);transform:scale(0.97);opacity:0}}@-webkit-keyframes float-up{from{-webkit-transform:translateY(0px);opacity:1}to{-webkit-transform:translateY(10px);opacity:0}}@keyframes float-up{from{-webkit-transform:translateY(0px);transform:translateY(0px);opacity:1}to{-webkit-transform:translateY(10px);transform:translateY(10px);opacity:0}}@-webkit-keyframes float-next{from{-webkit-transform:translateX(5px);opacity:0}to{-webkit-transform:translateX(0);opacity:1}}@keyframes float-next{from{-webkit-transform:translateX(5px);transform:translateX(5px);opacity:0}to{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@-webkit-keyframes float-prev{from{-webkit-transform:translateX(-5px);opacity:0}to{-webkit-transform:translateX(0);opacity:1}}@keyframes float-prev{from{-webkit-transform:translateX(-5px);transform:translateX(-5px);opacity:0}to{-webkit-transform:translateX(0);transform:translateX(0);opacity:1}}@-webkit-keyframes text-swap{from{-webkit-opacity:0}to{-webkit-opacity:1}}@keyframes text-swap{from{opacity:0}to{opacity:1}}#ncdPhotoOverlay div.slide img{list-style:none;line-height:0;max-width:100% !important;max-height:80vh !important;-moz-user-select:-moz-none;-webkit-user-select:none;-ms-user-select:none;user-select:none;-webkit-touch-callout:none;border-radius:0px}#ncdPhotoOverlay div.slide.zoom.in > div{height:auto}#ncdPhotoOverlay div.slide.zoom.in img{max-width:none !important;max-height:none !important;border-radius:0}#ncdPhotoBase.go-next div.slide img{-webkit-animation:float-next 300ms cubic-bezier(0.25,0.46,0.45,0.94) both;animation:float-next 300ms cubic-bezier(0.25,0.46,0.45,0.94) both}#ncdPhotoBase.go-prev div.slide img{-webkit-animation:float-prev 300ms cubic-bezier(0.25,0.46,0.45,0.94) both;animation:float-prev 300ms cubic-bezier(0.25,0.46,0.45,0.94) both}#ncdPhotoBase.processing div.slide.ncd-show img{-webkit-animation:none;animation:none;opacity:0}@media screen and (min-width:800px){/*#ncdPhotoOverlay div.slide > div{height:60vh}*/}@media screen and (max-width:800px){#ncdPhotoBase > .ncdPhotoZoom{display:none}#ncdPhotoBase.go-next #ncdPhotoCaption p,#ncdPhotoBase.go-prev #ncdPhotoCaption p{-webkit-animation:text-swap 300ms cubic-bezier(0.25,0.46,0.45,0.94) backwards;animation:text-swap 300ms cubic-bezier(0.25,0.46,0.45,0.94) backwards}}.ncdPhotoCounter{left:auto !important;right:0}.ncdPhotoCounter[data-show-count="False"],#ncdPhotoCounter[data-show-count="False"]{display:none !important}#ncdPhotoCaption{display:block;position:fixed;bottom:0;left:0;right:0;text-align:center;padding:12px 4%;font-size:15px;z-index:100;line-height:1.4}#ncdPhotoCaption p{margin:0}#ncdPhotoCaption b{padding-right:5px}#ncdPhotoOverlay p b,#ncdPhotoCaption p b{font-weight:normal;font-style:normal;padding-right:5px}#ncdPhotoOverlay p em,#ncdPhotoCaption p em{font-weight:normal;font-style:normal}@media screen and (min-width:800px){#ncdPhotoCaption{display:none}.img-caption-in{display:block}.img-caption-in:after{content:"";display:table;clear:both}}#ncdPhotoOverlay p.ncdPhotoCounter,#ncdPhotoOverlay p{display:inline-block;text-align:left;padding:12px 0 18px;font-size:14px;font-variant:normal;line-height:20px;margin:0;float:left}#ncdPhotoOverlay p.ncdPhotoCounter{float:right}#ncdPhotoBase:hover .img-caption-in{opacity:1}#ncdPhotoBase.cap-hide .img-caption-in{display:none}#ncdPhotoBase.cap-show .img-caption-in.invis{visibility:hidden;-webkit-animation:none;animation:none}#ncdPhotoBase .img-caption-in{opacity:0;-webkit-transition:opacity 200ms;transition:opacity 200ms}#ncdPhotoBase.cap-show .ncd-show .img-caption-in{opacity:1;-webkit-animation:float-down 600ms 300ms cubic-bezier(0.25,0.46,0.45,0.94) both;animation:float-down 600ms 300ms cubic-bezier(0.25,0.46,0.45,0.94) both}#ncdPhotoBase.processing .img-caption-in{opacity:0}@media screen and (max-width:800px){.img-caption-in{display:none}}#ncdPhotoBase [data-italic-title="True"] p b,#ncdPhotoBase [data-italic-caption="True"] p em{font-style:italic}#ncdPhotoBase [data-bold-title="True"] p b,#ncdPhotoBase [data-bold-caption="True"] p em{font-weight:bold}#ncdPhotoBase [data-hide-title="True"] p b,#ncdPhotoBase [data-hide-caption="True"] p em{display:none}.style-default #ncdPhotoOverlay p b,.style-default #ncdPhotoCaption p b{color:#FFF}.style-default #ncdPhotoOverlay p em,.style-default #ncdPhotoCaption p em,.style-default .ncdPhotoCounter,.style-default #ncdPhotoCounter{color:#EEE}.style-default img{-webkit-box-shadow:0 2px 16px rgba(0,0,0,0.6);box-shadow:0 2px 16px rgba(0,0,0,0.6)}.style-default{background:rgba(0,0,0,0.85) !important}.style-default #ncdPhotoLoader.processing #ncdPhotoLoaderSpinner{border-left:3px solid rgba(200,200,200,.15);border-right:3px solid rgba(200,200,200,.15);border-bottom:3px solid rgba(200,200,200,.15);border-top:3px solid rgba(200,200,200,.8)}@media screen and (max-width:800px){.style-default #ncdPhotoControls{background-image:-webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,0)),to(rgba(0,0,0,0.7)));background-image:linear-gradient(top,rgba(0,0,0,0),rgba(0,0,0,0.7))}}.style-default .ncdPhotoZoom,.style-default .ncdPhotoClose,.style-default .ncdPhotoNext,.style-default .ncdPhotoPrev{background-image:radial-gradient(50% 50%,rgba(0,0,0,0.1),rgba(0,0,0,0.00))}.style-default #ncdPhotoCaption{background:#000}.style-default .ncdPhotoNext:before,.ncdPhotoNext:after,.style-default .ncdPhotoPrev:before,.ncdPhotoPrev:after,.style-default .ncdPhotoZoom:before,.ncdPhotoZoom:after,.style-default .ncdPhotoClose:before,.ncdPhotoClose:after,.style-default .ncdPhotoNext:hover:before,.ncdPhotoNext:hover:after,.style-default .ncdPhotoPrev:hover:before,.ncdPhotoPrev:hover:after,.style-default .ncdPhotoClose:hover:before,.ncdPhotoClose:hover:after{background:#FFF}.style-default #ncdPhotoCounter{color:#FFF}.style-default .ncdPhotoZoom:active,.style-default .ncdPhotoClose:active,.style-default .ncdPhotoNext:active,.style-default .ncdPhotoPrev:active{-webkit-box-shadow:0 0 0 5px rgba(255,255,255,0.6);box-shadow:0 0 0 5px rgba(255,255,255,0.6);border:2px solid #FFF}.style-default .ncdPhotoZoom.zoom{border:2px solid #FFF}@media screen and (min-width:800px){.style-default .ncdPhotoZoom:hover,.style-default .ncdPhotoClose:hover,.style-default .ncdPhotoNext:hover,.style-default .ncdPhotoPrev:hover{border:2px solid #FFF}}.style-contrast #ncdPhotoOverlay p b{color:#333}.style-contrast #ncdPhotoCaption p b{color:#FFF}.style-contrast #ncdPhotoOverlay p em,.style-contrast .ncdPhotoCounter{color:#555}.style-contrast #ncdPhotoCaption p em{color:#EEE}.style-contrast img{-webkit-box-shadow:0 2px 10px rgba(0,0,0,0.15);box-shadow:0 2px 10px rgba(0,0,0,0.15)}.style-contrast{background:rgba(255,255,255,0.85) !important}.style-contrast #ncdPhotoLoader.processing #ncdPhotoLoaderSpinner{border-left:3px solid rgba(100,100,100,.15);border-right:3px solid rgba(100,100,100,.15);border-bottom:3px solid rgba(100,100,100,.15);border-top:3px solid rgba(100,100,100,.8)}.style-contrast #ncdPhotoCaption{background:#000}.style-contrast #ncdPhotoCounter{color:#222}.style-contrast .ncdPhotoNext:before,.style-contrast .ncdPhotoNext:after,.style-contrast .ncdPhotoPrev:before,.style-contrast .ncdPhotoPrev:after,.style-contrast .ncdPhotoZoom:before,.style-contrast .ncdPhotoZoom:after,.style-contrast .ncdPhotoClose:before,.style-contrast .ncdPhotoClose:after,.style-contrast .ncdPhotoNext:hover:before,.style-contrast .ncdPhotoNext:hover:after,.style-contrast .ncdPhotoPrev:hover:before,.style-contrast .ncdPhotoPrev:hover:after,.style-contrast .ncdPhotoClose:hover:before,.style-contrast .ncdPhotoClose:hover:after{background:#222}.style-contrast .ncdPhotoZoom.zoom,.style-contrast .ncdPhotoZoom.zoom + .style-contrast .ncdPhotoClose{background:rgba(0,0,0,0.3)}.style-contrast .ncdPhotoZoom,.style-contrast .ncdPhotoClose,.style-contrast .ncdPhotoZoom:before,.style-contrast .ncdPhotoZoom:after,.style-contrast .ncdPhotoClose:before,.style-contrast .ncdPhotoClose:after{-webkit-transition:border 300ms,background 300ms,-webkit-transform 300ms,-webkit-box-shadow 300ms;transition:border 300ms,background 300ms,-webkit-transform 300ms,-webkit-box-shadow 300ms;transition:transform 300ms,border 300ms,box-shadow 300ms,background 300ms;transition:transform 300ms,border 300ms,box-shadow 300ms,background 300ms,-webkit-transform 300ms,-webkit-box-shadow 300ms}.style-contrast .ncdPhotoZoom.zoom:before,.style-contrast .ncdPhotoZoom.zoom:after,.style-contrast .ncdPhotoZoom.zoom + .style-contrast .ncdPhotoClose:before,.style-contrast .ncdPhotoZoom.zoom + .style-contrast .ncdPhotoClose:after{background:#FFF}.style-contrast .ncdPhotoZoom:active,.style-contrast .ncdPhotoClose:active,.style-contrast .ncdPhotoNext:active,.style-contrast .ncdPhotoPrev:active{-webkit-box-shadow:0 0 0 5px rgba(0,0,0,0.15);box-shadow:0 0 0 5px rgba(0,0,0,0.15);border:2px solid #222}.ncdPhotoZoom.zoom{border:2px solid rgba(0,0,0,0.6)}@media screen and (min-width:800px){.style-contrast .ncdPhotoZoom,.style-contrast .ncdPhotoClose,.style-contrast .ncdPhotoNext,.style-contrast .ncdPhotoPrev{background-image:radial-gradient(50% 50%,rgba(255,255,255,0.4),rgba(255,255,255,0.00))}.style-contrast .ncdPhotoZoom:hover,.style-contrast .ncdPhotoClose:hover,.style-contrast .ncdPhotoNext:hover,.style-contrast .ncdPhotoPrev:hover{border:2px solid #222}}@media screen and (max-width:800px){.style-contrast #ncdPhotoCounter{color:#fff}.style-contrast .ncdPhotoNext:before,.style-contrast .ncdPhotoNext:after,.style-contrast .ncdPhotoPrev:before,.style-contrast .ncdPhotoPrev:after,.style-contrast .ncdPhotoZoom:before,.style-contrast .ncdPhotoZoom:after,.style-contrast .ncdPhotoClose:before,.style-contrast .ncdPhotoClose:after,.style-contrast .ncdPhotoNext:hover:before,.style-contrast .ncdPhotoNext:hover:after,.style-contrast .ncdPhotoPrev:hover:before,.style-contrast .ncdPhotoPrev:hover:after,.style-contrast .ncdPhotoClose:hover:before,.style-contrast .ncdPhotoClose:hover:after{background:#fff}.style-contrast #ncdPhotoControls{background-color:rgba(0,0,0,0.3);background-image:none}.style-contrast .ncdPhotoZoom.zoom,.style-contrast .ncdPhotoZoom.zoom + .style-contrast .ncdPhotoClose{background:transparent}.style-contrast .ncdPhotoZoom:active,.style-contrast .ncdPhotoZoom.zoom,.style-contrast .ncdPhotoClose:active,.style-contrast .ncdPhotoNext:active,.style-contrast .ncdPhotoPrev:active{-webkit-box-shadow:0 0 0 5px transparent;box-shadow:0 0 0 5px transparent;border:2px solid transparent}.style-contrast .ncdPhotoZoom.zoom{-webkit-transform:translateY(0px);transform:translateY(0px)}#ncdPhotoBase.style-contrast .ncdPhotoNext.hide,#ncdPhotoBase.style-contrast .ncdPhotoPrev.hide{opacity:1}}.processing img{-webkit-box-shadow:none !important;box-shadow:none !important}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_11294 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_11294 .theDivider1,
#simpleDivider_stacks_in_11294 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_11294 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_11294.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_11294.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11294 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_11294.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_11294.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_11294.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11294.bgImageOn .theDivider1 img {
	display: block;
}

/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_11295 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_11295 .theDivider1,
#simpleDivider_stacks_in_11295 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_11295 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_11295.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_11295.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11295 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_11295.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_11295.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_11295.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11295.bgImageOn .theDivider1 img {
	display: block;
}

/* PHANTOM
 * -------------------------- */

.fontDetect {
  display: none;
}
.loadFaWarning {
  display: block;
  font-family: sans-serif;
  text-align: center;
  color: #fff;
  background: red;
  border-radius: 4px;
  width: 500px;
  margin: 10px auto;
  padding: 10px 20px;
}
.loadFaWarning h3 {
  margin: 10px 0px 10px 0px;
  color: #fff;
}


.phantomElement {
  display: block !important;
  margin: 0 !important;
  max-width: 100%;
}
.phantomElement.shuffle-item {
  margin-left: 0 !important;
  /* shuffle items shouldn't have a left margin*/
}
/*
  Shuffle needs either relative or absolute positioning on the container
  It will set it for you, but it'll cause another style recalculation and layout.
  AKA worse performance - so just set it here
 */
.ourHolder-stacks_in_10994 {
  position: relative;
  /*overflow: hidden;*/
  width: 100%;
}

.shuffle__sizer-stacks_in_10994 {
  display: block;
   	min-height: 30px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;

  position: absolute;
  opacity: 0;
  visibility: hidden;
  float: left;
  width: 25%;;
}

@media (max-width: 47.9375em) {
  .phantomElement {
    height: auto;
    margin-top: 20px;
  }
  .m-nofloat {
    float: none;
  }
}
#nav-stacks_in_10994 {
  bottom: -10px !important;
  margin: 0 !important;
  padding: 0 27.5px !important;
}
#stacks_in_10994 {
  position: relative;
  height: auto;
  /*z-index: 1000;*/
  min-height: 300px;
}

#stacks_in_10994 .logoWrap {
  width: 980px;
  margin: 0 auto;
  pointer-events: none;
  position: relative;
}
#stacks_in_10994 .logoWrap .logoImage {
  background-image: url();
  margin: 15px;
  width: 185px;
  height: 85px;
  top: 0px;
  left: 0px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
  position: absolute;
}


.ourHolder-stacks_in_10994 {
  margin: 0 !important;
  padding: 0;
  /*position: relative;*/
  /*z-index: 2000;*/
  display: block;
}
.ourHolder-stacks_in_10994 li {
  margin: 0;
  padding: 0;
}
.inner-wrap {
  padding-left: 0;
  padding-right: 0;
}
/* ------------------Buttons ------------------------*/
#phantomKnob-stacks_in_10994 .buttonsNone-stacks_in_10994 {
  display: none;
}
#phantomButtons-stacks_in_10994 .knobNone-stacks_in_10994 {
  display: none !important;
}
#phantomButtons-stacks_in_10994 .container-stacks_in_10994 .navphantomButtons-stacks_in_10994  {
  list-style: none;
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
    text-align: center;
}
#phantomButtons-stacks_in_10994 .navphantomButtons-stacks_in_10994 li {
  cursor: pointer;
}
#phantomButtons-stacks_in_10994 .navphantomButtons-stacks_in_10994 li {
  font-size: 14px;
  line-height: 26px;
  margin-left: 4px;
  margin-right: 0;
}
#phantomButtons-stacks_in_10994 .navphantomButtons-stacks_in_10994  li:first-child {
  margin-left: 0px;
}
#phantomButtons-stacks_in_10994 .navphantomButtons-stacks_in_10994.hover-visible  li {

}
#phantomButtons-stacks_in_10994 .navphantomButtons-stacks_in_10994.hover-hidden li i span {
  /*width: 0;
  display: inline-block;
  overflow: hidden;
  -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;*/
}
#phantomButtons-stacks_in_10994 .navphantomButtons-stacks_in_10994.hover-hidden li:hover i span {
  /*width: 50px;
  -webkit-transition: all 1s ease-in-out;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;*/
}
#phantomButtons-stacks_in_10994 .whiteIcon li {
  color: rgba(255,255,255,1.0);
}
#phantomButtons-stacks_in_10994 .blackIcon li {
  color: rgba(0,0,0,1.0);
}
/* ------------------ BUTTONS ------------------------*/
#phantomButtons-stacks_in_10994 .container-stacks_in_10994 .navphantomButtons-stacks_in_10994 li {
  padding: 12px 14px ;
  transition: background 300ms;
}
#phantomButtons-stacks_in_10994 .container-stacks_in_10994 .navphantomButtons-stacks_in_10994.buttons {
  display: inline-block;
}
#phantomButtons-stacks_in_10994 .container-stacks_in_10994 .navphantomButtons-stacks_in_10994.buttons li {
  float: left;
  margin-bottom: 10px;
  background: #B8B8B8;
  background-image: -moz-linear-gradient(top, rgba(255,255,255,0.15) 0%, rgba(0,0,0,0.3) 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255,255,255,0.15)), color-stop(100%,rgba(0,0,0,0.3)));
  background-image: -webkit-linear-gradient(top, rgba(255,255,255,0.15) 0%,rgba(0,0,0,0.3) 100%);
  background-image: -o-linear-gradient(top, rgba(255,255,255,0.15) 0%,rgba(0,0,0,0.3) 100%);
  background-image: -ms-linear-gradient(top, rgba(255,255,255,0.15) 0%,rgba(0,0,0,0.3) 100%);
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.15) 0%,rgba(0,0,0,0.3) 100%);
  box-shadow: 0px 1px 3px rgba(0,0,0, .4), inset 0 1px 0px rgba(255,255,255,0.2), inset 0 0 0px rgba(255,255,255,0.2), inset 0 -1px 0px rgba(0,0,0,0.3);
  -webkit-box-shadow: 0px 1px 3px rgba(0,0,0, .4, inset 0 1px 0px rgba(255,255,255,0.2), inset 0 0 0px rgba(255,255,255,0.2), inset 0 -1px 0px rgba(0,0,0,0.3));
  -moz-box-shadow: 0px 1px 3px rgba(0,0,0, .4, inset 0 1px 0px rgba(255,255,255,0.2), inset 0 -1px 0px rgba(0,0,0,0.3));
  border: 1px solid rgba(0,0,0,0.2);
  text-shadow: rgba(0, 0, 0, 0.298039) 0px 1px 0px;
}
#phantomButtons-stacks_in_10994 .navphantomButtons-stacks_in_10994.buttons li.active, #phantomButtons-stacks_in_10994 .navphantomButtons-stacks_in_10994.buttons li:active {
  background-color: #FFFFFF;
  background-image: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.3) 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.3)));
  background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.15) 0%,rgba(0,0,0,0.0) 100%);
  background-image: -o-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 100%);
  background-image: -ms-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 100%);
  background-image: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.3) 100%);
  box-shadow: 0px 1px 0px rgba(255,255,255, .15), inset 1px 1px 0px rgba(0,0,0,0.2), inset 0 0 0px rgba(255,255,255,0.2), inset 0 -1px 0px rgba(0,0,0,0.0);
  -webkit-box-shadow: 0px 1px 0px rgba(255,255,255, .15, inset 1px 1px 0px rgba(0,0,0,0.2), inset 0 0 0px rgba(255,255,255,0.2), inset 0 -1px 0px rgba(0,0,0,0.0));
  -moz-box-shadow: 0px 1px 0px rgba(255,255,255, .15, inset 1px 1px 0px rgba(0,0,0,0.2), inset 0 -1px 0px rgba(0,0,0,0.0));
  border: 1px solid rgba(0,0,0,0.4);
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
#phantomButtons-stacks_in_10994 .navphantomButtons-stacks_in_10994.buttons li:hover {
  background-color: #215BA9;
}
#phantomButtons-stacks_in_10994 .navphantomButtons-stacks_in_10994.buttons li:active {
  background-image: -moz-linear-gradient(top, rgba(0,0,0,.2) 0%, rgba(0,0,0,0.2) 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(0,0,0,0.2)), color-stop(100%,rgba(0,0,0,0.2)));
  background-image: -webkit-linear-gradient(top, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.2) 100%);
  background-image: -o-linear-gradient(top, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.2) 100%);
  background-image: -ms-linear-gradient(top, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.2) 100%);
  background-image: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%,rgba(0,0,0,0.2) 100%);
}
/* ------------------ ROUND BUTTONS ------------------------*/
#phantomButtons-stacks_in_10994 .container-stacks_in_10994 .navphantomButtons-stacks_in_10994.round li {
  background: #B8B8B8;
  min-width: 22px;
  min-height: 26px;
  /*height: 24px;
  width: 24px;*/
  text-align: center;
  border-radius: 50%;
  display: inline-block;
}
#phantomButtons-stacks_in_10994 .navphantomButtons-stacks_in_10994.round li.active {
  background-color: #FFFFFF;
}
#phantomButtons-stacks_in_10994 .navphantomButtons-stacks_in_10994.round li:hover {
  background-color: #215BA9;
}
/* ------------------ FLAT BUTTONS ------------------------*/
#phantomButtons-stacks_in_10994 .container-stacks_in_10994 .navphantomButtons-stacks_in_10994.flat li {
  background: #B8B8B8;
  min-width: 26px;
  min-height: 26px;
  border-radius: 5px;
  margin-bottom: 4px;
  text-align: center;
  display: inline-block;
}
#phantomButtons-stacks_in_10994 .navphantomButtons-stacks_in_10994.flat li.active {
  background: #FFFFFF;
}
#phantomButtons-stacks_in_10994 .navphantomButtons-stacks_in_10994.flat li:hover {
  background-color: #215BA9;
}
/* ------------------ FASHION BUTTONS ------------------------*/
#phantomButtons-stacks_in_10994 .container-stacks_in_10994 .navphantomButtons-stacks_in_10994.fashion li {
  background: #B8B8B8;
  min-width: 26px;
  min-height: 26px;
  margin-right: 10px;
    margin-bottom:5px;
    border: 3px #000000 double;
    overflow: hidden;
    text-align:center;
    display:inline-block;
}
#phantomButtons-stacks_in_10994 .navphantomButtons-stacks_in_10994.fashion li.active {
  background: #FFFFFF;
}
#phantomButtons-stacks_in_10994 .navphantomButtons-stacks_in_10994.fashion li:hover {
  background-color: #215BA9;
}
#phantomButtons-stacks_in_10994 .navphantomButtons-stacks_in_10994.fashion li i{
  position:relative;
  left:0;
}

#phantomButtons-stacks_in_10994 .navphantomButtons-stacks_in_10994.fashion li span {
  position:relative;
  margin-left:10px;
}

#phantomButtons-stacks_in_10994 .navphantomButtons-stacks_in_10994.fashion li:hover span{
  -webkit-animation-name: glide; /* Chrome, Safari, Opera */
  -webkit-animation-duration: 2s;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;/* Chrome, Safari, Opera */
    animation-name: glide;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

#phantomButtons-stacks_in_10994 .navphantomButtons-stacks_in_10994.fashion li:hover i{
  -webkit-animation-name: center; /* Chrome, Safari, Opera */
   -webkit-animation-duration: 2s;
   -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  /* Chrome, Safari, Opera */
    animation-name: center;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;

}

/* Chrome, Safari, Opera */
@-webkit-keyframes glide {
    0%   {top: 0px}
    25%  {top: 40px}
    50%  {}
    100% {top: 40px}
}

/* Standard syntax */
@keyframes glide {
    0%   {top: 0px}
    25%  {top: 40px}
    50%  {}
    100% {top: 40px}
}

/* Chrome, Safari, Opera */
@-webkit-keyframes center {
    0%   {}
    25%  {left: 0;}
    50%  {left:35%;} /*add adjust for large*/
    100% {left:35%;}
}

/* Standard syntax */
@keyframes center {
    0%   {}
    25%  {left: 0;}
    50%  {left:35%;}
    100% {left:35%;}
}

/* ------------------ICONIC ------------------------*/
#phantomButtons-stacks_in_10994 .container-stacks_in_10994 .navphantomButtons-stacks_in_10994.iconic li.active {
background-color: #FFFFFF;

}
#phantomButtons-stacks_in_10994 .container-stacks_in_10994 .navphantomButtons-stacks_in_10994.iconic li:hover {
  background-color: #215BA9;
}
#phantomButtons-stacks_in_10994 .container-stacks_in_10994 .navphantomButtons-stacks_in_10994.iconic li {
  width: 20px;
  background: #B8B8B8;
  padding:10px 13px;
  margin-right: 10px;
  border-radius:50%;
  overflow:hidden;
  display:inline-block;
  text-align: center;
}
#phantomButtons-stacks_in_10994 .container-stacks_in_10994 .navphantomButtons-stacks_in_10994.iconic li span{
  display:none;
}
#phantomButtons-stacks_in_10994 .container-stacks_in_10994 .navphantomButtons-stacks_in_10994.iconic li i{
  position:relative;
  color:white;
}

#phantomButtons-stacks_in_10994 .container-stacks_in_10994 .navphantomButtons-stacks_in_10994.iconic li:hover i{
  -webkit-animation-name: sliding; /* Chrome, Safari, Opera */
   -webkit-animation-duration: 2s;
   -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  /* Chrome, Safari, Opera */
    animation-name: sliding;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;

}
@-webkit-keyframes sliding{
    0%   {left:0}
    25%  {left: 150%;-ms-transform: rotate(-20deg); /* IE 9 */
    -webkit-transform: rotate(-20deg); /* Safari */
    transform: rotate(-20deg);}
    25.1%  {left:-150%;} /*add adjust for large*/
    100% {left: 0;}
}

/* Standard syntax */
@keyframes sliding {
    0%   {left:0}
    25%  {left: 150%;-ms-transform: rotate(-20deg); /* IE 9 */
    -webkit-transform: rotate(-20deg); /* Safari */
    transform: rotate(-20deg);}
    25.1%  {left:-150%;}
    100% {left: 0;}
}


@-webkit-keyframes sliding{
    0%   {left:0}
    25%  {left: 150%;-ms-transform: rotate(-20deg); /* IE 9 */
    -webkit-transform: rotate(-20deg); /* Safari */
    transform: rotate(-20deg);}
    25.1%  {left:-150%;} /*add adjust for large*/
    100% {left: 0;}
}

/* Standard syntax */
@keyframes sliding {
    0%   {left:0}
    25%  {left: 150%;-ms-transform: rotate(-20deg); /* IE 9 */
    -webkit-transform: rotate(-20deg); /* Safari */
    transform: rotate(-20deg);}
    25.1%  {left:-150%;}
    100% {left: 0;}
}

/* ------------------TYPO ------------------------*/

#phantomButtons-stacks_in_10994 .container-stacks_in_10994 .navphantomButtons-stacks_in_10994.typo li.active {
  color:#FFFFFF;
}
#phantomButtons-stacks_in_10994 .container-stacks_in_10994 .navphantomButtons-stacks_in_10994.typo li:hover {
  background-color: #215BA9;
}
#phantomButtons-stacks_in_10994 .container-stacks_in_10994 .navphantomButtons-stacks_in_10994.typo li {
  color:#000000;
  font-style: bold;
    display:inline-block;
}

#phantomButtons-stacks_in_10994 .container-stacks_in_10994 .navphantomButtons-stacks_in_10994.typo li  span{
  position:relative;
  text-transform: uppercase;
/*  font-size:1.7em;*/
    bottom:0;
}

#phantomButtons-stacks_in_10994 .container-stacks_in_10994 .navphantomButtons-stacks_in_10994.typo li i {
  position:relative;
/*  font-size:2.5em;*/
  width:100%;
  bottom:0;
}

#phantomButtons-stacks_in_10994 .container-stacks_in_10994 .navphantomButtons-stacks_in_10994.typo li:hover i {
  -webkit-animation-name: OP; /* Chrome, Safari, Opera */
   -webkit-animation-duration: 2s;
   -webkit-animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  /* Chrome, Safari, Opera */
    animation-name: OP;
    animation-duration: 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}



/* Chrome, Safari, Opera */
@-webkit-keyframes OP {
    0%   {}
    25%  {opacity:0;bottom:30px;}
    50%  {} /*add adjust for large*/
    100% {opacity:1; color: #000000;}
}

/* Standard syntax */
@keyframes OP {
    0%   {}
    25%  {opacity:0;bottom:30px;}
    50%  {} /*add adjust for large*/
    100% {opacity:1; color:#000000;}
}

@-webkit-keyframes BOP {
    0%   {}
    25%  {opacity:0;}
    50%  {} /*add adjust for large*/
    100% {opacity:1; color:#000000;}
}

/* Standard syntax */
@keyframes BOP {
    0%   {}
    25%  {opacity:0;}
    50%  {} /*add adjust for large*/
    100% {opacity:1; color: #000000;}
}


/* ------------------KNOB ------------------------*/
#phantomKnob-stacks_in_10994 {
  /*display: inline-block;
  background: blue; */
  height: 195px;
  margin-bottom: 100px;
}
#phantomKnob-stacks_in_10994 .over {
  position: absolute;
  opacity: 1;
  width: 100%;
  height: 200px;
  bottom: auto;
  z-index: 301;
}
/* ------------------ METALIC TOP ------------------------*/
#phantomKnob-stacks_in_10994 .over.metalTop {
  background: url(phantom-images/knob-top.png) center -200px no-repeat;
}
/* ------------------ WHITE TOP ------------------------*/
#phantomKnob-stacks_in_10994 .over.whiteTop {
  background: url(phantom-images/white-top.png) center -200px no-repeat;
}
/* ------------------ BLACK TOP ------------------------*/
#phantomKnob-stacks_in_10994 .over.blackTop {
  background: url(phantom-images/black-top.png) center -200px no-repeat;
}
/* ------------------ FLAT WHITE TOP ------------------------*/
#phantomKnob-stacks_in_10994 .over.whiteTopFlat {
  background: url(phantom-images/white-top-flat.png) center -200px no-repeat;
}
/* ------------------ FLAT BLACK TOP ------------------------*/
#phantomKnob-stacks_in_10994 .over.blackTopFlat {
  background: url(phantom-images/black-top-flat.png) center -200px no-repeat;
}
/* ------------------ WOOD TOP ------------------------*/
#phantomKnob-stacks_in_10994 .over.woodTop {
  background: url(phantom-images/wood-top.png) center -200px no-repeat;
}
/* ------------------ NO TOP ------------------------*/
#phantomKnob-stacks_in_10994 .over.noTop {

}
#phantomKnob-stacks_in_10994 .over.metalTop:before,
#phantomKnob-stacks_in_10994 .over.whiteTop:before,
#phantomKnob-stacks_in_10994 .over.blackTop:before,
#phantomKnob-stacks_in_10994 .over.woodTop:before {
  top: 0;
  content: " ";
  position: absolute;
  width: 418px;
  height: 194px;
  box-shadow: -3px 2px 3px rgba(0,0,0,0.3);
  left: 50%;
  margin-left: -509px;
  pointer-events: none;
  z-index: -1;
}
#phantomKnob-stacks_in_10994 .over.metalTop:after,
#phantomKnob-stacks_in_10994 .over.whiteTop:after,
#phantomKnob-stacks_in_10994 .over.blackTop:after,
#phantomKnob-stacks_in_10994 .over.woodTop:after {
  top: 0;
  content: " ";
  position: absolute;
  width: 418px;
  height: 194px;
  box-shadow: 3px 2px 3px rgba(0,0,0,0.3);
  right: 50%;
  margin-right: -509px;
  pointer-events: none;
  z-index: -1;
}


#phantomKnob-stacks_in_10994 .dial-stacks_in_10994 > div {
  pointer-events: none;
}
/* ------------------ METALIC KNOB ------------------------*/
#phantomKnob-stacks_in_10994 .dial-metal {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  position: relative;
  display: block;
  margin: auto auto;
  top: 100px;
  opacity: 1;
  *zoom: 1;
  z-index: 99999;
  filter: progid:DXImageTransform.Microsoft.gradient(gradientType=0, startColorstr='#FFC9CFD7', endColorstr='#FFB0B7C1');
  background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, #c9cfd7), color-stop(46%, rgba(43, 47, 62, 0.97)), color-stop(48%, rgba(43, 47, 62, 0.97)), color-stop(52%, #2b2f3e), color-stop(55%, #2b2f3e), color-stop(100%, #b0b7c1));
  background-image: -webkit-linear-gradient(top, #c9cfd7 0%, rgba(43, 47, 62, 0.97) 46%, rgba(43, 47, 62, 0.97) 48%, #2b2f3e 52%, #2b2f3e 55%, #b0b7c1 100%);
  background-image: -moz-linear-gradient(top, #c9cfd7 0%, rgba(43, 47, 62, 0.97) 46%, rgba(43, 47, 62, 0.97) 48%, #2b2f3e 52%, #2b2f3e 55%, #b0b7c1 100%);
  background-image: -o-linear-gradient(top, #c9cfd7 0%, rgba(43, 47, 62, 0.97) 46%, rgba(43, 47, 62, 0.97) 48%, #2b2f3e 52%, #2b2f3e 55%, #b0b7c1 100%);
  background-image: linear-gradient(top, #c9cfd7 0%, rgba(43, 47, 62, 0.97) 46%, rgba(43, 47, 62, 0.97) 48%, #2b2f3e 52%, #2b2f3e 55%, #b0b7c1 100%);
  box-shadow: 2px 15px 15px 7px rgba(0, 0, 0, 0.3), -5px 2px 5px rgba(0, 0, 0, 0.2), 1px 10px 15px rgba(0, 0, 0, 0.4), 0px 10px 5px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: 2px 15px 15px 7px rgba(0, 0, 0, 0.3), -5px 2px 5px rgba(0, 0, 0, 0.2), 1px 10px 15px rgba(0, 0, 0, 0.4), 0px 10px 5px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: 2px 15px 15px 7px rgba(0, 0, 0, 0.3), -5px 2px 5px rgba(0, 0, 0, 0.2), 1px 10px 15px rgba(0, 0, 0, 0.4), 0px 10px 5px rgba(0, 0, 0, 0.6);
}
#phantomKnob-stacks_in_10994 .dial-metal .metalic {
  background: url(phantom-images/knob-dial.png) 0px 0 no-repeat;
  width: 200px;/*165px;*/
  z-index: 999;
  height: 200px;/*165px;*/
  position: absolute;
  top: 3px;
  /*border-radius: 50%;*/
  left: -17px;
  opacity: 1;

}
#phantomKnob-stacks_in_10994 .dial-stacks_in_10994 .grad-stacks_in_10994 {
  height: 160px;/*100%;*/
  width: 160px;/*100%;*/
  margin-left: 20px;
  background: url(phantom-images/knob-dial-arrow.png) 0 0 no-repeat;
}
/* ------------------ WHITE KNOB ------------------------*/
#phantomKnob-stacks_in_10994 .dial-white {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  position: relative;
  display: block;
  margin: auto auto;
  top: 100px;
  opacity: 1;
  *zoom: 1;
  z-index: 99999;
}
#phantomKnob-stacks_in_10994 .dial-white .metalic {
  background: url(phantom-images/white-knob.png) 0px 0 no-repeat;
  width: 200px;/*165px;*/
  z-index: 999;
  height: 200px;/*165px;*/
  position: absolute;
  top: 3px;
  /*border-radius: 50%;*/
  left: -18px;
  opacity: 1;

}
#phantomKnob-stacks_in_10994 .dial-white .grad-stacks_in_10994 {
  height: 160px;/*100%;*/
  width: 160px;/*100%;*/
  margin-left: 20px;
  background: url(phantom-images/white-knob-arrow.png) 0 0 no-repeat;
}
/* ------------------ WHITE KNOB 2 ------------------------*/
#phantomKnob-stacks_in_10994 .dial-white2 {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  position: relative;
  display: block;
  margin: auto auto;
  top: 100px;
  opacity: 1;
  *zoom: 1;
  z-index: 99999;
}
#phantomKnob-stacks_in_10994 .dial-white2 .metalic {
  background: url(phantom-images/white2-knob.png) 0px 0 no-repeat;
  width: 200px;/*165px;*/
  z-index: 999;
  height: 200px;/*165px;*/
  position: absolute;
  top: 3px;
  /*border-radius: 50%;*/
  left: -18px;
  opacity: 1;

}
#phantomKnob-stacks_in_10994 .dial-white2 .grad-stacks_in_10994 {
  height: 160px;/*100%;*/
  width: 160px;/*100%;*/
  margin-left: 20px;
  background: url(phantom-images/white2-knob-arrow.png) 0 0 no-repeat;
}
/* ------------------ SUBTLE WHITE KNOB  ------------------------*/
#phantomKnob-stacks_in_10994 .dial-sWhiteD {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  position: relative;
  display: block;
  margin: auto auto;
  top: 100px;
  opacity: 1;
  *zoom: 1;
  z-index: 99999;
}
#phantomKnob-stacks_in_10994 .dial-sWhiteD .metalic {
  background: url(phantom-images/simple-white-knob.png) 0px 0 no-repeat;
  width: 200px;/*165px;*/
  z-index: 999;
  height: 200px;/*165px;*/
  position: absolute;
  top: 3px;
  /*border-radius: 50%;*/
  left: -18px;
  opacity: 1;

}
#phantomKnob-stacks_in_10994 .dial-sWhiteD .grad-stacks_in_10994 {
  height: 160px;/*100%;*/
  width: 160px;/*100%;*/
  margin-left: 20px;
  background: url(phantom-images/simple-white-knob-top.png) 0 0 no-repeat;
}

/* ------------------ SUBTLE BLACK KNOB  ------------------------*/
#phantomKnob-stacks_in_10994 .dial-sBlackD {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  position: relative;
  display: block;
  margin: auto auto;
  top: 100px;
  opacity: 1;
  *zoom: 1;
  z-index: 99999;
}
#phantomKnob-stacks_in_10994 .dial-sBlackD .metalic {
  background: url(phantom-images/simple-black-knob.png) 0px 0 no-repeat;
  width: 200px;/*165px;*/
  z-index: 999;
  height: 200px;/*165px;*/
  position: absolute;
  top: 3px;
  /*border-radius: 50%;*/
  left: -18px;
  opacity: 1;

}
#phantomKnob-stacks_in_10994 .dial-sBlackD .grad-stacks_in_10994 {
  height: 160px;/*100%;*/
  width: 160px;/*100%;*/
  margin-left: 20px;
  background: url(phantom-images/simple-black-knob-top.png) 0 0 no-repeat;
}
/* ------------------ SUBTLE METAL KNOB  ------------------------*/
#phantomKnob-stacks_in_10994 .dial-wMetalD {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  position: relative;
  display: block;
  margin: auto auto;
  top: 100px;
  opacity: 1;
  *zoom: 1;
  z-index: 99999;
}
#phantomKnob-stacks_in_10994 .dial-wMetalD .metalic {
  background: url(phantom-images/minimal-metal-knob.png) 0px 0 no-repeat;
  width: 200px;/*165px;*/
  z-index: 999;
  height: 200px;/*165px;*/
  position: absolute;
  top: 3px;
  /*border-radius: 50%;*/
  left: -18px;
  opacity: 1;

}
#phantomKnob-stacks_in_10994 .dial-wMetalD .grad-stacks_in_10994 {
  height: 160px;/*100%;*/
  width: 160px;/*100%;*/
  margin-left: 20px;
  background: url(phantom-images/minimal-metal-arrow.png) 0 0 no-repeat;
}

/* ------------------ SUBTLE METAL KNOB  ------------------------*/
#phantomKnob-stacks_in_10994 .dial-bMetalD {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  position: relative;
  display: block;
  margin: auto auto;
  top: 100px;
  opacity: 1;
  *zoom: 1;
  z-index: 99999;
}
#phantomKnob-stacks_in_10994 .dial-bMetalD .metalic {
  background: url(phantom-images/minimal-metal-black-knob.png) 0px 0 no-repeat;
  width: 200px;/*165px;*/
  z-index: 999;
  height: 200px;/*165px;*/
  position: absolute;
  top: 3px;
  /*border-radius: 50%;*/
  left: -18px;
  opacity: 1;

}
#phantomKnob-stacks_in_10994 .dial-bMetalD .grad-stacks_in_10994 {
  height: 160px;/*100%;*/
  width: 160px;/*100%;*/
  margin-left: 20px;
  background: url(phantom-images/minimal-metal-black-arrow.png) 0 0 no-repeat;
}
/* ------------------ TRON BLUE KNOB  ------------------------*/
#phantomKnob-stacks_in_10994 .dial-tBlueD {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  position: relative;
  display: block;
  margin: auto auto;
  top: 100px;
  opacity: 1;
  *zoom: 1;
  z-index: 99999;
}
#phantomKnob-stacks_in_10994 .dial-tBlueD .metalic {
  background: url(phantom-images/Tron-blue.png) 0px 0 no-repeat;
  width: 200px;/*165px;*/
  z-index: 999;
  height: 200px;/*165px;*/
  position: absolute;
  top: 3px;
  /*border-radius: 50%;*/
  left: -18px;
  opacity: 1;

}
#phantomKnob-stacks_in_10994 .dial-tBlueD .grad-stacks_in_10994 {
  height: 160px;/*100%;*/
  width: 160px;/*100%;*/
  margin-left: 20px;
  background: url(phantom-images/Tron-blue-arrrow.png) 0 0 no-repeat;
}
/* ------------------ TRON ORANGE KNOB  ------------------------*/
#phantomKnob-stacks_in_10994 .dial-tOrangeD {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  position: relative;
  display: block;
  margin: auto auto;
  top: 100px;
  opacity: 1;
  *zoom: 1;
  z-index: 99999;
}
#phantomKnob-stacks_in_10994 .dial-tOrangeD .metalic {
  background: url(phantom-images/Tron-orange.png) 0px 0 no-repeat;
  width: 200px;/*165px;*/
  z-index: 999;
  height: 200px;/*165px;*/
  position: absolute;
  top: 3px;
  /*border-radius: 50%;*/
  left: -18px;
  opacity: 1;

}
#phantomKnob-stacks_in_10994 .dial-tOrangeD .grad-stacks_in_10994 {
  height: 160px;/*100%;*/
  width: 160px;/*100%;*/
  margin-left: 20px;
  background: url(phantom-images/Tron-orange-arrrow.png) 0 0 no-repeat;
}
/* ------------------ BLACK KNOB ------------------------*/
#phantomKnob-stacks_in_10994 .dial-black {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  position: relative;
  display: block;
  margin: auto auto;
  top: 100px;
  opacity: 1;
  *zoom: 1;
  z-index: 99999;
}
#phantomKnob-stacks_in_10994 .dial-black .metalic {
  background: url(phantom-images/black-knob.png) 0px 0 no-repeat;
  width: 200px;/*165px;*/
  z-index: 999;
  height: 200px;/*165px;*/
  position: absolute;
  top: 3px;
  /*border-radius: 50%;*/
  left: -18px;
  opacity: 1;
}
#phantomKnob-stacks_in_10994 .dial-black .grad-stacks_in_10994 {
  height: 160px;/*100%;*/
  width: 160px;/*100%;*/
  margin-left: 20px;
  background: url(phantom-images/black-knob-arrow.png) 0 0 no-repeat;
}
/* ------------------ WHITE DIAL ------------------------*/
#phantomKnob-stacks_in_10994 .dial-whiteD {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  position: relative;
  display: block;
  margin: auto auto;
  top: 100px;
  opacity: 1;
  *zoom: 1;
  z-index: 99999;
}
#phantomKnob-stacks_in_10994 .dial-whiteD .metalic {
  width: 200px;/*165px;*/
  z-index: 999;
  height: 200px;/*165px;*/
  position: absolute;
  top: 3px;
  /*border-radius: 50%;*/
  left: -16px;
  opacity: 1;
}
#phantomKnob-stacks_in_10994 .dial-whiteD .grad-stacks_in_10994 {
  height: 160px;/*100%;*/
  width: 160px;/*100%;*/
  margin-left: 18px;
  background: url(phantom-images/white-dial.png) 0 0 no-repeat;
}
/* ------------------ BLACK DIAL ------------------------*/
#phantomKnob-stacks_in_10994 .dial-blackD {
  width: 165px;
  height: 165px;
  border-radius: 50%;
  position: relative;
  display: block;
  margin: auto auto;
  top: 100px;
  opacity: 1;
  *zoom: 1;
  z-index: 99999;
}
#phantomKnob-stacks_in_10994 .dial-blackD .metalic {
  width: 200px;/*165px;*/
  z-index: 999;
  height: 200px;/*165px;*/
  position: absolute;
  top: 3px;
  /*border-radius: 50%;*/
  left: -16px;
  opacity: 1;
}
#phantomKnob-stacks_in_10994 .dial-blackD .grad-stacks_in_10994 {
  height: 160px;/*100%;*/
  width: 160px;/*100%;*/
  margin-left: 18px;
  background: url(phantom-images/black-dial.png) 0 0 no-repeat;
}

#phantomKnob-stacks_in_10994 .container-stacks_in_10994 {
  width: 325px;
  top: 70px;
  position: relative;
  margin: 0 auto;
  /*display: inline-block;
  background: rgba(0,0,0,.2);*/
  /*height: 100%;*/
}
#phantomKnob-stacks_in_10994 .navWrap-stacks_in_10994 {
  position: relative;
  width: 100%;
  top: -85px;
}

#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li {
  display: inline-block;
  background: none !important;
  list-style-type: none !important;
  float: left;
/*  margin: 0 40px 0 0 !important;*/
  cursor: pointer;
  font-size: 28px;
  line-height: 28px;
  padding-top: 5px;
  padding-left: 15px;
  height: 49px;
  width: 35px;
}
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li i.whiteIcon {
  color: rgba(255,255,255,1.0);
  text-shadow: 0px 1px 0px rgba(0,0,0,0.65);
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1.0)), color-stop(85%, rgba(0,0,0,.5)), to(rgba(0,0,0,.5)));
}
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li i.blackIcon {
  color: rgba(0,0,0,1.0);
  text-shadow: 0px 1px 0px rgba(255,255,255,0.65);
  -webkit-mask-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0,0,0,1.0)), color-stop(85%, rgba(0,0,0,.5)), to(rgba(0,0,0,.5)));
}

#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li a {
  cursor: pointer;
  text-decoration: none;
}
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li.whiteIcon:after {
  content: " ";
  background-size: 10px 10px;
  position: absolute;
  width: 6px;
  height: 6px;

  background-color: rgba(255,255,255,1.0);
  border-radius: 50%;
  -moz-box-shadow: 0px 1px 0px rgba(0,0,0,0.65);
  -webkit-box-shadow: 0px 1px 0px rgba(0,0,0,0.65);
  box-shadow: 0px 1px 0px rgba(0,0,0,0.65);
}
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li.blackIcon:after {
  content: " ";
  background-size: 10px 10px;
  position: absolute;
  width: 6px;
  height: 6px;

  background-color: rgba(0,0,0,1.0);
  border-radius: 50%;
  -moz-box-shadow: 0px 1px 0px rgba(255,255,255,0.35);
  -webkit-box-shadow: 0px 1px 0px rgba(255,255,255,0.35);
  box-shadow: 0px 1px 0px rgba(255,255,255,0.35);
  opacity: 0.6;
}
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li {
  position: absolute;
  width: 100px;
  height: 50px;
  margin: 0;
  padding: 0;
  text-align: center;
}
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li div {
  line-height: 24px;
}


#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li.active:after {
  background-color: #000000;
  box-shadow: 0px 0px 5px #000000, inset 0px 0px 3px rgba(0,0,0,0.6);
}

#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li:hover:after {
  background-color:  #000000;
  box-shadow: 0px 0px 5px #000000, inset 0px 0px 3px rgba(0,0,0,0.6);
}



#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li i {
  font-size: 28px;
}
/* hover transitions */
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li:after,
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li i {
  transition: all 300ms  linear;
}
/*--------------------
FIVE ITEM KNOB (DEFAULT)
--------------------*/
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li:nth-of-type(1) {
  -webkit-transform: translate(-5px, -15px);
  -ms-transform: translate(-50px, -15px);
  transform: translate(-50px, -15px);
}
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li:nth-of-type(1):after {
  right: 20px;
  top: 40px;
}
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li:nth-of-type(2) {
  -webkit-transform: translate(-20px, -85px);
  -ms-transform: translate(-20px, -85px);;
  transform: translate(-20px, -85px);
}
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li:nth-of-type(2):after {
  right: 20px;
  top: 40px;
}
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li:nth-of-type(3) {
  -webkit-transform: translate(84px, -145px);
  -ms-transform: translate(84px, -145px);
  transform: translate(84px, -145px);
}
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li:nth-of-type(3):after {
  right: 47px;
  top: 64px;
}
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li:nth-of-type(4) {
  -webkit-transform: translate(190px, -85px);
  -ms-transform: translate(190px, -85px);
  transform: translate(190px, -85px);
}
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li:nth-of-type(4):after {
  left: 20px;
  top: 40px;
}
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li:nth-of-type(5) {
  -webkit-transform: translate(220px, -15px);
  -ms-transform: translate(220px, -15px);
  transform: translate(220px, -15px);
}
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li:nth-of-type(5):after {
  left: 20px;
  top: 40px;
}
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li:nth-of-type(6),
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li:nth-of-type(7) {
  display: none;
}
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li img {
  width: 35px;
  height: 35px;
}
#phantomKnob-stacks_in_10994 .r0 {
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transform: rotate(0deg);
  -moz-transform:    rotate(0deg);
  -ms-transform:     rotate(0deg);
  -o-transform:      rotate(0deg);
  transform:         rotate(0deg);
}

#phantomKnob-stacks_in_10994 .rr1 {
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transform: rotate(45deg);
  -moz-transform:    rotate(45deg);
  -ms-transform:     rotate(45deg);
  -o-transform:      rotate(45deg);
  transform:         rotate(45deg);
}

#phantomKnob-stacks_in_10994 .rr2 {
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transform: rotate(88deg);
  -moz-transform:    rotate(88deg);
  -ms-transform:     rotate(88deg);
  -o-transform:      rotate(88deg);
  transform:         rotate(88deg);
}

#phantomKnob-stacks_in_10994 .lr1 {
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transform: rotate(-45deg);
  -moz-transform:    rotate(-45deg);
  -ms-transform:     rotate(-45deg);
  -o-transform:      rotate(-45deg);
  transform:         rotate(-45deg);
}
#phantomKnob-stacks_in_10994 .lr2 {
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transform: rotate(-85deg);
  -moz-transform:    rotate(-85deg);
  -ms-transform:     rotate(-85deg);
  -o-transform:      rotate(-85deg);
  transform:         rotate(-85deg);
}
#phantomKnob-stacks_in_10994 .newLeft {
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transform: rotate(-85deg);
  -moz-transform:    rotate(-85deg);
  -ms-transform:     rotate(-85deg);
  -o-transform:      rotate(-85deg);
  transform:         rotate(-85deg);
}
#phantomKnob-stacks_in_10994 .newRight {
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transform: rotate(-85deg);
  -moz-transform:    rotate(-85deg);
  -ms-transform:     rotate(-85deg);
  -o-transform:      rotate(-85deg);
  transform:         rotate(-85deg);
}
/*--------------------
TWO ITEM KNOB
--------------------*/
#phantomKnob-stacks_in_10994.knob2 #nav-stacks_in_10994 li:nth-of-type(1) div,
#phantomKnob-stacks_in_10994.knob2 #nav-stacks_in_10994 li:nth-of-type(3) div,
#phantomKnob-stacks_in_10994.knob2 #nav-stacks_in_10994 li:nth-of-type(5) div {
  display: none;
}
#phantomKnob-stacks_in_10994.knob2 #nav-stacks_in_10994 li:nth-of-type(1) {
  visibility: hidden;
}
#phantomKnob-stacks_in_10994.knob2 #nav-stacks_in_10994 li:nth-of-type(3) {
  visibility: hidden;
}
#phantomKnob-stacks_in_10994.knob2 #nav-stacks_in_10994 li:nth-of-type(5) {
   visibility: hidden;
}
#phantomKnob-stacks_in_10994.knob2 .r0 {
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transform: rotate(-45deg);
  -moz-transform:    rotate(-45deg);
  -ms-transform:     rotate(-45deg);
  -o-transform:      rotate(-45deg);
  transform:         rotate(-45deg);
}
/*--------------------
THREE ITEM KNOB
--------------------*/
#phantomKnob-stacks_in_10994.knob3 #nav-stacks_in_10994 li:nth-of-type(1) div,
#phantomKnob-stacks_in_10994.knob3 #nav-stacks_in_10994 li:nth-of-type(5) div {
  display: none;
}
#phantomKnob-stacks_in_10994.knob3 #nav-stacks_in_10994 li:nth-of-type(1) {
  visibility: hidden;
}
#phantomKnob-stacks_in_10994.knob3 #nav-stacks_in_10994 li:nth-of-type(5) {
  visibility: hidden;
}
#phantomKnob-stacks_in_10994.knob3 #nav-stacks_in_10994 li:nth-of-type(2) {
  -webkit-transform: translate(-40px, -45px);
  -ms-transform: translate(-40px, -45px);
  transform: translate(-40px, -45px);
}
#phantomKnob-stacks_in_10994.knob3 #nav-stacks_in_10994 li:nth-of-type(3) {
  -webkit-transform: translate(84px, -135px);
  -ms-transform: translate(84px, -135px);
  transform: translate(84px, -135px);
}
#phantomKnob-stacks_in_10994.knob3 #nav-stacks_in_10994 li:nth-of-type(4) {
  -webkit-transform: translate(210px, -45px);
  -ms-transform: translate(210px, -45px);
  transform: translate(210px, -45px);
}
#phantomKnob-stacks_in_10994.knob3 .rr1 {
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transform: rotate(67deg);
  -moz-transform:    rotate(67deg);
  -ms-transform:     rotate(67deg);
  -o-transform:      rotate(67deg);
  transform:         rotate(67deg);
}
#phantomKnob-stacks_in_10994.knob3 .lr1 {
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transform: rotate(-67deg);
  -moz-transform:    rotate(-67deg);
  -ms-transform:     rotate(-67deg);
  -o-transform:      rotate(-67deg);
  transform:         rotate(-67deg);
}
/*--------------------
FOUR ITEM KNOB
--------------------*/
#phantomKnob-stacks_in_10994.knob4 #nav-stacks_in_10994 li:nth-of-type(3) div {
  display: none;
}
#phantomKnob-stacks_in_10994.knob4 #nav-stacks_in_10994 li:nth-of-type(3) {
  visibility: hidden;
}
#phantomKnob-stacks_in_10994.knob4 #nav-stacks_in_10994 li:nth-of-type(1) {
  -webkit-transform: translate(-40px, -35px);
  -ms-transform: translate(-40px, -35px);
  transform: translate(-40px, -35px);
}
#phantomKnob-stacks_in_10994.knob4 #nav-stacks_in_10994 li:nth-of-type(2) {
  -webkit-transform: translate(20px, -105px);
  -ms-transform: translate(20px, -105px);
  transform: translate(20px, -105px);
}
#phantomKnob-stacks_in_10994.knob4 #nav-stacks_in_10994 li:nth-of-type(4) {
  -webkit-transform: translate(150px, -105px);
  -ms-transform: translate(150px, -105px);
  transform: translate(150px, -105px);
}
#phantomKnob-stacks_in_10994.knob4 #nav-stacks_in_10994 li:nth-of-type(5) {
  -webkit-transform: translate(210px, -35px);
  -ms-transform: translate(210px, -35px);
  transform: translate(210px, -35px);
}

#phantomKnob-stacks_in_10994.knob4 #nav-stacks_in_10994 li img {
  width: 35px;
  height: 35px;
}
#phantomKnob-stacks_in_10994.knob4 .r0 {
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transform: rotate(-72deg);
  -moz-transform:    rotate(-72deg);
  -ms-transform:     rotate(-72deg);
  -o-transform:      rotate(-72deg);
  transform:         rotate(-72deg);
}
#phantomKnob-stacks_in_10994.knob4 .rr1 {
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transform: rotate(23deg);
  -moz-transform:    rotate(23deg);
  -ms-transform:     rotate(23deg);
  -o-transform:      rotate(23deg);
  transform:         rotate(23deg);
}

#phantomKnob-stacks_in_10994.knob4 .rr2 {
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;

  -webkit-transform: rotate(74deg);
  -moz-transform:    rotate(74deg);
  -ms-transform:     rotate(74deg);
  -o-transform:      rotate(74deg);
  transform:         rotate(74deg);
}

#phantomKnob-stacks_in_10994.knob4 .lr1 {
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transform: rotate(-23deg);
  -moz-transform:    rotate(-23deg);
  -ms-transform:     rotate(-23deg);
  -o-transform:      rotate(-23deg);
  transform:         rotate(-23deg);
}
#phantomKnob-stacks_in_10994.knob4 .lr2 {
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transform: rotate(-72deg);
  -moz-transform:    rotate(-72deg);
  -ms-transform:     rotate(-72deg);
  -o-transform:      rotate(-72deg);
  transform:         rotate(-72deg);
}
/*--------------------
SIX ITEM KNOB
--------------------*/
#phantomKnob-stacks_in_10994.knob6 #nav-stacks_in_10994 li:nth-of-type(1) {
  -webkit-transform: translate(-50px, -15px);
  -ms-transform: translate(-50px, -15px);
  transform: translate(-50px, -15px);
}
#phantomKnob-stacks_in_10994.knob6 #nav-stacks_in_10994 li:nth-of-type(1):after {
  right: 20px;
  top: 40px;
}
#phantomKnob-stacks_in_10994.knob6 #nav-stacks_in_10994 li:nth-of-type(2) {
  -webkit-transform: translate(25px, -115px);
  -ms-transform: translate(25px, -115px);;
  transform: translate(25px, -115px);
}
#phantomKnob-stacks_in_10994.knob6 #nav-stacks_in_10994 li:nth-of-type(3) {
  display: none;
}
#phantomKnob-stacks_in_10994.knob6 #nav-stacks_in_10994 li:nth-of-type(4) {
  -webkit-transform: translate(145px, -115px);
  -ms-transform: translate(145px, -115px);
  transform: translate(145px, -115px);
}
#phantomKnob-stacks_in_10994.knob6 #nav-stacks_in_10994 li:nth-of-type(5) {
  -webkit-transform: translate(220px, -15px);
  -ms-transform: translate(220px, -15px);
  transform: translate(220px, -15px);
}
#phantomKnob-stacks_in_10994.knob6 #nav-stacks_in_10994 li:nth-of-type(6) {
  display: block;
  -webkit-transform: translate(-30px, -75px);
  -ms-transform: translate(-30px, -75px);
  transform: translate(-30px, -75px);
}
#phantomKnob-stacks_in_10994.knob6 #nav-stacks_in_10994 li:nth-of-type(6):after {
  right: 20px;
  top: 40px;
}
#phantomKnob-stacks_in_10994.knob6 #nav-stacks_in_10994 li:nth-of-type(7) {
  display: block;
  -webkit-transform: translate(200px, -75px);
  -ms-transform: translate(200px, -75px);
  transform: translate(200px, -75px);
}
#phantomKnob-stacks_in_10994.knob6 #nav-stacks_in_10994 li:nth-of-type(7):after {
  left: 20px;
  top: 40px;
}
#phantomKnob-stacks_in_10994.knob6 .lr2 {
  -webkit-transform: rotate(-85deg);
  -ms-transform:     rotate(-85deg);
  transform:         rotate(-85deg);
}
#phantomKnob-stacks_in_10994.knob6 .newLeft {
  -webkit-transform: rotate(-50deg);
  -ms-transform:     rotate(-50deg);
  transform:         rotate(-50deg);
}
#phantomKnob-stacks_in_10994.knob6 .lr1 {
  -webkit-transform: rotate(-17deg);
  -ms-transform:     rotate(-17deg);
  transform:         rotate(-17deg);
}
#phantomKnob-stacks_in_10994.knob6  .rr1 {
  -webkit-transform: rotate(17deg);
  -ms-transform:     rotate(17deg);
  transform:         rotate(17deg);
}
#phantomKnob-stacks_in_10994.knob6 .newRight {
  -webkit-transform: rotate(50deg);
  -ms-transform:     rotate(50deg);
  transform:         rotate(50deg);
}
#phantomKnob-stacks_in_10994.knob6 .rr2 {
  -webkit-transform: rotate(87deg);
  -ms-transform:     rotate(87deg);
  transform:         rotate(87deg);
}
#phantomKnob-stacks_in_10994.knob6 .r0 {
  transition: all 1s ease;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  -webkit-transform: rotate(-85deg);
  -moz-transform:    rotate(-85deg);
  -ms-transform:     rotate(-85deg);
  -o-transform:      rotate(-85deg);
  transform:         rotate(-85deg);
}
/*--------------------
SEVEN ITEM KNOB
--------------------*/
#phantomKnob-stacks_in_10994.knob7 #nav-stacks_in_10994 li:nth-of-type(1) {
  -webkit-transform: translate(-50px, -15px);
  -ms-transform: translate(-50px, -15px);
  transform: translate(-50px, -15px);
}
#phantomKnob-stacks_in_10994.knob7 #nav-stacks_in_10994 li:nth-of-type(2) {
  -webkit-transform: translate(10px, -110px);
  -ms-transform: translate(10px, -110px);
  transform: translate(10px, -110px);
}
#phantomKnob-stacks_in_10994.knob7 #nav-stacks_in_10994 li:nth-of-type(3) {
  display: block;
}
#phantomKnob-stacks_in_10994.knob7 #nav-stacks_in_10994 li:nth-of-type(4) {
  -webkit-transform: translate(160px, -110px);
  -ms-transform: translate(160px, -110px);
  transform: translate(160px, -110px);
}
#phantomKnob-stacks_in_10994.knob7 #nav-stacks_in_10994 li:nth-of-type(5) {
  -webkit-transform: translate(220px, -15px);
  -ms-transform: translate(220px, -15px);
  transform: translate(220px, -15px);
}
#phantomKnob-stacks_in_10994.knob7 #nav-stacks_in_10994 li:nth-of-type(6) {
  display: block;
  -webkit-transform: translate(-45px, -65px);
  -ms-transform: translate(-40px, -65px);
  transform: translate(-40px, -65px);
}
#phantomKnob-stacks_in_10994.knob7 #nav-stacks_in_10994 li:nth-of-type(6):after {
  right: 20px;
  top: 40px;
}
#phantomKnob-stacks_in_10994.knob7 #nav-stacks_in_10994 li:nth-of-type(7) {
  display: block;
  -webkit-transform: translate(210px, -65px);
  -ms-transform: translate(210px, -65px);
  transform: translate(210px, -65px);
}
#phantomKnob-stacks_in_10994.knob7 #nav-stacks_in_10994 li:nth-of-type(7):after {
  left: 20px;
  top: 40px;
}
#phantomKnob-stacks_in_10994.knob7 .lr2 {
  -webkit-transform: rotate(-85deg);
  -ms-transform:     rotate(-85deg);
  transform:         rotate(-85deg);
}
#phantomKnob-stacks_in_10994.knob7 .newLeft {
  -webkit-transform: rotate(-58deg);
  -ms-transform:     rotate(-58deg);
  transform:         rotate(-58deg);
}
#phantomKnob-stacks_in_10994.knob7 .lr1 {
  -webkit-transform: rotate(-27deg);
  -ms-transform:     rotate(-27deg);
  transform:         rotate(-27deg);
}
#phantomKnob-stacks_in_10994.knob7  .rr1 {
  -webkit-transform: rotate(25deg);
  -ms-transform:     rotate(25deg);
  transform:         rotate(25deg);
}
#phantomKnob-stacks_in_10994.knob7 .newRight {
  -webkit-transform: rotate(58deg);
  -ms-transform:     rotate(58deg);
  transform:         rotate(58deg);
}
#phantomKnob-stacks_in_10994.knob7 .rr2 {
  -webkit-transform: rotate(87deg);
  -ms-transform:     rotate(87deg);
  transform:         rotate(87deg);
}






/* Knob Titles */
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li div {
/*  position: absolute;*/
  font-size: 14px;
  text-align: center;
/*  left: -22px;*/
  width: 100px;
/*  top: -20px;*/
  opacity: 1;
  visibility: visible;
}
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li:hover div {
  visibility: visible;
}
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li.whiteIcon div {
  color: rgba(255,255,255,1.0);
  text-shadow: 0px 1px 0px rgba(0,0,0,0.6)
}
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li.blackIcon div {
  color: rgba(0,0,0,1.0);
  text-shadow: 0px 1px 0px rgba(255,255,255,0.3);
}
#phantomKnob-stacks_in_10994 #nav-stacks_in_10994 li#lr2-stacks_in_10994 div{
/*  left: -30px;*/
}

/* ------------------ NUMBER OF MENU ITEMS ------------------------*/
#phantomButtons-stacks_in_10994 .container-stacks_in_10994 #editModeInput-stacks_in_10994 li {
  display: none;
}
.buttonsNone-stacks_in_10994 li.p7 {
  display: inline-block !important;
}
/* ------------------ SHOW ICONS ------------------------*/
#showIcons-stacks_in_10994 {
  width: 100%;
  -webkit-transition: height 1s ease-in-out;
  -moz-transition: height 1s ease-in-out;
  -o-transition: height 1s ease-in-out;
  transition: height 1s ease-in-out;
  height: px;
  border: none;
  border-top: 5px solid #eee;
  border-bottom: 5px solid #eee;
  overflow: hidden;
}

/*---------------------- popBox --------------------*/
/*.stacks_in, .stacks_out, .stacks_top {
  overflow: visible !important;
}*/
/*---------------------- Cinema --------------------*/
@media (max-width: 700px) {
  .semantic-content {
    top: 38px !important;
    z-index: 9001 !important;
  }
}
@media (min-width: 700px) {
  .semantic-content .modal-inner {
    top: 100px !important;
  }
  .semantic-content .modal-close:after {
    top: 110px !important;
  }
}
@media (max-width: 600px) {
  .mqw {
    zoom: .9;
  }
}
@media (max-width: 500px) {
  .mqw {
    zoom: .8;
  }
}
@media (max-width: 400px) {
  .mqw {
    zoom: .7;
  }
}
@media (max-width: 1024px) {
  #stacks_in_10994 .logoWrap .logoImage {
    margin-left: 15px;
  }
}
@media (max-width: 767px) {
  #stacks_in_10994 .logoWrap .logoImage {
    max-width: 80px;
  }
}

.fa-custom1, .fa-custom2, .fa-custom3, .fa-custom4, .fa-custom5, .fa-custom6, .fa-custom7, .fa-custom8, .fa-custom9, .fa-custom10 {
  min-height: 15px;
  padding-left: 15px;
  display: inline-block !important;
  background-size: auto 100%;
  background-repeat: no-repeat !important;
}
/* Bootstrap */
#stacks_in_10994 .container:before,
#stacks_in_10994 .container:after,
#stacks_in_10994 .row:before,
#stacks_in_10994 .row:after {
  display: table;
  content: " ";
}
#stacks_in_10994 .container:after,
#stacks_in_10994 .row:after {
  clear: both;
}
.itemCol {float: left; width: 220px; color: #555; line-height: 190%;}
.itemCol i {font-size: 24px; width: 25px;}
.item-stacks_in_11079 {
	float: left;
	display: inline-block;
	width: 300px;
	/**/width: 100%;/**/
	height: auto;
}
@media all and (max-width: 500px) {
	.item-stacks_in_11079 {
		/**/width: 100%;/**/
	}
}/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_11533 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_11533 .theDivider1,
#simpleDivider_stacks_in_11533 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_11533 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_11533.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_11533.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11533 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_11533.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_11533.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_11533.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11533.bgImageOn .theDivider1 img {
	display: block;
}

.item-stacks_in_11602 {
	float: left;
	display: inline-block;
	width: 300px;
	/**/width: 100%;/**/
	height: auto;
}
@media all and (max-width: 500px) {
	.item-stacks_in_11602 {
		/**/width: 100%;/**/
	}
}/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_11603 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_11603 .theDivider1,
#simpleDivider_stacks_in_11603 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_11603 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_11603.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_11603.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11603 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_11603.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_11603.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_11603.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11603.bgImageOn .theDivider1 img {
	display: block;
}

.item-stacks_in_11149 {
	float: left;
	display: inline-block;
	width: 300px;
	/**/width: 100%;/**/
	height: auto;
}
@media all and (max-width: 500px) {
	.item-stacks_in_11149 {
		/**/width: 100%;/**/
	}
}/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_11535 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_11535 .theDivider1,
#simpleDivider_stacks_in_11535 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_11535 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_11535.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_11535.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11535 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_11535.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_11535.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_11535.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11535.bgImageOn .theDivider1 img {
	display: block;
}

.item-stacks_in_11671 {
	float: left;
	display: inline-block;
	width: 300px;
	/**/width: 100%;/**/
	height: auto;
}
@media all and (max-width: 500px) {
	.item-stacks_in_11671 {
		/**/width: 100%;/**/
	}
}/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_11672 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_11672 .theDivider1,
#simpleDivider_stacks_in_11672 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_11672 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_11672.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_11672.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11672 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_11672.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_11672.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_11672.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11672.bgImageOn .theDivider1 img {
	display: block;
}

.item-stacks_in_11016 {
	float: left;
	display: inline-block;
	width: 300px;
	/**/width: 100%;/**/
	height: auto;
}
@media all and (max-width: 500px) {
	.item-stacks_in_11016 {
		/**/width: 100%;/**/
	}
}/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_11534 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_11534 .theDivider1,
#simpleDivider_stacks_in_11534 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_11534 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_11534.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_11534.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11534 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_11534.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_11534.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_11534.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11534.bgImageOn .theDivider1 img {
	display: block;
}

.item-stacks_in_11740 {
	float: left;
	display: inline-block;
	width: 300px;
	/**/width: 100%;/**/
	height: auto;
}
@media all and (max-width: 500px) {
	.item-stacks_in_11740 {
		/**/width: 100%;/**/
	}
}/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_11741 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_11741 .theDivider1,
#simpleDivider_stacks_in_11741 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_11741 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_11741.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_11741.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11741 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_11741.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_11741.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_11741.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11741.bgImageOn .theDivider1 img {
	display: block;
}

.item-stacks_in_11848 {
	float: left;
	display: inline-block;
	width: 300px;
	/**/width: 100%;/**/
	height: auto;
}
@media all and (max-width: 500px) {
	.item-stacks_in_11848 {
		/**/width: 100%;/**/
	}
}/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_11849 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_11849 .theDivider1,
#simpleDivider_stacks_in_11849 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_11849 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_11849.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_11849.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11849 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_11849.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_11849.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_11849.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11849.bgImageOn .theDivider1 img {
	display: block;
}

/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_11297 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_11297 .theDivider1,
#simpleDivider_stacks_in_11297 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_11297 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_11297.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_11297.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11297 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_11297.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_11297.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_11297.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11297.bgImageOn .theDivider1 img {
	display: block;
}

@media only screen and (min-width:0px){#stacks_in_11303{}}

/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_11296 {
	width: 100%;
	clear: both;
	padding-top: 20px;
	padding-bottom: 20px;
}
#simpleDivider_stacks_in_11296 .theDivider1,
#simpleDivider_stacks_in_11296 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_11296 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_11296.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_11296.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11296 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_11296.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_11296.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_11296.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_11296.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_11812_1{visibility:hidden}

#stacks_in_11812_2 {
	margin:  20px;
}
#stacks_in_11812_6{visibility:hidden}

#stacks_in_11812_7 {
	margin:  20px;
}
#stacks_in_10986_3{visibility:hidden}
#stacks_in_10986_6 .textalign_wrap {
margin-left: auto; margin-right: auto;
text-align: center;
/*Custom CSS;*/
}

#stacks_in_10986_6 .textalign {
text-align: center;

display: inline-block;















/*Custom CSS;*/
}

#stacks_in_10986_6 .textalign a {

}

#stacks_in_10986_6 .textalign a:visited {

}

#stacks_in_10986_6 .textalign a:hover {

}

#stacks_in_10986_6 .textalign a:active {

}#stacks_in_10986_12{visibility:hidden}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_10986_13 {
	width: 100%;
	clear: both;
	padding-top: 15px;
	padding-bottom: 15px;
}
#simpleDivider_stacks_in_10986_13 .theDivider1,
#simpleDivider_stacks_in_10986_13 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_10986_13 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_10986_13.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_10986_13.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_10986_13 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_10986_13.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_10986_13.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_10986_13.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_10986_13.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_10986_14 .textalign_wrap {
margin-left: auto; margin-right: auto;
text-align: center;
/*Custom CSS;*/
}

#stacks_in_10986_14 .textalign {
text-align: center;

display: inline-block;















/*Custom CSS;*/
}

#stacks_in_10986_14 .textalign a {

}

#stacks_in_10986_14 .textalign a:visited {

}

#stacks_in_10986_14 .textalign a:hover {

}

#stacks_in_10986_14 .textalign a:active {

}/* 
 * Facebook Connect
 * Author: Jeremy Hawes
 * Version: 2.0.2
 * Support: 1littledesigner.com
 * Description: Facebook buttons (like, send, follow), page comments, embedded posts & embedded pages
 */


	.fb-like {
		top: 4px;
		margin-bottom: 5px;
	}
	#wrapper_facebookConnect_stacks_in_10986_15 {
	    min-height: 10px;
	    
	    
	        margin-bottom: -12px;
	    
	    padding-bottom: 15px;
	}




	


/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_10986_42 {
	width: 100%;
	clear: both;
	padding-top: 15px;
	padding-bottom: 15px;
}
#simpleDivider_stacks_in_10986_42 .theDivider1,
#simpleDivider_stacks_in_10986_42 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_10986_42 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_10986_42.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_10986_42.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_10986_42 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_10986_42.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_10986_42.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_10986_42.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_10986_42.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_10986_20{visibility:hidden}
#stacks_in_10986_23 .textalign_wrap {
margin-left: auto; margin-right: auto;
text-align: center;
/*Custom CSS;*/
}

#stacks_in_10986_23 .textalign {
text-align: center;

display: inline-block;















/*Custom CSS;*/
}

#stacks_in_10986_23 .textalign a {

}

#stacks_in_10986_23 .textalign a:visited {

}

#stacks_in_10986_23 .textalign a:hover {

}

#stacks_in_10986_23 .textalign a:active {

}#stacks_in_10986_29{visibility:hidden}
/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_10986_30 {
	width: 100%;
	clear: both;
	padding-top: 15px;
	padding-bottom: 15px;
}
#simpleDivider_stacks_in_10986_30 .theDivider1,
#simpleDivider_stacks_in_10986_30 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_10986_30 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_10986_30.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_10986_30.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_10986_30 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_10986_30.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_10986_30.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_10986_30.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_10986_30.bgImageOn .theDivider1 img {
	display: block;
}

#stacks_in_10986_31 .textalign_wrap {
margin-left: auto; margin-right: auto;
text-align: center;
/*Custom CSS;*/
}

#stacks_in_10986_31 .textalign {
text-align: center;

display: inline-block;















/*Custom CSS;*/
}

#stacks_in_10986_31 .textalign a {

}

#stacks_in_10986_31 .textalign a:visited {

}

#stacks_in_10986_31 .textalign a:hover {

}

#stacks_in_10986_31 .textalign a:active {

}/* 
 * Facebook Connect
 * Author: Jeremy Hawes
 * Version: 2.0.2
 * Support: 1littledesigner.com
 * Description: Facebook buttons (like, send, follow), page comments, embedded posts & embedded pages
 */


	.fb-like {
		top: 4px;
		margin-bottom: 5px;
	}
	#wrapper_facebookConnect_stacks_in_10986_32 {
	    min-height: 10px;
	    
	    
	        margin-bottom: -12px;
	    
	    padding-bottom: 15px;
	}




	


/*
 * Simple Divider Pro
 * AUTHOR: JEREMY HAWES
 * URL: http://www.onelittledesigner.com/rapdidweaver-stack/simple-divider/
 * Support: support@1littledesigner.com
 * Version 1.4.2
 */

#simpleDivider_stacks_in_10986_43 {
	width: 100%;
	clear: both;
	padding-top: 15px;
	padding-bottom: 15px;
}
#simpleDivider_stacks_in_10986_43 .theDivider1,
#simpleDivider_stacks_in_10986_43 .theDivider2 {
	width: inherit;
}
#simpleDivider_stacks_in_10986_43 .theDivider1 {
	height: 0px;
	border-top-style: solid;
	border-bottom-style: solid;
}
#simpleDivider_stacks_in_10986_43.transparentOff .theDivider1 {
	border-top-width: 1px;
	border-bottom-width: 1px;
	border-top-color: #CCCCCC;
	border-bottom-color: #FFFFFF;
}
#simpleDivider_stacks_in_10986_43.transparentOn .theDivider1 {
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_10986_43 .theDivider2 {
	height: 4px;
}
#simpleDivider_stacks_in_10986_43.transparentOff .theDivider2 {
	background-color: #E0E0E0;
}
#simpleDivider_stacks_in_10986_43.transparentOn .theDivider2 {
	background-color: transparent;
}
#simpleDivider_stacks_in_10986_43.bgImageOn .theDivider2 {
	background: transparent url() repeat;
	overflow: visible;
	border-width: 0;
	border-color: none;
}
#simpleDivider_stacks_in_10986_43.bgImageOn .theDivider1 img {
	display: block;
}

