/*******************************************************
 *
 * Custom theme code styles
 * 
 *******************************************************/
/* Animate.css - http://daneden.me/animate | Licensed under the ☺ license (http://licence.visualidiot.com/) Copyright (c) 2012 Dan 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. */
@-webkit-keyframes flash {
    0%,
    50%,
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    25%,
    75% {
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-moz-keyframes flash {
    0%,
    50%,
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    25%,
    75% {
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-o-keyframes flash {
    0%,
    50%,
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    25%,
    75% {
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @keyframes flash {
    0%,
    50%,
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    25%,
    75% {
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  .flash {
    -webkit-animation-name: flash;
    -moz-animation-name: flash;
    -o-animation-name: flash;
    animation-name: flash;
  }
  @-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);
    }
  }
  @-moz-keyframes shake {
    0%,
    100% {
      -moz-transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
      -moz-transform: translateX(-10px);
    }
    20%,
    40%,
    60%,
    80% {
      -moz-transform: translateX(10px);
    }
  }
  @-o-keyframes shake {
    0%,
    100% {
      -o-transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
      -o-transform: translateX(-10px);
    }
    20%,
    40%,
    60%,
    80% {
      -o-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 {
    -webkit-animation-name: shake;
    -moz-animation-name: shake;
    -o-animation-name: shake;
    animation-name: shake;
  }
  @-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      -webkit-transform: translateY(0);
    }
    40% {
      -webkit-transform: translateY(-30px);
    }
    60% {
      -webkit-transform: translateY(-15px);
    }
  }
  @-moz-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      -moz-transform: translateY(0);
    }
    40% {
      -moz-transform: translateY(-30px);
    }
    60% {
      -moz-transform: translateY(-15px);
    }
  }
  @-o-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      -o-transform: translateY(0);
    }
    40% {
      -o-transform: translateY(-30px);
    }
    60% {
      -o-transform: translateY(-15px);
    }
  }
  @keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }
    40% {
      transform: translateY(-30px);
    }
    60% {
      transform: translateY(-15px);
    }
  }
  .bounce {
    -webkit-animation-name: bounce;
    -moz-animation-name: bounce;
    -o-animation-name: bounce;
    animation-name: bounce;
  }
  @-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);
    }
  }
  @-moz-keyframes tada {
    0% {
      -moz-transform: scale(1);
    }
    10%,
    20% {
      -moz-transform: scale(0.9) rotate(-3deg);
    }
    30%,
    50%,
    70%,
    90% {
      -moz-transform: scale(1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
      -moz-transform: scale(1.1) rotate(-3deg);
    }
    100% {
      -moz-transform: scale(1) rotate(0);
    }
  }
  @-o-keyframes tada {
    0% {
      -o-transform: scale(1);
    }
    10%,
    20% {
      -o-transform: scale(0.9) rotate(-3deg);
    }
    30%,
    50%,
    70%,
    90% {
      -o-transform: scale(1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
      -o-transform: scale(1.1) rotate(-3deg);
    }
    100% {
      -o-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 {
    -webkit-animation-name: tada;
    -moz-animation-name: tada;
    -o-animation-name: tada;
    animation-name: tada;
  }
  @-webkit-keyframes swing {
    20%,
    40%,
    60%,
    80%,
    100% {
      -webkit-origin: top center;
    }
    20% {
      -webkit: rotate(15deg);
    }
    40% {
      -webkit: rotate(-10deg);
    }
    60% {
      -webkit: rotate(5deg);
    }
    80% {
      -webkit: rotate(-5deg);
    }
    100% {
      -webkit-transform: rotate(0deg);
    }
  }
  @-moz-keyframes swing {
    20% {
      -moz-transform: rotate(15deg);
    }
    40% {
      -moz-transform: rotate(-10deg);
    }
    60% {
      -moz-transform: rotate(5deg);
    }
    80% {
      -moz-transform: rotate(-5deg);
    }
    100% {
      -moz-transform: rotate(0deg);
    }
  }
  @-o-keyframes swing {
    20% {
      -o-transform: rotate(15deg);
    }
    40% {
      -o-transform: rotate(-10deg);
    }
    60% {
      -o-transform: rotate(5deg);
    }
    80% {
      -o-transform: rotate(-5deg);
    }
    100% {
      -o-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);
    }
  }
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  @-webkit-keyframes wobble {
    0% {
      -webkit: translateX(0%);
    }
    15% {
      -webkit: translateX(-25%) rotate(-5deg);
    }
    30% {
      -webkit: translateX(20%) rotate(3deg);
    }
    45% {
      -webkit: translateX(-15%) rotate(-3deg);
    }
    60% {
      -webkit: translateX(10%) rotate(2deg);
    }
    75% {
      -webkit: translateX(-5%) rotate(-1deg);
    }
    100% {
      -webkit: translateX(0%);
    }
  }
  @-moz-keyframes wobble {
    0% {
      -moz-transform: translateX(0%);
    }
    15% {
      -moz-transform: translateX(-25%) rotate(-5deg);
    }
    30% {
      -moz-transform: translateX(20%) rotate(3deg);
    }
    45% {
      -moz-transform: translateX(-15%) rotate(-3deg);
    }
    60% {
      -moz-transform: translateX(10%) rotate(2deg);
    }
    75% {
      -moz-transform: translateX(-5%) rotate(-1deg);
    }
    100% {
      -moz-transform: translateX(0%);
    }
  }
  @-o-keyframes wobble {
    0% {
      -o-transform: translateX(0%);
    }
    15% {
      -o-transform: translateX(-25%) rotate(-5deg);
    }
    30% {
      -o-transform: translateX(20%) rotate(3deg);
    }
    45% {
      -o-transform: translateX(-15%) rotate(-3deg);
    }
    60% {
      -o-transform: translateX(10%) rotate(2deg);
    }
    75% {
      -o-transform: translateX(-5%) rotate(-1deg);
    }
    100% {
      -o-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 {
    -webkit-animation-name: wobble;
    -moz-animation-name: wobble;
    -o-animation-name: wobble;
    animation-name: wobble;
  }
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  .pulse {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -o-animation-name: pulse;
    animation-name: pulse;
  }
  @-webkit-keyframes pulse {
    0% {
      -webkit: scale(1);
    }
    50% {
      -webkit: scale(1.1);
    }
    100% {
      -webkit: scale(1);
    }
  }
  @-moz-keyframes pulse {
    0% {
      -moz-transform: scale(1);
    }
    50% {
      -moz-transform: scale(1.1);
    }
    100% {
      -moz-transform: scale(1);
    }
  }
  @-o-keyframes pulse {
    0% {
      -o-transform: scale(1);
    }
    50% {
      -o-transform: scale(1.1);
    }
    100% {
      -o-transform: scale(1);
    }
  }
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.1);
    }
    100% {
      transform: scale(1);
    }
  }
  .flip {
    -webkit-backface-visibility: visible !important;
    -moz-backface-visibility: visible !important;
    -o-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flip;
    -moz-animation-name: flip;
    -o-animation-name: flip;
    animation-name: 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;
    }
  }
  @-moz-keyframes flip {
    0% {
      -moz-transform: perspective(400px) rotateY(0);
      -moz-animation-timing-function: ease-out;
    }
    40% {
      -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg);
      -moz-animation-timing-function: ease-out;
    }
    50% {
      -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
      -moz-animation-timing-function: ease-in;
    }
    80% {
      -moz-transform: perspective(400px) rotateY(360deg) scale(0.95);
      -moz-animation-timing-function: ease-in;
    }
    100% {
      -moz-transform: perspective(400px) scale(1);
      -moz-animation-timing-function: ease-in;
    }
  }
  @-o-keyframes flip {
    0% {
      -o-transform: perspective(400px) rotateY(0);
      -o-animation-timing-function: ease-out;
    }
    40% {
      -o-transform: perspective(400px) translateZ(150px) rotateY(170deg);
      -o-animation-timing-function: ease-out;
    }
    50% {
      -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
      -o-animation-timing-function: ease-in;
    }
    80% {
      -o-transform: perspective(400px) rotateY(360deg) scale(0.95);
      -o-animation-timing-function: ease-in;
    }
    100% {
      -o-transform: perspective(400px) scale(1);
      -o-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;
    }
  }
  .flipInX {
    -webkit-backface-visibility: visible !important;
    -moz-backface-visibility: visible !important;
    -o-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    -moz-animation-name: flipInX;
    -o-animation-name: flipInX;
    animation-name: flipInX;
  }
  @-webkit-keyframes flipInX {
    0% {
      -webkit-transform: perspective(400px) rotateX(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    40% {
      -webkit-transform: perspective(400px) rotateX(-10deg);
    }
    70% {
      -webkit-transform: perspective(400px) rotateX(10deg);
    }
    100% {
      -webkit-transform: perspective(400px) rotateX(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @-moz-keyframes flipInX {
    0% {
      -moz-transform: perspective(400px) rotateX(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    40% {
      -moz-transform: perspective(400px) rotateX(-10deg);
    }
    70% {
      -moz-transform: perspective(400px) rotateX(10deg);
    }
    100% {
      -moz-transform: perspective(400px) rotateX(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @-o-keyframes flipInX {
    0% {
      -o-transform: perspective(400px) rotateX(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    40% {
      -o-transform: perspective(400px) rotateX(-10deg);
    }
    70% {
      -o-transform: perspective(400px) rotateX(10deg);
    }
    100% {
      -o-transform: perspective(400px) rotateX(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @keyframes flipInX {
    0% {
      transform: perspective(400px) rotateX(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    40% {
      transform: perspective(400px) rotateX(-10deg);
    }
    70% {
      transform: perspective(400px) rotateX(10deg);
    }
    100% {
      transform: perspective(400px) rotateX(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  .flipOutX {
    -webkit-backface-visibility: visible !important;
    -moz-backface-visibility: visible !important;
    -o-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutX;
    -moz-animation-name: flipOutX;
    -o-animation-name: flipOutX;
    animation-name: flipOutX;
  }
  @-webkit-keyframes flipOutX {
    0% {
      -webkit-transform: perspective(400px) rotateX(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -webkit-transform: perspective(400px) rotateX(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-moz-keyframes flipOutX {
    0% {
      -moz-transform: perspective(400px) rotateX(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -moz-transform: perspective(400px) rotateX(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-o-keyframes flipOutX {
    0% {
      -o-transform: perspective(400px) rotateX(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -o-transform: perspective(400px) rotateX(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @keyframes flipOutX {
    0% {
      transform: perspective(400px) rotateX(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      transform: perspective(400px) rotateX(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  .flipInY {
    -webkit-backface-visibility: visible !important;
    -moz-backface-visibility: visible !important;
    -o-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    -moz-animation-name: flipInY;
    -o-animation-name: flipInY;
    animation-name: flipInY;
  }
  @-webkit-keyframes flipInY {
    0% {
      -webkit-transform: perspective(400px) rotateY(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    40% {
      -webkit-transform: perspective(400px) rotateY(-10deg);
    }
    70% {
      -webkit-transform: perspective(400px) rotateY(10deg);
    }
    100% {
      -webkit-transform: perspective(400px) rotateY(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @-moz-keyframes flipInY {
    0% {
      -moz-transform: perspective(400px) rotateY(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    40% {
      -moz-transform: perspective(400px) rotateY(-10deg);
    }
    70% {
      -moz-transform: perspective(400px) rotateY(10deg);
    }
    100% {
      -moz-transform: perspective(400px) rotateY(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @-o-keyframes flipInY {
    0% {
      -o-transform: perspective(400px) rotateY(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    40% {
      -o-transform: perspective(400px) rotateY(-10deg);
    }
    70% {
      -o-transform: perspective(400px) rotateY(10deg);
    }
    100% {
      -o-transform: perspective(400px) rotateY(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @keyframes flipInY {
    0% {
      transform: perspective(400px) rotateY(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    40% {
      transform: perspective(400px) rotateY(-10deg);
    }
    70% {
      transform: perspective(400px) rotateY(10deg);
    }
    100% {
      transform: perspective(400px) rotateY(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  .flipOutY {
    -webkit-backface-visibility: visible !important;
    -moz-backface-visibility: visible !important;
    -o-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    -moz-animation-name: flipOutY;
    -o-animation-name: flipOutY;
    animation-name: flipOutY;
  }
  @-webkit-keyframes flipOutY {
    0% {
      -webkit-transform: perspective(400px) rotateY(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -webkit-transform: perspective(400px) rotateY(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-moz-keyframes flipOutY {
    0% {
      -moz-transform: perspective(400px) rotateY(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -moz-transform: perspective(400px) rotateY(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-o-keyframes flipOutY {
    0% {
      -o-transform: perspective(400px) rotateY(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -o-transform: perspective(400px) rotateY(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @keyframes flipOutY {
    0% {
      transform: perspective(400px) rotateY(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      transform: perspective(400px) rotateY(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  .fadeIn {
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn;
  }
  @-webkit-keyframes fadeIn {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @-moz-keyframes fadeIn {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @-o-keyframes fadeIn {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @keyframes fadeIn {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  .fadeInUp {
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp;
  }
  @-webkit-keyframes fadeInUp {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateY(20px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateY(0);
    }
  }
  @-moz-keyframes fadeInUp {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateY(20px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateY(0);
    }
  }
  @-o-keyframes fadeInUp {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateY(20px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateY(0);
    }
  }
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateY(20px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateY(0);
    }
  }
  .fadeInDown {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
  }
  @-webkit-keyframes fadeInDown {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateY(-20px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateY(0);
    }
  }
  @-moz-keyframes fadeInDown {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateY(-20px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateY(0);
    }
  }
  @-o-keyframes fadeInDown {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateY(-20px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateY(0);
    }
  }
  @keyframes fadeInDown {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateY(-20px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateY(0);
    }
  }
  .fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    -moz-animation-name: fadeInLeft;
    -o-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
  }
  @-webkit-keyframes fadeInLeft {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateX(-20px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateX(0);
    }
  }
  @-moz-keyframes fadeInLeft {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateX(-20px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateX(0);
    }
  }
  @-o-keyframes fadeInLeft {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateX(-20px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateX(0);
    }
  }
  @keyframes fadeInLeft {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateX(-20px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateX(0);
    }
  }
  .fadeInRight {
    -webkit-animation-name: fadeInRight;
    -moz-animation-name: fadeInRight;
    -o-animation-name: fadeInRight;
    animation-name: fadeInRight;
  }
  @-webkit-keyframes fadeInRight {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateX(20px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateX(0);
    }
  }
  @-moz-keyframes fadeInRight {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateX(20px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateX(0);
    }
  }
  @-o-keyframes fadeInRight {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateX(20px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateX(0);
    }
  }
  @keyframes fadeInRight {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateX(20px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateX(0);
    }
  }
  @-webkit-keyframes fadeInUpBig {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateY(2000px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateY(0);
    }
  }
  @-moz-keyframes fadeInUpBig {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateY(2000px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateY(0);
    }
  }
  @-o-keyframes fadeInUpBig {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateY(2000px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateY(0);
    }
  }
  @keyframes fadeInUpBig {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateY(2000px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateY(0);
    }
  }
  .fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    -moz-animation-name: fadeInUpBig;
    -o-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
  }
  @-webkit-keyframes fadeInDownBig {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateY(-2000px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateY(0);
    }
  }
  @-moz-keyframes fadeInDownBig {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateY(-2000px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateY(0);
    }
  }
  @-o-keyframes fadeInDownBig {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateY(-2000px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateY(0);
    }
  }
  @keyframes fadeInDownBig {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateY(-2000px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateY(0);
    }
  }
  .fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    -moz-animation-name: fadeInDownBig;
    -o-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
  }
  @-webkit-keyframes fadeInLeftBig {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateX(-2000px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateX(0);
    }
  }
  @-moz-keyframes fadeInLeftBig {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateX(-2000px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateX(0);
    }
  }
  @-o-keyframes fadeInLeftBig {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateX(-2000px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateX(0);
    }
  }
  @keyframes fadeInLeftBig {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateX(-2000px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateX(0);
    }
  }
  .fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    -moz-animation-name: fadeInLeftBig;
    -o-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
  }
  @-webkit-keyframes fadeInRightBig {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateX(2000px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateX(0);
    }
  }
  @-moz-keyframes fadeInRightBig {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateX(2000px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateX(0);
    }
  }
  @-o-keyframes fadeInRightBig {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateX(2000px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateX(0);
    }
  }
  @keyframes fadeInRightBig {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateX(2000px);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateX(0);
    }
  }
  .fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    -moz-animation-name: fadeInRightBig;
    -o-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
  }
  @-webkit-keyframes fadeOut {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-moz-keyframes fadeOut {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-o-keyframes fadeOut {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @keyframes fadeOut {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  .fadeOut {
    -webkit-animation-name: fadeOut;
    -moz-animation-name: fadeOut;
    -o-animation-name: fadeOut;
    animation-name: fadeOut;
  }
  @-webkit-keyframes fadeOutUp {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateY(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateY(-20px);
    }
  }
  @-moz-keyframes fadeOutUp {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateY(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateY(-20px);
    }
  }
  @-o-keyframes fadeOutUp {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateY(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateY(-20px);
    }
  }
  @keyframes fadeOutUp {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateY(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateY(-20px);
    }
  }
  .fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    -moz-animation-name: fadeOutUp;
    -o-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
  }
  @-webkit-keyframes fadeOutDown {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateY(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateY(20px);
    }
  }
  @-moz-keyframes fadeOutDown {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateY(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateY(20px);
    }
  }
  @-o-keyframes fadeOutDown {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateY(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateY(20px);
    }
  }
  @keyframes fadeOutDown {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateY(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateY(20px);
    }
  }
  .fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    -moz-animation-name: fadeOutDown;
    -o-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
  }
  @-webkit-keyframes fadeOutLeft {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateX(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateX(-20px);
    }
  }
  @-moz-keyframes fadeOutLeft {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateX(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateX(-20px);
    }
  }
  @-o-keyframes fadeOutLeft {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateX(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateX(-20px);
    }
  }
  @keyframes fadeOutLeft {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateX(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateX(-20px);
    }
  }
  .fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    -moz-animation-name: fadeOutLeft;
    -o-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
  }
  @-webkit-keyframes fadeOutRight {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateX(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateX(20px);
    }
  }
  @-moz-keyframes fadeOutRight {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateX(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateX(20px);
    }
  }
  @-o-keyframes fadeOutRight {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateX(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateX(20px);
    }
  }
  @keyframes fadeOutRight {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateX(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateX(20px);
    }
  }
  .fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    -moz-animation-name: fadeOutRight;
    -o-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
  }
  @-webkit-keyframes fadeOutUpBig {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateY(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateY(-2000px);
    }
  }
  @-moz-keyframes fadeOutUpBig {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateY(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateY(-2000px);
    }
  }
  @-o-keyframes fadeOutUpBig {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateY(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateY(-2000px);
    }
  }
  @keyframes fadeOutUpBig {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateY(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateY(-2000px);
    }
  }
  .fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    -moz-animation-name: fadeOutUpBig;
    -o-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
  }
  @-webkit-keyframes fadeOutDownBig {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateY(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateY(2000px);
    }
  }
  @-moz-keyframes fadeOutDownBig {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateY(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateY(2000px);
    }
  }
  @-o-keyframes fadeOutDownBig {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateY(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateY(2000px);
    }
  }
  @keyframes fadeOutDownBig {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateY(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateY(2000px);
    }
  }
  .fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    -moz-animation-name: fadeOutDownBig;
    -o-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
  }
  @-webkit-keyframes fadeOutLeftBig {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateX(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateX(-2000px);
    }
  }
  @-moz-keyframes fadeOutLeftBig {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateX(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateX(-2000px);
    }
  }
  @-o-keyframes fadeOutLeftBig {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateX(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateX(-2000px);
    }
  }
  @keyframes fadeOutLeftBig {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateX(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateX(-2000px);
    }
  }
  .fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    -moz-animation-name: fadeOutLeftBig;
    -o-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
  }
  @-webkit-keyframes fadeOutRightBig {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateX(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateX(2000px);
    }
  }
  @-moz-keyframes fadeOutRightBig {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateX(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateX(2000px);
    }
  }
  @-o-keyframes fadeOutRightBig {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateX(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateX(2000px);
    }
  }
  @keyframes fadeOutRightBig {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateX(0);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateX(2000px);
    }
  }
  .fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    -moz-animation-name: fadeOutRightBig;
    -o-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
  }
  @-webkit-keyframes bounceIn {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: scale(0.3);
    }
    50% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: scale(1.05);
    }
    70% {
      -webkit-transform: scale(0.9);
    }
    100% {
      -webkit-transform: scale(1);
    }
  }
  @-moz-keyframes bounceIn {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: scale(0.3);
    }
    50% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: scale(1.05);
    }
    70% {
      -moz-transform: scale(0.9);
    }
    100% {
      -moz-transform: scale(1);
    }
  }
  @-o-keyframes bounceIn {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: scale(0.3);
    }
    50% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: scale(1.05);
    }
    70% {
      -o-transform: scale(0.9);
    }
    100% {
      -o-transform: scale(1);
    }
  }
  @keyframes bounceIn {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: scale(0.3);
    }
    50% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: scale(1.05);
    }
    70% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1);
    }
  }
  .bounceIn {
    -webkit-animation-name: bounceIn;
    -moz-animation-name: bounceIn;
    -o-animation-name: bounceIn;
    animation-name: bounceIn;
  }
  @-webkit-keyframes bounceInUp {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateY(2000px);
    }
    60% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateY(-30px);
    }
    80% {
      -webkit-transform: translateY(10px);
    }
    100% {
      -webkit-transform: translateY(0);
    }
  }
  @-moz-keyframes bounceInUp {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateY(2000px);
    }
    60% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateY(-30px);
    }
    80% {
      -moz-transform: translateY(10px);
    }
    100% {
      -moz-transform: translateY(0);
    }
  }
  @-o-keyframes bounceInUp {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateY(2000px);
    }
    60% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateY(-30px);
    }
    80% {
      -o-transform: translateY(10px);
    }
    100% {
      -o-transform: translateY(0);
    }
  }
  @keyframes bounceInUp {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateY(2000px);
    }
    60% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateY(-30px);
    }
    80% {
      transform: translateY(10px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .bounceInUp {
    -webkit-animation-name: bounceInUp;
    -moz-animation-name: bounceInUp;
    -o-animation-name: bounceInUp;
    animation-name: bounceInUp;
  }
  @-webkit-keyframes bounceInDown {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateY(-2000px);
    }
    60% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateY(30px);
    }
    80% {
      -webkit-transform: translateY(-10px);
    }
    100% {
      -webkit-transform: translateY(0);
    }
  }
  @-moz-keyframes bounceInDown {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateY(-2000px);
    }
    60% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateY(30px);
    }
    80% {
      -moz-transform: translateY(-10px);
    }
    100% {
      -moz-transform: translateY(0);
    }
  }
  @-o-keyframes bounceInDown {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateY(-2000px);
    }
    60% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateY(30px);
    }
    80% {
      -o-transform: translateY(-10px);
    }
    100% {
      -o-transform: translateY(0);
    }
  }
  @keyframes bounceInDown {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateY(-2000px);
    }
    60% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateY(30px);
    }
    80% {
      transform: translateY(-10px);
    }
    100% {
      transform: translateY(0);
    }
  }
  .bounceInDown {
    -webkit-animation-name: bounceInDown;
    -moz-animation-name: bounceInDown;
    -o-animation-name: bounceInDown;
    animation-name: bounceInDown;
  }
  @-webkit-keyframes bounceInLeft {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateX(-2000px);
    }
    60% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateX(30px);
    }
    80% {
      -webkit-transform: translateX(-10px);
    }
    100% {
      -webkit-transform: translateX(0);
    }
  }
  @-moz-keyframes bounceInLeft {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateX(-2000px);
    }
    60% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateX(30px);
    }
    80% {
      -moz-transform: translateX(-10px);
    }
    100% {
      -moz-transform: translateX(0);
    }
  }
  @-o-keyframes bounceInLeft {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateX(-2000px);
    }
    60% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateX(30px);
    }
    80% {
      -o-transform: translateX(-10px);
    }
    100% {
      -o-transform: translateX(0);
    }
  }
  @keyframes bounceInLeft {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateX(-2000px);
    }
    60% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateX(30px);
    }
    80% {
      transform: translateX(-10px);
    }
    100% {
      transform: translateX(0);
    }
  }
  .bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    -moz-animation-name: bounceInLeft;
    -o-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
  }
  @-webkit-keyframes bounceInRight {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateX(2000px);
    }
    60% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateX(-30px);
    }
    80% {
      -webkit-transform: translateX(10px);
    }
    100% {
      -webkit-transform: translateX(0);
    }
  }
  @-moz-keyframes bounceInRight {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateX(2000px);
    }
    60% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateX(-30px);
    }
    80% {
      -moz-transform: translateX(10px);
    }
    100% {
      -moz-transform: translateX(0);
    }
  }
  @-o-keyframes bounceInRight {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateX(2000px);
    }
    60% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateX(-30px);
    }
    80% {
      -o-transform: translateX(10px);
    }
    100% {
      -o-transform: translateX(0);
    }
  }
  @keyframes bounceInRight {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateX(2000px);
    }
    60% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateX(-30px);
    }
    80% {
      transform: translateX(10px);
    }
    100% {
      transform: translateX(0);
    }
  }
  .bounceInRight {
    -webkit-animation-name: bounceInRight;
    -moz-animation-name: bounceInRight;
    -o-animation-name: bounceInRight;
    animation-name: bounceInRight;
  }
  @-webkit-keyframes bounceOut {
    0% {
      -webkit-transform: scale(1);
    }
    25% {
      -webkit-transform: scale(0.95);
    }
    50% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: scale(1.1);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: scale(0.3);
    }
  }
  @-moz-keyframes bounceOut {
    0% {
      -moz-transform: scale(1);
    }
    25% {
      -moz-transform: scale(0.95);
    }
    50% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: scale(1.1);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: scale(0.3);
    }
  }
  @-o-keyframes bounceOut {
    0% {
      -o-transform: scale(1);
    }
    25% {
      -o-transform: scale(0.95);
    }
    50% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: scale(1.1);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: scale(0.3);
    }
  }
  @keyframes bounceOut {
    0% {
      transform: scale(1);
    }
    25% {
      transform: scale(0.95);
    }
    50% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: scale(1.1);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: scale(0.3);
    }
  }
  .bounceOut {
    -webkit-animation-name: bounceOut;
    -moz-animation-name: bounceOut;
    -o-animation-name: bounceOut;
    animation-name: bounceOut;
  }
  @-webkit-keyframes bounceOutUp {
    0% {
      -webkit-transform: translateY(0);
    }
    20% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateY(20px);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateY(-2000px);
    }
  }
  @-moz-keyframes bounceOutUp {
    0% {
      -moz-transform: translateY(0);
    }
    20% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateY(20px);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateY(-2000px);
    }
  }
  @-o-keyframes bounceOutUp {
    0% {
      -o-transform: translateY(0);
    }
    20% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateY(20px);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateY(-2000px);
    }
  }
  @keyframes bounceOutUp {
    0% {
      transform: translateY(0);
    }
    20% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateY(20px);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateY(-2000px);
    }
  }
  .bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    -moz-animation-name: bounceOutUp;
    -o-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
  }
  @-webkit-keyframes bounceOutDown {
    0% {
      -webkit-transform: translateY(0);
    }
    20% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateY(-20px);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateY(2000px);
    }
  }
  @-moz-keyframes bounceOutDown {
    0% {
      -moz-transform: translateY(0);
    }
    20% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateY(-20px);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateY(2000px);
    }
  }
  @-o-keyframes bounceOutDown {
    0% {
      -o-transform: translateY(0);
    }
    20% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateY(-20px);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateY(2000px);
    }
  }
  @keyframes bounceOutDown {
    0% {
      transform: translateY(0);
    }
    20% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateY(-20px);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateY(2000px);
    }
  }
  .bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    -moz-animation-name: bounceOutDown;
    -o-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
  }
  @-webkit-keyframes bounceOutLeft {
    0% {
      -webkit-transform: translateX(0);
    }
    20% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateX(20px);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateX(-2000px);
    }
  }
  @-moz-keyframes bounceOutLeft {
    0% {
      -moz-transform: translateX(0);
    }
    20% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateX(20px);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateX(-2000px);
    }
  }
  @-o-keyframes bounceOutLeft {
    0% {
      -o-transform: translateX(0);
    }
    20% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateX(20px);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateX(-2000px);
    }
  }
  @keyframes bounceOutLeft {
    0% {
      transform: translateX(0);
    }
    20% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateX(20px);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateX(-2000px);
    }
  }
  .bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    -moz-animation-name: bounceOutLeft;
    -o-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
  }
  @-webkit-keyframes bounceOutRight {
    0% {
      -webkit-transform: translateX(0);
    }
    20% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateX(-20px);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateX(2000px);
    }
  }
  @-moz-keyframes bounceOutRight {
    0% {
      -moz-transform: translateX(0);
    }
    20% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateX(-20px);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateX(2000px);
    }
  }
  @-o-keyframes bounceOutRight {
    0% {
      -o-transform: translateX(0);
    }
    20% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateX(-20px);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateX(2000px);
    }
  }
  @keyframes bounceOutRight {
    0% {
      transform: translateX(0);
    }
    20% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateX(-20px);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateX(2000px);
    }
  }
  .bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    -moz-animation-name: bounceOutRight;
    -o-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
  }
  @-webkit-keyframes rotateIn {
    0% {
      -webkit-transform-origin: center center;
      -webkit-transform: rotate(-200deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      -webkit-transform-origin: center center;
      -webkit-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @-moz-keyframes rotateIn {
    0% {
      -moz-transform-origin: center center;
      -moz-transform: rotate(-200deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      -moz-transform-origin: center center;
      -moz-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @-o-keyframes rotateIn {
    0% {
      -o-transform-origin: center center;
      -o-transform: rotate(-200deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      -o-transform-origin: center center;
      -o-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @keyframes rotateIn {
    0% {
      transform-origin: center center;
      transform: rotate(-200deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      transform-origin: center center;
      transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  .rotateIn {
    -webkit-animation-name: rotateIn;
    -moz-animation-name: rotateIn;
    -o-animation-name: rotateIn;
    animation-name: rotateIn;
  }
  @-webkit-keyframes rotateInUpLeft {
    0% {
      -webkit-transform-origin: left bottom;
      -webkit-transform: rotate(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      -webkit-transform-origin: left bottom;
      -webkit-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @-moz-keyframes rotateInUpLeft {
    0% {
      -moz-transform-origin: left bottom;
      -moz-transform: rotate(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      -moz-transform-origin: left bottom;
      -moz-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @-o-keyframes rotateInUpLeft {
    0% {
      -o-transform-origin: left bottom;
      -o-transform: rotate(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      -o-transform-origin: left bottom;
      -o-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @keyframes rotateInUpLeft {
    0% {
      transform-origin: left bottom;
      transform: rotate(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      transform-origin: left bottom;
      transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  .rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    -moz-animation-name: rotateInUpLeft;
    -o-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
  }
  @-webkit-keyframes rotateInDownLeft {
    0% {
      -webkit-transform-origin: left bottom;
      -webkit-transform: rotate(-90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      -webkit-transform-origin: left bottom;
      -webkit-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @-moz-keyframes rotateInDownLeft {
    0% {
      -moz-transform-origin: left bottom;
      -moz-transform: rotate(-90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      -moz-transform-origin: left bottom;
      -moz-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @-o-keyframes rotateInDownLeft {
    0% {
      -o-transform-origin: left bottom;
      -o-transform: rotate(-90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      -o-transform-origin: left bottom;
      -o-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @keyframes rotateInDownLeft {
    0% {
      transform-origin: left bottom;
      transform: rotate(-90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      transform-origin: left bottom;
      transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  .rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    -moz-animation-name: rotateInDownLeft;
    -o-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
  }
  @-webkit-keyframes rotateInUpRight {
    0% {
      -webkit-transform-origin: right bottom;
      -webkit-transform: rotate(-90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      -webkit-transform-origin: right bottom;
      -webkit-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @-moz-keyframes rotateInUpRight {
    0% {
      -moz-transform-origin: right bottom;
      -moz-transform: rotate(-90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      -moz-transform-origin: right bottom;
      -moz-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @-o-keyframes rotateInUpRight {
    0% {
      -o-transform-origin: right bottom;
      -o-transform: rotate(-90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      -o-transform-origin: right bottom;
      -o-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @keyframes rotateInUpRight {
    0% {
      transform-origin: right bottom;
      transform: rotate(-90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      transform-origin: right bottom;
      transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  .rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    -moz-animation-name: rotateInUpRight;
    -o-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
  }
  @-webkit-keyframes rotateInDownRight {
    0% {
      -webkit-transform-origin: right bottom;
      -webkit-transform: rotate(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      -webkit-transform-origin: right bottom;
      -webkit-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @-moz-keyframes rotateInDownRight {
    0% {
      -moz-transform-origin: right bottom;
      -moz-transform: rotate(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      -moz-transform-origin: right bottom;
      -moz-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @-o-keyframes rotateInDownRight {
    0% {
      -o-transform-origin: right bottom;
      -o-transform: rotate(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      -o-transform-origin: right bottom;
      -o-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @keyframes rotateInDownRight {
    0% {
      transform-origin: right bottom;
      transform: rotate(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    100% {
      transform-origin: right bottom;
      transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  .rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    -moz-animation-name: rotateInDownRight;
    -o-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
  }
  @-webkit-keyframes rotateOut {
    0% {
      -webkit-transform-origin: center center;
      -webkit-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -webkit-transform-origin: center center;
      -webkit-transform: rotate(200deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-moz-keyframes rotateOut {
    0% {
      -moz-transform-origin: center center;
      -moz-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -moz-transform-origin: center center;
      -moz-transform: rotate(200deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-o-keyframes rotateOut {
    0% {
      -o-transform-origin: center center;
      -o-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -o-transform-origin: center center;
      -o-transform: rotate(200deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @keyframes rotateOut {
    0% {
      transform-origin: center center;
      transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      transform-origin: center center;
      transform: rotate(200deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  .rotateOut {
    -webkit-animation-name: rotateOut;
    -moz-animation-name: rotateOut;
    -o-animation-name: rotateOut;
    animation-name: rotateOut;
  }
  @-webkit-keyframes rotateOutUpLeft {
    0% {
      -webkit-transform-origin: left bottom;
      -webkit-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -webkit-transform-origin: left bottom;
      -webkit-transform: rotate(-90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-moz-keyframes rotateOutUpLeft {
    0% {
      -moz-transform-origin: left bottom;
      -moz-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -moz-transform-origin: left bottom;
      -moz-transform: rotate(-90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-o-keyframes rotateOutUpLeft {
    0% {
      -o-transform-origin: left bottom;
      -o-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -o-transform-origin: left bottom;
      -o-transform: rotate(-90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @keyframes rotateOutUpLeft {
    0% {
      transform-origin: left bottom;
      transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -transform-origin: left bottom;
      -transform: rotate(-90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  .rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    -moz-animation-name: rotateOutUpLeft;
    -o-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
  }
  @-webkit-keyframes rotateOutDownLeft {
    0% {
      -webkit-transform-origin: left bottom;
      -webkit-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -webkit-transform-origin: left bottom;
      -webkit-transform: rotate(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-moz-keyframes rotateOutDownLeft {
    0% {
      -moz-transform-origin: left bottom;
      -moz-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -moz-transform-origin: left bottom;
      -moz-transform: rotate(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-o-keyframes rotateOutDownLeft {
    0% {
      -o-transform-origin: left bottom;
      -o-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -o-transform-origin: left bottom;
      -o-transform: rotate(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @keyframes rotateOutDownLeft {
    0% {
      transform-origin: left bottom;
      transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      transform-origin: left bottom;
      transform: rotate(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  .rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    -moz-animation-name: rotateOutDownLeft;
    -o-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
  }
  @-webkit-keyframes rotateOutUpRight {
    0% {
      -webkit-transform-origin: right bottom;
      -webkit-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -webkit-transform-origin: right bottom;
      -webkit-transform: rotate(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-moz-keyframes rotateOutUpRight {
    0% {
      -moz-transform-origin: right bottom;
      -moz-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -moz-transform-origin: right bottom;
      -moz-transform: rotate(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-o-keyframes rotateOutUpRight {
    0% {
      -o-transform-origin: right bottom;
      -o-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -o-transform-origin: right bottom;
      -o-transform: rotate(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @keyframes rotateOutUpRight {
    0% {
      transform-origin: right bottom;
      transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      transform-origin: right bottom;
      transform: rotate(90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  .rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    -moz-animation-name: rotateOutUpRight;
    -o-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
  }
  @-webkit-keyframes rotateOutDownRight {
    0% {
      -webkit-transform-origin: right bottom;
      -webkit-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -webkit-transform-origin: right bottom;
      -webkit-transform: rotate(-90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-moz-keyframes rotateOutDownRight {
    0% {
      -moz-transform-origin: right bottom;
      -moz-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -moz-transform-origin: right bottom;
      -moz-transform: rotate(-90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-o-keyframes rotateOutDownRight {
    0% {
      -o-transform-origin: right bottom;
      -o-transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -o-transform-origin: right bottom;
      -o-transform: rotate(-90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @keyframes rotateOutDownRight {
    0% {
      transform-origin: right bottom;
      transform: rotate(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      transform-origin: right bottom;
      transform: rotate(-90deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  .rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    -moz-animation-name: rotateOutDownRight;
    -o-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight;
  }
  @-webkit-keyframes hinge {
    0% {
      -webkit-transform: rotate(0);
      -webkit-transform-origin: top left;
      -webkit-animation-timing-function: ease-in-out;
    }
    20%,
    60% {
      -webkit-transform: rotate(80deg);
      -webkit-transform-origin: top left;
      -webkit-animation-timing-function: ease-in-out;
    }
    40% {
      -webkit-transform: rotate(60deg);
      -webkit-transform-origin: top left;
      -webkit-animation-timing-function: ease-in-out;
    }
    80% {
      -webkit-transform: rotate(60deg) translateY(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform-origin: top left;
      -webkit-animation-timing-function: ease-in-out;
    }
    100% {
      -webkit-transform: translateY(700px);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-moz-keyframes hinge {
    0% {
      -moz-transform: rotate(0);
      -moz-transform-origin: top left;
      -moz-animation-timing-function: ease-in-out;
    }
    20%,
    60% {
      -moz-transform: rotate(80deg);
      -moz-transform-origin: top left;
      -moz-animation-timing-function: ease-in-out;
    }
    40% {
      -moz-transform: rotate(60deg);
      -moz-transform-origin: top left;
      -moz-animation-timing-function: ease-in-out;
    }
    80% {
      -moz-transform: rotate(60deg) translateY(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform-origin: top left;
      -moz-animation-timing-function: ease-in-out;
    }
    100% {
      -moz-transform: translateY(700px);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-o-keyframes hinge {
    0% {
      -o-transform: rotate(0);
      -o-transform-origin: top left;
      -o-animation-timing-function: ease-in-out;
    }
    20%,
    60% {
      -o-transform: rotate(80deg);
      -o-transform-origin: top left;
      -o-animation-timing-function: ease-in-out;
    }
    40% {
      -o-transform: rotate(60deg);
      -o-transform-origin: top left;
      -o-animation-timing-function: ease-in-out;
    }
    80% {
      -o-transform: rotate(60deg) translateY(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform-origin: top left;
      -o-animation-timing-function: ease-in-out;
    }
    100% {
      -o-transform: translateY(700px);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @keyframes hinge {
    0% {
      transform: rotate(0);
      transform-origin: top left;
      animation-timing-function: ease-in-out;
    }
    20%,
    60% {
      transform: rotate(80deg);
      transform-origin: top left;
      animation-timing-function: ease-in-out;
    }
    40% {
      transform: rotate(60deg);
      transform-origin: top left;
      animation-timing-function: ease-in-out;
    }
    80% {
      transform: rotate(60deg) translateY(0);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform-origin: top left;
      animation-timing-function: ease-in-out;
    }
    100% {
      transform: translateY(700px);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  .hinge {
    -webkit-animation-name: hinge;
    -moz-animation-name: hinge;
    -o-animation-name: hinge;
    animation-name: hinge;
  }
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  @-webkit-keyframes rollIn {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateX(-100%) rotate(-120deg);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateX(0px) rotate(0deg);
    }
  }
  @-moz-keyframes rollIn {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateX(-100%) rotate(-120deg);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateX(0px) rotate(0deg);
    }
  }
  @-o-keyframes rollIn {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateX(-100%) rotate(-120deg);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateX(0px) rotate(0deg);
    }
  }
  @keyframes rollIn {
    0% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateX(-100%) rotate(-120deg);
    }
    100% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateX(0px) rotate(0deg);
    }
  }
  .rollIn {
    -webkit-animation-name: rollIn;
    -moz-animation-name: rollIn;
    -o-animation-name: rollIn;
    animation-name: rollIn;
  }
  /* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
  @-webkit-keyframes rollOut {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -webkit-transform: translateX(0px) rotate(0deg);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -webkit-transform: translateX(100%) rotate(120deg);
    }
  }
  @-moz-keyframes rollOut {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -moz-transform: translateX(0px) rotate(0deg);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -moz-transform: translateX(100%) rotate(120deg);
    }
  }
  @-o-keyframes rollOut {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      -o-transform: translateX(0px) rotate(0deg);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      -o-transform: translateX(100%) rotate(120deg);
    }
  }
  @keyframes rollOut {
    0% {
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
      transform: translateX(0px) rotate(0deg);
    }
    100% {
      opacity: 0;
      filter: alpha(opacity=0);
      transform: translateX(100%) rotate(120deg);
    }
  }
  .rollOut {
    -webkit-animation-name: rollOut;
    -moz-animation-name: rollOut;
    -o-animation-name: rollOut;
    animation-name: rollOut;
  }
  /* originally authored by Angelo Rohit - https://github.com/angelorohit */
  @-webkit-keyframes lightSpeedIn {
    0% {
      -webkit: translateX(100%) skewX(-30deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    60% {
      -webkit: translateX(-20%) skewX(30deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    80% {
      -webkit: translateX(0%) skewX(-15deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -webkit: translateX(0%) skewX(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @-moz-keyframes lightSpeedIn {
    0% {
      -moz-transform: translateX(100%) skewX(-30deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    60% {
      -moz-transform: translateX(-20%) skewX(30deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    80% {
      -moz-transform: translateX(0%) skewX(-15deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -moz-transform: translateX(0%) skewX(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @-o-keyframes lightSpeedIn {
    0% {
      -o-transform: translateX(100%) skewX(-30deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    60% {
      -o-transform: translateX(-20%) skewX(30deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    80% {
      -o-transform: translateX(0%) skewX(-15deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -o-transform: translateX(0%) skewX(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  @keyframes lightSpeedIn {
    0% {
      transform: translateX(100%) skewX(-30deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
    60% {
      transform: translateX(-20%) skewX(30deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    80% {
      transform: translateX(0%) skewX(-15deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      transform: translateX(0%) skewX(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
  }
  .lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    -moz-animation-name: lightSpeedIn;
    -o-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
    -o-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  .animated.lightSpeedIn {
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    animation-duration: 0.5s;
  }
  /* originally authored by Angelo Rohit - https://github.com/angelorohit */
  @-webkit-keyframes lightSpeedOut {
    0% {
      -webkit-transform: translateX(0%) skewX(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -webkit: translateX(100%) skewX(-30deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-moz-keyframes lightSpeedOut {
    0% {
      -moz-transform: translateX(0%) skewX(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -moz-transform: translateX(100%) skewX(-30deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @-o-keyframes lightSpeedOut {
    0% {
      -o-transform: translateX(0%) skewX(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      -o-transform: translateX(100%) skewX(-30deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  @keyframes lightSpeedOut {
    0% {
      transform: translateX(0%) skewX(0deg);
      opacity: 100;
      filter: alpha(opacity=10000);
      opacity: 1;
      filter: alpha(opacity=100);
    }
    100% {
      transform: translateX(100%) skewX(-30deg);
      opacity: 0;
      filter: alpha(opacity=0);
    }
  }
  .lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    -moz-animation-name: lightSpeedOut;
    -o-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  .animated.lightSpeedOut {
    -webkit-animation-duration: 0.25s;
    -moz-animation-duration: 0.25s;
    -o-animation-duration: 0.25s;
    animation-duration: 0.25s;
  }
  /* originally authored by Angelo Rohit - https://github.com/angelorohit */
  @-webkit-keyframes wiggle {
    0% {
      -webkit: skewX(9deg);
    }
    10% {
      -webkit: skewX(-8deg);
    }
    20% {
      -webkit: skewX(7deg);
    }
    30% {
      -webkit: skewX(-6deg);
    }
    40% {
      -webkit: skewX(5deg);
    }
    50% {
      -webkit: skewX(-4deg);
    }
    60% {
      -webkit: skewX(3deg);
    }
    70% {
      -webkit: skewX(-2deg);
    }
    80% {
      -webkit: skewX(1deg);
    }
    90% {
      -webkit: skewX(0deg);
    }
    100% {
      -webkit: skewX(0deg);
    }
  }
  @-moz-keyframes wiggle {
    0% {
      -moz-transform: skewX(9deg);
    }
    10% {
      -moz-transform: skewX(-8deg);
    }
    20% {
      -moz-transform: skewX(7deg);
    }
    30% {
      -moz-transform: skewX(-6deg);
    }
    40% {
      -moz-transform: skewX(5deg);
    }
    50% {
      -moz-transform: skewX(-4deg);
    }
    60% {
      -moz-transform: skewX(3deg);
    }
    70% {
      -moz-transform: skewX(-2deg);
    }
    80% {
      -moz-transform: skewX(1deg);
    }
    90% {
      -moz-transform: skewX(0deg);
    }
    100% {
      -moz-transform: skewX(0deg);
    }
  }
  @-o-keyframes wiggle {
    0% {
      -o-transform: skewX(9deg);
    }
    10% {
      -o-transform: skewX(-8deg);
    }
    20% {
      -o-transform: skewX(7deg);
    }
    30% {
      -o-transform: skewX(-6deg);
    }
    40% {
      -o-transform: skewX(5deg);
    }
    50% {
      -o-transform: skewX(-4deg);
    }
    60% {
      -o-transform: skewX(3deg);
    }
    70% {
      -o-transform: skewX(-2deg);
    }
    80% {
      -o-transform: skewX(1deg);
    }
    90% {
      -o-transform: skewX(0deg);
    }
    100% {
      -o-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 {
    -webkit-animation-name: wiggle;
    -moz-animation-name: wiggle;
    -o-animation-name: wiggle;
    animation-name: wiggle;
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
  .animated.wiggle {
    -webkit-animation-duration: 0.75s;
    -moz-animation-duration: 0.75s;
    -o-animation-duration: 0.75s;
    animation-duration: 0.75s;
  }
  /* by Jon Schlinkert - https://github.com/jonschlinkert */
  @-webkit-keyframes resize {
    0% {
      height: 50px;
      width: 50px;
    }
    50% {
      height: 100px;
      width: 100px;
    }
    100% {
      height: 150px;
      width: 150px;
    }
  }
  @-moz-keyframes resize {
    0% {
      height: 50px;
      width: 50px;
    }
    50% {
      height: 100px;
      width: 100px;
    }
    100% {
      height: 150px;
      width: 150px;
    }
  }
  @-o-keyframes resize {
    0% {
      height: 50px;
      width: 50px;
    }
    50% {
      height: 100px;
      width: 100px;
    }
    100% {
      height: 150px;
      width: 150px;
    }
  }
  @keyframes resize {
    0% {
      height: 50px;
      width: 50px;
    }
    50% {
      height: 100px;
      width: 100px;
    }
    100% {
      height: 150px;
      width: 150px;
    }
  }
  .growing-box {
    animation-name: resize;
    animation-duration: 1s;
    animation-iteration-count: 4;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
  }
  .list-reset {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .border-box {
    -webkit-box-sizing: border-box;
    /* Safari/Chrome, other WebKit */
    -moz-box-sizing: border-box;
    /* Firefox, other Gecko */
    box-sizing: border-box;
    /* Opera/IE 8+ */
  }
  .mobile-collapse {
    max-height: none;
  }
  .mobile-collapse.in {
    overflow-y: auto;
  }
  @media (min-width: 768px) {
    .mobile-collapse {
      width: auto;
      border-top: 0;
      box-shadow: none;
    }
    .mobile-collapse.collapse {
      display: none !important;
      height: auto !important;
      overflow: visible !important;
    }
    .mobile-collapse.in {
      overflow-y: visible;
      display: block !important;
    }
    .navbar-fixed-top .mobile-collapse,
    .navbar-static-top .mobile-collapse,
    .navbar-fixed-bottom .mobile-collapse {
      padding-left: 0;
      padding-right: 0;
    }
  }
  .mobile-collapse .mobile-collapse-trigger {
    cursor: pointer !important;
  }
  .mobile-collapse .mobile-collapse-hidden {
    display: none !important;
  }
  @media (min-width: 992px) {
    .mobile-collapse-trigger {
      display: none;
    }
    .mobile-collapse {
      display: block;
    }
    .mobile-collapse-hidden {
      display: block !important;
    }
  }
  @font-face {
    font-family: 'BebasNeue';
    src: url('/core/fileparse.php/10/urlt/../fonts/BebasNeue-webfont.eot');
    src: url('../fonts/BebasNeue-webfont.eot?#iefix') format('eot'), url('/core/fileparse.php/12/urlt/BebasNeue-webfont.woff') format('woff'), url('/core/fileparse.php/10/urlt/../fonts/BebasNeue-webfont.ttf') format('truetype'), url('../fonts/BebasNeue-webfont.svg#webfontU0jP3420') format('svg');
    font-weight: normal;
    font-style: normal;
  }
  body,
  html {
    /*font-family: "Lato", Helvetica Neue, Helvetica, Arial, sans-serif;*/
    /*font-family: "Open Sans", Helvetica Neue, Helvetica, Arial, sans-serif;*/
    background: #FFF;
    overflow-x: hidden;
    font-size: 16px;
    color: #999;
    font-weight: 300;
    line-height: 1.328571429;
  }
  a,
  a:hover {
    color: #88cc00;
  }
  a:hover img {
    opacity: 90;
    filter: alpha(opacity=9000);
    opacity: 0.9;
    filter: alpha(opacity=90);
  }
  a:focus {
    outline: none;
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6 {
    /*font-family: "Lato", Helvetica Neue, Helvetica, Arial, sans-serif;*/
    /*font-family: "Open Sans", Helvetica Neue, Helvetica, Arial, sans-serif;*/
    font-weight: 400;
    line-height: 1.3;
    color: #0072BC;
  }
  h1 small,
  h2 small,
  h3 small,
  h4 small,
  h5 small,
  h6 small,
  .h1 small,
  .h2 small,
  .h3 small,
  .h4 small,
  .h5 small,
  .h6 small {
    font-weight: normal;
    line-height: 1;
    color: #A1A1A1;
  }
  h1.special,
  h2.special,
  h3.special,
  h4.special,
  h5.special,
  h6.special,
  .h1.special,
  .h2.special,
  .h3.special,
  .h4.special,
  .h5.special,
  .h6.special {
    /*font-family: "BebasNeue", Helvetica Neue, Helvetica, Arial, sans-serif;*/
    font-family: "BebasNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 300;
  }
  h1 a,
  h2 a,
  h3 a,
  h4 a,
  h5 a,
  h6 a,
  .h1 a,
  .h2 a,
  .h3 a,
  .h4 a,
  .h5 a,
  .h6 a,
  h1 a:hover,
  h2 a:hover,
  h3 a:hover,
  h4 a:hover,
  h5 a:hover,
  h6 a:hover,
  .h1 a:hover,
  .h2 a:hover,
  .h3 a:hover,
  .h4 a:hover,
  .h5 a:hover,
  .h6 a:hover {
    color: #0072bc;
  }
  h1 {
    font-size: 48.8px;
  }
  h1.enlarged {
    font-size: 63.2px;
  }
  h2 {
    font-size: 47.2px;
  }
  h2.enlarged {
    font-size: 48.8px;
  }
  h3 {
    font-size: 29.6px;
  }
  h4 {
    font-size: 21.6px;
    font-weight: 400;
  }
  h5 {
    font-size: 16.8px;
    font-weight: 400;
  }
  h6 {
    font-size: 13.6px;
    font-weight: 400;
  }
  h1 small {
    font-size: 24.8px;
  }
  h2 small {
    font-size: 16.8px;
  }
  h3 small {
    font-size: 16px;
  }
  h4 small {
    font-size: 16px;
  }
  .page-title {
    margin: 0;
  }
  .page-title small {
    color: rgba(153, 153, 153, 0.5);
  }
  ul {
    margin: 0;
  }
  ul.list-inline > li:first-child {
    padding-left: 0;
  }
  .inline {
    float: left;
    margin: 0 1em 0 0;
  }
  .block {
    display: block !important;
  }
  blockquote {
    border: none;
    padding: 0;
  }
  blockquote p {
    background: #e7e7e7;
    padding: 20px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    position: relative;
  }
  blockquote p:after,
  blockquote p:before {
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
  }
  blockquote p:after {
    border-top-color: #e7e7e7;
    border-width: 10px;
    left: 10%;
    margin-left: -10px;
  }
  blockquote p:before {
    border-top-color: rgba(0, 0, 0, 0.01);
    border-width: 11px;
    left: 10%;
    margin-left: -11px;
  }
  blockquote small {
    display: block;
    padding: 12px 0 0 10px;
  }
  blockquote small:before {
    content: '';
  }
  blockquote small img {
    padding-right: 1em;
  }
  .light {
    font-weight: 200 !important;
  }
  .lighter {
    font-weight: 400 !important;
  }
  .upper-case {
    text-transform: uppercase;
  }
  .normal-case {
    text-transform: none;
  }
  .fancy {
    font-family: 'Calligraffitti', cursive;
  }
  .text-primary {
    color: #669900 !important;
  }
  a.text-primary:hover {
    color: #88cc00 !important;
  }
  .text-secondary {
    color: #0081d6 !important;
  }
  a.text-secondary:hover {
    color: #005389 !important;
  }
  .block-title {
    text-transform: uppercase;
    font-family: "BebasNeue", Helvetica Neue, Helvetica, Arial, sans-serif;
    font-weight: 300;
    margin-bottom: 20px;
  }
  .block-border-bottom {
    padding-bottom: 3em;
    margin-bottom: 3em;
    border-bottom: 1px solid #A29E9F;
  }
  .row-no-margin {
    margin-right: 0;
    margin-left: 0;
  }
  .col-no-padding {
    padding-left: 0;
    padding-right: 0;
  }
  .col-no-padding-left {
    padding-left: 0;
  }
  .col-no-padding-right {
    padding-right: 0;
  }
  .spacer-bottom-mobile {
    margin-bottom: 3em;
  }
  .more-link {
    margin-top: 2em;
    display: inline-block;
  }
  .reserve-link {
    display: inline-block;
  }
  .mdr-buttons .mdr-button {
    display: block;
    padding: 12px 20px 12px 5px;
    background: #0072bc;
    background-color: rgba(0, 113, 189, 0.9);
    margin: 1px 0 2px 0;
    color: white;
    text-transform: uppercase;
    font-weight: 400;
  }
  .mdr-buttons .mdr-button:before,
  .mdr-buttons .mdr-button:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
  }
  .mdr-buttons .mdr-button:after {
    clear: both;
  }
  .mdr-buttons .mdr-button:hover {
    background: #0072bc;
    text-decoration: none;
  }
  .mdr-buttons .mdr-button .line-break {
    display: block;
  }
  .mdr-buttons .mdr-button .icon {
    display: block;
    float: left;
    height: 52px;
    width: 52px;
    margin-right: 1em;
  }
  .mdr-buttons .mdr-button.commissioner .icon {
    background: url(/core/fileparse.php/10/urlt/../img/misc/icon_commissioner.png) center center no-repeat;
  }
  .mdr-buttons .mdr-button.board .icon {
    /*background: url(/core/fileparse.php/10/urlt/../img/misc/icon_board.png) center center no-repeat;*/
    background: url(/core/fileparse.php/10/urlt/../img/misc/board-meetings.png) center center no-repeat;
  }
  .mdr-buttons .mdr-button.services .icon {
    /*background: url(/core/fileparse.php/10/urlt/../img/misc/icon_services.png) center center no-repeat;*/
    background: url(/core/fileparse.php/10/urlt/../img/misc/online-services.png) center center no-repeat;
  }
  .mdr-buttons .mdr-button.policy .icon {
    /*background: url(/core/fileparse.php/10/urlt/../img/misc/icon_services.png) center center no-repeat;*/
    background: url(/core/fileparse.php/10/urlt/../img/misc/policy-center.png) center center no-repeat;
  }
  .get-helper-btn {
    display: block;
    width: 100%;
  }
  .modal-content {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
  }
  .social-media li {
    padding-right: 0;
  }
  .facebook-icon,
  .twitter-icon,
  .youtube-icon {
    color: white;
  }
  .facebook-icon .fa-stack,
  .twitter-icon .fa-stack,
  .youtube-icon .fa-stack {
    font-size: 1.7em;
    width: 1.7em;
    height: 1.7em;
  }
  .facebook-icon .fa-circle,
  .twitter-icon .fa-circle,
  .youtube-icon .fa-circle {
    color: #507CBD;
  }
  .facebook-icon:hover,
  .twitter-icon:hover,
  .youtube-icon:hover {
    opacity: 80;
    filter: alpha(opacity=8000);
    opacity: 0.8;
    filter: alpha(opacity=80);
    color: white;
  }
  .twitter-icon .fa-circle {
    color: #45BFF0;
  }
  .youtube-icon .fa-circle {
    color: #F05920;
  }
  @media (min-width: 768px) {
    .spacer-bottom-mobile {
      margin-bottom: 0;
    }
    h1 {
      font-size: 48.8px;
    }
    h1.enlarged {
      font-size: 127.2px;
    }
    h2 {
      font-size: 47.2px;
    }
    h2.enlarged {
      font-size: 70px;
    }
  }
  @media (min-width: 992px) {
    .mdr-buttons {
      position: absolute;
      top: 35%;
      right: 0;
      width: 300px;
      z-index: 4;
    }
    .mdr-buttons .mdr-button {
      margin-bottom: 5px;
      background: #0072bc;
      background-color: rgba(0, 113, 189, 0.4);
    }
    .mdr-buttons .mdr-button:hover {
      background: #0072bc;
      background-color: rgba(0, 113, 189, 0.5);
    }
    .get-helper-btn {
      position: absolute;
      top: 55%;
      left: 55px;
        font-size: 30px !important;
      z-index: 1039995;
      border-radius: 0 0 3px 3px !important;
      -webkit-transform-origin: 0 100%;
      transform-origin: 0 100%;
      -ms-transform-origin: 0 100%;
      -webkit-transform: translate(100%, 100%);
      -ms-transform: translate(100%, 100%);
      transform: translate(100%, 100%);
      -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
      transform: rotate(-90deg);
      height: 55px;
      width: 160px;
      display: block;
    }
    .get-helper-btn:lang(es){
        width:195px!important;
        font-size:26px!important;
    }
  }
  .dur-fast {
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    animation-duration: 0.5s;
  }
  .dur-slow {
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
  }
  .dur-x-slow {
    -webkit-animation-duration: 3s;
    -moz-animation-duration: 3s;
    -o-animation-duration: 3s;
    animation-duration: 3s;
  }
  .de-02 {
    animation-delay: 0.2s;
    -webkit-animation-delay: 0.2s;
  }
  .de-04 {
    animation-delay: 0.4s;
    -webkit-animation-delay: 0.4s;
  }
  .de-06 {
    animation-delay: 0.6s;
    -webkit-animation-delay: 0.6s;
  }
  .de-08 {
    animation-delay: 0.8s;
    -webkit-animation-delay: 0.8s;
  }
  .de-1 {
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
  }
  .de-12 {
    animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s;
  }
  .de-14 {
    animation-delay: 1.4s;
    -webkit-animation-delay: 1.4s;
  }
  .de-16 {
    animation-delay: 1.6s;
    -webkit-animation-delay: 1.6s;
  }
  .de-18 {
    animation-delay: 1.8s;
    -webkit-animation-delay: 1.8s;
  }
  .de-2 {
    animation-delay: 2s;
    -webkit-animation-delay: 2s;
  }
  .navbar-nav {
    float: none;
    margin: 10px 0;
    padding: 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
  }
  .navbar-nav > li {
    float: none;
    border-left: none;
    border-right: none;
    padding: 0;
    margin: 0 5px;
    font-size: 14px;
  }
  .navbar-nav > li > a,
  .navbar-nav > li > a:link,
  .navbar-nav > li > a:focus {
    padding: 12px 10px;
    margin: 0;
    font-weight: 600;
    color: #0072bc;
    font-size: 1.1em;
    text-transform: uppercase;
    border-bottom: 1px solid #eee;
  }
  .navbar-nav > li > a .caret,
  .navbar-nav > li > a:link .caret,
  .navbar-nav > li > a:focus .caret {
    font-family: FontAwesome;
    float: right;
    border: none;
    margin: 0 -20px 0 0;
    font-size: 16px;
    color: #ffffff;
    width: 30px;
    height: 30px;
  }
  .navbar-nav > li > a .caret:before,
  .navbar-nav > li > a:link .caret:before,
  .navbar-nav > li > a:focus .caret:before {
    content: "f054";
  }
  .navbar-nav > li > a.navbar-brand,
  .navbar-nav > li > a:link.navbar-brand,
  .navbar-nav > li > a:focus.navbar-brand {
    display: none;
  }
  .navbar-nav > li > a:hover,
  .navbar-nav > li > a:focus,
  .navbar-nav > li.active a {
    color: #005389;
    background: transparent;
  }
  .navbar-nav > li.open .dropdown-toggle .caret:before,
  .navbar-nav > li.open.active .dropdown-toggle .caret:before {
    content: "f078";
  }
  .btn-navbar,
  .navbar-btn {
    display: block;
    background: #282c2d;
    text-align: center;
    cursor: pointer;
    padding: 6px;
    z-index: 10000;
    position: absolute;
    right: 10px;
    top: 0;
  }
  .btn-navbar .bar,
  .navbar-btn .bar {
    display: block;
    width: 26px;
    height: 5px;
    background-color: #ffffff;
    border-radius: 1px;
    margin-left: auto;
    margin-right: auto;
  }
  .btn-navbar .bar + .bar,
  .navbar-btn .bar + .bar {
    margin-top: 4px;
  }
  .btn-navbar.open,
  .navbar-btn.open,
  .btn-navbar:hover,
  .navbar-btn:hover {
    background-color: #669900;
  }
  .navbar-collapse {
    max-height: none;
  }
  .navbar-collapse.in {
    overflow-y: auto;
  }
  @media (min-width: 768px) {
    .navbar-collapse {
      width: auto;
      border-top: 0;
      box-shadow: none;
    }
    .navbar-collapse.collapse {
      display: none !important;
      height: auto !important;
      overflow: visible !important;
    }
    .navbar-collapse.in {
      overflow-y: visible;
      display: block !important;
    }
    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse,
    .navbar-fixed-bottom .navbar-collapse {
      padding-left: 0;
      padding-right: 0;
    }
  }
  #jPanelMenu-menu {
    background-color: transparent;
    background-position: left top;
    background-repeat: repeat;
    padding: 0;
    max-height: none;
  }
  #jPanelMenu-menu.navbar-collapse,
  #jPanelMenu-menu.navbar-collapse.collapse,
  #jPanelMenu-menu.navbar-collapse.in {
    padding: 0;
    margin: 0;
    height: 100% !important;
    display: block !important;
  }
  @media (min-width: 992px) {
    .mobile-toggle-trigger,
    .btn-navbar,
    .navbar-btn {
      display: none;
    }
    #jPanelMenu-menu {
      display: none;
    }
    .navbar-collapse,
    .navbar-collapse.collapse,
    .navbar-collapse.in {
      display: block !important;
      padding: 0;
      margin: 0;
      clear: none;
      overflow-y: visible;
      overflow-x: visible;
      width: auto;
    }
    .navbar-nav {
      margin: 0;
      float: left;
      position: relative;
      left: 50%;
      text-align: center;
    }
    .navbar-nav > li {
      float: left;
      position: relative;
      display: block;
      right: 50%;
    }
    .navbar-nav > li > a,
    .navbar-nav > li > a:link,
    .navbar-nav > li > a:focus {
      -webkit-border-radius: 0;
      -moz-border-radius: 0;
      border-radius: 0;
      -webkit-box-shadow: none;
      box-shadow: none;
      -webkit-transition: all 0.2s ease-out;
      transition: all 0.2s ease-out;
      padding: 8px 15px;
      margin: 0;
      background: transparent;
      line-height: 1.3;
      border-bottom: none;
    }
    .navbar-nav > li > a:hover,
    .navbar-nav > li > a:link:hover,
    .navbar-nav > li > a:focus:hover {
      background-color: transparent !important;
    }
    .navbar-nav > li > a.navbar-brand,
    .navbar-nav > li > a:link.navbar-brand,
    .navbar-nav > li > a:focus.navbar-brand {
      background: url("/core/fileparse.php/10/urlt/../img/logo-noborder.png") left top no-repeat;
      display: block;
      height: 196px;
      width: 142px;
      color: rgba(255, 255, 255, 0.6);
      padding: 0;
      float: none;
      margin: 10px auto;
      margin-left: 1em;
      margin-right: 1em;
      font-size: 0 !important;
    }
  }
  #header {
    position: relative;
    z-index: 1005;
    padding: 10px 0;
  }
  .header {
    color: white;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    zoom: 1;
  }
  .header:before,
  .header:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
  }
  .header:after {
    clear: both;
  }
  .header-upper-col-1:before,
  .header-upper-col-1:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
  }
  .header-upper-col-1:after {
    clear: both;
  }
  .header-navbar {
    background: white;
    padding-left: 15px;
    padding-right: 15px;
    box-shadow: 0 0 2px rgba(0, 0, 0, 0.25) !important;
  }
  .js-clingify-locked .header {
    background: white;
    border-bottom: 1px solid #eee;
  }
  .navbar-brand {
    background: url("/core/fileparse.php/10/urlt/../img/logo.png") left top no-repeat;
    display: block;
    height: 196px;
    width: 142px;
    font-size: 0 !important;
    color: rgba(255, 255, 255, 0.6);
    padding: 0;
    float: none;
    margin: 10px auto;
  }
  .navbar-brand-desktop {
    display: none;
  }
  .navbar-brand-mobile {
    background: url("/core/fileparse.php/10/urlt/../img/logo.png") left top no-repeat;
    display: block;
    height: 196px;
    width: 142px;
    font-size: 0 !important;
    color: rgba(255, 255, 255, 0.6);
    padding: 0;
    float: none;
    margin: 10px auto;
    background: url("/core/fileparse.php/10/urlt/../img/logo-mobile.png") left top no-repeat;
    height: 157px;
    width: 114px;
  }
  .navbar {
    color: #9fa5ac;
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: none;
    min-height: 1px !important;
  }
  
  .weather-widget {
    display: block;
    font-size: 0.8em;
    font-weight: 600;
  }
  
  /*.weather-widget {
    background: white;
    padding: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    color: #386A92;
    display: block;
    font-size: 0.8em;
    font-weight: 600;
  }*/
  
  .weather-widget:hover{
  text-decoration: none;
  }
  .weather-widget a {
    color: inherit;
  }
  
  
  .weather-widget .weather-widget-range
  {
  line-height: 26px;
  height: 24px;
  }
  
  .weather-widget .weather-widget-current {
    vertical-align: middle;
  line-height: 26px;
  height: 24px;
  
  }
  .weather-widget .weather-widget-current img {
    padding-left: 0.7em;
  }
  .weather-widget .weather-widget-range {
    vertical-align: middle;
  }
  .header .social-media li {
    margin-right: -6px;
  }
  .header .social-media .facebook-icon .fa-stack,
  .header .social-media .twitter-icon .fa-stack,
  .header .social-media .youtube-icon .fa-stack {
    font-size: 1.4em;
    width: 1.6em;
    height: 1.6em;
    line-height: 1.7em;
  }
  .header .social-media .facebook-icon .fa-stack .fa-stack-2x,
  .header .social-media .twitter-icon .fa-stack .fa-stack-2x,
  .header .social-media .youtube-icon .fa-stack .fa-stack-2x {
    font-size: 1.7em;
  }
  .header .social-media .facebook-icon .fa-stack .fa-stack-1x,
  .header .social-media .twitter-icon .fa-stack .fa-stack-1x,
  .header .social-media .youtube-icon .fa-stack .fa-stack-1x {
    font-size: 0.9em;
  }
  .search-form {
    position: relative;
  }
  .search-form .btn {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 5px 10px;
    line-height: 1;
    font-size: 22px;
    font-weight: bold;
    color: black;
  }
  .search-form input {
    padding: 0 40px 0 12px;
    font-size: 1.1em;
    font-style: italic;
    height: 40px;
  }
  .search-form input:lang(es) {
    padding-left:27px;
  }
  .text-size-widget {
    display: none;
    color: black;
  }
  .text-size-widget a {
    color: black;
    background: white;
    width: 22px;
    height: 22px;
    line-height: 22px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    display: inline-block;
    margin-right: -6px;
    font-size: 0.8em;
  }
  .text-size-widget a.active {
    font-weight: bold;
  }
  .text-size-widget a.font-lg-link {
    width: 26px;
    height: 26px;
    line-height: 26px;
  }
  .text-size-widget a.font-xlg-link {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  .weather-widget,
  .header .social-media,
  .search-form,
  .text-size-widget {
    margin-bottom: 0.5em;
    text-align: center;
  }
  @media (min-width: 992px) {
    .text-size-widget {
      display: block;
    }
    .header-navbar {
      background: white;
      height: 64px;
      padding-left: 15px;
      padding-right: 15px;
      text-align: center;
    }
    .header-navbar:before,
    .header-navbar:after {
      content: " ";
      /* 1 */
      display: table;
      /* 2 */
    }
    .header-navbar:after {
      clear: both;
    }
    .header-navbar .navbar-nav {
      height: 40px;
    }
    .navbar-brand-mobile {
      display: none;
    }
    .navbar-brand-desktop {
      top: -105px;
      display: block;
    }
    .header .header-upper-col-1 {
      padding-right: 80px;
    }
    .header .header-upper-col-2 {
      padding-left: 80px;
    }
    .header .header-upper-col-1:before,
    .header .header-upper-col-2:before,
    .header .header-upper-col-1:after,
    .header .header-upper-col-2:after {
      content: " ";
      /* 1 */
      display: table;
      /* 2 */
    }
    .header .header-upper-col-1:after,
    .header .header-upper-col-2:after {
      clear: both;
    }
    .header .weather-widget,
    .header .social-media {
      float: left;
    }
    .header .weather-widget {
      /*margin-right: 1.5em;*/
      /*padding: 8px 14px;*/
      /*border: 1px solid #CCCCCC;*/
      display: inline-block;
    }
    .header .weather-widget span {
      display: inline-block;
    }
    .header .weather-widget .weather-widget-current {
      padding-right: 2.5em;
    }
    .header .weather-widget .weather-widget-range {
      vertical-align: middle;
    }
    .header .search-form,
    .header .text-size-widget {
      float: right;
    }
    .header .search-form {
      margin-left: 1em;
      width: 260px;
    }
    .header .text-size-widget {
      padding-top: 5px;
    }
    .header-upper {
      padding-top: 25px;
      padding-bottom: 20px;
    }
    .header-upper.container {
      max-width: 1140px;
    }
  }
  @media (min-width: 1200px) {
    .header-upper.container {
      max-width: 1240px;
    }
    .header-navbar .container {
      max-width: 100%;
    }
  }
  #highlighted {
    background-size: cover;
    position: relative;
  }
  #highlighted:before,
  #highlighted:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
  }
  #highlighted:after {
    clear: both;
  }
  #content {
    padding: 20px 0 40px 0;
  }
  @media (min-width: 768px) {
    .content-col-1 .inner {
      padding-right: 2em;
    }
  }
  @media (min-width: 992px) {
    .container {
      max-width: 960px;
    }
  }
  @media (min-width: 1200px) {
    .container {
      max-width: 960px;
    }
  }
  #footer {
    background-color: #282c2d;
    background-size: cover;
    padding: 40px 0 80px;
    color: #f3f3f3;
    font-size: 0.9em;
  }
  #footer h1,
  #footer h2,
  #footer h3,
  #footer h4,
  #footer h5,
  #footer h6,
  #footer .h1,
  #footer .h2,
  #footer .h3,
  #footer .h4,
  #footer .h5,
  #footer .h6 {
    color: #669900;
  }
  #footer a {
    color: #ffffff;
    font-weight: 300;
  }
  #footer .menu {
    margin-bottom: 2em;
  }
  #footer .menu li {
    margin-bottom: 0.3em;
  }
  #footer .menu li.list-header {
    font-weight: 400;
    color: #669900;
    text-transform: uppercase;
    margin-bottom: 0.6em;
    font-size: 1em;
  }
  #footer .menu li.list-header a {
    color: inherit;
    font-weight: inherit;
  }
  #footer .footer-questions,
  #footer .footer-about {
    padding-bottom: 1em;
    margin-bottom: 1em;
    border-bottom: 1px solid #365365;
    font-weight: 300;
    line-height: 1.5;
  }
  #footer .footer-questions h1,
  #footer .footer-about h1,
  #footer .footer-questions h2,
  #footer .footer-about h2,
  #footer .footer-questions h3,
  #footer .footer-about h3,
  #footer .footer-questions h4,
  #footer .footer-about h4,
  #footer .footer-questions h5,
  #footer .footer-about h5 {
    color: white;
    font-weight: 300;
    font-size: 1.1em;
    margin: 0 0 5px 0;
  }
  #footer .footer-questions a,
  #footer .footer-about a {
    color: #669900;
  }
  #footer .footer-about {
    font-size: 0.8em;
    line-height: 1.7;
  }
  #footer .footer-copyright {
    color: #D7D8DA;
    font-weight: 300;
    font-size: 0.8em;
  }
  #footer .footer-copyright a {
    color: #D7D8DA;
  }
  .partners {
    text-align: center;
    padding: 2em 0 0 0;
    margin: 2em 0 0 0;
    border-top: 1px solid white;
  }
  .partners h3 {
    margin-top: 0;
  }
  .partners .partner {
    display: inline-block;
    margin: 7.5px;
  }
  @media (min-width: 992px) {
    #footer {
      background-image: url(/core/fileparse.php/10/urlt/../img/misc/bg_footer.png);
      background-position: center top;
      background-repeat: no-repeat;
    }
    #footer .footer-info {
      padding-right: 0;
    }
    #footer .footer-logo {
      margin-top: -38px;
    }
  }
  .btn {
    /*  CVL - Not sure where its being used, commented out for the moment to work on buttons for Locations
    border-radius: 0;
    text-transform: uppercase;
    padding: 13px 30px;
    font-size: 1em;
    */
  }
  .btn-sm {
    font-size: 0.9em;
  }
  .btn-lg {
    font-size: 1.1em;
  }
  .btn-rounded {
    border-radius: 10px;
  }
  .btn-block {
    display: block;
  }
  .btn-default {
    color: #333333;
    background-color: #ffffff;
    border-color: #cccccc;
  }
  .btn-default:hover,
  .btn-default:focus,
  .btn-default:active,
  .btn-default.active,
  .open .dropdown-toggle.btn-default {
    color: #333333;
    background-color: #ebebeb;
    border-color: #adadad;
  }
  .btn-default:active,
  .btn-default.active,
  .open .dropdown-toggle.btn-default {
    background-image: none;
  }
  .btn-default.disabled,
  .btn-default[disabled],
  fieldset[disabled] .btn-default,
  .btn-default.disabled:hover,
  .btn-default[disabled]:hover,
  fieldset[disabled] .btn-default:hover,
  .btn-default.disabled:focus,
  .btn-default[disabled]:focus,
  fieldset[disabled] .btn-default:focus,
  .btn-default.disabled:active,
  .btn-default[disabled]:active,
  fieldset[disabled] .btn-default:active,
  .btn-default.disabled.active,
  .btn-default[disabled].active,
  fieldset[disabled] .btn-default.active {
    background-color: #ffffff;
    border-color: #cccccc;
  }
  .btn-primary {
    color: #ffffff;
    background-color: #669900;
    border-color: #558000;
  }
  .btn-primary:hover,
  .btn-primary:focus,
  .btn-primary:active,
  .btn-primary.active,
  .open .dropdown-toggle.btn-primary {
    color: #ffffff;
    background-color: #4b7000;
    border-color: #2c4200;
  }
  .btn-primary:active,
  .btn-primary.active,
  .open .dropdown-toggle.btn-primary {
    background-image: none;
  }
  .btn-primary.disabled,
  .btn-primary[disabled],
  fieldset[disabled] .btn-primary,
  .btn-primary.disabled:hover,
  .btn-primary[disabled]:hover,
  fieldset[disabled] .btn-primary:hover,
  .btn-primary.disabled:focus,
  .btn-primary[disabled]:focus,
  fieldset[disabled] .btn-primary:focus,
  .btn-primary.disabled:active,
  .btn-primary[disabled]:active,
  fieldset[disabled] .btn-primary:active,
  .btn-primary.disabled.active,
  .btn-primary[disabled].active,
  fieldset[disabled] .btn-primary.active {
    background-color: #669900;
    border-color: #558000;
  }
  .btn-warning {
    color: #ffffff;
    background-color: #fb9600;
    border-color: #e28700;
  }
  .btn-warning:hover,
  .btn-warning:focus,
  .btn-warning:active,
  .btn-warning.active,
  .open .dropdown-toggle.btn-warning {
    color: #ffffff;
    background-color: #d27e00;
    border-color: #a46200;
  }
  .btn-warning:active,
  .btn-warning.active,
  .open .dropdown-toggle.btn-warning {
    background-image: none;
  }
  .btn-warning.disabled,
  .btn-warning[disabled],
  fieldset[disabled] .btn-warning,
  .btn-warning.disabled:hover,
  .btn-warning[disabled]:hover,
  fieldset[disabled] .btn-warning:hover,
  .btn-warning.disabled:focus,
  .btn-warning[disabled]:focus,
  fieldset[disabled] .btn-warning:focus,
  .btn-warning.disabled:active,
  .btn-warning[disabled]:active,
  fieldset[disabled] .btn-warning:active,
  .btn-warning.disabled.active,
  .btn-warning[disabled].active,
  fieldset[disabled] .btn-warning.active {
    background-color: #fb9600;
    border-color: #e28700;
  }
  .btn-danger {
    color: #ffffff;
    background-color: #d9534f;
    border-color: #d43f3a;
  }
  .btn-danger:hover,
  .btn-danger:focus,
  .btn-danger:active,
  .btn-danger.active,
  .open .dropdown-toggle.btn-danger {
    color: #ffffff;
    background-color: #d2322d;
    border-color: #ac2925;
  }
  .btn-danger:active,
  .btn-danger.active,
  .open .dropdown-toggle.btn-danger {
    background-image: none;
  }
  .btn-danger.disabled,
  .btn-danger[disabled],
  fieldset[disabled] .btn-danger,
  .btn-danger.disabled:hover,
  .btn-danger[disabled]:hover,
  fieldset[disabled] .btn-danger:hover,
  .btn-danger.disabled:focus,
  .btn-danger[disabled]:focus,
  fieldset[disabled] .btn-danger:focus,
  .btn-danger.disabled:active,
  .btn-danger[disabled]:active,
  fieldset[disabled] .btn-danger:active,
  .btn-danger.disabled.active,
  .btn-danger[disabled].active,
  fieldset[disabled] .btn-danger.active {
    background-color: #d9534f;
    border-color: #d43f3a;
  }
  .btn-success {
    color: #ffffff;
    background-color: #5cb85c;
    border-color: #4cae4c;
  }
  .btn-success:hover,
  .btn-success:focus,
  .btn-success:active,
  .btn-success.active,
  .open .dropdown-toggle.btn-success {
    color: #ffffff;
    background-color: #47a447;
    border-color: #398439;
  }
  .btn-success:active,
  .btn-success.active,
  .open .dropdown-toggle.btn-success {
    background-image: none;
  }
  .btn-success.disabled,
  .btn-success[disabled],
  fieldset[disabled] .btn-success,
  .btn-success.disabled:hover,
  .btn-success[disabled]:hover,
  fieldset[disabled] .btn-success:hover,
  .btn-success.disabled:focus,
  .btn-success[disabled]:focus,
  fieldset[disabled] .btn-success:focus,
  .btn-success.disabled:active,
  .btn-success[disabled]:active,
  fieldset[disabled] .btn-success:active,
  .btn-success.disabled.active,
  .btn-success[disabled].active,
  fieldset[disabled] .btn-success.active {
    background-color: #5cb85c;
    border-color: #4cae4c;
  }
  .btn-info {
    color: #ffffff;
    background-color: #5bc0de;
    border-color: #46b8da;
  }
  .btn-info:hover,
  .btn-info:focus,
  .btn-info:active,
  .btn-info.active,
  .open .dropdown-toggle.btn-info {
    color: #ffffff;
    background-color: #39b3d7;
    border-color: #269abc;
  }
  .btn-info:active,
  .btn-info.active,
  .open .dropdown-toggle.btn-info {
    background-image: none;
  }
  .btn-info.disabled,
  .btn-info[disabled],
  fieldset[disabled] .btn-info,
  .btn-info.disabled:hover,
  .btn-info[disabled]:hover,
  fieldset[disabled] .btn-info:hover,
  .btn-info.disabled:focus,
  .btn-info[disabled]:focus,
  fieldset[disabled] .btn-info:focus,
  .btn-info.disabled:active,
  .btn-info[disabled]:active,
  fieldset[disabled] .btn-info:active,
  .btn-info.disabled.active,
  .btn-info[disabled].active,
  fieldset[disabled] .btn-info.active {
    background-color: #5bc0de;
    border-color: #46b8da;
  }
  .btn {
    border: none;
  }
  .tabbable.row {
    margin-left: 0;
    margin-right: 0;
  }
  ul.nav-tabs {
    margin-bottom: 1em;
    border-bottom: none;
  }
  ul.nav-tabs li {
    float: none;
  }
  ul.nav-tabs li a {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: 1px solid #e7e7e7;
  }
  ul.nav-tabs li:last-child {
    margin-bottom: 0;
    border-bottom: none;
  }
  ul.nav-tabs li.active a,
  ul.nav-tabs li.active a:hover {
    color: #669900;
    border-top: 4px solid #669900;
    border-bottom: 1px solid #e7e7e7;
  }
  .vertical-tabs ul.nav-stacked {
    margin-right: 0;
    border-bottom: 0;
    border-right: 1px solid #e7e7e7;
  }
  .vertical-tabs ul.nav-stacked li {
    margin-right: -18px;
  }
  .vertical-tabs ul.nav-stacked li a {
    color: #a1a1a1;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border-left: 4px solid #e7e7e7;
    position: relative;
  }
  .vertical-tabs ul.nav-stacked li a i {
    font-size: 22px;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -10px;
    color: #e7e7e7;
  }
  .vertical-tabs ul.nav-stacked li a small {
    display: block;
    font-weight: normal;
  }
  .vertical-tabs ul.nav-stacked li a:hover i {
    color: #669900;
  }
  .vertical-tabs ul.nav-stacked li.active a,
  .vertical-tabs ul.nav-stacked li.active a:hover {
    border-top: 1px solid #e7e7e7;
    border-bottom: 1px solid #e7e7e7;
    border-left: 4px solid #669900;
  }
  .vertical-tabs ul.nav-stacked li.active a i,
  .vertical-tabs ul.nav-stacked li.active a:hover i {
    color: #669900;
  }
  .vertical-tabs .tab-content {
    margin-left: -15px;
    margin-right: -15px;
  }
  .bold-tabs ul li a {
    font-weight: bold;
    font-size: 18px;
  }
  .bold-tabs ul li a i {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
  }
  .bold-tabs ul li a small {
    display: block;
    font-weight: normal;
  }
  .bold-tabs ul li a:hover i {
    color: #669900;
  }
  @media (min-width: 768px) {
    .tabbable > ul.nav-tabs,
    ul.nav-tabs {
      border-bottom: 1px solid #e7e7e7;
    }
    .tabbable > ul.nav-tabs li,
    ul.nav-tabs li {
      float: left;
    }
    .tabbable > ul.nav-tabs li a,
    ul.nav-tabs li a {
      border: none;
    }
    .tabbable > ul.nav-tabs li a:last-child,
    ul.nav-tabs li a:last-child {
      margin-bottom: -1px;
      border-bottom: none;
    }
    .tabbable > ul.nav-tabs li.active a,
    ul.nav-tabs li.active a,
    .tabbable > ul.nav-tabs li.active a:hover,
    ul.nav-tabs li.active a:hover {
      border-top: 4px solid #669900;
      border-right: 1px solid #e7e7e7;
      border-left: 1px solid #e7e7e7;
      border-bottom-color: transparent;
    }
    .vertical-tabs ul.nav-tabs {
      display: block;
      border-bottom: none;
    }
    .vertical-tabs ul.nav-tabs li {
      float: none;
    }
    .vertical-tabs ul.nav-tabs li a {
      border-right: none;
    }
    .vertical-tabs ul.nav-tabs li a i {
      -webkit-transform: rotate(0);
      -ms-transform: rotate(0);
      transform: rotate(0);
    }
    .vertical-tabs ul.nav-tabs li.active a,
    .vertical-tabs ul.nav-tabs li.active a:hover {
      border-left: 4px solid #669900;
      border-top: 1px solid #e7e7e7;
      border-bottom: 1px solid #e7e7e7;
      border-right: none;
    }
    .vertical-tabs .tab-content {
      margin-right: auto;
      margin-left: auto;
    }
  }
  .flexslider-wrapper {
    position: relative;
    overflow: hidden;
  }
  .flexslider {
    background: transparent;
    padding: 0;
    list-style: none;
    margin: 0;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    text-align: center;
  }
  .flexslider {
    /* Hide the slides before the JS is loaded. Avoids image jumping */
  }
  .flexslider .slides > .slide,
  .flexslider .items > .item {
    display: none;
    -webkit-backface-visibility: hidden;
  }
  .flex-direction-nav a {
    text-indent: 0;
    font-size: 0;
    text-align: center;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    bottom: 0;
    right: 0;
    background: #669900;
    color: white;
    width: 28px;
    height: 28px;
    line-height: 22px;
    top: 50%;
    font-size: 18px;
    font-weight: 100;
    opacity: 50;
    filter: alpha(opacity=5000);
    opacity: 0.5;
    filter: alpha(opacity=50);
  }
  .flex-direction-nav a:before {
    content: '';
  }
  .flex-direction-nav a.flex-next {
    right: 0 !important;
    text-align: center;
  }
  .flex-direction-nav a.flex-next:before {
    content: '';
  }
  .flex-direction-nav a.flex-prev {
    left: 0 !important;
    right: auto;
  }
  .flex-direction-nav a.flex-prev:before {
    content: '';
  }
  .flex-direction-nav a:hover {
    text-decoration: none;
  }
  .flex-control-nav,
  .slides-pagination {
    position: absolute;
    bottom: 20px;
    right: auto;
    left: 20px;
    text-align: center;
    width: auto;
    z-index: 3;
  }
  .slides-pagination{
  display: none;
  }
  .flex-control-nav li,
  .slides-pagination li {
    margin: 0 3px;
  }
  .flex-control-nav li a,
  .slides-pagination li a,
  .flex-control-nav a,
  .slides-pagination a {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    height: 15px;
    width: 15px;
    background: #bbbbbb;
    display: inline-block;
    zoom: 1;
    *display: inline;
    font-size: 0;
    margin-right: 5px;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  }
  .flex-control-nav li a:hover,
  .slides-pagination li a:hover,
  .flex-control-nav a:hover,
  .slides-pagination a:hover,
  .flex-control-nav li a.flex-active,
  .slides-pagination li a.flex-active,
  .flex-control-nav a.flex-active,
  .slides-pagination a.flex-active,
  .flex-control-nav li a.current,
  .slides-pagination li a.current,
  .flex-control-nav a.current,
  .slides-pagination a.current {
    background: #669900;
  }
  .slide {
    overflow: hidden;
    -webkit-transform: translateZ(0);
  }
  .slide .slide-caption {
    text-align: left;
    margin: 15px;
    padding-top: 2em;
    padding-bottom: 2em;
    z-index: 101;
    position: relative;
  }
  .slide .slide-caption h1,
  .slide .slide-caption h2,
  .slide .slide-caption h3,
  .slide .slide-caption h4,
  .slide .slide-caption h5,
  .slide .slide-caption h6,
  .slide .slide-caption p {
    margin: 0;
    color: white;
    font-weight: 300;
    font-family: "BebasNeue", Helvetica Neue, Helvetica, Arial, sans-serif;
    line-height: 1.1;
    text-shadow: 2px 2px 4px #969696;
  }
  .flexslider .slide img {
    width: auto;
    display: block;
    max-width: 100%;
    height: auto !important;
    margin: 0 auto;
  }
  .flexslider .slide img.stretch-fit {
    width: 100%;
  }
  .slide-bg {
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
  }
  img.slide-bg {
    /* Set rules to fill background */
    min-height: 100% !important;
    min-width: 1024px !important;
    /* Set up proportionate scaling */
    width: 100% !important;
    height: auto !important;
    /* Set up positioning */
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    z-index: 100;
  }
  .flexslider-carousel {
    position: relative;
  }
  .flexslider-carousel .flex-direction-nav a {
    opacity: 80;
    filter: alpha(opacity=8000);
    opacity: 0.8;
    filter: alpha(opacity=80);
    top: 30%;
    width: 40px;
    height: 45px;
    line-height: 45px;
    font-size: 40px;
  }
  .flexslider-carousel .flex-direction-nav a:hover {
    opacity: 90;
    filter: alpha(opacity=9000);
    opacity: 0.9;
    filter: alpha(opacity=90);
  }
  .flexslider-carousel .flex-direction-nav a:before {
    font-size: 34px;
  }
  .flexslider-carousel .flex-direction-nav a.flex-prev {
    left: 0;
  }
  .flexslider-carousel .flex-direction-nav a.flex-next {
    right: 0;
  }
  .flexslider-ticker .flex-direction-nav {
    display: none;
  }
  @media (min-width: 768px) {
    .flex-direction-nav a {
      width: 58px;
      height: 58px;
      line-height: 52px;
      font-size: 40px;
    }
    .flexslider-carousel {
      position: relative;
    }
    .flexslider-carousel .flex-direction-nav a {
      top: 20%;
      width: 70px;
      height: 75px;
      line-height: 75px;
      font-size: 60px;
    }
    .slide .slide-caption {
      margin-top: 3%;
      margin-bottom: 3%;
    }
    .slide .slide-caption {
      margin-left: auto;
      margin-right: auto;
    }
  }
  @media (max-width: 860px) {
    .flex-direction-nav {
      display: block;
    }
    .flex-direction-nav .flex-prev,
    .flex-direction-nav .flex-next {
      opacity: 50;
      filter: alpha(opacity=5000);
      opacity: 0.5;
      filter: alpha(opacity=50);
    }
    .flex-direction-nav .flex-prev:hover,
    .flex-direction-nav .flex-next:hover {
      opacity: 90;
      filter: alpha(opacity=9000);
      opacity: 0.9;
      filter: alpha(opacity=90);
    }
    .flex-control-nav {
      bottom: 2px;
      right: 5px;
    }
    .flexslider {
      padding-bottom: 0;
    }
    .slide .slide-caption h1,
    .slide .slide-caption h2,
    .slide .slide-caption h3,
    .slide .slide-caption h4,
    .slide .slide-caption h5,
    .slide .slide-caption h6 {
      font-size: 1.6em !important;
    }
  }
  @media (min-width: 992px) {
    .slide .slide-caption {
      margin-top: 5%;
      margin-bottom: 15%;
    }
  }
  #slider {
    max-height: 300px;
  }
  #slider .flex-direction-nav {
    display: none !important;
  }
  .welcome-caption {
    text-align: left;
    margin: 15px;
    top: 2em;
    bottom: 2em;
    z-index: 101;
    position: absolute;
    left: 55px;
  }
  .welcome-caption h1,
  .welcome-caption h2,
  .welcome-caption h3,
  .welcome-caption h4,
  .welcome-caption h5,
  .welcome-caption h6,
  .welcome-caption p {
    margin: 0;
    color: white;
    font-weight: 200;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
    line-height: 1.1;
    text-shadow: 2px 2px 4px #969696;
  }
  #featured-carousel .flex-viewport {
    margin-left: auto !important;
    margin-right: auto !important;
    width: 90%;
    font-size: 1.1em;
  }
  #featured-carousel .flex-viewport:before,
  #featured-carousel .flex-viewport:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
  }
  #featured-carousel .flex-viewport:after {
    clear: both;
  }
  #featured-carousel .item {
    width: 300px;
    float: left;
    padding-right: 0;
    text-align: center;
  }
  #featured-carousel .flex-direction-nav a.flex-prev {
    left: 0;
  }
  #featured-carousel .flex-direction-nav a.flex-next {
    right: 0;
  }
  .overlay-wrapper {
    position: relative;
    display: block;
  }
  .overlay-wrapper .overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
  }
  .video-link {
    display: block;
    position: relative;
    padding: 6px;
    border: 1px solid #DAD8DB;
  }
  .video-link .video-link-icon {
    background: url(/core/fileparse.php/10/urlt/../img/misc/icon_video-link.png) center center no-repeat;
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 80;
    filter: alpha(opacity=8000);
    opacity: 0.8;
    filter: alpha(opacity=80);
    background-size: 50px 50px;
  }
  .video-link:hover {
    border-color: #c1bdc3;
  }
  .video-link:hover .video-link-icon,
  .video-link:hover img {
    opacity: 100;
    filter: alpha(opacity=10000);
    opacity: 1;
    filter: alpha(opacity=100);
  }
  .news-event-item:before,
  .news-event-item:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
  }
  .news-event-item:after {
    clear: both;
  }
  .news-event-item h4 {
    margin: 0 0 5px 0;
    font-weight: 400;
  }
  .news-event-item p {
    font-size: 1.1em;
    clear: left;
  }
  .news-event-date {
    float: left;
    margin: 0 0.5em 1.2em 0;
    font-weight: 400;
    text-align: center;
    line-height: 1;
  }
  .news-event-date .news-event-date-m {
    font-size: 1.2em;
    display: block;
  }
  .news-event-date .news-event-date-d {
    font-size: 2.6em;
    display: block;
  }
  .upcoming-events .news-event-item {
    margin-bottom: 2em;
  }
  .upcoming-events h4 {
    font-size: 1.2em;
  }
  @media (min-width: 768px) {
    #slider {
      max-height: 400px;
    }
    #featured-carousel .flex-viewport {
      width: 620px;
    }
    #featured-carousel .item {
      width: 300px;
      padding-right: 20px;
      box-sizing: content-box;
    }
    .video-link .video-link-icon {
      background-size: 120px 120px;
    }
  }
  @media (min-width: 992px) {
    #slider {
      max-height: none;
    }
    .header-fixed #highlighted {
      top: -205px;
      position: relative;
      margin-bottom: -205px;
  overflow:hidden;
    }
    .header-fixed #main-slider .slide-content {
      padding-top: 205px;
    }
    .welcome-caption {
      text-align: left;
      margin: 405px 15px 15px 15px;
      top: 15%;
      bottom: 10%;
      z-index: 101;
      position: absolute;
    }
    #featured-carousel .flex-viewport {
      width: 940px;
      overflow: visible !important;
    }
    #featured-carousel .item {
      width: 300px;
      padding-right: 20px;
      box-sizing: content-box;
    }
  }
  .font-default-link {
    font-size: 16px !important;
    line-height: 1.328571429;
  }
  .font-lg-link {
    font-size: 17px !important;
  }
  .font-xlg-link {
    font-size: 18px !important;
  }
  @media (min-width: 992px) {
    /*html.font-lg,*/
    html.font-lg body #content,
    html.font-lg body .content-wrapper {
      line-height: 22px;
      font-size: 17px;
    }
    /*html.font-lg h1,*/
    html.font-lg body #content h1,
    html.font-lg body .content-wrapper h1 {
      font-size: 51.849999999999994px;
    }
    /*html.font-lg h1.enlarged.enlarged,*/
    html.font-lg body #content h1.enlarged,
    html.font-lg body .content-wrapper h1.enlarged {
      font-size: 135.15px;
    }
    /*html.font-lg h2,*/
    html.font-lg body #content h2,
    html.font-lg body .content-wrapper h2 {
      font-size: 50.150000000000006px;
    }
    /*html.font-lg h2.enlarged,*/
    html.font-lg body #content h2.enlarged,
    html.font-lg body .content-wrapper h2.enlarged {
      font-size: 119.85px;
    }
    /*html.font-lg h3,*/
    html.font-lg body #content h3,
    html.font-lg body .content-wrapper h3 {
      font-size: 31.450000000000003px;
    }
    /*html.font-lg h4,*/
    html.font-lg body #content h4,
    html.font-lg body .content-wrapper h4 {
      font-size: 22.950000000000003px;
      font-weight: 400;
    }
    /*html.font-lg h5,*/
    html.font-lg body #content h5,
    html.font-lg body .content-wrapper h5 {
      font-size: 17.85px;
      font-weight: 400;
    }
    /*html.font-lg h6,*/
    html.font-lg body #content h6,
    html.font-lg body .content-wrapper h6 {
      font-size: 14.45px;
      font-weight: 400;
    }
    html.font-lg h1 small,
    html.font-lg body h1 small {
      font-size: 26.35px;
    }
    html.font-lg h2 small,
    html.font-lg body h2 small {
      font-size: 17.85px;
    }
    html.font-lg h3 small,
    html.font-lg body h3 small {
      font-size: 17px;
    }
    html.font-lg h4 small,
    html.font-lg body h4 small {
      font-size: 17px;
    }
    html.font-lg .header-navbar,
    html.font-lg body .header-navbar {
      /*height: 45px;*/
    }
    html.font-lg .header-navbar .navbar-nav,
    html.font-lg body .header-navbar .navbar-nav {
      /*height: 45px;*/
    }
    html.font-lg .header-navbar .navbar-nav > li > a.navbar-brand,
    html.font-lg body .header-navbar .navbar-nav > li > a.navbar-brand,
    html.font-lg .header-navbar .navbar-nav > li > a.navbar-brand-mobile,
    html.font-lg body .header-navbar .navbar-nav > li > a.navbar-brand-mobile {
      /*font-size: 0 !important;*/
    }
    /*html.font-xlg,*/
    /*html.font-xlg body {*/
    html.font-xlg body #content,
    html.font-xlg body .content-wrapper {
      line-height: 23px;
      font-size: 22px;
    }
    /*html.font-xlg h1,*/
    /*html.font-xlg body h1 {*/
    html.font-xlg body #content h1,
    html.font-xlg body .content-wrapper h1 {
      font-size: 54.9px;
    }
    html.font-xlg h1.enlarged,
    html.font-xlg body h1.enlarged {
      /*font-size: 143.1px;*/
    }
    /*html.font-xlg h2,*/
    /*html.font-xlg body h2 {*/
    html.font-xlg body #content h2,
    html.font-xlg body .content-wrapper h2 {
      font-size: 53.1px;
    }
    html.font-xlg h2.enlarged,
    html.font-xlg body h2.enlarged {
      /*font-size: 126.89999999999999px;*/
    }
    /*html.font-xlg h3,*/
    html.font-xlg body #content h3,
    html.font-xlg body .content-wrapper h3 {
      font-size: 33.300000000000004px;
    }
    /*html.font-xlg h4,*/
    html.font-xlg body #content h4,
    html.font-xlg body .content-wrapper h4 {
      font-size: 24.3px;
      font-weight: 400;
    }
    /*html.font-xlg h5,*/
    html.font-xlg body #content h5,
    html.font-xlg body .content-wrapper h5 {
      font-size: 18.900000000000002px;
      font-weight: 400;
    }
    /*html.font-xlg h6,*/
    html.font-xlg body #content h6,
    html.font-xlg body .content-wrapper h6 {
      font-size: 15.299999999999999px;
      font-weight: 400;
    }
    html.font-xlg h1 small,
    html.font-xlg body h1 small {
      font-size: 27.900000000000002px;
    }
    html.font-xlg h2 small,
    html.font-xlg body h2 small {
      font-size: 18.900000000000002px;
    }
    html.font-xlg h3 small,
    html.font-xlg body h3 small {
      font-size: 18px;
    }
    html.font-xlg h4 small,
    html.font-xlg body h4 small {
      font-size: 18px;
    }
    html.font-xlg .header .weather-widget,
    html.font-xlg body .header .weather-widget {
      /*margin-right: 10px;*/
      /*font-weight: 400;*/
    }
  
  
    html.font-xlg .header .weather-widget .weather-widget-current,
    html.font-xlg body .header .weather-widget .weather-widget-current {
      /*padding-right: 0.5em !important;*/
    }
    html.font-xlg .header .social-media .facebook-icon .fa-stack,
    html.font-xlg body .header .social-media .facebook-icon .fa-stack,
    html.font-xlg .header .social-media .twitter-icon .fa-stack,
    html.font-xlg body .header .social-media .twitter-icon .fa-stack,
    html.font-xlg .header .social-media .youtube-icon .fa-stack,
    html.font-xlg body .header .social-media .youtube-icon .fa-stack {
      /*font-size: 1.2em;*/
    }
    html.font-xlg .header-navbar,
    html.font-xlg body .header-navbar {
      /*height: 50px;*/
    }
    html.font-xlg .header-navbar .navbar-nav,
    html.font-xlg body .header-navbar .navbar-nav {
      /*height: 50px;*/
    }
    html.font-xlg .header-navbar .navbar-nav > li > a,
    html.font-xlg body .header-navbar .navbar-nav > li > a {
      /*padding-left: 8px !important;*/
      /*padding-right: 8px !important;*/
      /*font-size: 1em !important;*/
    }
    html.font-xlg .header-navbar .navbar-nav > li > a.navbar-brand,
    html.font-xlg body .header-navbar .navbar-nav > li > a.navbar-brand,
    html.font-xlg .header-navbar .navbar-nav > li > a.navbar-brand-mobile,
    html.font-xlg body .header-navbar .navbar-nav > li > a.navbar-brand-mobile {
      /*font-size: 0 !important;*/
    }
  }
  
  #flickr{
  position: absolute;
  bottom: 10px;
  color: rgb(255, 255, 255);
  font-weight: 700;
  right: 15px;
  opacity: 1;
  z-index: 100;
  font-size: 14px;
  text-shadow: 0 0 5px rgba(0,0,0,0.75)
  }