@charset "UTF-8";
@media only screen and (min-width: 768px) {
  .animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }

  .slow {
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }

  .slower {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }

  .slowest {
    -webkit-animation-duration: 3s;
    animation-duration: 3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both; }

  /* Added by Andy Meetan */
  .delay-250 {
    -webkit-animation-delay: 0.25s;
    -moz-animation-delay: 0.25s;
    -o-animation-delay: 0.25s;
    animation-delay: 0.25s; }

  .delay-500 {
    -webkit-animation-delay: 0.5s;
    -moz-animation-delay: 0.5s;
    -o-animation-delay: 0.5s;
    animation-delay: 0.5s; }

  .delay-750 {
    -webkit-animation-delay: 0.75s;
    -moz-animation-delay: 0.75s;
    -o-animation-delay: 0.75s;
    animation-delay: 0.75s; }

  .delay-1000 {
    -webkit-animation-delay: 1.0s;
    -moz-animation-delay: 1.0s;
    -o-animation-delay: 1.0s;
    animation-delay: 1.0s; }

  .delay-1250 {
    -webkit-animation-delay: 1.25s;
    -moz-animation-delay: 1.25s;
    -o-animation-delay: 1.25s;
    animation-delay: 1.25s; }

  .delay-1500 {
    -webkit-animation-delay: 1.5s;
    -moz-animation-delay: 1.5s;
    -o-animation-delay: 1.5s;
    animation-delay: 1.5s; }

  .delay-1750 {
    -webkit-animation-delay: 1.75s;
    -moz-animation-delay: 1.75s;
    -o-animation-delay: 1.75s;
    animation-delay: 1.75s; }

  .delay-2000 {
    -webkit-animation-delay: 2.0s;
    -moz-animation-delay: 2.0s;
    -o-animation-delay: 2.0s;
    animation-delay: 2.0s; }

  .delay-2500 {
    -webkit-animation-delay: 2.5s;
    -moz-animation-delay: 2.5s;
    -o-animation-delay: 2.5s;
    animation-delay: 2.5s; }

  .delay-2000 {
    -webkit-animation-delay: 2.0s;
    -moz-animation-delay: 2.0s;
    -o-animation-delay: 2.0s;
    animation-delay: 2.0s; }

  .delay-2500 {
    -webkit-animation-delay: 2.5s;
    -moz-animation-delay: 2.5s;
    -o-animation-delay: 2.5s;
    animation-delay: 2.5s; }

  .delay-3000 {
    -webkit-animation-delay: 3.0s;
    -moz-animation-delay: 3.0s;
    -o-animation-delay: 3.0s;
    animation-delay: 3.0s; }

  .delay-3500 {
    -webkit-animation-delay: 3.5s;
    -moz-animation-delay: 3.5s;
    -o-animation-delay: 3.5s;
    animation-delay: 3.5s; }

  .bounceInRight, .bounceInLeft, .bounceInUp, .bounceInDown {
    opacity: 0;
    -webkit-transform: translateX(400px);
    transform: translateX(400px); }

  .fadeInRight, .fadeInLeft, .fadeInUp, .fadeInDown {
    opacity: 0;
    -webkit-transform: translateX(400px);
    transform: translateX(400px); }

  .flipInX, .flipInY, .rotateIn, .rotateInUpLeft, .rotateInUpRight, .rotateInDownLeft, .rotateDownUpRight, .rollIn {
    opacity: 0; }

  .lightSpeedInRight, .lightSpeedInLeft {
    opacity: 0;
    -webkit-transform: translateX(400px);
    transform: translateX(400px); }

  /***********
  * bounceIn *
  ************/
  @-webkit-keyframes bounceIn {
    0% {
      opacity: 0;
      -webkit-transform: scale(0.3); }
    50% {
      opacity: 1;
      -webkit-transform: scale(1.05); }
    70% {
      -webkit-transform: scale(0.9); }
    100% {
      -webkit-transform: scale(1); } }
  @keyframes bounceIn {
    0% {
      opacity: 0;
      transform: scale(0.3); }
    50% {
      opacity: 1;
      transform: scale(1.05); }
    70% {
      transform: scale(0.9); }
    100% {
      transform: scale(1); } }
  .bounceIn.go {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn; }

  /****************
  * bounceInRight *
  ****************/
  @-webkit-keyframes bounceInRight {
    0% {
      opacity: 0;
      -webkit-transform: translateX(400px); }
    60% {
      -webkit-transform: translateX(-30px); }
    80% {
      -webkit-transform: translateX(10px); }
    100% {
      opacity: 1;
      -webkit-transform: translateX(0); } }
  @keyframes bounceInRight {
    0% {
      opacity: 0;
      transform: translateX(400px); }
    60% {
      transform: translateX(-30px); }
    80% {
      transform: translateX(10px); }
    100% {
      opacity: 1;
      transform: translateX(0); } }
  .bounceInRight.go {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight; }

  /******************
  * Bounce in left *
  *******************/
  @-webkit-keyframes bounceInLeft {
    0% {
      opacity: 0;
      -webkit-transform: translateX(-400px); }
    60% {
      -webkit-transform: translateX(30px); }
    80% {
      -webkit-transform: translateX(-10px); }
    100% {
      opacity: 1;
      -webkit-transform: translateX(0); } }
  @keyframes bounceInLeft {
    0% {
      opacity: 0;
      transform: translateX(-400px); }
    60% {
      transform: translateX(30px); }
    80% {
      transform: translateX(-10px); }
    100% {
      opacity: 1;
      transform: translateX(0); } }
  .bounceInLeft.go {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft; }

  /******************
  * Bounce in up *
  *******************/
  @-webkit-keyframes bounceInUp {
    0% {
      opacity: 0;
      -webkit-transform: translateY(400px); }
    60% {
      -webkit-transform: translateY(-30px); }
    80% {
      -webkit-transform: translateY(10px); }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0); } }
  @keyframes bounceInUp {
    0% {
      opacity: 0;
      transform: translateY(400px); }
    60% {
      transform: translateY(-30px); }
    80% {
      transform: translateY(10px); }
    100% {
      opacity: 1;
      transform: translateY(0); } }
  .bounceInUp.go {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp; }

  /******************
  * Bounce in down *
  *******************/
  @-webkit-keyframes bounceInDown {
    0% {
      opacity: 0;
      -webkit-transform: translateY(-400px); }
    60% {
      -webkit-transform: translateY(30px); }
    80% {
      -webkit-transform: translateY(-10px); }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0); } }
  @keyframes bounceInDown {
    0% {
      opacity: 0;
      transform: translateY(-400px); }
    60% {
      transform: translateY(30px); }
    80% {
      transform: translateY(-10px); }
    100% {
      opacity: 1;
      transform: translateY(0); } }
  .bounceInDown.go {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown; }

  /**********
  * Fade In *
  **********/
  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0; }
    100% {
      opacity: 1;
      display: block; } }
  @keyframes fadeIn {
    0% {
      opacity: 0; }
    100% {
      opacity: 1;
      display: block; } }
  .fadeIn {
    opacity: 0; }

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

  /**********
  * Grow in *
  ***********/
  @-webkit-keyframes growIn {
    0% {
      -webkit-transform: scale(0.2);
      opacity: 0; }
    50% {
      -webkit-transform: scale(1.2); }
    100% {
      -webkit-transform: scale(1);
      opacity: 1; } }
  @keyframes growIn {
    0% {
      transform: scale(0.2);
      opacity: 0; }
    50% {
      transform: scale(1.2); }
    100% {
      transform: scale(1);
      opacity: 1; } }
  .growIn {
    -webkit-transform: scale(0.2);
    transform: scale(0.2);
    opacity: 0; }

  .growIn.go {
    -webkit-animation-name: growIn;
    animation-name: growIn; }

  /********
  * Shake *
  ********/
  @-webkit-keyframes shake {
    0%, 100% {
      -webkit-transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% {
      -webkit-transform: translateX(-10px); }
    20%, 40%, 60%, 80% {
      -webkit-transform: translateX(10px); } }
  @keyframes shake {
    0%, 100% {
      transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% {
      transform: translateX(-10px); }
    20%, 40%, 60%, 80% {
      transform: translateX(10px); } }
  .shake.go {
    -webkit-animation-name: shake;
    animation-name: shake; }

  /********
  * ShakeUp *
  ********/
  @-webkit-keyframes shakeUp {
    0%, 100% {
      -webkit-transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% {
      -webkit-transform: translateY(-10px); }
    20%, 40%, 60%, 80% {
      -webkit-transform: translateY(10px); } }
  @keyframes shakeUp {
    0%, 100% {
      transform: translateY(0); }
    10%, 30%, 50%, 70%, 90% {
      transform: translateY(-10px); }
    20%, 40%, 60%, 80% {
      transform: translateY(10px); } }
  .shakeUp.go {
    -webkit-animation-name: shakeUp;
    animation-name: shakeUp; }

  /*************
  * FadeInLeft *
  *************/
  @-webkit-keyframes fadeInLeft {
    0% {
      opacity: 0;
      -webkit-transform: translateX(-400px); }
    50% {
      opacity: 0.3; }
    100% {
      opacity: 1;
      -webkit-transform: translateX(0); } }
  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      transform: translateX(-400px); }
    50% {
      opacity: 0.3; }
    100% {
      opacity: 1;
      transform: translateX(0); } }
  .fadeInLeft {
    opacity: 0;
    -webkit-transform: translateX(-400px);
    transform: translateX(-400px); }

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

  /*************
  * FadeInRight *
  *************/
  @-webkit-keyframes fadeInRight {
    0% {
      opacity: 0;
      -webkit-transform: translateX(400px); }
    50% {
      opacity: 0.3; }
    100% {
      opacity: 1;
      -webkit-transform: translateX(0); } }
  @keyframes fadeInRight {
    0% {
      opacity: 0;
      transform: translateX(400px); }
    50% {
      opacity: 0.3; }
    100% {
      opacity: 1;
      transform: translateX(0); } }
  .fadeInRight {
    opacity: 0;
    -webkit-transform: translateX(400px);
    transform: translateX(400px); }

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

  /*************
  * FadeInUp *
  *************/
  @-webkit-keyframes fadeInUp {
    0% {
      opacity: 0;
      -webkit-transform: translateY(400px); }
    50% {
      opacity: 0.3; }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0); } }
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(400px); }
    50% {
      opacity: 0.3; }
    100% {
      opacity: 1;
      transform: translateY(0); } }
  .fadeInUp {
    opacity: 0;
    -webkit-transform: translateY(400px);
    transform: translateY(400px); }

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

  /*************
  * FadeInDown *
  *************/
  @-webkit-keyframes fadeInDown {
    0% {
      opacity: 0;
      -webkit-transform: translateY(-400px); }
    50% {
      opacity: 0.3; }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0); } }
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      transform: translateY(-400px); }
    50% {
      opacity: 0.3; }
    100% {
      opacity: 1;
      transform: translateY(0); } }
  .fadeInDown {
    opacity: 0;
    -webkit-transform: translateY(-400px);
    transform: translateY(-400px); }

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

  /*****************
  * rotateIn *
  *****************/
  @-webkit-keyframes rotateIn {
    0% {
      -webkit-transform-origin: center center;
      -webkit-transform: rotate(-200deg);
      opacity: 0; }
    100% {
      -webkit-transform-origin: center center;
      -webkit-transform: rotate(0);
      opacity: 1; } }
  @keyframes rotateIn {
    0% {
      transform-origin: center center;
      transform: rotate(-200deg);
      opacity: 0; }
    100% {
      transform-origin: center center;
      transform: rotate(0);
      opacity: 1; } }
  .rotateIn.go {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn; }

  /*****************
  * rotateInUpLeft *
  *****************/
  @-webkit-keyframes rotateInUpLeft {
    0% {
      -webkit-transform-origin: left bottom;
      -webkit-transform: rotate(90deg);
      opacity: 0; }
    100% {
      -webkit-transform-origin: left bottom;
      -webkit-transform: rotate(0);
      opacity: 1; } }
  @keyframes rotateInUpLeft {
    0% {
      transform-origin: left bottom;
      transform: rotate(90deg);
      opacity: 0; }
    100% {
      transform-origin: left bottom;
      transform: rotate(0);
      opacity: 1; } }
  .rotateInUpLeft.go {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft; }

  /*******************
  * rotateInDownLeft *
  *******************/
  @-webkit-keyframes rotateInDownLeft {
    0% {
      -webkit-transform-origin: left bottom;
      -webkit-transform: rotate(-90deg);
      opacity: 0; }
    100% {
      -webkit-transform-origin: left bottom;
      -webkit-transform: rotate(0);
      opacity: 1; } }
  @keyframes rotateInDownLeft {
    0% {
      transform-origin: left bottom;
      transform: rotate(-90deg);
      opacity: 0; }
    100% {
      transform-origin: left bottom;
      transform: rotate(0);
      opacity: 1; } }
  .rotateInDownLeft.go {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft; }

  /******************
  * rotateInUpRight *
  *******************/
  @-webkit-keyframes rotateInUpRight {
    0% {
      -webkit-transform-origin: right bottom;
      -webkit-transform: rotate(-90deg);
      opacity: 0; }
    100% {
      -webkit-transform-origin: right bottom;
      -webkit-transform: rotate(0);
      opacity: 1; } }
  @keyframes rotateInUpRight {
    0% {
      transform-origin: right bottom;
      transform: rotate(-90deg);
      opacity: 0; }
    100% {
      transform-origin: right bottom;
      transform: rotate(0);
      opacity: 1; } }
  .rotateInUpRight.go {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight; }

  /********************
  * rotateInDownRight *
  ********************/
  @-webkit-keyframes rotateInDownRight {
    0% {
      -webkit-transform-origin: right bottom;
      -webkit-transform: rotate(90deg);
      opacity: 0; }
    100% {
      -webkit-transform-origin: right bottom;
      -webkit-transform: rotate(0);
      opacity: 1; } }
  @keyframes rotateInDownRight {
    0% {
      transform-origin: right bottom;
      transform: rotate(90deg);
      opacity: 0; }
    100% {
      transform-origin: right bottom;
      transform: rotate(0);
      opacity: 1; } }
  .rotateInDownRight.go {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight; }

  /*********
  * rollIn *
  **********/
  @-webkit-keyframes rollIn {
    0% {
      opacity: 0;
      -webkit-transform: translateX(-100%) rotate(-120deg); }
    100% {
      opacity: 1;
      -webkit-transform: translateX(0px) rotate(0deg); } }
  @keyframes rollIn {
    0% {
      opacity: 0;
      transform: translateX(-100%) rotate(-120deg); }
    100% {
      opacity: 1;
      transform: translateX(0px) rotate(0deg); } }
  .rollIn.go {
    -webkit-animation-name: rollIn;
    animation-name: rollIn; }

  /*********
  * wiggle *
  **********/
  @-webkit-keyframes wiggle {
    0% {
      -webkit-transform: skewX(9deg); }
    10% {
      -webkit-transform: skewX(-8deg); }
    20% {
      -webkit-transform: skewX(7deg); }
    30% {
      -webkit-transform: skewX(-6deg); }
    40% {
      -webkit-transform: skewX(5deg); }
    50% {
      -webkit-transform: skewX(-4deg); }
    60% {
      -webkit-transform: skewX(3deg); }
    70% {
      -webkit-transform: skewX(-2deg); }
    80% {
      -webkit-transform: skewX(1deg); }
    90% {
      -webkit-transform: skewX(0deg); }
    100% {
      -webkit-transform: skewX(0deg); } }
  @keyframes wiggle {
    0% {
      transform: skewX(9deg); }
    10% {
      transform: skewX(-8deg); }
    20% {
      transform: skewX(7deg); }
    30% {
      transform: skewX(-6deg); }
    40% {
      transform: skewX(5deg); }
    50% {
      transform: skewX(-4deg); }
    60% {
      transform: skewX(3deg); }
    70% {
      transform: skewX(-2deg); }
    80% {
      transform: skewX(1deg); }
    90% {
      transform: skewX(0deg); }
    100% {
      transform: skewX(0deg); } }
  .wiggle.go {
    -webkit-animation-name: wiggle;
    animation-name: wiggle;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }

  /********
  * swing *
  *********/
  @-webkit-keyframes swing {
    20%, 40%, 60%, 80%, 100% {
      -webkit-transform-origin: top center; }
    20% {
      -webkit-transform: rotate(15deg); }
    40% {
      -webkit-transform: rotate(-10deg); }
    60% {
      -webkit-transform: rotate(5deg); }
    80% {
      -webkit-transform: rotate(-5deg); }
    100% {
      -webkit-transform: rotate(0deg); } }
  @keyframes swing {
    20% {
      transform: rotate(15deg); }
    40% {
      transform: rotate(-10deg); }
    60% {
      transform: rotate(5deg); }
    80% {
      transform: rotate(-5deg); }
    100% {
      transform: rotate(0deg); } }
  .swing.go {
    -webkit-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing; }

  /*******
  * tada *
  ********/
  @-webkit-keyframes tada {
    0% {
      -webkit-transform: scale(1); }
    10%, 20% {
      -webkit-transform: scale(0.9) rotate(-3deg); }
    30%, 50%, 70%, 90% {
      -webkit-transform: scale(1.1) rotate(3deg); }
    40%, 60%, 80% {
      -webkit-transform: scale(1.1) rotate(-3deg); }
    100% {
      -webkit-transform: scale(1) rotate(0); } }
  @keyframes tada {
    0% {
      transform: scale(1); }
    10%, 20% {
      transform: scale(0.9) rotate(-3deg); }
    30%, 50%, 70%, 90% {
      transform: scale(1.1) rotate(3deg); }
    40%, 60%, 80% {
      transform: scale(1.1) rotate(-3deg); }
    100% {
      transform: scale(1) rotate(0); } }
  .tada.go {
    -webkit-animation-name: tada;
    animation-name: tada; }

  /*********
  * wobble *
  **********/
  @-webkit-keyframes wobble {
    0% {
      -webkit-transform: translateX(0%); }
    15% {
      -webkit-transform: translateX(-25%) rotate(-5deg); }
    30% {
      -webkit-transform: translateX(20%) rotate(3deg); }
    45% {
      -webkit-transform: translateX(-15%) rotate(-3deg); }
    60% {
      -webkit-transform: translateX(10%) rotate(2deg); }
    75% {
      -webkit-transform: translateX(-5%) rotate(-1deg); }
    100% {
      -webkit-transform: translateX(0%); } }
  @keyframes wobble {
    0% {
      transform: translateX(0%); }
    15% {
      transform: translateX(-25%) rotate(-5deg); }
    30% {
      transform: translateX(20%) rotate(3deg); }
    45% {
      transform: translateX(-15%) rotate(-3deg); }
    60% {
      transform: translateX(10%) rotate(2deg); }
    75% {
      transform: translateX(-5%) rotate(-1deg); }
    100% {
      transform: translateX(0%); } }
  .wobble.go {
    -webkit-animation-name: wobble;
    animation-name: wobble; }

  /********
  * pulse *
  *********/
  @-webkit-keyframes pulse {
    0% {
      -webkit-transform: scale(1); }
    50% {
      -webkit-transform: scale(1.1); }
    100% {
      -webkit-transform: scale(1); } }
  @keyframes pulse {
    0% {
      transform: scale(1); }
    50% {
      transform: scale(1.1); }
    100% {
      transform: scale(1); } }
  .pulse.go {
    -webkit-animation-name: pulse;
    animation-name: pulse; }

  /***************
  * lightSpeedInRight *
  ****************/
  @-webkit-keyframes lightSpeedInRight {
    0% {
      -webkit-transform: translateX(100%) skewX(-30deg);
      opacity: 0; }
    60% {
      -webkit-transform: translateX(-20%) skewX(30deg);
      opacity: 1; }
    80% {
      -webkit-transform: translateX(0%) skewX(-15deg);
      opacity: 1; }
    100% {
      -webkit-transform: translateX(0%) skewX(0deg);
      opacity: 1; } }
  @keyframes lightSpeedInRight {
    0% {
      transform: translateX(100%) skewX(-30deg);
      opacity: 0; }
    60% {
      transform: translateX(-20%) skewX(30deg);
      opacity: 1; }
    80% {
      transform: translateX(0%) skewX(-15deg);
      opacity: 1; }
    100% {
      transform: translateX(0%) skewX(0deg);
      opacity: 1; } }
  .lightSpeedInRight.go {
    -webkit-animation-name: lightSpeedInRight;
    animation-name: lightSpeedInRight;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }

  /***************
  * lightSpeedInLeft *
  ****************/
  @-webkit-keyframes lightSpeedInLeft {
    0% {
      -webkit-transform: translateX(-100%) skewX(30deg);
      opacity: 0; }
    60% {
      -webkit-transform: translateX(20%) skewX(-30deg);
      opacity: 1; }
    80% {
      -webkit-transform: translateX(0%) skewX(15deg);
      opacity: 1; }
    100% {
      -webkit-transform: translateX(0%) skewX(0deg);
      opacity: 1; } }
  @keyframes lightSpeedInLeft {
    0% {
      transform: translateX(-100%) skewX(30deg);
      opacity: 0; }
    60% {
      transform: translateX(20%) skewX(-30deg);
      opacity: 1; }
    80% {
      transform: translateX(0%) skewX(15deg);
      opacity: 1; }
    100% {
      transform: translateX(0%) skewX(0deg);
      opacity: 1; } }
  .lightSpeedInLeft.go {
    -webkit-animation-name: lightSpeedInLeft;
    animation-name: lightSpeedInLeft;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out; }

  /*******
  * Flip *
  *******/
  @-webkit-keyframes flip {
    0% {
      -webkit-transform: perspective(400px) rotateY(0);
      -webkit-animation-timing-function: ease-out; }
    40% {
      -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
      -webkit-animation-timing-function: ease-out; }
    50% {
      -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
      -webkit-animation-timing-function: ease-in; }
    80% {
      -webkit-transform: perspective(400px) rotateY(360deg) scale(0.95);
      -webkit-animation-timing-function: ease-in; }
    100% {
      -webkit-transform: perspective(400px) scale(1);
      -webkit-animation-timing-function: ease-in; } }
  @keyframes flip {
    0% {
      transform: perspective(400px) rotateY(0);
      animation-timing-function: ease-out; }
    40% {
      transform: perspective(400px) translateZ(150px) rotateY(170deg);
      animation-timing-function: ease-out; }
    50% {
      transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
      animation-timing-function: ease-in; }
    80% {
      transform: perspective(400px) rotateY(360deg) scale(0.95);
      animation-timing-function: ease-in; }
    100% {
      transform: perspective(400px) scale(1);
      animation-timing-function: ease-in; } }
  .flip.go {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flip;
    backface-visibility: visible !important;
    animation-name: flip; }

  /**********
  * flipInX *
  **********/
  @-webkit-keyframes flipInX {
    0% {
      -webkit-transform: perspective(400px) rotateX(90deg);
      opacity: 0; }
    40% {
      -webkit-transform: perspective(400px) rotateX(-10deg); }
    70% {
      -webkit-transform: perspective(400px) rotateX(10deg); }
    100% {
      -webkit-transform: perspective(400px) rotateX(0deg);
      opacity: 1; } }
  @keyframes flipInX {
    0% {
      transform: perspective(400px) rotateX(90deg);
      opacity: 0; }
    40% {
      transform: perspective(400px) rotateX(-10deg); }
    70% {
      transform: perspective(400px) rotateX(10deg); }
    100% {
      transform: perspective(400px) rotateX(0deg);
      opacity: 1; } }
  .flipInX.go {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    backface-visibility: visible !important;
    animation-name: flipInX; }

  /**********
  * flipInY *
  **********/
  @-webkit-keyframes flipInY {
    0% {
      -webkit-transform: perspective(400px) rotateY(90deg);
      opacity: 0; }
    40% {
      -webkit-transform: perspective(400px) rotateY(-10deg); }
    70% {
      -webkit-transform: perspective(400px) rotateY(10deg); }
    100% {
      -webkit-transform: perspective(400px) rotateY(0deg);
      opacity: 1; } }
  @keyframes flipInY {
    0% {
      transform: perspective(400px) rotateY(90deg);
      opacity: 0; }
    40% {
      transform: perspective(400px) rotateY(-10deg); }
    70% {
      transform: perspective(400px) rotateY(10deg); }
    100% {
      transform: perspective(400px) rotateY(0deg);
      opacity: 1; } }
  .flipInY.go {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    backface-visibility: visible !important;
    animation-name: flipInY; }

  /*****************
  * Out animations *
  *****************/
  /************
  * bounceOut *
  *************/
  @-webkit-keyframes bounceOut {
    0% {
      -webkit-transform: scale(1); }
    25% {
      -webkit-transform: scale(0.95); }
    50% {
      opacity: 1;
      -webkit-transform: scale(1.1); }
    100% {
      opacity: 0;
      -webkit-transform: scale(0.3); } }
  @keyframes bounceOut {
    0% {
      transform: scale(1); }
    25% {
      transform: scale(0.95); }
    50% {
      opacity: 1;
      transform: scale(1.1); }
    100% {
      opacity: 0;
      transform: scale(0.3); } }
  .bounceOut.goAway {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut; }

  /************
  * bounceOutUp *
  *************/
  @-webkit-keyframes bounceOutUp {
    0% {
      -webkit-transform: translateY(0); }
    20% {
      opacity: 1;
      -webkit-transform: translateY(20px); }
    100% {
      opacity: 0;
      -webkit-transform: translateY(-2000px); } }
  @keyframes bounceOutUp {
    0% {
      transform: translateY(0); }
    20% {
      opacity: 1;
      transform: translateY(20px); }
    100% {
      opacity: 0;
      transform: translateY(-2000px); } }
  .bounceOutUp.goAway {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp; }

  /************
  * bounceOutDown *
  *************/
  @-webkit-keyframes bounceOutDown {
    0% {
      -webkit-transform: translateY(0); }
    20% {
      opacity: 1;
      -webkit-transform: translateY(-20px); }
    100% {
      opacity: 0;
      -webkit-transform: translateY(2000px); } }
  @keyframes bounceOutDown {
    0% {
      transform: translateY(0); }
    20% {
      opacity: 1;
      transform: translateY(-20px); }
    100% {
      opacity: 0;
      transform: translateY(2000px); } }
  .bounceOutDown.goAway {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown; }

  /************
  * bounceOutLeft *
  *************/
  @-webkit-keyframes bounceOutLeft {
    0% {
      -webkit-transform: translateX(0); }
    20% {
      opacity: 1;
      -webkit-transform: translateX(20px); }
    100% {
      opacity: 0;
      -webkit-transform: translateX(-2000px); } }
  @keyframes bounceOutLeft {
    0% {
      transform: translateX(0); }
    20% {
      opacity: 1;
      transform: translateX(20px); }
    100% {
      opacity: 0;
      transform: translateX(-2000px); } }
  .bounceOutLeft.goAway {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft; }

  /************
  * bounceOutRight *
  *************/
  @-webkit-keyframes bounceOutRight {
    0% {
      -webkit-transform: translateX(0); }
    20% {
      opacity: 1;
      -webkit-transform: translateX(-20px); }
    100% {
      opacity: 0;
      -webkit-transform: translateX(2000px); } }
  @keyframes bounceOutRight {
    0% {
      transform: translateX(0); }
    20% {
      opacity: 1;
      transform: translateX(-20px); }
    100% {
      opacity: 0;
      transform: translateX(2000px); } }
  .bounceOutRight.goAway {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight; }

  /************
  * fadeOut *
  *************/
  @-webkit-keyframes fadeOut {
    0% {
      opacity: 1; }
    100% {
      opacity: 0; } }
  @keyframes fadeOut {
    0% {
      opacity: 1; }
    100% {
      opacity: 0; } }
  .fadeOut.goAway {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut; }

  /************
  * fadeOutUp *
  *************/
  @-webkit-keyframes fadeOutUp {
    0% {
      opacity: 1;
      -webkit-transform: translateY(0); }
    100% {
      opacity: 0;
      -webkit-transform: translateY(-2000px); } }
  @keyframes fadeOutUp {
    0% {
      opacity: 1;
      transform: translateY(0); }
    100% {
      opacity: 0;
      transform: translateY(-2000px); } }
  .fadeOutUp.goAway {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp; }

  /************
  * fadeOutDown *
  *************/
  @-webkit-keyframes fadeOutDown {
    0% {
      opacity: 1;
      -webkit-transform: translateY(0); }
    100% {
      opacity: 0;
      -webkit-transform: translateY(2000px); } }
  @keyframes fadeOutDown {
    0% {
      opacity: 1;
      transform: translateY(0); }
    100% {
      opacity: 0;
      transform: translateY(2000px); } }
  .fadeOutDown.goAway {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown; }

  /************
  * fadeOutLeft *
  *************/
  @-webkit-keyframes fadeOutLeft {
    0% {
      opacity: 1;
      -webkit-transform: translateX(0); }
    100% {
      opacity: 0;
      -webkit-transform: translateX(-2000px); } }
  @keyframes fadeOutLeft {
    0% {
      opacity: 1;
      transform: translateX(0); }
    100% {
      opacity: 0;
      transform: translateX(-2000px); } }
  .fadeOutLeft.goAway {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft; }

  /************
  * fadeOutRight *
  *************/
  @-webkit-keyframes fadeOutRight {
    0% {
      opacity: 1;
      -webkit-transform: translateX(0); }
    100% {
      opacity: 0;
      -webkit-transform: translateX(2000px); } }
  @keyframes fadeOutRight {
    0% {
      opacity: 1;
      transform: translateX(0); }
    100% {
      opacity: 0;
      transform: translateX(2000px); } }
  .fadeOutRight.goAway {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight; }

  /************
  * flipOutX *
  *************/
  @-webkit-keyframes flipOutX {
    0% {
      -webkit-transform: perspective(400px) rotateX(0deg);
      opacity: 1; }
    100% {
      -webkit-transform: perspective(400px) rotateX(90deg);
      opacity: 0; } }
  @keyframes flipOutX {
    0% {
      transform: perspective(400px) rotateX(0deg);
      opacity: 1; }
    100% {
      transform: perspective(400px) rotateX(90deg);
      opacity: 0; } }
  .flipOutX.goAway {
    -webkit-animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    animation-name: flipOutX;
    backface-visibility: visible !important; }

  /************
  * flipOutY *
  *************/
  @-webkit-keyframes flipOutY {
    0% {
      -webkit-transform: perspective(400px) rotateY(0deg);
      opacity: 1; }
    100% {
      -webkit-transform: perspective(400px) rotateY(90deg);
      opacity: 0; } }
  @keyframes flipOutY {
    0% {
      transform: perspective(400px) rotateY(0deg);
      opacity: 1; }
    100% {
      transform: perspective(400px) rotateY(90deg);
      opacity: 0; } }
  .flipOutY {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    backface-visibility: visible !important;
    animation-name: flipOutY; }

  /************
  * lightSpeedOutRight *
  *************/
  @-webkit-keyframes lightSpeedOutRight {
    0% {
      -webkit-transform: translateX(0%) skewX(0deg);
      opacity: 1; }
    100% {
      -webkit-transform: translateX(100%) skewX(-30deg);
      opacity: 0; } }
  @keyframes lightSpeedOutRight {
    0% {
      transform: translateX(0%) skewX(0deg);
      opacity: 1; }
    100% {
      transform: translateX(100%) skewX(-30deg);
      opacity: 0; } }
  .lightSpeedOutRight.goAway {
    -webkit-animation-name: lightSpeedOutRight;
    animation-name: lightSpeedOutRight;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }

  /************
  * lightSpeedOutLeft *
  *************/
  @-webkit-keyframes lightSpeedOutLeft {
    0% {
      -webkit-transform: translateX(0%) skewX(0deg);
      opacity: 1; }
    100% {
      -webkit-transform: translateX(-100%) skewX(30deg);
      opacity: 0; } }
  @keyframes lightSpeedOutLeft {
    0% {
      transform: translateX(0%) skewX(0deg);
      opacity: 1; }
    100% {
      transform: translateX(-100%) skewX(30deg);
      opacity: 0; } }
  .lightSpeedOutLeft.goAway {
    -webkit-animation-name: lightSpeedOutLeft;
    animation-name: lightSpeedOutLeft;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in; }

  /************
  * rotateOut *
  *************/
  @-webkit-keyframes rotateOut {
    0% {
      -webkit-transform-origin: center center;
      -webkit-transform: rotate(0);
      opacity: 1; }
    100% {
      -webkit-transform-origin: center center;
      -webkit-transform: rotate(200deg);
      opacity: 0; } }
  @keyframes rotateOut {
    0% {
      transform-origin: center center;
      transform: rotate(0);
      opacity: 1; }
    100% {
      transform-origin: center center;
      transform: rotate(200deg);
      opacity: 0; } }
  .rotateOut.goAway {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut; }

  /************
  * rotateOutUpLeft *
  *************/
  @-webkit-keyframes rotateOutUpLeft {
    0% {
      -webkit-transform-origin: left bottom;
      -webkit-transform: rotate(0);
      opacity: 1; }
    100% {
      -webkit-transform-origin: left bottom;
      -webkit-transform: rotate(-90deg);
      opacity: 0; } }
  @keyframes rotateOutUpLeft {
    0% {
      transform-origin: left bottom;
      transform: rotate(0);
      opacity: 1; }
    100% {
      -transform-origin: left bottom;
      -transform: rotate(-90deg);
      opacity: 0; } }
  .rotateOutUpLeft.goAway {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft; }

  /************
  * rotateOutDownLeft *
  *************/
  @-webkit-keyframes rotateOutDownLeft {
    0% {
      -webkit-transform-origin: left bottom;
      -webkit-transform: rotate(0);
      opacity: 1; }
    100% {
      -webkit-transform-origin: left bottom;
      -webkit-transform: rotate(90deg);
      opacity: 0; } }
  @keyframes rotateOutDownLeft {
    0% {
      transform-origin: left bottom;
      transform: rotate(0);
      opacity: 1; }
    100% {
      transform-origin: left bottom;
      transform: rotate(90deg);
      opacity: 0; } }
  .rotateOutDownLeft.goAway {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft; }

  /************
  * rotateOutUpRight *
  *************/
  @-webkit-keyframes rotateOutUpRight {
    0% {
      -webkit-transform-origin: right bottom;
      -webkit-transform: rotate(0);
      opacity: 1; }
    100% {
      -webkit-transform-origin: right bottom;
      -webkit-transform: rotate(90deg);
      opacity: 0; } }
  @keyframes rotateOutUpRight {
    0% {
      transform-origin: right bottom;
      transform: rotate(0);
      opacity: 1; }
    100% {
      transform-origin: right bottom;
      transform: rotate(90deg);
      opacity: 0; } }
  .rotateOutUpRight.goAway {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight; }

  /************
  * rollOut *
  *************/
  @-webkit-keyframes rollOut {
    0% {
      opacity: 1;
      -webkit-transform: translateX(0px) rotate(0deg); }
    100% {
      opacity: 0;
      -webkit-transform: translateX(100%) rotate(120deg); } }
  @keyframes rollOut {
    0% {
      opacity: 1;
      transform: translateX(0px) rotate(0deg); }
    100% {
      opacity: 0;
      transform: translateX(100%) rotate(120deg); } }
  .rollOut.goAway {
    -webkit-animation-name: rollOut;
    animation-name: rollOut; }

  /*****************
  * Short Animations
  *******************/
  /*********************
  * fadeInUpShort
  *********************/
  @-webkit-keyframes fadeInUpShort {
    0% {
      opacity: 0;
      -webkit-transform: translateY(20px); }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0); } }
  @keyframes fadeInUpShort {
    0% {
      opacity: 0;
      transform: translateY(20px); }
    100% {
      opacity: 1;
      transform: translateY(0); } }
  .fadeInUpShort {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px); }

  .fadeInUpShort.go {
    -webkit-animation-name: fadeInUpShort;
    animation-name: fadeInUpShort; }

  /*********************
  * fadeInDownShort
  *********************/
  @-webkit-keyframes fadeInDownShort {
    0% {
      opacity: 0;
      -webkit-transform: translateY(-20px); }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0); } }
  @keyframes fadeInDownShort {
    0% {
      opacity: 0;
      transform: translateY(-20px); }
    100% {
      opacity: 1;
      transform: translateY(0); } }
  .fadeInDownShort {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    transform: translateY(-20px); }

  .fadeInDownShort.go {
    -webkit-animation-name: fadeInDownShort;
    animation-name: fadeInDownShort; }

  /*********************
  * fadeInRightShort 
  *********************/
  @-webkit-keyframes fadeInRightShort {
    0% {
      opacity: 0;
      -webkit-transform: translateX(20px); }
    100% {
      opacity: 1;
      -webkit-transform: translateX(0); } }
  @keyframes fadeInRightShort {
    0% {
      opacity: 0;
      transform: translateX(20px); }
    100% {
      opacity: 1;
      transform: translateX(0); } }
  .fadeInRightShort {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px); }

  .fadeInRightShort.go {
    -webkit-animation-name: fadeInRightShort;
    animation-name: fadeInRightShort; }

  /*********************
  * fadeInLeftShort 
  *********************/
  @-webkit-keyframes fadeInLeftShort {
    0% {
      opacity: 0;
      -webkit-transform: translateX(-20px); }
    100% {
      opacity: 1;
      -webkit-transform: translateX(0); } }
  @keyframes fadeInLeftShort {
    0% {
      opacity: 0;
      transform: translateX(-20px); }
    100% {
      opacity: 1;
      transform: translateX(0); } }
  .fadeInLeftShort {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px); }

  .fadeInLeftShort.go {
    -webkit-animation-name: fadeInLeftShort;
    animation-name: fadeInLeftShort; } }
.waves-effect {
  position: relative;
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out; }
  .waves-effect .waves-ripple {
    position: absolute;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    margin-top: -50px;
    margin-left: -50px;
    opacity: 0;
    background: rgba(0, 0, 0, 0.2);
    background: -webkit-radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: -o-radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: -moz-radial-gradient(rgba(0, 0, 0, 0.2) 0, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: radial-gradient(rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.3) 40%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    -webkit-transition: all .5s ease-out;
    -moz-transition: all .5s ease-out;
    -o-transition: all .5s ease-out;
    transition: all .5s ease-out;
    -webkit-transition-property: -webkit-transform,opacity;
    -moz-transition-property: -moz-transform,opacity;
    -o-transition-property: -o-transform,opacity;
    transition-property: transform,opacity;
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    pointer-events: none; }
  .waves-effect.waves-light .waves-ripple {
    background: rgba(255, 255, 255, 0.4);
    background: -webkit-radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: -o-radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: -moz-radial-gradient(rgba(255, 255, 255, 0.2) 0, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%);
    background: radial-gradient(rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.3) 40%, rgba(255, 255, 255, 0.4) 50%, rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0) 70%); }
  .waves-effect.waves-classic .waves-ripple {
    background: rgba(0, 0, 0, 0.2); }
  .waves-effect.waves-classic.waves-light .waves-ripple {
    background: rgba(255, 255, 255, 0.4); }

.waves-notransition {
  -webkit-transition: none !important;
  -moz-transition: none !important;
  -o-transition: none !important;
  transition: none !important; }

.waves-button, .waves-circle {
  -webkit-transform: translateZ(0);
  -moz-transform: translateZ(0);
  -ms-transform: translateZ(0);
  -o-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(circle, #fff 100%, #000 100%); }

.waves-button {
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  outline: 0;
  color: inherit;
  background-color: transparent;
  font-size: 1em;
  line-height: 1em;
  text-align: center;
  text-decoration: none;
  z-index: 1; }
  .waves-button:hover, .waves-button:visited {
    white-space: nowrap;
    vertical-align: middle;
    cursor: pointer;
    border: none;
    outline: 0;
    color: inherit;
    background-color: transparent;
    font-size: 1em;
    line-height: 1em;
    text-align: center;
    text-decoration: none;
    z-index: 1; }

.waves-button-input {
  white-space: nowrap;
  vertical-align: middle;
  cursor: pointer;
  border: none;
  outline: 0;
  color: inherit;
  background-color: transparent;
  font-size: 1em;
  line-height: 1em;
  text-align: center;
  text-decoration: none;
  z-index: 1; }

.waves-button {
  padding: .85em 1.1em;
  border-radius: .2em; }

.waves-button-input {
  margin: 0;
  padding: .85em 1.1em; }

.waves-input-wrapper {
  border-radius: .2em;
  vertical-align: bottom; }
  .waves-input-wrapper.waves-button {
    padding: 0; }
  .waves-input-wrapper .waves-button-input {
    position: relative;
    top: 0;
    left: 0;
    z-index: 1; }

.waves-circle {
  text-align: center;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  border-radius: 50%; }

.waves-float {
  -webkit-mask-image: none;
  -webkit-box-shadow: 0 1px 1.5px 1px rgba(0, 0, 0, 0.12);
  box-shadow: 0 1px 1.5px 1px rgba(0, 0, 0, 0.12); }
  .waves-float:active {
    -webkit-box-shadow: 0 8px 20px 1px rgba(0, 0, 0, 0.3);
    box-shadow: 0 8px 20px 1px rgba(0, 0, 0, 0.3); }

.waves-block {
  display: block; }

a.waves-effect .waves-ripple {
  z-index: -1; }

@font-face {
  font-family: 'yf-l';
  src: url("/kfw/imgs/font/KozGoPr6N-Light.woff") format("woff"), url("/kfw/imgs/font/KozGoPr6N-Light.ttf") format("truetype"); }
@font-face {
  font-family: 'yf-exl';
  src: url("/kfw/imgs/font/KozGoPr6N-ExtraLight.woff") format("woff"), url("/kfw/imgs/font/KozGoPr6N-ExtraLight.ttf") format("truetype"); }
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

html {
  width: 100%; }

body {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS P Gothic", Verdana, Arial, Helvetica, sans-serif;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  overflow-x: hidden;
  background-image: -webkit-image-set(url(/kfw/imgs/bg1s.jpg) 1x, url(/kfw/imgs/bg1.jpg) 2x);
  background-image: -ms-image-set(url(/kfw/imgs/bg1s.jpg) 1x, url(/kfw/imgs/bg1.jpg) 2x);
  background-image: -moz-image-set(url(/kfw/imgs/bg1s.jpg) 1x, url(/kfw/imgs/bg1.jpg) 2x);
  background-image: -o-image-set(url(/kfw/imgs/bg1s.jpg) 1x, url(/kfw/imgs/bg1.jpg) 2x);
  background-image: image-set(url(/kfw/imgs/bg1s.jpg) 1x, url(/kfw/imgs/bg1.jpg) 2x);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  -moz-background-size: cover;
  -o-background-size: cover;
  -webkit-background-size: cover;
  background-size: cover; }

header {
  z-index: 999;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  background: rgba(245, 245, 245, 0.81);
  -moz-box-shadow: 0 2px 2px 0 rgba(3, 3, 3, 0.3);
  -webkit-box-shadow: 0 2px 2px 0 rgba(3, 3, 3, 0.3);
  box-shadow: 0 2px 2px 0 rgba(3, 3, 3, 0.3);
  text-align: center; }
  header p {
    display: none; }

#menu-icon {
  display: block;
  width: 22px;
  height: 15px;
  cursor: pointer;
  position: absolute;
  top: 12.5px;
  left: 5px; }
  #menu-icon:before {
    content: "";
    display: block;
    width: 22px;
    height: 3px;
    background: #3c3c3c;
    position: absolute;
    top: 0;
    -moz-transition: linear 0.3s;
    -o-transition: linear 0.3s;
    -webkit-transition: linear 0.3s;
    transition: linear 0.3s; }
  #menu-icon:after {
    content: "";
    display: block;
    width: 22px;
    height: 3px;
    background: #3c3c3c;
    position: absolute;
    bottom: 0;
    -moz-transition: linear 0.3s;
    -o-transition: linear 0.3s;
    -webkit-transition: linear 0.3s;
    transition: linear 0.3s; }

.activate #menu-icon:before {
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg); }
.activate #menu-icon:after {
  margin: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg); }

#home-btn {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center; }
  #home-btn a {
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    *zoom: 1;
    *display: inline;
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    text-decoration: none;
    width: 20%;
    height: 40px;
    padding: 5px 0; }
    #home-btn a img {
      height: 100%;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      pointer-events: none; }

#top-scroll {
  display: block;
  width: 28px;
  height: 28px;
  text-decoration: none;
  border: 1px solid #11a687;
  -moz-border-radius: 100%;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  -moz-box-shadow: 0 1px 1px 0 rgba(3, 3, 3, 0.3);
  -webkit-box-shadow: 0 1px 1px 0 rgba(3, 3, 3, 0.3);
  box-shadow: 0 1px 1px 0 rgba(3, 3, 3, 0.3);
  position: absolute;
  top: 6px;
  right: 5px;
  -moz-transition: linear 0.2s;
  -o-transition: linear 0.2s;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
  display: none; }
  #top-scroll:before {
    content: "";
    display: block;
    width: 5px;
    height: 5px;
    border-top: 2px solid #11a687;
    border-right: 2px solid #11a687;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    border-radius: 1px;
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }

.fixer {
  position: fixed;
  top: 0;
  background: rgba(245, 245, 245, 0.93); }
  .fixer #menu-icon {
    display: none; }
  .fixer #top-scroll {
    display: block; }

#conte {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

nav {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  display: none; }

#menu {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  #menu li {
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 7px 0;
    background: #11a687; }
    #menu li a {
      font-family: 'Bitter', serif;
      font-weight: 400;
      display: inline-block;
      vertical-align: middle;
      *vertical-align: auto;
      *zoom: 1;
      *display: inline;
      width: 100%;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      text-decoration: none;
      text-align: center;
      color: #f8f8f8;
      -moz-background-clip: text;
      -o-background-clip: text;
      -webkit-background-clip: text;
      background-clip: text;
      text-shadow: rgba(3, 3, 3, 0.3) 0px 1px 1px;
      font-size: 1rem; }

#main-parent {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 25px 10px; }

#main {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  #main p {
    font-family: "yf-exl", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS P Gothic", Verdana, Arial, Helvetica, sans-serif;
    color: white;
    font-size: 0.9rem;
    line-height: 1.65rem; }
    #main p a {
      display: inline-block;
      vertical-align: middle;
      *vertical-align: auto;
      *zoom: 1;
      *display: inline;
      width: 100%;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      text-decoration: none;
      text-align: center;
      color: whitesmoke;
      font-size: 0.9rem; }

#main-logo {
  width: 30%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0 auto 20px auto; }
  #main-logo img {
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }

footer {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(17, 166, 135, 0.95);
  text-align: center; }
  footer p {
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 5px 0;
    font-size: 0.6rem;
    color: gainsboro; }

#f-hold {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  #f-hold a {
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    *zoom: 1;
    *display: inline;
    width: 8%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 15px 0 25px 0;
    text-decoration: none; }
    #f-hold a img {
      pointer-events: none;
      width: 100%;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box; }

#foot-logo {
  width: 18%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 25px 0;
  margin: 0 auto; }
  #foot-logo img {
    width: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }

#foot-num {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  color: white;
  line-height: 2rem;
  font-size: 1.5rem; }

@media only screen and (min-width: 768px) {
  html, body {
    height: 100%;
    min-height: 510px; }

  header {
    height: 60px;
    padding: 7px 0;
    position: fixed;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    background: rgba(245, 245, 245, 0.97); }

  #menu-icon {
    display: none; }

  #home-btn {
    width: 20%;
    height: 100%; }
    #home-btn a {
      width: 100%;
      height: 100%;
      padding: 0;
      -moz-transition: linear 0.3s;
      -o-transition: linear 0.3s;
      -webkit-transition: linear 0.3s;
      transition: linear 0.3s; }
      #home-btn a img {
        height: 100%; }

  header p {
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    *zoom: 1;
    *display: inline;
    width: 80%;
    height: 100%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative; }
    header p span {
      font-family: 'Hind', sans-serif;
      font-weight: 400;
      width: 100%;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      height: 30px;
      color: #aaaaaa;
      font-size: 1.6rem;
      text-shadow: 0 1px 2px rgba(0, 0, 0, 0.18);
      margin: auto;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }

  .fixer {
    height: 40px;
    background: rgba(245, 245, 245, 0.58); }
    .fixer #top-scroll {
      margin: auto;
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0; }
    .fixer p {
      display: none; }

  #conte {
    height: 100%;
    min-height: 510px;
    padding: 60px 0 0 0;
    display: -moz-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap; }

  nav {
    display: block;
    width: 18%;
    height: 100%;
    position: static; }

  #menu {
    height: 100%;
    background: rgba(17, 166, 135, 0.96); }
    #menu li {
      display: table;
      height: 16.666%;
      background: none; }
      #menu li a {
        display: table-cell;
        vertical-align: middle;
        font-size: 1.13rem; }

  #main-parent {
    width: 82%;
    height: 100%;
    padding: 0 30px;
    display: table; }

  #main {
    display: table-cell;
    vertical-align: middle; }
    #main p {
      font-size: 0.93rem;
      line-height: 1.6rem; }
      #main p a {
        font-size: 0.93rem; }

  #main-logo {
    width: 20%; }

  footer {
    height: 100%;
    min-height: 100%;
    background: #11a687;
    padding: 30px 30px 0 30px;
    display: table;
    position: relative; }
    footer p {
      margin: auto;
      position: absolute;
      right: 0;
      bottom: 3px;
      left: 0; }

  #f-hold {
    display: table-cell;
    vertical-align: middle; }
    #f-hold a {
      width: 6%;
      max-width: 60px; }

  #foot-logo {
    width: 15%;
    max-width: 150px;
    padding: 30px 0; }

  #foot-num {
    line-height: 2.1rem;
    font-size: 1.6rem; } }
@media only screen and (min-width: 1001px) {
  #top-scroll:hover {
    border: 1px solid #43d8b9;
    background: #f8f8f8; }

  #menu {
    height: 100%;
    background: rgba(17, 166, 135, 0.96); }
    #menu li {
      display: table;
      height: 16.666%;
      padding: 10px;
      background: none; }
      #menu li a {
        display: table-cell;
        vertical-align: middle;
        font-size: 1.13rem; }
      #menu li:nth-of-type(1) > a:hover {
        background: #73a528; }
      #menu li:nth-of-type(2) > a:hover {
        background: #914baa; }
      #menu li:nth-of-type(3) > a:hover {
        background: #325091; }
      #menu li:nth-of-type(4) > a:hover {
        background: #f05a0a; }
      #menu li:nth-of-type(5) > a:hover {
        background: #e60000; }
      #menu li:nth-of-type(6) > a:hover {
        background: #003c0f; }

  #main p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.15rem;
    line-height: 1.9rem; }
    #main p a {
      font-size: 1.1rem;
      -moz-transition: linear 0.3s;
      -o-transition: linear 0.3s;
      -webkit-transition: linear 0.3s;
      transition: linear 0.3s; }
      #main p a:hover {
        color: #14b4a0; }

  #main-logo {
    width: 18%; }

  #foot-num {
    line-height: 2.4rem;
    font-size: 2rem; } }
#profile {
  font-family: "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS P Gothic", Verdana, Arial, Helvetica, sans-serif;
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 15px;
  background: rgba(16, 166, 135, 0.8);
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -moz-box-shadow: 0 2px 3px 0 rgba(255, 255, 255, 0.23);
  -webkit-box-shadow: 0 2px 3px 0 rgba(255, 255, 255, 0.23);
  box-shadow: 0 2px 3px 0 rgba(255, 255, 255, 0.23); }
  #profile dt {
    width: 25%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 0 1px 0;
    margin: 0 0 15px 0;
    font-size: 0.85rem;
    color: white;
    border-bottom: 1px solid #11a687; }
  #profile dd {
    width: 75%;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 0 1px 0;
    margin: 0 0 15px 0;
    font-size: 0.85rem;
    color: white;
    border-bottom: 1px solid #11a687;
    line-height: 1.2rem; }
    #profile dd a {
      display: inline-block;
      vertical-align: middle;
      *vertical-align: auto;
      *zoom: 1;
      *display: inline;
      width: 100%;
      -moz-box-sizing: border-box;
      -webkit-box-sizing: border-box;
      box-sizing: border-box;
      text-decoration: none;
      font-size: 0.85rem;
      color: #11a687; }

@media only screen and (min-width: 768px) {
  #menu li:nth-of-type(1) {
    position: relative; }
    #menu li:nth-of-type(1):after {
      content: "";
      display: block;
      width: 0;
      height: 0;
      margin: auto;
      border-top: 30px solid transparent;
      border-right: 25px solid transparent;
      border-bottom: 30px solid transparent;
      border-left: 25px solid rgba(16, 166, 135, 0.8);
      position: absolute;
      top: 0;
      right: -50px;
      bottom: 0; }

  #profile {
    max-width: 700px;
    margin: 20px auto 0 auto;
    padding: 25px;
    -moz-border-radius: 8px;
    -webkit-border-radius: 8px;
    border-radius: 8px; }
    #profile dt {
      width: 20%;
      font-size: 0.9rem; }
    #profile dd {
      width: 80%;
      font-size: 0.9rem;
      line-height: 1.25rem; }
      #profile dd a {
        font-size: 0.9rem;
        color: #38ceaf; } }
