/* time taken: 29 ms */
/*
YUI 3.18.1 (build f7e7bcb)
Copyright 2014 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/

html{color:#000;background:#FFF}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}ol,ul{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit;*font-size:100%}legend{color:#000}#yui3-css-stamp.cssreset{display:none}

@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.hinge {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

@-webkit-keyframes 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 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);
  }
}

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

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

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

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

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

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

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

@-webkit-keyframes pulse {
  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 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);
  }
}

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

@-webkit-keyframes 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 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);
  }
}

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

@-webkit-keyframes 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 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);
  }
}

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

@-webkit-keyframes 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 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);
  }
}

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

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

@-webkit-keyframes 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 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%);
  }
}

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

@-webkit-keyframes 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% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes 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% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}

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

@-webkit-keyframes 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 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);
  }
}

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

@-webkit-keyframes 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 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);
  }
}

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

@-webkit-keyframes 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 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);
  }
}

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

@-webkit-keyframes 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 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);
  }
}

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

@-webkit-keyframes 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 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);
  }
}

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

@-webkit-keyframes 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 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);
  }
}

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

@-webkit-keyframes 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 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);
  }
}

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

@-webkit-keyframes 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 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);
  }
}

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

@-webkit-keyframes 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 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);
  }
}

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

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

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

@keyframes 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);
  }
}

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

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

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

@keyframes 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);
  }
}

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

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

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

@keyframes 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);
  }
}

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

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

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

@keyframes 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);
  }
}

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

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

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

@keyframes 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);
  }
}

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

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

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

@keyframes 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);
  }
}

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

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

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

@keyframes 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);
  }
}

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

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

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

@keyframes 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);
  }
}

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

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

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

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

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

@keyframes 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);
  }
}

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

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

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

@keyframes 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);
  }
}

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

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

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

@keyframes 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);
  }
}

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

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

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

@keyframes 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);
  }
}

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

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

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

@keyframes 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);
  }
}

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

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

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

@keyframes 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);
  }
}

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

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

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

@keyframes 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);
  }
}

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

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

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

@keyframes 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);
  }
}

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

@-webkit-keyframes 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 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.flip {
  -webkit-backface-visibility: visible;
  -ms-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-animation-name: flip;
  animation-name: flip;
}

@-webkit-keyframes 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 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;
  }
}

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

@-webkit-keyframes 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 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;
  }
}

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

@-webkit-keyframes 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 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;
  }
}

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

@-webkit-keyframes 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 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;
  }
}

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

@-webkit-keyframes 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 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;
  }
}

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

@-webkit-keyframes 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 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;
  }
}

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

@-webkit-keyframes 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 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;
  }
}

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

@-webkit-keyframes 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 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;
  }
}

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

@-webkit-keyframes 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 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;
  }
}

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

@-webkit-keyframes 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 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;
  }
}

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

@-webkit-keyframes 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 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;
  }
}

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

@-webkit-keyframes 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 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;
  }
}

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

@-webkit-keyframes 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 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;
  }
}

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

@-webkit-keyframes 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 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;
  }
}

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

@-webkit-keyframes 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 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;
  }
}

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

@-webkit-keyframes 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 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;
  }
}

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

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

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

@keyframes 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);
  }
}

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

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

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

@keyframes 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);
  }
}

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

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

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

@keyframes 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);
  }
}

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

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

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

@keyframes 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);
  }
}

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

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

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

@keyframes 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);
  }
}

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

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

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

@keyframes 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);
  }
}

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

@-webkit-keyframes 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);
    opacity: 1;
    -webkit-transform-origin: top left;
    transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
  }

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

@keyframes 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);
    opacity: 1;
    -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;
  }

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

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

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

@-webkit-keyframes 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 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);
  }
}

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

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

@-webkit-keyframes 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 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);
  }
}

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

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  color: #3a3a39;
  background: #fccd2c;
}
html.skin-layout-white {
  background: #f7f8f9;
}
body {
  font-family: 'Interstate', sans-serif;
  height: 100%;
  font-size: 17px;
  line-height: 28px;
}
body.is-fixed {
  overflow: hidden;
}
a {
  -webkit-transition: color 300ms ease;
  transition: color 300ms ease;
  text-decoration: none;
  color: #232323;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
a:hover,
a:focus,
a:active {
  color: #232323;
}
strong,
b {
  font-family: 'Interstate-Bold', sans-serif;
  font-weight: normal;
}
h1 {
  font-family: 'Interstate-Bold', sans-serif;
  font-weight: normal;
  color: #fccd2c;
  line-height: 1;
  margin-bottom: 20px;
  font-size: 12.5vw;
}
@media (min-width: 33.0625em) {
  h1 {
    font-size: 7.5vw;
  }
}
@media (min-width: 64.0625em) {
  h1 {
    font-size: 180px;
  }
}
h2 {
  font-family: 'Interstate-Bold', sans-serif;
  font-weight: normal;
  color: #fccd2c;
  line-height: 1;
  margin-bottom: 15px;
  font-size: 11vw;
}
@media (min-width: 33.0625em) {
  h2 {
    font-size: 6vw;
    margin-bottom: 30px;
  }
}
@media (min-width: 64.0625em) {
  h2 {
    font-size: 65px;
    margin-bottom: 48px;
  }
}
h3 {
  font-family: 'Interstate-Bold', sans-serif;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 10px;
  font-size: 5vw;
}
@media (min-width: 33.0625em) {
  h3 {
    font-size: 3vw;
    margin-bottom: 15px;
  }
}
@media (min-width: 64.0625em) {
  h3 {
    font-size: 36px;
    margin-bottom: 24px;
  }
}
p {
  margin-bottom: 10px;
}
p + h2 {
  margin-top: 35px;
}
p + h3 {
  margin-top: 25px;
}
.btn {
  font-family: 'Interstate-Bold', sans-serif;
  font-weight: normal;
  position: relative;
  cursor: pointer;
  display: inline-block;
  color: #fccd2c;
  background: #3a3a39;
  z-index: 0;
  padding: 17px 40px;
}
.btn:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  z-index: -1;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  background: #626361;
}
.btn:hover,
.btn:active,
.btn:focus {
  color: #fccd2c;
}
.btn:hover:before,
.btn:active:before,
.btn:focus:before {
  width: 100%;
}
.btn-round {
  text-align: center;
  display: block;
  color: #f7f8f9;
  padding: 10px;
  border-radius: 30px;
  border: 1px solid #f7f8f9;
  background: #3a3a39;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (min-width: 48.0625em) {
  .btn-round {
    padding: 15px;
    border-radius: 30px;
  }
}
@media (min-width: 80.0625em) {
  .btn-round {
    padding: 20px;
    border-radius: 40px;
  }
}
.btn-round:hover,
.btn-round:focus,
.btn-round:active {
  background: #fccd2c;
  color: #232323;
}

@font-face {
  font-family: "Interstate";
  src: url("/assets/fonts/d8612af1-3daa-4d49-940c-72424499dce4-2.eot");
  src: url("/assets/fonts/d8612af1-3daa-4d49-940c-72424499dce4-2.eot?") format("embedded-opentype"), url("/assets/fonts/d8612af1-3daa-4d49-940c-72424499dce4-3.woff") format("woff"), url("/assets/fonts/d8612af1-3daa-4d49-940c-72424499dce4-1.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "Interstate-Italic";
  src: url("/assets/fonts/db2dc2c9-e02f-45ff-a30c-d3de74e5661e-2.eot");
  src: url("/assets/fonts/db2dc2c9-e02f-45ff-a30c-d3de74e5661e-2.eot?") format("embedded-opentype"), url("/assets/fonts/db2dc2c9-e02f-45ff-a30c-d3de74e5661e-3.woff") format("woff"), url("/assets/fonts/db2dc2c9-e02f-45ff-a30c-d3de74e5661e-1.ttf") format("truetype");
  font-style: italic;
  font-weight: normal;
}
@font-face {
  font-family: "Interstate-Light";
  src: url("/assets/fonts/51012d22-c228-4858-8e44-7d338468d003-2.eot");
  src: url("/assets/fonts/51012d22-c228-4858-8e44-7d338468d003-2.eot?") format("embedded-opentype"), url("/assets/fonts/51012d22-c228-4858-8e44-7d338468d003-3.woff") format("woff"), url("/assets/fonts/51012d22-c228-4858-8e44-7d338468d003-1.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}
@font-face {
  font-family: "InterstateLight";
  src: url("/assets/fonts/f4ce22b4-9095-48c2-ac73-d56f54a19a74-2.eot");
  src: url("/assets/fonts/f4ce22b4-9095-48c2-ac73-d56f54a19a74-2.eot?") format("embedded-opentype"), url("/assets/fonts/f4ce22b4-9095-48c2-ac73-d56f54a19a74-3.woff") format("woff"), url("/assets/fonts/f4ce22b4-9095-48c2-ac73-d56f54a19a74-1.ttf") format("truetype");
  font-style: italic;
  font-weight: normal;
}
@font-face {
  font-family: "Interstate-Bold";
  src: url("/assets/fonts/ec453a9c-08b8-48f4-b89b-7c4ceffa6e65-2.eot");
  src: url("/assets/fonts/ec453a9c-08b8-48f4-b89b-7c4ceffa6e65-2.eot?") format("embedded-opentype"), url("/assets/fonts/ec453a9c-08b8-48f4-b89b-7c4ceffa6e65-3.woff") format("woff"), url("/assets/fonts/ec453a9c-08b8-48f4-b89b-7c4ceffa6e65-1.ttf") format("truetype");
  font-style: normal;
  font-weight: normal;
}

/**
 * Theme Name: Intro
 * Version: 1.0.0
 * Theme URL: http://sequencejs.com/themes/intro/
 *
 * The Sequence.js introduction theme used to briefly describe how Sequence.js works
 *
 * This theme is powered by Sequence.js - The
 * responsive CSS animation framework for creating unique sliders,
 * presentations, banners, and other step-based applications.
 *
 * Author: Ian Lunn
 * Author URL: http://ianlunn.co.uk/
 *
 * Theme License: http://sequencejs.com/licenses/#free-theme
 * Sequence.js Licenses: http://sequencejs.com/licenses/
 *
 * Copyright © 2015 Ian Lunn Design Limited unless otherwise stated.
 */
.seq {
  box-sizing: border-box;
  position: relative;
  /* Dimensions */
  -webkit-text-size-adjust: none;
  width: 100%;
  height: 460px;
  max-width: 1200px;
  /* Center the Sequence container on the page */
  overflow: hidden;
  margin: 0 auto;
  /* Some basic styles */
  padding: 0;
  font-family: "Montserrat", sans-serif;
  background: white;
  border: #979797 solid 1px;
  border-bottom: none; }
  .seq:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 10;
    width: 100%;
    height: 1.625em;
    background: #e9e9e9; }
  .seq:after {
    content: "";
    position: absolute;
    z-index: 10;
    top: 6px;
    left: 0.625em;
    height: 14px;
    width: 54px;
    background-image: url('../images/browser-buttons.svg');
    background-size: contain;
    background-repeat: no-repeat; }
  .seq .seq-nav {
    display: none; }
  .seq .seq-screen, .seq .seq-canvas, .seq .seq-canvas > * {
    margin: 0;
    padding: 0;
    list-style: none; }
  .seq .seq-canvas {
    position: absolute;
    height: 100%;
    width: 100%; }
    .seq .seq-canvas:after {
      display: none;
      content: "small"; }
    .seq .seq-canvas > * {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      color: white;
      opacity: 0;
      line-height: 1.4; }
      .seq .seq-canvas > *:after {
        content: "";
        position: absolute;
        z-index: -1;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba(0, 0, 0, .6);
        opacity: 0;
        -webkit-transform: translateZ(20px);
        transform: translateZ(20px);
        -webkit-transition-duration: .25s;
        transition-duration: .25s;
        -webkit-transition-delay: .25s;
        transition-delay: .25s;
        -webkit-transition-property: opacity, z-index;
        transition-property: opacity, z-index; }
    .seq .seq-canvas .seq-in {
      opacity: 1; }
  .seq.seq-active {
    overflow: hidden; }
    .seq.seq-active .seq-preloader {
      visibility: visible;
      background: #e9e9e9; }
    .seq.seq-active .seq-preloader.seq-preloaded {
      visibility: hidden; }
  .seq .seq-valign {
    font-size: 0; }
  .seq .seq-valign:before {
    content: "";
    height: 100%; }
  .seq .seq-valign:before, .seq .seq-valign > div {
    display: inline-block;
    vertical-align: middle; }
  .seq .seq-valign > div {
    font-size: 16px;
    font-size: 1rem; }
  .seq .seq-code-pane {
    box-sizing: border-box;
    position: absolute;
    z-index: 100;
    bottom: 0;
    left: 0;
    right: 0;
    background: black;
    /* Place the code pane off-screen at the bottom - it will animate in
     * from the bottom
     */
    color: white;
    -webkit-transform: translateY(100%) translateZ(20px);
    transform: translateY(100%) translateZ(20px);
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in; }
    .seq .seq-code-pane .seq-step-icon {
      position: absolute;
      /* Vertically align the icon */
      z-index: 20;
      top: 50%;
      /* Position the icon in the center of the gutter */
      margin-top: -0.9375em;
      left: -2.2em; }
    .seq .seq-code-pane span {
      display: block; }
  .seq .seq-in .seq-code-pane {
    -webkit-transition-duration: .25s;
    transition-duration: .25s; }
  .seq .seq-code-pane-snap-shut .seq-code-pane {
    -webkit-transition-duration: 0s !important;
    transition-duration: 0s !important; }
  .seq .seq-in.seq-code-pane-open:after {
    z-index: 10;
    opacity: 1;
    -webkit-transform: translateZ(20px);
    transform: translateZ(20px); }
    .seq .seq-in.seq-code-pane-open .seq-code-pane {
      -webkit-transform: translateY(0) translateZ(20px);
      transform: translateY(0) translateZ(20px); }
  .seq .seq-view-code {
    position: relative;
    z-index: 1;
    cursor: pointer;
    display: block;
    width: 100%;
    height: 35px;
    height: 2.1875rem;
    margin: 0;
    padding: 8px 0;
    padding: 0.5rem 0;
    text-align: center;
    background: #303030;
    border: none;
    color: white;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-size: 1rem;
    /*
     * Place the view-code button on top of the code-pane so it appears when
     * the code pane is closed
     */
    line-height: 1;
    margin-top: -35px;
    margin-top: -2.1875rem; }
    .seq .seq-view-code:focus {
      outline: dotted gray 1px; }
    .seq .seq-view-code:active {
      background: black; }
    .seq .seq-view-code:focus i, .seq .seq-view-code:hover i {
      color: #16b557; }
    .seq .seq-view-code i {
      /* Override fontawesome to stop 1px move when parent is animated */
      color: #36c26f;
      -webkit-transform: none;
      transform: none; }
    .seq .seq-view-code .seq-step-icon {
      position: relative;
      top: 0;
      left: 0;
      -webkit-transform: none;
      transform: none; }
  .seq .seq-code {
    width: 100%;
    padding: 14px 0;
    /* Add a fake gutter to the left */
    padding: 0.875rem 0;
    border-left-color: #303030;
    border-left-style: solid;
    border-left-width: 40px;
    border-left-width: 2.5rem; }
  .seq .seq-code-block {
    position: relative;
    padding: 0 0.5em; }
    .seq .seq-code-block code {
      display: block;
      line-height: 1.6;
      font-family: 'Droid Sans Mono', Courier New, Courier, Lucida Sans Typewriter, Lucida Typewriter, monospace;
      /* Smooth fonts and prevent pixelation during transforms */
      font-size: 0.75em;
      -webkit-backface-visibility: hidden;
      backface-visibility: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale; }
    .seq .seq-code-block span {
      line-height: 1.6; }
  .seq .seq-code-block + .seq-code-block {
    margin-top: 1em; }
  .seq .seq-code-1 {
    margin-left: 1em; }
  .seq .seq-content {
    box-sizing: border-box;
    overflow: hidden;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    /* Make room for the top bar */
    bottom: 0;
    padding-top: 26px;
    /* Make room for the un-open code pane */
    padding-top: 1.625rem;
    padding-bottom: 35px;
    padding-bottom: 2.1875rem;
    text-align: center;
    background: white; }
    .seq .seq-content code {
      position: relative; }
  .seq .seq-step {
    position: relative;
    font-family: Ubuntu, sans-serif; }
    .seq .seq-step p {
      font-weight: 300; }
  .seq em, .seq .seq-content code {
    background: white;
    font-style: normal;
    padding: 0.25em;
    font-family: 'Droid Sans Mono', Courier New, Courier, Lucida Sans Typewriter, Lucida Typewriter, monospace; }
  .seq .seq-step-icon {
    display: inline-block;
    width: 1.625em;
    height: 1.625em;
    margin: 0;
    color: #36c26f;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-style: normal;
    background: transparent;
    border: solid 2px #36c26f;
    border-radius: 50%;
    text-align: center;
    line-height: 1.625; }
  .seq sup.seq-step-icon {
    width: 1em;
    height: 1em;
    line-height: 100%;
    margin-left: 2px;
    padding: 0.15em;
    font-size: 10px;
    border: solid 1px #36c26f; }
  .seq .seq-instruction {
    max-width: 540px;
    margin-left: 0.625em;
    margin-right: 0.625em;
    padding: 1em;
    color: black;
    background-color: #f8f8f8;
    text-align: left; }
    .seq .seq-instruction > h3:first-of-type {
      margin-top: 0; }
    .seq .seq-instruction h3 {
      margin-top: 1em;
      margin-bottom: 0;
      font-size: 1em;
      font-weight: 400;
      color: #282828; }
    .seq .seq-instruction p {
      margin-bottom: 0;
      color: #484848;
      line-height: 1.6;
      font-size: 0.75em; }
    .seq .seq-instruction a {
      color: #2aa0d4;
      text-decoration: none; }
      .seq .seq-instruction a:focus, .seq .seq-instruction a:hover {
        color: #0890ca; }
    .seq .seq-instruction .seq-tip {
      font-size: 0.6875em; }
      .seq .seq-instruction .seq-tip.seq-bulb:before {
        content: "";
        display: inline-block;
        vertical-align: text-bottom;
        height: 1.33333em;
        width: 1.33333em;
        margin-right: 0.33333em;
        line-height: 1;
        background-image: url("../images/bulb.svg");
        background-repeat: no-repeat;
        background-position: 50% 50%;
        background-size: contain; }
  .seq .seq-instruction-icon {
    width: 12px;
    height: 30px; }
  .seq .seq-title {
    margin-top: 0.5em;
    margin-bottom: 1em;
    text-align: center;
    color: #282828; }
    .seq .seq-title > * {
      display: inline-block;
      vertical-align: middle;
      margin: 0; }
    .seq .seq-title h2 {
      padding: 0 0.5em;
      font-size: 1em;
      font-weight: 700;
      color: #484848;
      text-transform: uppercase;
      line-height: 1; }
    .seq .seq-title object img {
      width: 12px;
      height: 30px; }
  .seq .seq-examples {
    margin: 0;
    margin-top: 8px;
    margin-top: 0.5rem;
    padding: 0;
    /* Remove 4px gap */
    text-align: center;
    font-size: 0; }
    .seq .seq-examples li {
      box-sizing: border-box;
      overflow: hidden;
      display: inline-block;
      vertical-align: middle;
      width: 30.66667%;
      margin: 0 1%;
      padding: 0.5em;
      list-style: none;
      font-size: 14px;
      font-size: 0.875rem; }
      .seq .seq-examples li:nth-child(3n+1) {
        margin-left: 0; }
      .seq .seq-examples li:nth-child(3n+3) {
        margin-right: 0; }
      .seq .seq-examples li p {
        margin: 0;
        margin-top: 0.25em;
        padding: 0;
        line-height: 1;
        font-size: 0.75em;
        font-family: Ubuntu, sans-serif;
        font-weight: 700; }
      .seq .seq-examples li img {
        width: 100%;
        height: auto; }
      .seq .seq-examples li object {
        width: 100%;
        max-width: 42px;
        height: auto; }
        .seq .seq-examples li object img {
          width: 42px;
          height: 42px; }
  .seq .seq-browsers {
    margin: 0; }
    .seq .seq-browsers li {
      width: 18.4%; }
  .seq .seq-content {
    -webkit-transform: translateX(100%) translateZ(1px);
    transform: translateX(100%) translateZ(1px);
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-property: transform;
    transition-property: transform;
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in; }
  .seq .seq-step3 .seq-content {
    -webkit-transform: translateZ(1px) scale(0);
    transform: translateZ(1px) scale(0); }
  .seq .seq-transform {
    /* Set up the transform animation now, then we'll initiate it in .seq-in */
    -webkit-transform: translateX(-100px) translateZ(0);
    transform: translateX(-100px) translateZ(0);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    /* Example of an element being transformed */ }
    @-webkit-keyframes transform {
  .seq .seq-transform 100% {
    -webkit-transform: translateX(100px) translateZ(0);
    transform: translateX(100px) translateZ(0); } }
    @keyframes transform {
  .seq .seq-transform 100% {
    -webkit-transform: translateX(100px) translateZ(0);
    transform: translateX(100px) translateZ(0); } }
  .seq .seq-scale {
    /* Set up the transform animation now, then we'll initiate it in .seq-in */
    -webkit-transform: translateZ(0) scale(0);
    transform: translateZ(0) scale(0);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    /* Example of an element being scaled */ }
    @-webkit-keyframes scale {
  .seq .seq-scale 100% {
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1); } }
    @keyframes scale {
  .seq .seq-scale 100% {
    -webkit-transform: translateZ(0) scale(1);
    transform: translateZ(0) scale(1); } }
  .seq .seq-rotate {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    /* Example of an element being rotated */ }
    @-webkit-keyframes rotate {
  .seq .seq-rotate 100% {
    -webkit-transform: translateZ(0) rotate(720deg);
    transform: translateZ(0) rotate(720deg); } }
    @keyframes rotate {
  .seq .seq-rotate 100% {
    -webkit-transform: translateZ(0) rotate(720deg);
    transform: translateZ(0) rotate(720deg); } }
  .seq .seq-fade {
    /* Set up the transform animation now, then we'll initiate it in .seq-in */
    opacity: 1;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-direction: alternate;
    animation-direction: alternate;
    /* Example of an element being scaled */ }
    @-webkit-keyframes fade {
  .seq .seq-fade 100% {
    opacity: 0; } }
    @keyframes fade {
  .seq .seq-fade 100% {
    opacity: 0; } }
  .seq .seq-threed {
    /* Set up the transform animation now, then we'll initiate it in .seq-in */
    -webkit-transform: translateZ(0) rotateY(0);
    transform: translateZ(0) rotateY(0);
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: .5s;
    animation-delay: .5s;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
    -webkit-animation-property: transform;
    animation-property: transform;
    /* Example of an element being 3D */ }
    @-webkit-keyframes threeD {
  .seq .seq-threed 100% {
    -webkit-transform: translateZ(0) rotateY(360deg);
    transform: translateZ(0) rotateY(360deg); } }
    @keyframes threeD {
  .seq .seq-threed 100% {
    -webkit-transform: translateZ(0) rotateY(360deg);
    transform: translateZ(0) rotateY(360deg); } }
  .seq .seq-doors {
    overflow: hidden;
    position: relative;
    display: inline-block;
    width: 42px;
    height: 42px;
    margin: 0 auto; }
    .seq .seq-doors:before, .seq .seq-doors:after {
      content: "";
      position: absolute;
      display: block;
      width: 21px;
      height: 42px;
      background: #36c26f;
      -webkit-animation-duration: 1s;
      animation-duration: 1s;
      -webkit-animation-direction: alternate;
      animation-direction: alternate;
      -webkit-animation-iteration-count: infinite;
      animation-iteration-count: infinite;
      -webkit-animation-timing-function: ease-in-out;
      animation-timing-function: ease-in-out; }
    .seq .seq-doors:before {
      left: 0;
      -webkit-transform: translateX(-100%) translateZ(0);
      transform: translateX(-100%) translateZ(0); }
    .seq .seq-doors:after {
      right: 0;
      -webkit-transform: translateX(100%) translateZ(0);
      transform: translateX(100%) translateZ(0); }
    @-webkit-keyframes door-open {
  .seq .seq-doors 50%, .seq .seq-doors 100% {
    -webkit-transform: translateX(0) translateZ(0);
    transform: translateX(0) translateZ(0); } }
    @keyframes door-open {
  .seq .seq-doors 50%, .seq .seq-doors 100% {
    -webkit-transform: translateX(0) translateZ(0);
    transform: translateX(0) translateZ(0); } }
  .seq .seq-touch {
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    width: 160%;
    height: 100%;
    max-width: 640px;
    max-height: 640px;
    text-align: left;
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(0);
    transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(0);
    -webkit-animation-duration: .35s;
    animation-duration: .35s;
    -webkit-animation-delay: 1.8s;
    animation-delay: 1.8s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards; }
    @-webkit-keyframes touch {
  .seq .seq-touch 100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(90deg);
    transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(90deg); } }
    @keyframes touch {
  .seq .seq-touch 100% {
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(90deg);
    transform: translateX(-50%) translateY(-50%) translateZ(0) rotate(90deg); } }
    .seq .seq-touch img {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translateX(-50%) translateY(-50%);
      transform: translateX(-50%) translateY(-50%);
      max-width: 100%;
      height: auto; }
    .seq .seq-touch .seq-swipe {
      z-index: 20;
      -webkit-transform: translateX(100%) translateY(-40%) translateZ(0) rotate(-90deg);
      transform: translateX(100%) translateY(-40%) translateZ(0) rotate(-90deg);
      -webkit-animation-duration: 1.5s;
      animation-duration: 1.5s;
      -webkit-animation-delay: 1.8s;
      animation-delay: 1.8s;
      -webkit-transition-timing-function: linear;
      transition-timing-function: linear; }
      @-webkit-keyframes swipe {
  .seq .seq-touch .seq-swipe 33.3% {
    -webkit-transform: translateX(-50%) translateY(-40%) translateZ(0) rotate(-100deg);
    transform: translateX(-50%) translateY(-40%) translateZ(0) rotate(-100deg);
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out; }
  .seq .seq-touch .seq-swipe 66.6% {
    -webkit-transform: translateX(-50%) translateY(-80%) translateZ(0) rotate(-90deg);
    transform: translateX(-50%) translateY(-80%) translateZ(0) rotate(-90deg);
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear; }
  .seq .seq-touch .seq-swipe 100% {
    -webkit-transform: translateX(100%) translateY(-80%) translateZ(0) rotate(-80deg);
    transform: translateX(100%) translateY(-80%) translateZ(0) rotate(-80deg); } }
      @keyframes swipe {
  .seq .seq-touch .seq-swipe 33.3% {
    -webkit-transform: translateX(-50%) translateY(-40%) translateZ(0) rotate(-100deg);
    transform: translateX(-50%) translateY(-40%) translateZ(0) rotate(-100deg);
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out; }
  .seq .seq-touch .seq-swipe 66.6% {
    -webkit-transform: translateX(-50%) translateY(-80%) translateZ(0) rotate(-90deg);
    transform: translateX(-50%) translateY(-80%) translateZ(0) rotate(-90deg);
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear; }
  .seq .seq-touch .seq-swipe 100% {
    -webkit-transform: translateX(100%) translateY(-80%) translateZ(0) rotate(-80deg);
    transform: translateX(100%) translateY(-80%) translateZ(0) rotate(-80deg); } }
  .seq .seq-touch-title {
    box-sizing: border-box;
    position: absolute;
    z-index: 10;
    left: 50%;
    top: 50%;
    -webkit-transform: translateY(-50%) translateZ(0);
    transform: translateY(-50%) translateZ(0);
    margin: 0.5em 0;
    padding: 0 0.5em;
    color: #f96d38;
    font-size: 1em;
    /* Smooth fonts and prevent pixelation during transforms */
    font-size: 1.25em;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  .seq .seq-touch-title-1 {
    width: 28.125%;
    margin-left: -14.0625%;
    opacity: 1;
    -webkit-animation-duration: .3s;
    animation-duration: .3s;
    -webkit-animation-delay: 1.5s;
    animation-delay: 1.5s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards; }
    @-webkit-keyframes fade-out {
  .seq .seq-touch-title-1 100% {
    opacity: 0; } }
    @keyframes fade-out {
  .seq .seq-touch-title-1 100% {
    opacity: 0; } }
    .seq .seq-touch-title-1:after {
      content: "|";
      opacity: 0;
      -webkit-animation-name: blinking-cursor;
      animation-name: blinking-cursor;
      -webkit-animation-duration: .25s;
      animation-duration: .25s;
      -webkit-animation-direction: alternate;
      animation-direction: alternate;
      -webkit-animation-iteration-count: infinite;
      animation-iteration-count: infinite; }
      @-webkit-keyframes blinking-cursor {
  .seq .seq-touch-title-1:after 0% {
    opacity: 0; }
  .seq .seq-touch-title-1:after 100% {
    opacity: 1; } }
      @keyframes blinking-cursor {
  .seq .seq-touch-title-1:after 0% {
    opacity: 0; }
  .seq .seq-touch-title-1:after 100% {
    opacity: 1; } }
  .seq .seq-touch-title-2 {
    width: 45.3125%;
    margin: 0;
    padding: 0;
    padding: 0;
    overflow: hidden;
    /* Smooth fonts and prevent pixelation during transforms */
    -webkit-transform: translateX(-50%) translateY(-50%) translateZ(1px) rotate(-90deg);
    transform: translateX(-50%) translateY(-50%) translateZ(1px) rotate(-90deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
    .seq .seq-touch-title-2 p {
      display: block;
      width: 90%;
      margin: 0;
      padding: 0 5%;
      -webkit-transform: translateX(-100%) translateZ(0);
      transform: translateX(-100%) translateZ(0);
      -webkit-animation-duration: .3s;
      animation-duration: .3s;
      -webkit-animation-delay: 2.35s;
      animation-delay: 2.35s;
      -webkit-animation-fill-mode: forwards;
      animation-fill-mode: forwards; }
      @-webkit-keyframes slide-in {
  .seq .seq-touch-title-2 p 100% {
    -webkit-transform: translateX(0) translateZ(0);
    transform: translateX(0) translateZ(0); } }
      @keyframes slide-in {
  .seq .seq-touch-title-2 p 100% {
    -webkit-transform: translateX(0) translateZ(0);
    transform: translateX(0) translateZ(0); } }
  .seq .seq-browser-icon {
    display: block;
    max-width: 54px;
    max-height: 54px;
    margin: 0 auto;
    margin-bottom: 0.5em;
    -webkit-transform: translateZ(0) scale(0);
    transform: translateZ(0) scale(0);
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-timing-function: cubic-bezier(.55,1.58,.63,.99);
    transition-timing-function: cubic-bezier(.55,1.58,.63,.99);
    -webkit-transition-property: transform;
    transition-property: transform; }
  .seq .seq-browser-icon-1 {
    -webkit-transition-delay: .3s;
    transition-delay: .3s; }
  .seq .seq-browser-icon-2 {
    -webkit-transition-delay: .35s;
    transition-delay: .35s; }
  .seq .seq-browser-icon-3 {
    -webkit-transition-delay: .4s;
    transition-delay: .4s; }
  .seq .seq-browser-icon-4 {
    -webkit-transition-delay: .45s;
    transition-delay: .45s; }
  .seq .seq-browser-icon-5 {
    -webkit-transition-delay: .5s;
    transition-delay: .5s; }
  .seq .seq-browser-icon-6 {
    -webkit-transition-delay: .55s;
    transition-delay: .55s; }
  .seq .seq-browser-icon-7 {
    -webkit-transition-delay: .6s;
    transition-delay: .6s; }
  .seq .seq-logo {
    display: block;
    width: 100%;
    max-width: 240px;
    height: auto;
    margin: 0.5em auto 3em auto; }
  .seq .seq-step7 .seq-content {
    text-align: center; }
    .seq .seq-step7 .seq-instruction {
      padding-top: 2em;
      padding-bottom: 2em;
      text-align: center; }
  .seq .seq-instruction .seq-follow-on {
    margin: 0;
    font-size: 0.75em;
    text-align: center; }
  .seq a.seq-button {
    display: block;
    margin-top: 0.71429em;
    padding: 1.2em;
    color: white;
    text-align: center;
    text-transform: uppercase;
    font-size: 0.875em;
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    -webkit-transition-property: background-color;
    transition-property: background-color; }
    .seq a.seq-button:first-of-type {
      margin-left: 0; }
    .seq a.seq-button:last-of-type {
      margin-right: 0; }
    .seq a.seq-button:focus, .seq a.seq-button:hover {
      color: white; }
    .seq a.seq-button i {
      margin-left: 2px; }
  .seq .seq-button-link {
    background: #36c26f; }
    .seq .seq-button-link:focus, .seq .seq-button-link:hover {
      background: #16b557; }
  .seq .seq-button-highlight {
    background: #2aa0d4; }
    .seq .seq-button-highlight:focus, .seq .seq-button-highlight:hover {
      background: #0890ca; }
  .seq .seq-features {
    margin: 0;
    margin-top: 20px;
    margin-top: 1.25rem;
    /* Remove 4px gap */
    padding: 0;
    font-size: 0; }
    .seq .seq-features li {
      position: relative;
      margin-bottom: 0.25em;
      line-height: 1.8;
      /* Reset font-size */
      list-style: none;
      font-size: 12px;
      font-weight: 400; }
    .seq .seq-features i {
      color: #f96d38; }
    .seq .seq-features sup {
      position: absolute; }
  .seq.seq-reversed .seq-touch {
    -webkit-animation-name: touch;
    animation-name: touch; }
    .seq.seq-reversed .seq-touch-title-1 {
      -webkit-animation-name: fade-out;
      animation-name: fade-out; }
    .seq.seq-reversed .seq-touch-title-2 p {
      -webkit-animation-name: slide-in;
      animation-name: slide-in; }
    .seq.seq-reversed .seq-out .seq-touch {
      -webkit-animation-name: none;
      animation-name: none; }
      .seq.seq-reversed .seq-out .seq-touch-title-1, .seq.seq-reversed .seq-out .seq-touch-title-2 p {
        -webkit-animation-name: none;
        animation-name: none; }
  .seq .seq-in .seq-content {
    -webkit-transform: translateX(0) translateY(0) translateZ(1px);
    transform: translateX(0) translateY(0) translateZ(1px); }
    .seq .seq-in .seq-code-block {
      opacity: 1;
      -webkit-transform: translateY(0) translateZ(0);
      transform: translateY(0) translateZ(0); }
    .seq .seq-in .seq-code-block:nth-of-type(2) {
      -webkit-transition-delay: .1s;
      transition-delay: .1s; }
    .seq .seq-in .seq-code-block:nth-of-type(3) {
      -webkit-transition-delay: .2s;
      transition-delay: .2s; }
    .seq .seq-in .seq-code-block:nth-of-type(4) {
      -webkit-transition-delay: .3s;
      transition-delay: .3s; }
    .seq .seq-in.seq-step3 .seq-content {
      -webkit-transform: translateZ(1px) scale(1);
      transform: translateZ(1px) scale(1); }
    .seq .seq-in .seq-transform {
      -webkit-animation-name: transform;
      animation-name: transform; }
    .seq .seq-in .seq-scale {
      -webkit-animation-name: scale;
      animation-name: scale; }
    .seq .seq-in .seq-rotate {
      -webkit-animation-name: rotate;
      animation-name: rotate; }
    .seq .seq-in .seq-fade {
      -webkit-animation-name: fade;
      animation-name: fade; }
    .seq .seq-in .seq-threed {
      -webkit-animation-name: threeD;
      animation-name: threeD; }
    .seq .seq-in .seq-doors:before, .seq .seq-in .seq-doors:after {
      -webkit-animation-name: door-open;
      animation-name: door-open; }
    .seq .seq-in .seq-touch {
      -webkit-animation-name: touch;
      animation-name: touch; }
    .seq .seq-in .seq-swipe {
      -webkit-animation-name: swipe;
      animation-name: swipe; }
    .seq .seq-in .seq-touch-title-1 {
      -webkit-animation-name: fade-out;
      animation-name: fade-out; }
    .seq .seq-in .seq-touch-title-2 p {
      -webkit-animation-name: slide-in;
      animation-name: slide-in; }
    .seq .seq-in .seq-browser-icon {
      -webkit-transform: translateZ(0) scale(1);
      transform: translateZ(0) scale(1); }
  .seq .seq-out .seq-content {
    -webkit-transform: translateX(-100%) translateZ(1px);
    transform: translateX(-100%) translateZ(1px); }
    .seq .seq-out .seq-code-block {
      opacity: 0;
      -webkit-transform: translateY(-20px) translateZ(0);
      transform: translateY(-20px) translateZ(0);
      -webkit-transition-timing-function: ease-out;
      transition-timing-function: ease-out; }
    .seq .seq-out .seq-touch {
      -webkit-animation-name: touch;
      animation-name: touch; }
    .seq .seq-out .seq-touch-title-1 {
      -webkit-animation-name: fade-out;
      animation-name: fade-out; }
    .seq .seq-out .seq-touch-title-2 p {
      -webkit-animation-name: slide-in;
      animation-name: slide-in; }
    .seq .seq-out .seq-browser-icon {
      -webkit-transform: translateZ(0) scale(1);
      transform: translateZ(0) scale(1);
      -webkit-transition-delay: 0s;
      transition-delay: 0s; }
  .seq.seq-fallback .seq-code-pane, .seq.seq-fallback .seq-code-pane-snap-shut .seq-code-pane {
    -webkit-transform: none !important;
    transform: none !important;
    top: 100%; }
    .seq.seq-fallback .seq-in.seq-code-pane-open .seq-code-pane {
      top: auto; }
    .seq.seq-fallback .seq-touch-title-1 {
      display: none; }
    .seq.seq-fallback .seq-touch {
      left: 50%;
      top: 50%;
      width: 640px;
      height: 640px;
      margin-left: -320px;
      margin-top: -320px; }
      .seq.seq-fallback .seq-touch img {
        left: 50%;
        top: 50%;
        width: 640px;
        height: 640px;
        margin-left: -320px;
        margin-top: -320px;
        -webkit-transform: none;
        transform: none; }
    .seq.seq-fallback .seq-swipe {
      display: none; }
    .seq.seq-fallback .seq-touch-title-2 {
      width: 180px;
      margin-left: -90px;
      margin-top: -55px; }
  @media only screen and (min-width: 480px) {
  .seq .seq-small-break {
    display: none; }
  .seq .seq-instruction {
    margin-left: 5%;
    margin-right: 5%; }
    .seq .seq-instruction p {
      line-height: 1.4;
      font-size: 0.875em; }

    .seq .seq-instruction .seq-tip {
      font-size: 0.75em; } }
  @media only screen and (min-width: 600px) {
  .seq {
    height: 100%;
    min-height: 585px; }
    .seq .seq-instruction {
      padding: 2em 1.5em; }

    .seq .seq-instruction-icon {
      width: auto;
      height: auto; }

    .seq .seq-examples {
      margin-top: 16px;
      margin-top: 1rem; }
      .seq .seq-examples li {
        width: 15%; }
        .seq .seq-examples li:nth-child(3n+1) {
          margin-left: 1%; }
        .seq .seq-examples li:nth-child(3n+3) {
          margin-right: 1%; }
        .seq .seq-examples li:first-child {
          margin-left: 0; }
        .seq .seq-examples li:last-child {
          margin-right: 0; }

    .seq .seq-features li {
      font-size: 14px; } }
  @media only screen and (min-width: 640px) {
  .seq .seq-touch-title-1 {
    width: 28.4375%;
    margin-left: -14.21875%; }
  .seq .seq-touch-title-2 {
    width: 45.3125%; } }
  @media only screen and (min-width: 860px) {
  .seq.seq-fallback .seq-code-pane {
    background: black;
    border-left: #303030 solid 2.5rem;
    top: 0; }
    .seq.seq-fallback .seq-code {
      margin-left: -2.5rem; }

    .seq.seq-fallback .seq-code-pane, .seq.seq-fallback .seq-code-pane-snap-shut .seq-code-pane, .seq.seq-fallback .seq-in.seq-code-pane-open .seq-code-pane {
      top: 0; }
  .seq .seq-canvas:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: calc(30% - 2.5em);
    /* Add a fake gutter to the left */
    background: black;
    border-left-color: #303030;
    border-left-style: solid;
    border-left-width: 40px;
    border-left-width: 2.5rem; }
    .seq .seq-canvas:after {
      content: "large"; }

    .seq .seq-canvas > *:after {
      content: none; }
  .seq .seq-code {
    box-sizing: border-box;
    padding-left: 40px;
    padding-left: 2.5rem;
    padding-right: 14px;
    padding-right: 0.875rem;
    border: none; }
  .seq .seq-code-pane {
    display: block;
    top: 26px;
    top: 1.625rem;
    bottom: 0;
    left: 0;
    width: 30%;
    /* Disable code-pane opening/closing in large layout */
    background: transparent;
    -webkit-transform: translate(0);
    transform: translate(0);
    -webkit-transition: none;
    transition: none; }
    .seq .seq-code-pane code {
      font-size: 0.875em; }
  .seq .seq-view-code {
    display: none; }
  .seq .seq-code-block {
    opacity: 0;
    -webkit-transform: translateY(10px) translateZ(0);
    transform: translateY(10px) translateZ(0);
    -webkit-transition-duration: .1s, .2s;
    transition-duration: .1s, .2s;
    -webkit-transition-property: opacity, transform;
    transition-property: opacity, transform;
    -webkit-transition-timing-function: ease-out, cubic-bezier(.55,1.58,.63,.99);
    transition-timing-function: ease-out, cubic-bezier(.55,1.58,.63,.99); }
  .seq .seq-content {
    left: auto;
    bottom: 0;
    width: 70%;
    padding-top: 47px;
    /* In large layouts, the content show animate from bottom to top */
    padding-bottom: 2.9375rem;
    -webkit-transform: translateY(100%) translateZ(1px);
    transform: translateY(100%) translateZ(1px); }
  .seq .seq-in .seq-content {
    -webkit-transform: translateY(0) translateZ(1px);
    transform: translateY(0) translateZ(1px); }
  .seq .seq-out .seq-content {
    -webkit-transform: translateY(-100%) translateZ(1px);
    transform: translateY(-100%) translateZ(1px); }
  .seq .seq-instruction {
    width: 73%;
    margin-left: 10%;
    margin-right: 10%;
    padding: 1em 3.5%; }
    .seq .seq-instruction h3 {
      font-size: 1.5em; }

    .seq .seq-instruction p {
      font-size: 1em;
      line-height: 1.6; }
  .seq .seq-nav {
    display: block;
    position: absolute;
    z-index: 100;
    right: 0;
    bottom: 0.625em;
    width: 70%;
    padding: 0;
    border: none;
    color: #e9e9e9;
    text-align: center; }
    .seq .seq-nav .seq-next, .seq .seq-nav .seq-prev {
      cursor: pointer;
      padding: 0.625em;
      border: none;
      background: white;
      background: rgba(255, 255, 255, .8);
      font-size: 0.875em;
      color: #828282;
      opacity: 0.8;
      -webkit-transition-duration: .2s;
      transition-duration: .2s;
      -webkit-transition-property: opacity;
      transition-property: opacity; }
      .seq .seq-nav .seq-next:focus, .seq .seq-nav .seq-prev:focus, .seq .seq-nav .seq-next:hover, .seq .seq-nav .seq-prev:hover {
        color: #282828;
        opacity: 1; }
      .seq .seq-nav .seq-next i, .seq .seq-nav .seq-prev i {
        display: inline-block;
        line-height: 1.25; }
  .seq .seq-touch img {
    max-width: 100%; }
  .seq .seq-title {
    margin-top: 1em;
    margin-bottom: 1.5em; }
    .seq .seq-title object img {
      width: 23px;
      height: 57px; }
  .seq .seq-examples li {
    font-size: 16px;
    font-size: 1rem; }
  .seq a.seq-button {
    display: inline-block;
    margin-left: 0.28571em;
    margin-right: 0.28571em; }
  .seq .seq-features {
    margin-top: 8px;
    margin-top: 0.5rem; }
    .seq .seq-features li {
      float: left;
      width: 50%; }
  .seq .seq-step5 .seq-step p {
    font-size: 0.875em; } }

.seq-pagination {
  position: relative;
  z-index: 110;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  text-align: center;
  background: #e9e9e9;
  border: #979797 solid 1px;
  border-top: none;
  box-sizing: border-box;
  /* Remove 4px gap between list-items */
  font-family: "Montserrat", sans-serif;
  font-size: 0; }
  .seq-pagination span {
    display: none; }
  .seq-pagination li {
    position: relative;
    display: inline-block;
    vertical-align: top;
    width: 14.28571%;
    margin: 0;
    list-style: none;
    color: #484848;
    line-height: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-transition-duration: .2s;
    transition-duration: .2s;
    /* Reset the font-size */
    -webkit-transition-property: width;
    transition-property: width;
    font-size: 16px;
    font-size: 1rem; }
    .seq-pagination li:after {
      content: "";
      position: absolute;
      right: 0;
      top: 0.5em;
      bottom: 0.5em;
      width: 1px;
      background: #c0c0c0; }
    .seq-pagination li:last-child:after {
      content: none; }
    .seq-pagination li i {
      display: inline-block;
      vertical-align: text-bottom;
      font-size: 1.5em;
      line-height: 1; }
    .seq-pagination li:focus, .seq-pagination li:hover {
      color: black; }
      .seq-pagination li:focus i, .seq-pagination li:hover i {
        color: #2aa0d4; }
    .seq-pagination li.seq-current i {
      color: #36c26f; }
  .seq-pagination a {
    box-sizing: border-box;
    display: block;
    padding: 1em 0.875em;
    text-decoration: none;
    color: inherit;
    font-size: 0.75em;
    text-align: center;
    text-transform: uppercase;
    line-height: 1;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; }
    .seq-pagination a:focus, .seq-pagination a:hover {
      color: inherit; }

@media only screen and (min-width: 568px) {
  .seq-pagination i {
    margin-bottom: 0.5em; }
    .seq-pagination span {
      display: block;
      width: 100%;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis; } }

@media only screen and (min-width: 769px) {
  .seq-pagination li {
    width: 13.66667%; }
    .seq-pagination li.seq-current {
      width: 18%; } }

.mod-blink {
  position: absolute;
  padding: 4px 4px 14%;
  width: 100%;
  left: 0;
  top: 0;
  z-index: 0;
  height: 0;
  overflow: hidden;
  padding-bottom: 11%;
}
@media (min-width: 48.0625em) {
  .mod-blink {
    padding-bottom: 11.5%;
  }
}
@media (min-width: 80.0625em) {
  .mod-blink {
    padding-bottom: 11.7%;
  }
}
.mod-blink:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fccd2c+0,fccd2c+100&0+0,1+100 */
  background: -moz-linear-gradient(top, rgba(252, 205, 44, 0) 0%, #fccd2c 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(252, 205, 44, 0) 0%, #fccd2c 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(252, 205, 44, 0) 0%, #fccd2c 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00fccd2c', endColorstr='#fccd2c', GradientType=0);
  /* IE6-9 */
}
.mod-blink span {
  float: left;
  width: 2.380%;
  padding: 1px;
}
@media (min-width: 48.0625em) {
  .mod-blink span {
    padding: 2px;
  }
}
@media (min-width: 80.0625em) {
  .mod-blink span {
    padding: 4px;
  }
}
.mod-blink span i {
  display: block;
  background: #f7f8f9;
  width: 100%;
  height: 0;
  padding-bottom: 100%;
}

.mod-counter {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fccd2c;
  z-index: 20;
  padding-top: 55px;
  overflow-y: scroll;
}
@media (min-width: 64.0625em) and (min-height: 800px) {
  .mod-counter {
    padding-top: 120px;
  }
}
.mod-counter .counter-spacer {
  position: relative;
  height: 0;
  padding-bottom: 10.1%;
}
.mod-counter .counter-wrapper {
  width: 100%;
  text-align: center;
}
.mod-counter .counter-wrapper h1 {
  color: rgba(255, 255, 255, 0.5);
  cursor: default;
  z-index: 0;
  font-size: 50vw;
  margin-bottom: 0;
}
@media (min-width: 33.0625em) {
  .mod-counter .counter-wrapper h1 {
    font-size: 30vw;
  }
}
@media (min-width: 80.0625em) {
  .mod-counter .counter-wrapper h1 {
    font-size: 400px;
  }
}

.mod-emotion {
  position: relative;
  text-align: center;
  overflow: hidden;
  min-height: 80vw;
}
.mod-emotion img {
  position: relative;
  max-width: 100%;
  height: auto;
  vertical-align: top;
  z-index: 3;
}
.mod-emotion .emotion-parallax {
  position: absolute;
  height: 100%;
  width: 100%;
  min-height: 800px;
  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-device-width: 1024px) {
  .mod-emotion .emotion-parallax {
    background-attachment: scroll;
  }
}
.mod-emotion h1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  resize: none;
  overflow: auto;
}
body[class^='msie-'] .mod-emotion h1 {
  top: 1%;
}
.mod-emotion .emotion-scroll {
  position: absolute;
  top: 60%;
  left: 0;
  width: 100%;
  z-index: 5;
}
.mod-emotion .emotion-scroll i {
  display: inline-block;
  bottom: 0;
  width: 46px;
  height: 46px;
  margin-top: 10px;
  background: url(/assets/img/icon_scroll.png) no-repeat;
  background-size: 46px 46px;
  border: none;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}

.mod-impressum {
  display: none;
  position: absolute;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100vh;
  background: #232323;
  color: #efefef;
  padding: 80px 20px 20px;
  font-size: 14px;
  line-height: 18px;
  z-index: 1;
}
@media (min-width: 33.0625em) {
  .mod-impressum {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 48.0625em) {
  .mod-impressum {
    padding-top: 200px;
  }
}
.mod-impressum h1 {
  font-family: 'Interstate-Bold', sans-serif;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 50px;
  font-size: 10vw;
}
@media (min-width: 33.0625em) {
  .mod-impressum h1 {
    font-size: 40px;
  }
}
.mod-impressum ul {
  position: relative;
  text-align: left;
}
.mod-impressum ul:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 10px;
  left: 0;
  bottom: 5px;
  background: #efefef;
  z-index: 0;
}
@media (min-width: 48.0625em) {
  .mod-impressum ul:before {
    width: 0;
    height: 1px;
    top: 210px;
    -webkit-transition: width 5s linear;
    transition: width 5s linear;
  }
}
.mod-impressum ul li {
  display: none;
  position: relative;
  padding-left: 40px;
  padding-bottom: 25px;
}
@media (min-width: 33.0625em) {
  .mod-impressum ul li {
    padding-left: 75px;
    padding-bottom: 50px;
  }
}
@media (min-width: 48.0625em) {
  .mod-impressum ul li {
    float: left;
  }
}

.mod-imprint {
  position: relative;
  display: none;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100vh;
  background: #232323;
  color: #efefef;
  font-size: 14px;
  line-height: 18px;
  z-index: 1;
}
.mod-imprint .imprint-content {
  padding: 80px 20px 20px;
}
@media (min-width: 33.0625em) {
  .mod-imprint .imprint-content {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 48.0625em) {
  .mod-imprint .imprint-content {
    padding-top: 120px;
  }
}
.mod-imprint h1 {
  font-family: 'Interstate-Bold', sans-serif;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 50px;
  font-size: 10vw;
}
@media (min-width: 33.0625em) {
  .mod-imprint h1 {
    font-size: 40px;
  }
}
.mod-imprint ul {
  position: relative;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}
.mod-imprint ul li {
  position: relative;
  padding-bottom: 20px;
}
@media (min-width: 48.0625em) {
  .mod-imprint ul li {
    float: left;
    text-align: center;
    min-height: 200px;
    width: 33.33333333%;
  }
}
@media (min-width: 80.0625em) {
  .mod-imprint ul li {
    width: 25%;
  }
}
.mod-imprint ul li .value {
  color: #fccd2c;
  font-size: 20px;
  line-height: 30px;
  font-family: 'Interstate-Bold', sans-serif;
  font-weight: normal;
}
.mod-imprint ul li .value span {
  font-family: 'Interstate', sans-serif;
}
.mod-imprint ul + p {
  color: #fccd2c;
  font-size: 20px;
  line-height: 30px;
  font-family: 'Interstate-Bold', sans-serif;
  font-weight: normal;
}

.mod-intro {
  position: relative;
  margin: 0 auto;
  text-align: center;
  padding-bottom: 60px;
  float: left;
  width: 100%;
}
@media (min-width: 64.0625em) and (min-height: 800px) {
  .mod-intro {
    position: absolute;
    margin-top: 120px;
    padding-bottom: 120px;
  }
}
.mod-intro .intro-years {
  color: rgba(255, 255, 255, 0.5);
  cursor: default;
  z-index: 0;
  font-size: 50vw;
  margin-bottom: 0;
}
@media (min-width: 33.0625em) {
  .mod-intro .intro-years {
    font-size: 30vw;
  }
}
@media (min-width: 80.0625em) {
  .mod-intro .intro-years {
    font-size: 400px;
  }
}
.mod-intro h2 {
  position: absolute;
  padding-top: 10%;
  z-index: 1;
  line-height: 1;
  width: 100%;
  margin-bottom: 0;
  font-size: 12.5vw;
  color: #3a3a39;
}
@media (min-width: 33.0625em) {
  .mod-intro h2 {
    font-size: 7.5vw;
    padding-top: 6%;
  }
}
@media (min-width: 80.0625em) {
  .mod-intro h2 {
    font-size: 100px;
    padding-top: 80px;
  }
}
.mod-intro .intro-start-link {
  position: absolute;
  bottom: 0;
  display: block;
  color: #f7f8f9;
  padding-bottom: 72px;
  font-size: 25px;
  white-space: nowrap;
  width: 100%;
}
.mod-intro .intro-start-link span {
  display: block;
  width: 100%;
}
.mod-intro .intro-start-link i {
  display: inline-block;
  bottom: 0;
  width: 46px;
  height: 46px;
  margin-top: 10px;
  background: url(/assets/img/icon_scroll.png) no-repeat;
  background-size: 46px 46px;
  border: none;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
@-webkit-keyframes pulse {
  to {
    box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
  }
}
@-moz-keyframes pulse {
  to {
    box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
  }
}
@-ms-keyframes pulse {
  to {
    box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
  }
}
@keyframes pulse {
  to {
    box-shadow: 0 0 0 45px rgba(232, 76, 61, 0);
  }
}

.mod-language {
  padding: 60px 10px 0;
}
@media (min-width: 48.0625em) {
  .mod-language {
    position: absolute;
    top: 50%;
    width: 100%;
    left: 50%;
    max-width: 560px;
    padding: 0 15px;
    margin-left: -280px;
    text-align: center;
    margin-top: -200px;
  }
}
.mod-language h1 {
  font-family: 'Interstate-Bold', sans-serif;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 50px;
  font-size: 10vw;
}
@media (min-width: 33.0625em) {
  .mod-language h1 {
    font-size: 40px;
  }
}
.mod-language ul {
  overflow: hidden;
  margin: 0 -10px 40px;
}
.mod-language li {
  float: left;
  width: 33.33333333%;
  padding: 0 10px;
}
.mod-language img {
  width: 60px;
  height: auto;
  margin: 0 auto;
}

.mod-layout .l-triangle,
.mod-layout .l-triangle-2,
.mod-layout .l-triangle-right,
.mod-layout .l-triangle-bottom {
  height: auto;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 0;
  right: 0;
  width: 100%;
}
.mod-layout .l-triangle-header {
  z-index: 2;
}
.mod-layout .l-triangle-right {
  left: auto;
  right: 0;
}
.mod-layout .l-triangle-bottom {
  top: auto;
  bottom: -1px;
}
.mod-layout .l-triangle-2 {
  z-index: 6;
}
.mod-layout .l-header {
  position: relative;
  height: 0;
  padding-bottom: 8.5%;
}
.mod-layout .l-header .l-triangle,
.mod-layout .l-header .l-triangle-right {
  width: 100%;
}
@media (min-width: 48.0625em) {
  .mod-layout .l-header .l-triangle,
  .mod-layout .l-header .l-triangle-right {
    width: 75%;
  }
}
@media (min-width: 80.0625em) {
  .mod-layout .l-header .l-triangle,
  .mod-layout .l-header .l-triangle-right {
    width: 55%;
  }
}
.mod-layout .l-footer {
  position: relative;
  height: 0;
  padding-bottom: 18.3%;
}
.mod-layout .l-header-book {
  position: absolute;
  right: 0;
  top: -300px;
  width: 50%;
  -webkit-transition: top 500ms ease;
  transition: top 500ms ease;
  z-index: 5;
  margin: 8px 10px 0 0;
}
@media (min-width: 33.0625em) {
  .mod-layout .l-header-book {
    margin: 20px 15px 0 0;
  }
}
@media (min-width: 48.0625em) {
  .mod-layout .l-header-book {
    margin: 15px 15px 0 0;
  }
}
@media (min-width: 64.0625em) {
  .mod-layout .l-header-book {
    margin: 30px 40px 0 0;
  }
}
.mod-layout .l-header-book.is-animated {
  top: 0;
}
.mod-layout .l-header-book .l-link-book {
  float: right;
}
@media (min-width: 80.0625em) {
  .mod-layout .l-header-book .l-link-book {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.mod-layout .l-header-logo {
  position: relative;
  left: 0;
  top: -300px;
  width: 100%;
  -webkit-transition: top 500ms ease;
  transition: top 500ms ease;
}
.mod-layout .l-header-logo.is-animated {
  top: 0;
}
.mod-layout .l-section {
  position: relative;
  min-height: 100vh;
}
.mod-layout .l-section.l-section-intro {
  min-height: 95vh;
}
.mod-layout .l-section.l-section-outro {
  min-height: 0;
}
.mod-layout .l-section.l-section-white {
  background: #f7f8f9;
}
.mod-layout .l-section.l-section-dark {
  background: #232323;
  color: #f7f8f9;
}
.mod-layout .l-section.l-section-dark .intro-chapter {
  color: #3a3a39;
}
.mod-layout .l-container-wrapper {
  position: relative;
}
.mod-layout .l-container {
  position: relative;
  margin: 0 auto;
}
@media (min-width: 64.0625em) {
  .mod-layout .l-container-intro {
    margin-left: 30%;
  }
}
@media (min-width: 80.0625em) {
  .mod-layout .l-container-intro {
    margin-left: 35%;
  }
}
.mod-layout .l-content {
  padding-top: 20px;
}
@media (min-width: 33.0625em) {
  .mod-layout .l-content {
    padding-top: 40px;
  }
}
@media (min-width: 64.0625em) {
  .mod-layout .l-content {
    padding-top: 0;
  }
}
.mod-layout .l-content-detail {
  position: relative;
  max-width: 750px;
  padding: 50px 15px 0;
  margin: 0 auto;
}
.mod-layout .l-content-detail .detail-chapter {
  font-family: 'Interstate-Bold', sans-serif;
  font-weight: normal;
  font-size: 380px;
  line-height: 280px;
  position: absolute;
  left: -100px;
  top: 0;
  z-index: -1;
  color: #efefef;
}
.mod-layout .l-content-language {
  max-width: 560px;
  padding: 0 15px;
  margin: 0 auto;
  text-align: center;
}
.mod-layout .l-content-intro {
  max-width: 680px;
  padding-left: 15px;
  padding-right: 15px;
  position: relative;
}
.mod-layout .l-content-intro .intro-chapter {
  font-family: 'Interstate-Bold', sans-serif;
  font-weight: normal;
  font-size: 380px;
  line-height: 280px;
  position: absolute;
  left: -100px;
  top: 0;
  z-index: -1;
  color: #efefef;
}
@media (max-width: 33em) {
  .mod-layout .l-content-intro {
    margin-bottom: 30px;
  }
}
.mod-layout .l-content-intro p {
  margin-bottom: 15px;
}
@media (min-width: 33.0625em) {
  .mod-layout .l-content-intro p {
    padding: 0 15px;
    margin-bottom: 30px;
  }
}
@media (min-width: 48.0625em) {
  .mod-layout .l-content-intro p {
    padding: 0 30px;
    margin-bottom: 48px;
  }
}
.mod-layout .l-content-intro .btn {
  position: relative;
}
.mod-layout .l-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f7f8f9;
  z-index: 20;
  overflow: scroll;
  padding-top: 100px;
}
.mod-layout .l-overlay .l-header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
}
@media (max-width: 48em) {
  .mod-layout .l-overlay .l-header {
    background: #f7f8f9;
    min-height: 100px;
  }
}
.mod-layout .l-overlay .l-overlay-close {
  position: absolute;
  top: 10px;
  right: 20px;
  display: block;
  color: #f7f8f9;
  z-index: 4;
  font-size: 25px;
  padding: 5px 0;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (min-width: 33.0625em) {
  .mod-layout .l-overlay .l-overlay-close {
    padding: 20px 0;
  }
}
@media (min-width: 48.0625em) {
  .mod-layout .l-overlay .l-overlay-close {
    top: 20px;
    right: 40px;
  }
}
.mod-layout .l-overlay .l-overlay-close:hover,
.mod-layout .l-overlay .l-overlay-close:focus,
.mod-layout .l-overlay .l-overlay-close:active {
  color: #fccd2c;
}
.mod-layout .l-overlay .l-overlay-close i {
  float: left;
  bottom: 0;
  width: 30px;
  height: 30px;
  margin: 0 15px 0 0;
  background: url(/assets/img/icon_back.png) no-repeat;
  background-size: 30px 30px;
}

.mod-logo {
  position: relative;
  width: 42px;
  z-index: 4;
  margin: 8px 10px 0 10px;
  float: left;
}
@media (min-width: 33.0625em) {
  .mod-logo {
    margin: 10px 15px 0 15px;
    width: 48px;
  }
}
@media (min-width: 48.0625em) {
  .mod-logo {
    margin: 15px 15px 0 15px;
    width: 56px;
  }
}
@media (min-width: 64.0625em) {
  .mod-logo {
    margin: 30px 40px 0 40px;
  }
}
.mod-logo .logo-link {
  display: block;
  margin-bottom: 10px;
}
.mod-logo img {
  width: 100%;
  vertical-align: top;
  height: auto;
}
.mod-logo .logo-menu-timeline {
  display: block;
  border: 1px solid #f7f8f9;
  border-radius: 50%;
  padding: 10px;
  width: 42px;
}
@media (min-width: 33.0625em) {
  .mod-logo .logo-menu-timeline {
    margin-top: 10px;
    padding: 12px;
    width: 46px;
  }
}
@media (min-width: 48.0625em) {
  .mod-logo .logo-menu-timeline {
    margin-top: 0;
    padding: 18px;
    width: 58px;
  }
}
@media (min-width: 64.0625em) {
  .mod-logo .logo-menu-timeline {
    padding: 22px;
    width: 66px;
  }
}
.mod-logo .logo-menu-timeline i {
  display: block;
  width: 22px;
  height: 22px;
  background: url(/assets/img/icon_menu.png) no-repeat;
  background-size: 22px;
  background-position: bottom left;
}
.mod-logo .logo-menu-timeline.is-active i {
  background-position: top left;
}
.mod-logo .logo-menu-imprint {
  display: block;
}
.mod-logo .logo-menu-imprint i {
  display: block;
  width: 22px;
  height: 22px;
  background: url(/assets/img/icon_menu.png) no-repeat;
  background-size: 22px;
  background-position: top left;
}

.mod-menu {
  position: relative;
  margin: 0 0 50px 20px;
}
@media (max-width: 64em) {
  .mod-menu {
    display: none !important;
  }
}
@media (min-width: 48.0625em) {
  .mod-menu {
    margin-left: 55px;
  }
}
@media (min-width: 64.0625em) {
  .mod-menu {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 0;
    margin-left: 5%;
  }
}
@media (min-width: 80.0625em) {
  .mod-menu {
    margin-left: 10%;
  }
}
.mod-menu:before {
  content: "";
  position: absolute;
  left: 0;
  top: 30px;
  bottom: 35px;
  width: 1px;
  background: #626361;
}
@media (min-width: 80.0625em) {
  .mod-menu:before {
    bottom: 70px;
  }
}
.mod-menu li {
  position: relative;
  display: block;
}
@media (min-width: 80.0625em) {
  .mod-menu li {
    margin-bottom: 35px;
  }
}
.mod-menu li .l-triangle {
  width: 0;
  top: auto;
  bottom: 35px;
  -webkit-transition: width 800ms ease;
  transition: width 800ms ease;
}
.mod-menu li:before,
.mod-menu li:after {
  position: absolute;
  left: -1px;
  top: 30px;
  content: "";
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #232323;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.mod-menu li:before {
  left: -3px;
  top: 28px;
  background: #f7f8f9;
  border: 2px solid #232323;
}
.mod-menu li.active:after,
.mod-menu li:hover:after {
  width: 6px;
  height: 6px;
  left: -3px;
  margin-top: -3px;
}
.mod-menu li.active:before,
.mod-menu li:hover:before {
  width: 20px;
  height: 20px;
  left: -12px;
  margin-top: -10px;
}
.mod-menu li.active a,
.mod-menu li:hover a {
  font-family: 'Interstate-Bold', sans-serif;
  font-weight: normal;
  width: auto;
  overflow: hidden;
  text-overflow: clip;
}
.mod-menu a {
  position: relative;
  z-index: 1;
  display: block;
  padding: 20px 10px 20px 20px;
  width: 150px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
@media (min-width: 48.0625em) {
  .mod-menu a {
    padding: 20px 10px 20px 35px;
  }
}
.mod-menu span {
  font-family: 'Interstate-Bold', sans-serif;
  font-weight: normal;
}

.mod-outro {
  position: relative;
  margin: 0 auto;
  text-align: center;
}
.mod-outro p {
  padding-top: 20px;
  font-size: 20px;
  line-height: 28px;
  font-family: 'Interstate-Bold', sans-serif;
  font-weight: normal;
}
.mod-outro ul {
  overflow: hidden;
  margin: 0 auto 40px;
  max-width: 370px;
}
.mod-outro li {
  display: inline-block;
  padding: 0 10px;
}
@media (min-width: 48.0625em) {
  .mod-outro li a {
    min-width: 160px;
  }
}
.mod-outro figure {
  margin-bottom: 20px;
}
@media (min-width: 48.0625em) {
  .mod-outro figure {
    margin-bottom: 40px;
  }
}
.mod-outro figure img {
  max-width: 90%;
  height: auto;
}
.mod-outro .outro-top-link {
  display: block;
  color: #f7f8f9;
  font-size: 25px;
  white-space: nowrap;
  width: 100%;
}
.mod-outro .outro-top-link span {
  display: block;
  width: 100%;
}
.mod-outro .outro-top-link i {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  display: inline-block;
  bottom: 0;
  width: 46px;
  height: 46px;
  margin-top: 10px;
  background: url(/assets/img/icon_scroll.png) no-repeat;
  background-size: 46px 46px;
  border: none;
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  background-color: transparent;
  cursor: pointer;
  -webkit-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -moz-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  -ms-animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
  animation: pulse 1.25s infinite cubic-bezier(0.66, 0, 0, 1);
}
.mod-outro a.imprint {
  text-decoration: underline;
}

.mod-photo {
  z-index: 2;
  padding: 0 15px;
  display: table;
  width: 100%;
  padding-bottom: 20px;
  margin-top: 20px;
}
@media (max-width: 33em) {
  .mod-photo {
    min-height: 560px;
  }
}
@media (min-width: 33.0625em) {
  .mod-photo {
    margin-top: 40px;
  }
}
@media (min-width: 48.0625em) {
  .mod-photo {
    margin-bottom: -52px;
    padding-bottom: 0;
    margin-top: 0;
  }
}
@media (min-width: 64.0625em) {
  .mod-photo {
    margin-right: 5%;
    padding: 0;
    width: 95%;
    margin-bottom: -68px;
  }
}
@media (min-width: 80.0625em) {
  .mod-photo {
    margin-right: 10%;
    margin-bottom: -87px;
    width: 90%;
  }
}
@media screen and (min-width: 1500px) {
  .mod-photo {
    margin-bottom: -95px;
  }
}
@media screen and (min-width: 1750px) {
  .mod-photo {
    margin-bottom: -110px;
  }
}
@media screen and (min-width: 2100px) {
  .mod-photo {
    margin-bottom: -130px;
  }
}
.mod-photo figure img {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 250px;
  height: auto;
}
@media (min-width: 48.0625em) {
  .mod-photo figure img {
    float: right;
    max-width: 240px;
  }
}
@media (min-width: 64.0625em) {
  .mod-photo figure img {
    max-width: 330px;
    margin-top: -70px;
  }
}
@media screen and (min-width: 2100px) {
  .mod-photo figure img {
    max-width: 500px;
  }
}
.mod-photo figure .images {
  float: right;
  max-width: 495px;
}
.mod-photo figure .images img {
  width: 45%;
  max-width: 250px;
  margin: 20px;
}
.mod-photo figure .images img + img {
  width: 40%;
}
.mod-photo figure .images img + img + img {
  float: none;
  width: 80%;
}
.mod-photo figcaption {
  position: relative;
  max-width: 100%;
  width: 100%;
  height: auto;
}
@media (min-width: 48.0625em) {
  .mod-photo figcaption {
    width: 360px;
    float: right;
    margin-top: 50px;
    margin-right: -20px;
  }
}
@media (min-width: 64.0625em) {
  .mod-photo figcaption {
    width: 420px;
  }
}
@media (min-width: 80.0625em) {
  .mod-photo figcaption {
    margin-top: 80px;
  }
}
@media screen and (min-width: 2100px) {
  .mod-photo figcaption {
    margin-top: 100px;
  }
}
.mod-photo svg {
  display: none;
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 0;
}
@media (max-width: 48em) {
  .mod-photo svg {
    display: none;
  }
}
.mod-photo polygon {
  stroke-dasharray: 2500;
  stroke-dashoffset: 2500;
  animation: dash 3s linear forwards;
}
@media (min-width: 48.0625em) {
  .mod-photo .caption {
    padding: 60px 40px 0 20px;
  }
}
@media (min-width: 64.0625em) {
  .mod-photo .caption {
    padding: 80px 60px 0 40px;
  }
}
@keyframes dash {
  to {
    stroke-dashoffset: 0;
  }
}

.mod-timeline {
  display: none;
  position: absolute;
  text-align: center;
  left: 0;
  top: 0;
  width: 100%;
  min-height: 100vh;
  background: #232323;
  color: #efefef;
  padding: 80px 20px 20px;
  font-size: 14px;
  line-height: 18px;
  z-index: 1;
}
@media (min-width: 33.0625em) {
  .mod-timeline {
    padding-left: 40px;
    padding-right: 40px;
  }
}
@media (min-width: 48.0625em) {
  .mod-timeline {
    padding-top: 200px;
  }
}
.mod-timeline h1 {
  font-family: 'Interstate-Bold', sans-serif;
  font-weight: normal;
  line-height: 1;
  margin-bottom: 50px;
  font-size: 10vw;
}
@media (min-width: 33.0625em) {
  .mod-timeline h1 {
    font-size: 40px;
  }
}
.mod-timeline ul {
  position: relative;
  text-align: left;
}
.mod-timeline ul:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 10px;
  left: 0;
  bottom: 5px;
  background: #efefef;
  z-index: 0;
}
@media (min-width: 48.0625em) {
  .mod-timeline ul:before {
    width: 0;
    height: 1px;
    top: 210px;
    -webkit-transition: width 5s linear;
    transition: width 5s linear;
  }
}
.mod-timeline ul:after {
  top: auto;
  bottom: -20px;
  left: -3px;
  position: absolute;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  pointer-events: none;
  border-color: rgba(204, 213, 72, 0);
  border-top-color: #fccd2c;
  border-width: 4px;
  z-index: 1;
}
@media (min-width: 48.0625em) {
  .mod-timeline ul:after {
    left: 100%;
    top: 206px;
    bottom: auto;
    border-color: rgba(204, 213, 72, 0);
    border-left-color: #fccd2c;
  }
}
@media (min-width: 48.0625em) {
  .mod-timeline ul.is-loaded:before {
    width: 100%;
  }
}
.mod-timeline ul .date {
  color: #fccd2c;
}
.mod-timeline ul li {
  display: none;
  position: relative;
  padding-left: 40px;
  padding-bottom: 25px;
}
@media (min-width: 33.0625em) {
  .mod-timeline ul li {
    padding-left: 75px;
    padding-bottom: 50px;
  }
}
@media (min-width: 48.0625em) {
  .mod-timeline ul li {
    height: 530px;
    width: 7.14%;
    padding-left: 0;
  }
}
@media (min-width: 74.0625em) {
  .mod-timeline ul li {
    width: 7%;
  }
}
@media (min-width: 48.0625em) {
  .mod-timeline ul li:nth-child(even) {
    padding-top: 320px;
  }
}
.mod-timeline ul li:before {
  display: block;
  position: absolute;
  left: -3px;
  top: 10px;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #fccd2c;
  z-index: 1;
}
@media (min-width: 48.0625em) {
  .mod-timeline ul li:before {
    left: -2px;
    top: 207px;
  }
}
.mod-timeline ul li:after {
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  content: "";
  width: 30px;
  height: 1px;
  background: #3a3a39;
  z-index: 2;
}
@media (min-width: 33.0625em) {
  .mod-timeline ul li:after {
    width: 60px;
  }
}
@media (min-width: 48.0625em) {
  .mod-timeline ul li:after {
    width: 1px;
    height: 100px;
    top: 107px;
  }
}
@media (min-width: 48.0625em) {
  .mod-timeline ul li:nth-child(even):before {
    top: 207px;
    bottom: auto;
  }
}
@media (min-width: 48.0625em) {
  .mod-timeline ul li:nth-child(even):after {
    top: 212px;
    bottom: auto;
  }
}
@media (min-width: 48.0625em) {
  .mod-timeline ul li {
    float: left;
  }
}
.mod-timeline ul .desc {
  word-wrap: break-word;
}
@media (min-width: 48.0625em) {
  .mod-timeline ul .desc {
    background: #232323;
    width: 100px;
    position: absolute;
    padding-bottom: 20px;
    z-index: 3;
    word-wrap: break-word;
  }
}
@media (min-width: 64.0625em) {
  .mod-timeline ul .desc {
    width: 130px;
  }
}
@media (min-width: 80.0625em) {
  .mod-timeline ul .desc {
    width: 170px;
  }
}

.skin-blink-bottom {
  top: auto !important;
  bottom: 0;
}
.skin-blink-bottom:before {
  /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#fccd2c+0,fccd2c+100&1+0,0+100 */
  background: -moz-linear-gradient(top, #fccd2c 0%, rgba(252, 205, 44, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, #fccd2c 0%, rgba(252, 205, 44, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #fccd2c 0%, rgba(252, 205, 44, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fccd2c', endColorstr='#00fccd2c', GradientType=0);
  /* IE6-9 */
}

.skin-blink-triangle {
  top: -1px;
  background: #fccd2c;
  clip-path: polygon(0 0, 100% 0%, 0 100%);
  -webkit-clip-path: polygon(0 0, 100% 0%, 0 100%);
  -webkit-clip-path: url("#clipping");
  clip-path: url("#clipping");
  z-index: 1;
  padding-bottom: 18.15%;
}
body[class^='msie-'] .skin-blink-triangle {
  background: transparent;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}
body[class^='msie-'] .skin-blink-triangle:before {
  content: normal;
}
.skin-blink-triangle .blink-triangle-ie {
  display: none;
}
body[class^='msie-'] .skin-blink-triangle .blink-triangle-ie {
  display: block;
  width: 100%;
  height: auto;
}
.skin-blink-triangle .row {
  clear: both;
}
body[class^='msie-'] .skin-blink-triangle .row {
  display: none;
}



.skin-layout-dark {
  background: #232323;
}

.skin-logo-right {
  float: right;
  margin-top: 15px;
  margin-bottom: 0;
}
@media (min-width: 33.0625em) {
  .skin-logo-right {
    margin-top: 20px;
  }
}
@media (min-width: 48.0625em) {
  .skin-logo-right {
    margin-top: 30px;
  }
}
@media (min-width: 64.0625em) {
  .skin-logo-right {
    margin-top: 40px;
  }
}
@media (min-width: 74.0625em) {
  .skin-logo-right {
    margin-top: 60px;
  }
}
.skin-logo-right .logo-link {
  margin-bottom: 0;
}

.skin-menu-light:before {
  background: #f7f8f9;
}
.skin-menu-light li a {
  color: #f7f8f9;
}
.skin-menu-light li:before,
.skin-menu-light li:after {
  background: #f7f8f9;
}
.skin-menu-light li:before {
  background: #626361;
  border-color: #f7f8f9;
}



