/* Minification failed. Returning unminified contents.
(3126,114001): run-time error CSS1030: Expected identifier, found '.'
(3126,114031): run-time error CSS1031: Expected selector, found ')'
(3126,114031): run-time error CSS1025: Expected comma or open brace, found ')'
(3126,114148): run-time error CSS1030: Expected identifier, found '.'
(3126,114178): run-time error CSS1031: Expected selector, found ')'
(3126,114178): run-time error CSS1025: Expected comma or open brace, found ')'
 */
@charset "UTF-8";

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

Copyright (c) 2014 Daniel Eden
*/

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

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

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

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    -webkit-transform: translate3d(0,0,0);
    -ms-transform: translate3d(0,0,0);
    transform: translate3d(0,0,0);
  }

  40%, 43% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -30px, 0);
    -ms-transform: translate3d(0, -30px, 0);
    transform: translate3d(0, -30px, 0);
  }

  70% {
    -webkit-transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    transition-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    -webkit-transform: translate3d(0, -15px, 0);
    -ms-transform: translate3d(0, -15px, 0);
    transform: translate3d(0, -15px, 0);
  }

  90% {
    -webkit-transform: translate3d(0,-4px,0);
    -ms-transform: translate3d(0,-4px,0);
    transform: translate3d(0,-4px,0);
  }
}

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

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

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

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

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

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

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

@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

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

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  50% {
    -webkit-transform: scale3d(1.05, 1.05, 1.05);
    -ms-transform: scale3d(1.05, 1.05, 1.05);
    transform: scale3d(1.05, 1.05, 1.05);
  }

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

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

@-webkit-keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

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

@keyframes rubberBand {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  30% {
    -webkit-transform: scale3d(1.25, 0.75, 1);
    -ms-transform: scale3d(1.25, 0.75, 1);
    transform: scale3d(1.25, 0.75, 1);
  }

  40% {
    -webkit-transform: scale3d(0.75, 1.25, 1);
    -ms-transform: scale3d(0.75, 1.25, 1);
    transform: scale3d(0.75, 1.25, 1);
  }

  50% {
    -webkit-transform: scale3d(1.15, 0.85, 1);
    -ms-transform: scale3d(1.15, 0.85, 1);
    transform: scale3d(1.15, 0.85, 1);
  }

  65% {
    -webkit-transform: scale3d(.95, 1.05, 1);
    -ms-transform: scale3d(.95, 1.05, 1);
    transform: scale3d(.95, 1.05, 1);
  }

  75% {
    -webkit-transform: scale3d(1.05, .95, 1);
    -ms-transform: scale3d(1.05, .95, 1);
    transform: scale3d(1.05, .95, 1);
  }

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

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

@-webkit-keyframes shake {
  0%, 100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

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

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

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

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

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

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

@-webkit-keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

@keyframes swing {
  20% {
    -webkit-transform: rotate3d(0, 0, 1, 15deg);
    -ms-transform: rotate3d(0, 0, 1, 15deg);
    transform: rotate3d(0, 0, 1, 15deg);
  }

  40% {
    -webkit-transform: rotate3d(0, 0, 1, -10deg);
    -ms-transform: rotate3d(0, 0, 1, -10deg);
    transform: rotate3d(0, 0, 1, -10deg);
  }

  60% {
    -webkit-transform: rotate3d(0, 0, 1, 5deg);
    -ms-transform: rotate3d(0, 0, 1, 5deg);
    transform: rotate3d(0, 0, 1, 5deg);
  }

  80% {
    -webkit-transform: rotate3d(0, 0, 1, -5deg);
    -ms-transform: rotate3d(0, 0, 1, -5deg);
    transform: rotate3d(0, 0, 1, -5deg);
  }

  100% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    -ms-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

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

@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

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

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
    -ms-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
  }

  10%, 20% {
    -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
  }

  30%, 50%, 70%, 90% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }

  40%, 60%, 80% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    -ms-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }

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

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

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

@-webkit-keyframes wobble {
  0% {
    -webkit-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes wobble {
  0% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }

  15% {
    -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    -ms-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }

  30% {
    -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    -ms-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }

  45% {
    -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    -ms-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }

  60% {
    -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    -ms-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }

  75% {
    -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    -ms-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }

  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

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

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    -ms-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  20% {
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

  40% {
    -webkit-transform: scale3d(.9, .9, .9);
    -ms-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(1.03, 1.03, 1.03);
    -ms-transform: scale3d(1.03, 1.03, 1.03);
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    -webkit-transform: scale3d(.97, .97, .97);
    -ms-transform: scale3d(.97, .97, .97);
    transform: scale3d(.97, .97, .97);
  }

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

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
    -ms-transform: translate3d(0, -3000px, 0);
    transform: translate3d(0, -3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, 25px, 0);
    -ms-transform: translate3d(0, 25px, 0);
    transform: translate3d(0, 25px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, 5px, 0);
    -ms-transform: translate3d(0, 5px, 0);
    transform: translate3d(0, 5px, 0);
  }

  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
    -ms-transform: translate3d(-3000px, 0, 0);
    transform: translate3d(-3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(25px, 0, 0);
    -ms-transform: translate3d(25px, 0, 0);
    transform: translate3d(25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(-10px, 0, 0);
    -ms-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(5px, 0, 0);
    -ms-transform: translate3d(5px, 0, 0);
    transform: translate3d(5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
    -ms-transform: translate3d(3000px, 0, 0);
    transform: translate3d(3000px, 0, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(-25px, 0, 0);
    -ms-transform: translate3d(-25px, 0, 0);
    transform: translate3d(-25px, 0, 0);
  }

  75% {
    -webkit-transform: translate3d(10px, 0, 0);
    -ms-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }

  90% {
    -webkit-transform: translate3d(-5px, 0, 0);
    -ms-transform: translate3d(-5px, 0, 0);
    transform: translate3d(-5px, 0, 0);
  }

  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

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

@keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
    -ms-transform: translate3d(0, 3000px, 0);
    transform: translate3d(0, 3000px, 0);
  }

  60% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  75% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  90% {
    -webkit-transform: translate3d(0, -5px, 0);
    -ms-transform: translate3d(0, -5px, 0);
    transform: translate3d(0, -5px, 0);
  }

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

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

@-webkit-keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

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

@keyframes bounceOut {
  20% {
    -webkit-transform: scale3d(.9, .9, .9);
    -ms-transform: scale3d(.9, .9, .9);
    transform: scale3d(.9, .9, .9);
  }

  50%, 55% {
    opacity: 1;
    -webkit-transform: scale3d(1.1, 1.1, 1.1);
    -ms-transform: scale3d(1.1, 1.1, 1.1);
    transform: scale3d(1.1, 1.1, 1.1);
  }

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

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

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

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
    -ms-transform: translate3d(0, 10px, 0);
    transform: translate3d(0, 10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, -20px, 0);
    -ms-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

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

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

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

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

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

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

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

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

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

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

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

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

@-webkit-keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

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

@keyframes bounceOutUp {
  20% {
    -webkit-transform: translate3d(0, -10px, 0);
    -ms-transform: translate3d(0, -10px, 0);
    transform: translate3d(0, -10px, 0);
  }

  40%, 45% {
    opacity: 1;
    -webkit-transform: translate3d(0, 20px, 0);
    -ms-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

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

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

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

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

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

  100% {
    opacity: 0;
  }
}

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

  100% {
    opacity: 0;
  }
}

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

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    -ms-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

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

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

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

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

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

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

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

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

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

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

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

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

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

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    -ms-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

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

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

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

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

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

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

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    -ms-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

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

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

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

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

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

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

@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

@keyframes flip {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  40% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }

  50% {
    -webkit-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -ms-transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  80% {
    -webkit-transform: perspective(400px) scale3d(.95, .95, .95);
    -ms-transform: perspective(400px) scale3d(.95, .95, .95);
    transform: perspective(400px) scale3d(.95, .95, .95);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }

  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
  }
}

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

@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }
}

@keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
    opacity: 0;
  }

  40% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    -webkit-transition-timing-function: ease-in;
    transition-timing-function: ease-in;
  }

  60% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }

  80% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }

  100% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }
}

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

@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

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

@keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    -ms-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }

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

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

@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

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

@keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px);
    -ms-transform: perspective(400px);
    transform: perspective(400px);
  }

  30% {
    -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    -ms-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }

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

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

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

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

  80% {
    -webkit-transform: skewX(-5deg);
    transform: skewX(-5deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
    -ms-transform: translate3d(100%, 0, 0) skewX(-30deg);
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }

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

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

  100% {
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

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

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

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

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

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

  100% {
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

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

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
  }
}

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

@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

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

@keyframes rotateOut {
  0% {
    -webkit-transform-origin: center;
    -ms-transform-origin: center;
    transform-origin: center;
    opacity: 1;
  }

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

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

@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

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

@keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

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

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

@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

@keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    opacity: 1;
  }

  100% {
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
    -webkit-transform: rotate3d(0, 0, 1, -45deg);
    -ms-transform: rotate3d(0, 0, 1, -45deg);
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}

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

@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

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

@keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -ms-transform-origin: right bottom;
    transform-origin: right bottom;
    opacity: 1;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

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

  100% {
    opacity: 1;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
  }
}

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

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

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

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

  100% {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    -ms-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}

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

@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
    -ms-transform: scale3d(.3, .3, .3);
    transform: scale3d(.3, .3, .3);
  }

  50% {
    opacity: 1;
  }
}

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

@-webkit-keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInDown {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -ms-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInLeft {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -ms-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInRight {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -ms-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomInUp {
  0% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -ms-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  60% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

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

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

  100% {
    opacity: 0;
  }
}

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

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

  100% {
    opacity: 0;
  }
}

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

@-webkit-keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -ms-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

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

@-webkit-keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

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

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0);
  }

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

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

@-webkit-keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

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

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
    transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0);
  }

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

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

@-webkit-keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -ms-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
    -webkit-animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
  }

  100% {
    opacity: 0;
    -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -ms-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom;
    -webkit-animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}
/*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}meta.foundation-version{font-family:"/5.5.1/"}meta.foundation-mq-small{font-family:"/only screen/";width:0}meta.foundation-mq-small-only{font-family:"/only screen and (max-width: 40em)/";width:0}meta.foundation-mq-medium{font-family:"/only screen and (min-width:40.063em)/";width:40.063em}meta.foundation-mq-medium-only{font-family:"/only screen and (min-width:40.063em) and (max-width:64em)/";width:40.063em}meta.foundation-mq-large{font-family:"/only screen and (min-width:64.063em)/";width:64.063em}meta.foundation-mq-large-only{font-family:"/only screen and (min-width:64.063em) and (max-width:90em)/";width:64.063em}meta.foundation-mq-xlarge{font-family:"/only screen and (min-width:90.063em)/";width:90.063em}meta.foundation-mq-xlarge-only{font-family:"/only screen and (min-width:90.063em) and (max-width:120em)/";width:90.063em}meta.foundation-mq-xxlarge{font-family:"/only screen and (min-width:120.063em)/";width:120.063em}meta.foundation-data-attribute-namespace{font-family:false}html,body{height:100%}*,*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html,body{font-size:100%}body{background:#fff;color:#222;padding:0;margin:0;font-family:"Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;font-weight:normal;font-style:normal;line-height:1.5;position:relative;cursor:auto}a:hover{cursor:pointer}img{max-width:100%;height:auto}img{-ms-interpolation-mode:bicubic}#map_canvas img,#map_canvas embed,#map_canvas object,.map_canvas img,.map_canvas embed,.map_canvas object{max-width:none !important}.left{float:left !important}.right{float:right !important}.clearfix:before,.clearfix:after{content:" ";display:table}.clearfix:after{clear:both}.hide{display:none}.invisible{visibility:hidden}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}img{display:inline-block;vertical-align:middle}textarea{height:auto;min-height:50px}select{width:100%}.row{width:100%;margin-left:auto;margin-right:auto;margin-top:0;margin-bottom:0;max-width:62.5rem}.row:before,.row:after{content:" ";display:table}.row:after{clear:both}.row.collapse>.column,.row.collapse>.columns{padding-left:0;padding-right:0}.row.collapse .row{margin-left:0;margin-right:0}.row .row{width:auto;margin-left:-.9375rem;margin-right:-.9375rem;margin-top:0;margin-bottom:0;max-width:none}.row .row:before,.row .row:after{content:" ";display:table}.row .row:after{clear:both}.row .row.collapse{width:auto;margin:0;max-width:none}.row .row.collapse:before,.row .row.collapse:after{content:" ";display:table}.row .row.collapse:after{clear:both}.column,.columns{padding-left:.9375rem;padding-right:.9375rem;width:100%;float:left}[class*="column"]+[class*="column"]:last-child{float:right}[class*="column"]+[class*="column"].end{float:left}@media only screen{.small-push-0{position:relative;left:0%;right:auto}.small-pull-0{position:relative;right:0%;left:auto}.small-push-1{position:relative;left:8.33333%;right:auto}.small-pull-1{position:relative;right:8.33333%;left:auto}.small-push-2{position:relative;left:16.66667%;right:auto}.small-pull-2{position:relative;right:16.66667%;left:auto}.small-push-3{position:relative;left:25%;right:auto}.small-pull-3{position:relative;right:25%;left:auto}.small-push-4{position:relative;left:33.33333%;right:auto}.small-pull-4{position:relative;right:33.33333%;left:auto}.small-push-5{position:relative;left:41.66667%;right:auto}.small-pull-5{position:relative;right:41.66667%;left:auto}.small-push-6{position:relative;left:50%;right:auto}.small-pull-6{position:relative;right:50%;left:auto}.small-push-7{position:relative;left:58.33333%;right:auto}.small-pull-7{position:relative;right:58.33333%;left:auto}.small-push-8{position:relative;left:66.66667%;right:auto}.small-pull-8{position:relative;right:66.66667%;left:auto}.small-push-9{position:relative;left:75%;right:auto}.small-pull-9{position:relative;right:75%;left:auto}.small-push-10{position:relative;left:83.33333%;right:auto}.small-pull-10{position:relative;right:83.33333%;left:auto}.small-push-11{position:relative;left:91.66667%;right:auto}.small-pull-11{position:relative;right:91.66667%;left:auto}.column,.columns{position:relative;padding-left:.9375rem;padding-right:.9375rem;float:left}.small-1{width:8.33333%}.small-2{width:16.66667%}.small-3{width:25%}.small-4{width:33.33333%}.small-5{width:41.66667%}.small-6{width:50%}.small-7{width:58.33333%}.small-8{width:66.66667%}.small-9{width:75%}.small-10{width:83.33333%}.small-11{width:91.66667%}.small-12{width:100%}.small-offset-0{margin-left:0% !important}.small-offset-1{margin-left:8.33333% !important}.small-offset-2{margin-left:16.66667% !important}.small-offset-3{margin-left:25% !important}.small-offset-4{margin-left:33.33333% !important}.small-offset-5{margin-left:41.66667% !important}.small-offset-6{margin-left:50% !important}.small-offset-7{margin-left:58.33333% !important}.small-offset-8{margin-left:66.66667% !important}.small-offset-9{margin-left:75% !important}.small-offset-10{margin-left:83.33333% !important}.small-offset-11{margin-left:91.66667% !important}.small-reset-order{margin-left:0;margin-right:0;left:auto;right:auto;float:left}.column.small-centered,.columns.small-centered{margin-left:auto;margin-right:auto;float:none}.column.small-uncentered,.columns.small-uncentered{margin-left:0;margin-right:0;float:left}.column.small-centered:last-child,.columns.small-centered:last-child{float:none}.column.small-uncentered:last-child,.columns.small-uncentered:last-child{float:left}.column.small-uncentered.opposite,.columns.small-uncentered.opposite{float:right}.row.small-collapse>.column,.row.small-collapse>.columns{padding-left:0;padding-right:0}.row.small-collapse .row{margin-left:0;margin-right:0}.row.small-uncollapse>.column,.row.small-uncollapse>.columns{padding-left:.9375rem;padding-right:.9375rem;float:left}}@media only screen and (min-width: 40.063em){.medium-push-0{position:relative;left:0%;right:auto}.medium-pull-0{position:relative;right:0%;left:auto}.medium-push-1{position:relative;left:8.33333%;right:auto}.medium-pull-1{position:relative;right:8.33333%;left:auto}.medium-push-2{position:relative;left:16.66667%;right:auto}.medium-pull-2{position:relative;right:16.66667%;left:auto}.medium-push-3{position:relative;left:25%;right:auto}.medium-pull-3{position:relative;right:25%;left:auto}.medium-push-4{position:relative;left:33.33333%;right:auto}.medium-pull-4{position:relative;right:33.33333%;left:auto}.medium-push-5{position:relative;left:41.66667%;right:auto}.medium-pull-5{position:relative;right:41.66667%;left:auto}.medium-push-6{position:relative;left:50%;right:auto}.medium-pull-6{position:relative;right:50%;left:auto}.medium-push-7{position:relative;left:58.33333%;right:auto}.medium-pull-7{position:relative;right:58.33333%;left:auto}.medium-push-8{position:relative;left:66.66667%;right:auto}.medium-pull-8{position:relative;right:66.66667%;left:auto}.medium-push-9{position:relative;left:75%;right:auto}.medium-pull-9{position:relative;right:75%;left:auto}.medium-push-10{position:relative;left:83.33333%;right:auto}.medium-pull-10{position:relative;right:83.33333%;left:auto}.medium-push-11{position:relative;left:91.66667%;right:auto}.medium-pull-11{position:relative;right:91.66667%;left:auto}.column,.columns{position:relative;padding-left:.9375rem;padding-right:.9375rem;float:left}.medium-1{width:8.33333%}.medium-2{width:16.66667%}.medium-3{width:25%}.medium-4{width:33.33333%}.medium-5{width:41.66667%}.medium-6{width:50%}.medium-7{width:58.33333%}.medium-8{width:66.66667%}.medium-9{width:75%}.medium-10{width:83.33333%}.medium-11{width:91.66667%}.medium-12{width:100%}.medium-offset-0{margin-left:0% !important}.medium-offset-1{margin-left:8.33333% !important}.medium-offset-2{margin-left:16.66667% !important}.medium-offset-3{margin-left:25% !important}.medium-offset-4{margin-left:33.33333% !important}.medium-offset-5{margin-left:41.66667% !important}.medium-offset-6{margin-left:50% !important}.medium-offset-7{margin-left:58.33333% !important}.medium-offset-8{margin-left:66.66667% !important}.medium-offset-9{margin-left:75% !important}.medium-offset-10{margin-left:83.33333% !important}.medium-offset-11{margin-left:91.66667% !important}.medium-reset-order{margin-left:0;margin-right:0;left:auto;right:auto;float:left}.column.medium-centered,.columns.medium-centered{margin-left:auto;margin-right:auto;float:none}.column.medium-uncentered,.columns.medium-uncentered{margin-left:0;margin-right:0;float:left}.column.medium-centered:last-child,.columns.medium-centered:last-child{float:none}.column.medium-uncentered:last-child,.columns.medium-uncentered:last-child{float:left}.column.medium-uncentered.opposite,.columns.medium-uncentered.opposite{float:right}.row.medium-collapse>.column,.row.medium-collapse>.columns{padding-left:0;padding-right:0}.row.medium-collapse .row{margin-left:0;margin-right:0}.row.medium-uncollapse>.column,.row.medium-uncollapse>.columns{padding-left:.9375rem;padding-right:.9375rem;float:left}.push-0{position:relative;left:0%;right:auto}.pull-0{position:relative;right:0%;left:auto}.push-1{position:relative;left:8.33333%;right:auto}.pull-1{position:relative;right:8.33333%;left:auto}.push-2{position:relative;left:16.66667%;right:auto}.pull-2{position:relative;right:16.66667%;left:auto}.push-3{position:relative;left:25%;right:auto}.pull-3{position:relative;right:25%;left:auto}.push-4{position:relative;left:33.33333%;right:auto}.pull-4{position:relative;right:33.33333%;left:auto}.push-5{position:relative;left:41.66667%;right:auto}.pull-5{position:relative;right:41.66667%;left:auto}.push-6{position:relative;left:50%;right:auto}.pull-6{position:relative;right:50%;left:auto}.push-7{position:relative;left:58.33333%;right:auto}.pull-7{position:relative;right:58.33333%;left:auto}.push-8{position:relative;left:66.66667%;right:auto}.pull-8{position:relative;right:66.66667%;left:auto}.push-9{position:relative;left:75%;right:auto}.pull-9{position:relative;right:75%;left:auto}.push-10{position:relative;left:83.33333%;right:auto}.pull-10{position:relative;right:83.33333%;left:auto}.push-11{position:relative;left:91.66667%;right:auto}.pull-11{position:relative;right:91.66667%;left:auto}}@media only screen and (min-width: 64.063em){.large-push-0{position:relative;left:0%;right:auto}.large-pull-0{position:relative;right:0%;left:auto}.large-push-1{position:relative;left:8.33333%;right:auto}.large-pull-1{position:relative;right:8.33333%;left:auto}.large-push-2{position:relative;left:16.66667%;right:auto}.large-pull-2{position:relative;right:16.66667%;left:auto}.large-push-3{position:relative;left:25%;right:auto}.large-pull-3{position:relative;right:25%;left:auto}.large-push-4{position:relative;left:33.33333%;right:auto}.large-pull-4{position:relative;right:33.33333%;left:auto}.large-push-5{position:relative;left:41.66667%;right:auto}.large-pull-5{position:relative;right:41.66667%;left:auto}.large-push-6{position:relative;left:50%;right:auto}.large-pull-6{position:relative;right:50%;left:auto}.large-push-7{position:relative;left:58.33333%;right:auto}.large-pull-7{position:relative;right:58.33333%;left:auto}.large-push-8{position:relative;left:66.66667%;right:auto}.large-pull-8{position:relative;right:66.66667%;left:auto}.large-push-9{position:relative;left:75%;right:auto}.large-pull-9{position:relative;right:75%;left:auto}.large-push-10{position:relative;left:83.33333%;right:auto}.large-pull-10{position:relative;right:83.33333%;left:auto}.large-push-11{position:relative;left:91.66667%;right:auto}.large-pull-11{position:relative;right:91.66667%;left:auto}.column,.columns{position:relative;padding-left:.9375rem;padding-right:.9375rem;float:left}.large-1{width:8.33333%}.large-2{width:16.66667%}.large-3{width:25%}.large-4{width:33.33333%}.large-5{width:41.66667%}.large-6{width:50%}.large-7{width:58.33333%}.large-8{width:66.66667%}.large-9{width:75%}.large-10{width:83.33333%}.large-11{width:91.66667%}.large-12{width:100%}.large-offset-0{margin-left:0% !important}.large-offset-1{margin-left:8.33333% !important}.large-offset-2{margin-left:16.66667% !important}.large-offset-3{margin-left:25% !important}.large-offset-4{margin-left:33.33333% !important}.large-offset-5{margin-left:41.66667% !important}.large-offset-6{margin-left:50% !important}.large-offset-7{margin-left:58.33333% !important}.large-offset-8{margin-left:66.66667% !important}.large-offset-9{margin-left:75% !important}.large-offset-10{margin-left:83.33333% !important}.large-offset-11{margin-left:91.66667% !important}.large-reset-order{margin-left:0;margin-right:0;left:auto;right:auto;float:left}.column.large-centered,.columns.large-centered{margin-left:auto;margin-right:auto;float:none}.column.large-uncentered,.columns.large-uncentered{margin-left:0;margin-right:0;float:left}.column.large-centered:last-child,.columns.large-centered:last-child{float:none}.column.large-uncentered:last-child,.columns.large-uncentered:last-child{float:left}.column.large-uncentered.opposite,.columns.large-uncentered.opposite{float:right}.row.large-collapse>.column,.row.large-collapse>.columns{padding-left:0;padding-right:0}.row.large-collapse .row{margin-left:0;margin-right:0}.row.large-uncollapse>.column,.row.large-uncollapse>.columns{padding-left:.9375rem;padding-right:.9375rem;float:left}.push-0{position:relative;left:0%;right:auto}.pull-0{position:relative;right:0%;left:auto}.push-1{position:relative;left:8.33333%;right:auto}.pull-1{position:relative;right:8.33333%;left:auto}.push-2{position:relative;left:16.66667%;right:auto}.pull-2{position:relative;right:16.66667%;left:auto}.push-3{position:relative;left:25%;right:auto}.pull-3{position:relative;right:25%;left:auto}.push-4{position:relative;left:33.33333%;right:auto}.pull-4{position:relative;right:33.33333%;left:auto}.push-5{position:relative;left:41.66667%;right:auto}.pull-5{position:relative;right:41.66667%;left:auto}.push-6{position:relative;left:50%;right:auto}.pull-6{position:relative;right:50%;left:auto}.push-7{position:relative;left:58.33333%;right:auto}.pull-7{position:relative;right:58.33333%;left:auto}.push-8{position:relative;left:66.66667%;right:auto}.pull-8{position:relative;right:66.66667%;left:auto}.push-9{position:relative;left:75%;right:auto}.pull-9{position:relative;right:75%;left:auto}.push-10{position:relative;left:83.33333%;right:auto}.pull-10{position:relative;right:83.33333%;left:auto}.push-11{position:relative;left:91.66667%;right:auto}.pull-11{position:relative;right:91.66667%;left:auto}}.accordion{margin-bottom:0}.accordion:before,.accordion:after{content:" ";display:table}.accordion:after{clear:both}.accordion .accordion-navigation,.accordion dd{display:block;margin-bottom:0 !important}.accordion .accordion-navigation.active>a,.accordion #univ-menu .menu-head .accordion-navigation.search-in.activate>a,#univ-menu .menu-head .accordion .accordion-navigation.search-in.activate>a,.accordion dd.active>a,.accordion #univ-menu .menu-head dd.search-in.activate>a,#univ-menu .menu-head .accordion dd.search-in.activate>a{background:#e8e8e8}.accordion .accordion-navigation>a,.accordion dd>a{background:#EFEFEF;color:#222;padding:1rem;display:block;font-family:"Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;font-size:1rem}.accordion .accordion-navigation>a:hover,.accordion dd>a:hover{background:#e3e3e3}.accordion .accordion-navigation>.content,.accordion dd>.content{display:none;padding:.9375rem}.accordion .accordion-navigation>.content.active,.accordion #univ-menu .menu-head .accordion-navigation>.content.search-in.activate,#univ-menu .menu-head .accordion .accordion-navigation>.content.search-in.activate,.accordion dd>.content.active,.accordion #univ-menu .menu-head dd>.content.search-in.activate,#univ-menu .menu-head .accordion dd>.content.search-in.activate{display:block;background:#fff}.alert-box{border-style:solid;border-width:1px;display:block;font-weight:normal;margin-bottom:1.25rem;position:relative;padding:.875rem 1.5rem .875rem .875rem;font-size:.8125rem;transition:opacity 300ms ease-out;background-color:#08c;border-color:#0075af;color:#fff}.alert-box .close{font-size:1.375rem;padding:0 6px 4px;line-height:.9;position:absolute;top:50%;margin-top:-.6875rem;right:.25rem;color:#333;opacity:.3;background:inherit}.alert-box .close:hover,.alert-box .close:focus{opacity:.5}.alert-box.radius{border-radius:3px}.alert-box.round{border-radius:1000px}.alert-box.success{background-color:#43AC6A;border-color:#3a945b;color:#fff}.alert-box.alert{background-color:#f04124;border-color:#de2d0f;color:#fff}.alert-box.secondary{background-color:#e7e7e7;border-color:#c7c7c7;color:#4f4f4f}.alert-box.warning{background-color:#f08a24;border-color:#de770f;color:#fff}.alert-box.info{background-color:#a0d3e8;border-color:#74bfdd;color:#4f4f4f}.alert-box.alert-close{opacity:0}[class*="block-grid-"]{display:block;padding:0;margin:0 -.625rem}[class*="block-grid-"]:before,[class*="block-grid-"]:after{content:" ";display:table}[class*="block-grid-"]:after{clear:both}[class*="block-grid-"]>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}@media only screen{.small-block-grid-1>li{width:100%;list-style:none}.small-block-grid-1>li:nth-of-type(1n){clear:none}.small-block-grid-1>li:nth-of-type(1n+1){clear:both}.small-block-grid-2>li{width:50%;list-style:none}.small-block-grid-2>li:nth-of-type(1n){clear:none}.small-block-grid-2>li:nth-of-type(2n+1){clear:both}.small-block-grid-3>li{width:33.33333%;list-style:none}.small-block-grid-3>li:nth-of-type(1n){clear:none}.small-block-grid-3>li:nth-of-type(3n+1){clear:both}.small-block-grid-4>li{width:25%;list-style:none}.small-block-grid-4>li:nth-of-type(1n){clear:none}.small-block-grid-4>li:nth-of-type(4n+1){clear:both}.small-block-grid-5>li{width:20%;list-style:none}.small-block-grid-5>li:nth-of-type(1n){clear:none}.small-block-grid-5>li:nth-of-type(5n+1){clear:both}.small-block-grid-6>li{width:16.66667%;list-style:none}.small-block-grid-6>li:nth-of-type(1n){clear:none}.small-block-grid-6>li:nth-of-type(6n+1){clear:both}.small-block-grid-7>li{width:14.28571%;list-style:none}.small-block-grid-7>li:nth-of-type(1n){clear:none}.small-block-grid-7>li:nth-of-type(7n+1){clear:both}.small-block-grid-8>li{width:12.5%;list-style:none}.small-block-grid-8>li:nth-of-type(1n){clear:none}.small-block-grid-8>li:nth-of-type(8n+1){clear:both}.small-block-grid-9>li{width:11.11111%;list-style:none}.small-block-grid-9>li:nth-of-type(1n){clear:none}.small-block-grid-9>li:nth-of-type(9n+1){clear:both}.small-block-grid-10>li{width:10%;list-style:none}.small-block-grid-10>li:nth-of-type(1n){clear:none}.small-block-grid-10>li:nth-of-type(10n+1){clear:both}.small-block-grid-11>li{width:9.09091%;list-style:none}.small-block-grid-11>li:nth-of-type(1n){clear:none}.small-block-grid-11>li:nth-of-type(11n+1){clear:both}.small-block-grid-12>li{width:8.33333%;list-style:none}.small-block-grid-12>li:nth-of-type(1n){clear:none}.small-block-grid-12>li:nth-of-type(12n+1){clear:both}}@media only screen and (min-width: 40.063em){.medium-block-grid-1>li{width:100%;list-style:none}.medium-block-grid-1>li:nth-of-type(1n){clear:none}.medium-block-grid-1>li:nth-of-type(1n+1){clear:both}.medium-block-grid-2>li{width:50%;list-style:none}.medium-block-grid-2>li:nth-of-type(1n){clear:none}.medium-block-grid-2>li:nth-of-type(2n+1){clear:both}.medium-block-grid-3>li{width:33.33333%;list-style:none}.medium-block-grid-3>li:nth-of-type(1n){clear:none}.medium-block-grid-3>li:nth-of-type(3n+1){clear:both}.medium-block-grid-4>li{width:25%;list-style:none}.medium-block-grid-4>li:nth-of-type(1n){clear:none}.medium-block-grid-4>li:nth-of-type(4n+1){clear:both}.medium-block-grid-5>li{width:20%;list-style:none}.medium-block-grid-5>li:nth-of-type(1n){clear:none}.medium-block-grid-5>li:nth-of-type(5n+1){clear:both}.medium-block-grid-6>li{width:16.66667%;list-style:none}.medium-block-grid-6>li:nth-of-type(1n){clear:none}.medium-block-grid-6>li:nth-of-type(6n+1){clear:both}.medium-block-grid-7>li{width:14.28571%;list-style:none}.medium-block-grid-7>li:nth-of-type(1n){clear:none}.medium-block-grid-7>li:nth-of-type(7n+1){clear:both}.medium-block-grid-8>li{width:12.5%;list-style:none}.medium-block-grid-8>li:nth-of-type(1n){clear:none}.medium-block-grid-8>li:nth-of-type(8n+1){clear:both}.medium-block-grid-9>li{width:11.11111%;list-style:none}.medium-block-grid-9>li:nth-of-type(1n){clear:none}.medium-block-grid-9>li:nth-of-type(9n+1){clear:both}.medium-block-grid-10>li{width:10%;list-style:none}.medium-block-grid-10>li:nth-of-type(1n){clear:none}.medium-block-grid-10>li:nth-of-type(10n+1){clear:both}.medium-block-grid-11>li{width:9.09091%;list-style:none}.medium-block-grid-11>li:nth-of-type(1n){clear:none}.medium-block-grid-11>li:nth-of-type(11n+1){clear:both}.medium-block-grid-12>li{width:8.33333%;list-style:none}.medium-block-grid-12>li:nth-of-type(1n){clear:none}.medium-block-grid-12>li:nth-of-type(12n+1){clear:both}}@media only screen and (min-width: 64.063em){.large-block-grid-1>li{width:100%;list-style:none}.large-block-grid-1>li:nth-of-type(1n){clear:none}.large-block-grid-1>li:nth-of-type(1n+1){clear:both}.large-block-grid-2>li{width:50%;list-style:none}.large-block-grid-2>li:nth-of-type(1n){clear:none}.large-block-grid-2>li:nth-of-type(2n+1){clear:both}.large-block-grid-3>li{width:33.33333%;list-style:none}.large-block-grid-3>li:nth-of-type(1n){clear:none}.large-block-grid-3>li:nth-of-type(3n+1){clear:both}.large-block-grid-4>li{width:25%;list-style:none}.large-block-grid-4>li:nth-of-type(1n){clear:none}.large-block-grid-4>li:nth-of-type(4n+1){clear:both}.large-block-grid-5>li{width:20%;list-style:none}.large-block-grid-5>li:nth-of-type(1n){clear:none}.large-block-grid-5>li:nth-of-type(5n+1){clear:both}.large-block-grid-6>li{width:16.66667%;list-style:none}.large-block-grid-6>li:nth-of-type(1n){clear:none}.large-block-grid-6>li:nth-of-type(6n+1){clear:both}.large-block-grid-7>li{width:14.28571%;list-style:none}.large-block-grid-7>li:nth-of-type(1n){clear:none}.large-block-grid-7>li:nth-of-type(7n+1){clear:both}.large-block-grid-8>li{width:12.5%;list-style:none}.large-block-grid-8>li:nth-of-type(1n){clear:none}.large-block-grid-8>li:nth-of-type(8n+1){clear:both}.large-block-grid-9>li{width:11.11111%;list-style:none}.large-block-grid-9>li:nth-of-type(1n){clear:none}.large-block-grid-9>li:nth-of-type(9n+1){clear:both}.large-block-grid-10>li{width:10%;list-style:none}.large-block-grid-10>li:nth-of-type(1n){clear:none}.large-block-grid-10>li:nth-of-type(10n+1){clear:both}.large-block-grid-11>li{width:9.09091%;list-style:none}.large-block-grid-11>li:nth-of-type(1n){clear:none}.large-block-grid-11>li:nth-of-type(11n+1){clear:both}.large-block-grid-12>li{width:8.33333%;list-style:none}.large-block-grid-12>li:nth-of-type(1n){clear:none}.large-block-grid-12>li:nth-of-type(12n+1){clear:both}}.breadcrumbs{display:block;padding:.5625rem .875rem .5625rem;overflow:hidden;margin-left:0;list-style:none;border-style:solid;border-width:1px;background-color:#f4f4f4;border-color:#dcdcdc;border-radius:3px}.breadcrumbs>*{margin:0;float:left;font-size:.6875rem;line-height:.6875rem;text-transform:uppercase;color:#08c}.breadcrumbs>*:hover a,.breadcrumbs>*:focus a{text-decoration:underline}.breadcrumbs>* a{color:#08c}.breadcrumbs>*.current{cursor:default;color:#333}.breadcrumbs>*.current a{cursor:default;color:#333}.breadcrumbs>*.current:hover,.breadcrumbs>*.current:hover a,.breadcrumbs>*.current:focus,.breadcrumbs>*.current:focus a{text-decoration:none}.breadcrumbs>*.unavailable{color:#999}.breadcrumbs>*.unavailable a{color:#999}.breadcrumbs>*.unavailable:hover,.breadcrumbs>*.unavailable:hover a,.breadcrumbs>*.unavailable:focus,.breadcrumbs>*.unavailable a:focus{text-decoration:none;color:#999;cursor:not-allowed}.breadcrumbs>*:before{content:"/";color:#aaa;margin:0 .75rem;position:relative;top:1px}.breadcrumbs>*:first-child:before{content:" ";margin:0}[aria-label="breadcrumbs"] [aria-hidden="true"]:after{content:"/"}button,.button{border-style:solid;border-width:0;cursor:pointer;font-family:"Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;font-weight:normal;line-height:normal;margin:0 0 1.25rem;position:relative;text-decoration:none;text-align:center;-webkit-appearance:none;-moz-appearance:none;border-radius:0;display:inline-block;padding-top:1rem;padding-right:2rem;padding-bottom:1.0625rem;padding-left:2rem;font-size:1rem;background-color:#08c;border-color:#006da3;color:#fff;transition:background-color 300ms ease-out}button:hover,button:focus,.button:hover,.button:focus{background-color:#006da3}button:hover,button:focus,.button:hover,.button:focus{color:#fff}button.secondary,.button.secondary{background-color:#e7e7e7;border-color:#b9b9b9;color:#333}button.secondary:hover,button.secondary:focus,.button.secondary:hover,.button.secondary:focus{background-color:#b9b9b9}button.secondary:hover,button.secondary:focus,.button.secondary:hover,.button.secondary:focus{color:#333}button.success,.button.success{background-color:#43AC6A;border-color:#368a55;color:#fff}button.success:hover,button.success:focus,.button.success:hover,.button.success:focus{background-color:#368a55}button.success:hover,button.success:focus,.button.success:hover,.button.success:focus{color:#fff}button.alert,.button.alert{background-color:#f04124;border-color:#cf2a0e;color:#fff}button.alert:hover,button.alert:focus,.button.alert:hover,.button.alert:focus{background-color:#cf2a0e}button.alert:hover,button.alert:focus,.button.alert:hover,.button.alert:focus{color:#fff}button.warning,.button.warning{background-color:#f08a24;border-color:#cf6e0e;color:#fff}button.warning:hover,button.warning:focus,.button.warning:hover,.button.warning:focus{background-color:#cf6e0e}button.warning:hover,button.warning:focus,.button.warning:hover,.button.warning:focus{color:#fff}button.info,.button.info{background-color:#a0d3e8;border-color:#61b6d9;color:#333}button.info:hover,button.info:focus,.button.info:hover,.button.info:focus{background-color:#61b6d9}button.info:hover,button.info:focus,.button.info:hover,.button.info:focus{color:#fff}button.large,.button.large{padding-top:1.125rem;padding-right:2.25rem;padding-bottom:1.1875rem;padding-left:2.25rem;font-size:1.25rem}button.small,.button.small{padding-top:.875rem;padding-right:1.75rem;padding-bottom:.9375rem;padding-left:1.75rem;font-size:.8125rem}button.tiny,.button.tiny{padding-top:.625rem;padding-right:1.25rem;padding-bottom:.6875rem;padding-left:1.25rem;font-size:.6875rem}button.expand,.button.expand{padding-right:0;padding-left:0;width:100%}button.left-align,.button.left-align{text-align:left;text-indent:.75rem}button.right-align,.button.right-align{text-align:right;padding-right:.75rem}button.radius,.button.radius{border-radius:3px}button.round,.button.round{border-radius:1000px}button.disabled,button[disabled],.button.disabled,.button[disabled]{background-color:#08c;border-color:#006da3;color:#fff;cursor:default;opacity:.7;box-shadow:none}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{background-color:#006da3}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{color:#fff}button.disabled:hover,button.disabled:focus,button[disabled]:hover,button[disabled]:focus,.button.disabled:hover,.button.disabled:focus,.button[disabled]:hover,.button[disabled]:focus{background-color:#08c}button.disabled.secondary,button[disabled].secondary,.button.disabled.secondary,.button[disabled].secondary{background-color:#e7e7e7;border-color:#b9b9b9;color:#333;cursor:default;opacity:.7;box-shadow:none}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{background-color:#b9b9b9}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{color:#333}button.disabled.secondary:hover,button.disabled.secondary:focus,button[disabled].secondary:hover,button[disabled].secondary:focus,.button.disabled.secondary:hover,.button.disabled.secondary:focus,.button[disabled].secondary:hover,.button[disabled].secondary:focus{background-color:#e7e7e7}button.disabled.success,button[disabled].success,.button.disabled.success,.button[disabled].success{background-color:#43AC6A;border-color:#368a55;color:#fff;cursor:default;opacity:.7;box-shadow:none}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{background-color:#368a55}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{color:#fff}button.disabled.success:hover,button.disabled.success:focus,button[disabled].success:hover,button[disabled].success:focus,.button.disabled.success:hover,.button.disabled.success:focus,.button[disabled].success:hover,.button[disabled].success:focus{background-color:#43AC6A}button.disabled.alert,button[disabled].alert,.button.disabled.alert,.button[disabled].alert{background-color:#f04124;border-color:#cf2a0e;color:#fff;cursor:default;opacity:.7;box-shadow:none}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{background-color:#cf2a0e}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{color:#fff}button.disabled.alert:hover,button.disabled.alert:focus,button[disabled].alert:hover,button[disabled].alert:focus,.button.disabled.alert:hover,.button.disabled.alert:focus,.button[disabled].alert:hover,.button[disabled].alert:focus{background-color:#f04124}button.disabled.warning,button[disabled].warning,.button.disabled.warning,.button[disabled].warning{background-color:#f08a24;border-color:#cf6e0e;color:#fff;cursor:default;opacity:.7;box-shadow:none}button.disabled.warning:hover,button.disabled.warning:focus,button[disabled].warning:hover,button[disabled].warning:focus,.button.disabled.warning:hover,.button.disabled.warning:focus,.button[disabled].warning:hover,.button[disabled].warning:focus{background-color:#cf6e0e}button.disabled.warning:hover,button.disabled.warning:focus,button[disabled].warning:hover,button[disabled].warning:focus,.button.disabled.warning:hover,.button.disabled.warning:focus,.button[disabled].warning:hover,.button[disabled].warning:focus{color:#fff}button.disabled.warning:hover,button.disabled.warning:focus,button[disabled].warning:hover,button[disabled].warning:focus,.button.disabled.warning:hover,.button.disabled.warning:focus,.button[disabled].warning:hover,.button[disabled].warning:focus{background-color:#f08a24}button.disabled.info,button[disabled].info,.button.disabled.info,.button[disabled].info{background-color:#a0d3e8;border-color:#61b6d9;color:#333;cursor:default;opacity:.7;box-shadow:none}button.disabled.info:hover,button.disabled.info:focus,button[disabled].info:hover,button[disabled].info:focus,.button.disabled.info:hover,.button.disabled.info:focus,.button[disabled].info:hover,.button[disabled].info:focus{background-color:#61b6d9}button.disabled.info:hover,button.disabled.info:focus,button[disabled].info:hover,button[disabled].info:focus,.button.disabled.info:hover,.button.disabled.info:focus,.button[disabled].info:hover,.button[disabled].info:focus{color:#fff}button.disabled.info:hover,button.disabled.info:focus,button[disabled].info:hover,button[disabled].info:focus,.button.disabled.info:hover,.button.disabled.info:focus,.button[disabled].info:hover,.button[disabled].info:focus{background-color:#a0d3e8}button::-moz-focus-inner{border:0;padding:0}@media only screen and (min-width: 40.063em){button,.button{display:inline-block}}.button-group{list-style:none;margin:0;left:0}.button-group:before,.button-group:after{content:" ";display:table}.button-group:after{clear:both}.button-group.even-2 li{margin:0 -2px;display:inline-block;width:50%}.button-group.even-2 li>button,.button-group.even-2 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-2 li:first-child button,.button-group.even-2 li:first-child .button{border-left:0}.button-group.even-2 li button,.button-group.even-2 li .button{width:100%}.button-group.even-3 li{margin:0 -2px;display:inline-block;width:33.33333%}.button-group.even-3 li>button,.button-group.even-3 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-3 li:first-child button,.button-group.even-3 li:first-child .button{border-left:0}.button-group.even-3 li button,.button-group.even-3 li .button{width:100%}.button-group.even-4 li{margin:0 -2px;display:inline-block;width:25%}.button-group.even-4 li>button,.button-group.even-4 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-4 li:first-child button,.button-group.even-4 li:first-child .button{border-left:0}.button-group.even-4 li button,.button-group.even-4 li .button{width:100%}.button-group.even-5 li{margin:0 -2px;display:inline-block;width:20%}.button-group.even-5 li>button,.button-group.even-5 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-5 li:first-child button,.button-group.even-5 li:first-child .button{border-left:0}.button-group.even-5 li button,.button-group.even-5 li .button{width:100%}.button-group.even-6 li{margin:0 -2px;display:inline-block;width:16.66667%}.button-group.even-6 li>button,.button-group.even-6 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-6 li:first-child button,.button-group.even-6 li:first-child .button{border-left:0}.button-group.even-6 li button,.button-group.even-6 li .button{width:100%}.button-group.even-7 li{margin:0 -2px;display:inline-block;width:14.28571%}.button-group.even-7 li>button,.button-group.even-7 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-7 li:first-child button,.button-group.even-7 li:first-child .button{border-left:0}.button-group.even-7 li button,.button-group.even-7 li .button{width:100%}.button-group.even-8 li{margin:0 -2px;display:inline-block;width:12.5%}.button-group.even-8 li>button,.button-group.even-8 li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.even-8 li:first-child button,.button-group.even-8 li:first-child .button{border-left:0}.button-group.even-8 li button,.button-group.even-8 li .button{width:100%}.button-group>li{margin:0 -2px;display:inline-block}.button-group>li>button,.button-group>li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group>li:first-child button,.button-group>li:first-child .button{border-left:0}.button-group.stack>li{margin:0 -2px;display:inline-block;display:block;margin:0;float:none}.button-group.stack>li>button,.button-group.stack>li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.stack>li:first-child button,.button-group.stack>li:first-child .button{border-left:0}.button-group.stack>li>button,.button-group.stack>li .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.stack>li>button{width:100%}.button-group.stack>li:first-child button,.button-group.stack>li:first-child .button{border-top:0}.button-group.stack-for-small>li{margin:0 -2px;display:inline-block}.button-group.stack-for-small>li>button,.button-group.stack-for-small>li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.stack-for-small>li:first-child button,.button-group.stack-for-small>li:first-child .button{border-left:0}@media only screen and (max-width: 40em){.button-group.stack-for-small>li{margin:0 -2px;display:inline-block;display:block;margin:0}.button-group.stack-for-small>li>button,.button-group.stack-for-small>li .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.stack-for-small>li:first-child button,.button-group.stack-for-small>li:first-child .button{border-left:0}.button-group.stack-for-small>li>button,.button-group.stack-for-small>li .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.stack-for-small>li>button{width:100%}.button-group.stack-for-small>li:first-child button,.button-group.stack-for-small>li:first-child .button{border-top:0}}.button-group.radius>*{margin:0 -2px;display:inline-block}.button-group.radius>*>button,.button-group.radius>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.radius>*:first-child button,.button-group.radius>*:first-child .button{border-left:0}.button-group.radius>*,.button-group.radius>*>a,.button-group.radius>*>button,.button-group.radius>*>.button{border-radius:0}.button-group.radius>*:first-child,.button-group.radius>*:first-child>a,.button-group.radius>*:first-child>button,.button-group.radius>*:first-child>.button{-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}.button-group.radius>*:last-child,.button-group.radius>*:last-child>a,.button-group.radius>*:last-child>button,.button-group.radius>*:last-child>.button{-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}.button-group.radius.stack>*{margin:0 -2px;display:inline-block;display:block;margin:0}.button-group.radius.stack>*>button,.button-group.radius.stack>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.radius.stack>*:first-child button,.button-group.radius.stack>*:first-child .button{border-left:0}.button-group.radius.stack>*>button,.button-group.radius.stack>* .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.radius.stack>*>button{width:100%}.button-group.radius.stack>*:first-child button,.button-group.radius.stack>*:first-child .button{border-top:0}.button-group.radius.stack>*,.button-group.radius.stack>*>a,.button-group.radius.stack>*>button,.button-group.radius.stack>*>.button{border-radius:0}.button-group.radius.stack>*:first-child,.button-group.radius.stack>*:first-child>a,.button-group.radius.stack>*:first-child>button,.button-group.radius.stack>*:first-child>.button{-webkit-top-left-radius:3px;-webkit-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.button-group.radius.stack>*:last-child,.button-group.radius.stack>*:last-child>a,.button-group.radius.stack>*:last-child>button,.button-group.radius.stack>*:last-child>.button{-webkit-bottom-left-radius:3px;-webkit-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}@media only screen and (min-width: 40.063em){.button-group.radius.stack-for-small>*{margin:0 -2px;display:inline-block}.button-group.radius.stack-for-small>*>button,.button-group.radius.stack-for-small>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.radius.stack-for-small>*:first-child button,.button-group.radius.stack-for-small>*:first-child .button{border-left:0}.button-group.radius.stack-for-small>*,.button-group.radius.stack-for-small>*>a,.button-group.radius.stack-for-small>*>button,.button-group.radius.stack-for-small>*>.button{border-radius:0}.button-group.radius.stack-for-small>*:first-child,.button-group.radius.stack-for-small>*:first-child>a,.button-group.radius.stack-for-small>*:first-child>button,.button-group.radius.stack-for-small>*:first-child>.button{-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}.button-group.radius.stack-for-small>*:last-child,.button-group.radius.stack-for-small>*:last-child>a,.button-group.radius.stack-for-small>*:last-child>button,.button-group.radius.stack-for-small>*:last-child>.button{-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}}@media only screen and (max-width: 40em){.button-group.radius.stack-for-small>*{margin:0 -2px;display:inline-block;display:block;margin:0}.button-group.radius.stack-for-small>*>button,.button-group.radius.stack-for-small>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.radius.stack-for-small>*:first-child button,.button-group.radius.stack-for-small>*:first-child .button{border-left:0}.button-group.radius.stack-for-small>*>button,.button-group.radius.stack-for-small>* .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.radius.stack-for-small>*>button{width:100%}.button-group.radius.stack-for-small>*:first-child button,.button-group.radius.stack-for-small>*:first-child .button{border-top:0}.button-group.radius.stack-for-small>*,.button-group.radius.stack-for-small>*>a,.button-group.radius.stack-for-small>*>button,.button-group.radius.stack-for-small>*>.button{border-radius:0}.button-group.radius.stack-for-small>*:first-child,.button-group.radius.stack-for-small>*:first-child>a,.button-group.radius.stack-for-small>*:first-child>button,.button-group.radius.stack-for-small>*:first-child>.button{-webkit-top-left-radius:3px;-webkit-top-right-radius:3px;border-top-left-radius:3px;border-top-right-radius:3px}.button-group.radius.stack-for-small>*:last-child,.button-group.radius.stack-for-small>*:last-child>a,.button-group.radius.stack-for-small>*:last-child>button,.button-group.radius.stack-for-small>*:last-child>.button{-webkit-bottom-left-radius:3px;-webkit-bottom-right-radius:3px;border-bottom-left-radius:3px;border-bottom-right-radius:3px}}.button-group.round>*{margin:0 -2px;display:inline-block}.button-group.round>*>button,.button-group.round>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.round>*:first-child button,.button-group.round>*:first-child .button{border-left:0}.button-group.round>*,.button-group.round>*>a,.button-group.round>*>button,.button-group.round>*>.button{border-radius:0}.button-group.round>*:first-child,.button-group.round>*:first-child>a,.button-group.round>*:first-child>button,.button-group.round>*:first-child>.button{-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}.button-group.round>*:last-child,.button-group.round>*:last-child>a,.button-group.round>*:last-child>button,.button-group.round>*:last-child>.button{-webkit-border-bottom-right-radius:1000px;-webkit-border-top-right-radius:1000px;border-bottom-right-radius:1000px;border-top-right-radius:1000px}.button-group.round.stack>*{margin:0 -2px;display:inline-block;display:block;margin:0}.button-group.round.stack>*>button,.button-group.round.stack>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.round.stack>*:first-child button,.button-group.round.stack>*:first-child .button{border-left:0}.button-group.round.stack>*>button,.button-group.round.stack>* .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.round.stack>*>button{width:100%}.button-group.round.stack>*:first-child button,.button-group.round.stack>*:first-child .button{border-top:0}.button-group.round.stack>*,.button-group.round.stack>*>a,.button-group.round.stack>*>button,.button-group.round.stack>*>.button{border-radius:0}.button-group.round.stack>*:first-child,.button-group.round.stack>*:first-child>a,.button-group.round.stack>*:first-child>button,.button-group.round.stack>*:first-child>.button{-webkit-top-left-radius:1rem;-webkit-top-right-radius:1rem;border-top-left-radius:1rem;border-top-right-radius:1rem}.button-group.round.stack>*:last-child,.button-group.round.stack>*:last-child>a,.button-group.round.stack>*:last-child>button,.button-group.round.stack>*:last-child>.button{-webkit-bottom-left-radius:1rem;-webkit-bottom-right-radius:1rem;border-bottom-left-radius:1rem;border-bottom-right-radius:1rem}@media only screen and (min-width: 40.063em){.button-group.round.stack-for-small>*{margin:0 -2px;display:inline-block}.button-group.round.stack-for-small>*>button,.button-group.round.stack-for-small>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.round.stack-for-small>*:first-child button,.button-group.round.stack-for-small>*:first-child .button{border-left:0}.button-group.round.stack-for-small>*,.button-group.round.stack-for-small>*>a,.button-group.round.stack-for-small>*>button,.button-group.round.stack-for-small>*>.button{border-radius:0}.button-group.round.stack-for-small>*:first-child,.button-group.round.stack-for-small>*:first-child>a,.button-group.round.stack-for-small>*:first-child>button,.button-group.round.stack-for-small>*:first-child>.button{-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}.button-group.round.stack-for-small>*:last-child,.button-group.round.stack-for-small>*:last-child>a,.button-group.round.stack-for-small>*:last-child>button,.button-group.round.stack-for-small>*:last-child>.button{-webkit-border-bottom-right-radius:1000px;-webkit-border-top-right-radius:1000px;border-bottom-right-radius:1000px;border-top-right-radius:1000px}}@media only screen and (max-width: 40em){.button-group.round.stack-for-small>*{margin:0 -2px;display:inline-block;display:block;margin:0}.button-group.round.stack-for-small>*>button,.button-group.round.stack-for-small>* .button{border-left:1px solid;border-color:rgba(255,255,255,0.5)}.button-group.round.stack-for-small>*:first-child button,.button-group.round.stack-for-small>*:first-child .button{border-left:0}.button-group.round.stack-for-small>*>button,.button-group.round.stack-for-small>* .button{border-top:1px solid;border-color:rgba(255,255,255,0.5);border-left-width:0;margin:0;display:block}.button-group.round.stack-for-small>*>button{width:100%}.button-group.round.stack-for-small>*:first-child button,.button-group.round.stack-for-small>*:first-child .button{border-top:0}.button-group.round.stack-for-small>*,.button-group.round.stack-for-small>*>a,.button-group.round.stack-for-small>*>button,.button-group.round.stack-for-small>*>.button{border-radius:0}.button-group.round.stack-for-small>*:first-child,.button-group.round.stack-for-small>*:first-child>a,.button-group.round.stack-for-small>*:first-child>button,.button-group.round.stack-for-small>*:first-child>.button{-webkit-top-left-radius:1rem;-webkit-top-right-radius:1rem;border-top-left-radius:1rem;border-top-right-radius:1rem}.button-group.round.stack-for-small>*:last-child,.button-group.round.stack-for-small>*:last-child>a,.button-group.round.stack-for-small>*:last-child>button,.button-group.round.stack-for-small>*:last-child>.button{-webkit-bottom-left-radius:1rem;-webkit-bottom-right-radius:1rem;border-bottom-left-radius:1rem;border-bottom-right-radius:1rem}}.button-bar:before,.button-bar:after{content:" ";display:table}.button-bar:after{clear:both}.button-bar .button-group{float:left;margin-right:.625rem}.button-bar .button-group div{overflow:hidden}.clearing-thumbs,[data-clearing]{margin-bottom:0;margin-left:0;list-style:none}.clearing-thumbs:before,.clearing-thumbs:after,[data-clearing]:before,[data-clearing]:after{content:" ";display:table}.clearing-thumbs:after,[data-clearing]:after{clear:both}.clearing-thumbs li,[data-clearing] li{float:left;margin-right:10px}.clearing-thumbs[class*="block-grid-"] li,[data-clearing][class*="block-grid-"] li{margin-right:0}.clearing-blackout{background:#333;position:fixed;width:100%;height:100%;top:0;left:0;z-index:998}.clearing-blackout .clearing-close{display:block}.clearing-container{position:relative;z-index:998;height:100%;overflow:hidden;margin:0}.clearing-touch-label{position:absolute;top:50%;left:50%;color:#aaa;font-size:0.6em}.visible-img{height:95%;position:relative}.visible-img img{position:absolute;left:50%;top:50%;transform:translateY(-50%) translateX(-50%);-webkit-transform:translateY(-50%) translateX(-50%);-ms-transform:translateY(-50%) translateX(-50%);max-height:100%;max-width:100%}.clearing-caption{color:#ccc;font-size:.875em;line-height:1.3;margin-bottom:0;text-align:center;bottom:0;background:#333;width:100%;padding:10px 30px 20px;position:absolute;left:0}.clearing-close{z-index:999;padding-left:20px;padding-top:10px;font-size:30px;line-height:1;color:#ccc;display:none}.clearing-close:hover,.clearing-close:focus{color:#ccc}.clearing-assembled .clearing-container{height:100%}.clearing-assembled .clearing-container .carousel>ul{display:none}.clearing-feature li{display:none}.clearing-feature li.clearing-featured-img{display:block}@media only screen and (min-width: 40.063em){.clearing-main-prev,.clearing-main-next{position:absolute;height:100%;width:40px;top:0}.clearing-main-prev>span,.clearing-main-next>span{position:absolute;top:50%;display:block;width:0;height:0;border:solid 12px}.clearing-main-prev>span:hover,.clearing-main-next>span:hover{opacity:0.8}.clearing-main-prev{left:0}.clearing-main-prev>span{left:5px;border-color:transparent;border-right-color:#ccc}.clearing-main-next{right:0}.clearing-main-next>span{border-color:transparent;border-left-color:#ccc}.clearing-main-prev.disabled,.clearing-main-next.disabled{opacity:0.3}.clearing-assembled .clearing-container .carousel{background:rgba(51,51,51,0.8);height:120px;margin-top:10px;text-align:center}.clearing-assembled .clearing-container .carousel>ul{display:inline-block;z-index:999;height:100%;position:relative;float:none}.clearing-assembled .clearing-container .carousel>ul li{display:block;width:120px;min-height:inherit;float:left;overflow:hidden;margin-right:0;padding:0;position:relative;cursor:pointer;opacity:0.4;clear:none}.clearing-assembled .clearing-container .carousel>ul li.fix-height img{height:100%;max-width:none}.clearing-assembled .clearing-container .carousel>ul li a.th{border:none;box-shadow:none;display:block}.clearing-assembled .clearing-container .carousel>ul li img{cursor:pointer !important;width:100% !important}.clearing-assembled .clearing-container .carousel>ul li.visible{opacity:1}.clearing-assembled .clearing-container .carousel>ul li:hover{opacity:0.8}.clearing-assembled .clearing-container .visible-img{background:#333;overflow:hidden;height:85%}.clearing-close{position:absolute;top:10px;right:20px;padding-left:0;padding-top:0}}.f-dropdown{position:absolute;left:-9999px;list-style:none;margin-left:0;outline:none;width:100%;max-height:none;height:auto;background:#fff;border:solid 1px #ccc;font-size:.875rem;z-index:89;margin-top:2px;max-width:200px}.f-dropdown>*:first-child{margin-top:0}.f-dropdown>*:last-child{margin-bottom:0}.f-dropdown:before{content:"";display:block;width:0;height:0;border:inset 6px;border-color:transparent transparent #fff transparent;border-bottom-style:solid;position:absolute;top:-12px;left:10px;z-index:89}.f-dropdown:after{content:"";display:block;width:0;height:0;border:inset 7px;border-color:transparent transparent #ccc transparent;border-bottom-style:solid;position:absolute;top:-14px;left:9px;z-index:88}.f-dropdown.right:before{left:auto;right:10px}.f-dropdown.right:after{left:auto;right:9px}.f-dropdown.drop-right{position:absolute;left:-9999px;list-style:none;margin-left:0;outline:none;width:100%;max-height:none;height:auto;background:#fff;border:solid 1px #ccc;font-size:.875rem;z-index:89;margin-top:0;margin-left:2px;max-width:200px}.f-dropdown.drop-right>*:first-child{margin-top:0}.f-dropdown.drop-right>*:last-child{margin-bottom:0}.f-dropdown.drop-right:before{content:"";display:block;width:0;height:0;border:inset 6px;border-color:transparent #fff transparent transparent;border-right-style:solid;position:absolute;top:10px;left:-12px;z-index:89}.f-dropdown.drop-right:after{content:"";display:block;width:0;height:0;border:inset 7px;border-color:transparent #ccc transparent transparent;border-right-style:solid;position:absolute;top:9px;left:-14px;z-index:88}.f-dropdown.drop-left{position:absolute;left:-9999px;list-style:none;margin-left:0;outline:none;width:100%;max-height:none;height:auto;background:#fff;border:solid 1px #ccc;font-size:.875rem;z-index:89;margin-top:0;margin-left:-2px;max-width:200px}.f-dropdown.drop-left>*:first-child{margin-top:0}.f-dropdown.drop-left>*:last-child{margin-bottom:0}.f-dropdown.drop-left:before{content:"";display:block;width:0;height:0;border:inset 6px;border-color:transparent transparent transparent #fff;border-left-style:solid;position:absolute;top:10px;right:-12px;left:auto;z-index:89}.f-dropdown.drop-left:after{content:"";display:block;width:0;height:0;border:inset 7px;border-color:transparent transparent transparent #ccc;border-left-style:solid;position:absolute;top:9px;right:-14px;left:auto;z-index:88}.f-dropdown.drop-top{position:absolute;left:-9999px;list-style:none;margin-left:0;outline:none;width:100%;max-height:none;height:auto;background:#fff;border:solid 1px #ccc;font-size:.875rem;z-index:89;margin-top:-2px;margin-left:0;max-width:200px}.f-dropdown.drop-top>*:first-child{margin-top:0}.f-dropdown.drop-top>*:last-child{margin-bottom:0}.f-dropdown.drop-top:before{content:"";display:block;width:0;height:0;border:inset 6px;border-color:#fff transparent transparent transparent;border-top-style:solid;position:absolute;top:auto;bottom:-12px;left:10px;right:auto;z-index:89}.f-dropdown.drop-top:after{content:"";display:block;width:0;height:0;border:inset 7px;border-color:#ccc transparent transparent transparent;border-top-style:solid;position:absolute;top:auto;bottom:-14px;left:9px;right:auto;z-index:88}.f-dropdown li{font-size:.875rem;cursor:pointer;line-height:1.125rem;margin:0}.f-dropdown li:hover,.f-dropdown li:focus{background:#eee}.f-dropdown li.radius{border-radius:3px}.f-dropdown li a{display:block;padding:.5rem;color:#555}.f-dropdown.content{position:absolute;left:-9999px;list-style:none;margin-left:0;outline:none;padding:1.25rem;width:100%;height:auto;max-height:none;background:#fff;border:solid 1px #ccc;font-size:.875rem;z-index:89;max-width:200px}.f-dropdown.content>*:first-child{margin-top:0}.f-dropdown.content>*:last-child{margin-bottom:0}.f-dropdown.tiny{max-width:200px}.f-dropdown.small{max-width:300px}.f-dropdown.medium{max-width:500px}.f-dropdown.large{max-width:800px}.f-dropdown.mega{width:100% !important;max-width:100% !important}.f-dropdown.mega.open{left:0 !important}.dropdown.button,button.dropdown{position:relative;outline:none;padding-right:3.5625rem}.dropdown.button::after,button.dropdown::after{position:absolute;content:"";width:0;height:0;display:block;border-style:solid;border-color:#fff transparent transparent transparent;top:50%}.dropdown.button::after,button.dropdown::after{border-width:.375rem;right:1.40625rem;margin-top:-.15625rem}.dropdown.button::after,button.dropdown::after{border-color:#fff transparent transparent transparent}.dropdown.button.tiny,button.dropdown.tiny{padding-right:2.625rem}.dropdown.button.tiny:after,button.dropdown.tiny:after{border-width:.375rem;right:1.125rem;margin-top:-.125rem}.dropdown.button.tiny::after,button.dropdown.tiny::after{border-color:#fff transparent transparent transparent}.dropdown.button.small,button.dropdown.small{padding-right:3.0625rem}.dropdown.button.small::after,button.dropdown.small::after{border-width:.4375rem;right:1.3125rem;margin-top:-.15625rem}.dropdown.button.small::after,button.dropdown.small::after{border-color:#fff transparent transparent transparent}.dropdown.button.large,button.dropdown.large{padding-right:3.625rem}.dropdown.button.large::after,button.dropdown.large::after{border-width:.3125rem;right:1.71875rem;margin-top:-.15625rem}.dropdown.button.large::after,button.dropdown.large::after{border-color:#fff transparent transparent transparent}.dropdown.button.secondary:after,button.dropdown.secondary:after{border-color:#333 transparent transparent transparent}.flex-video{position:relative;padding-top:1.5625rem;padding-bottom:67.5%;height:0;margin-bottom:1rem;overflow:hidden}.flex-video.widescreen{padding-bottom:56.34%}.flex-video.vimeo{padding-top:0}.flex-video iframe,.flex-video object,.flex-video embed,.flex-video video{position:absolute;top:0;left:0;width:100%;height:100%}form{margin:0 0 1rem}form .row .row{margin:0 -.5rem}form .row .row .column,form .row .row .columns{padding:0 .5rem}form .row .row.collapse{margin:0}form .row .row.collapse .column,form .row .row.collapse .columns{padding:0}form .row .row.collapse input{-webkit-border-bottom-right-radius:0;-webkit-border-top-right-radius:0;border-bottom-right-radius:0;border-top-right-radius:0}form .row input.column,form .row input.columns,form .row textarea.column,form .row textarea.columns{padding-left:.5rem}label{font-size:.875rem;color:#4d4d4d;cursor:pointer;display:block;font-weight:normal;line-height:1.5;margin-bottom:0}label.right{float:none !important;text-align:right}label.inline{margin:0 0 1rem 0;padding:.5625rem 0}label small{text-transform:capitalize;color:#676767}.prefix,.postfix{display:block;position:relative;z-index:2;text-align:center;width:100%;padding-top:0;padding-bottom:0;border-style:solid;border-width:1px;overflow:visible;font-size:.875rem;height:2.3125rem;line-height:2.3125rem}.postfix.button{padding-left:0;padding-right:0;padding-top:0;padding-bottom:0;text-align:center;border:none}.prefix.button{padding-left:0;padding-right:0;padding-top:0;padding-bottom:0;text-align:center;border:none}.prefix.button.radius{border-radius:0;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}.postfix.button.radius{border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}.prefix.button.round{border-radius:0;-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}.postfix.button.round{border-radius:0;-webkit-border-bottom-right-radius:1000px;-webkit-border-top-right-radius:1000px;border-bottom-right-radius:1000px;border-top-right-radius:1000px}span.prefix,label.prefix{background:#f2f2f2;border-right:none;color:#333;border-color:#ccc}span.postfix,label.postfix{background:#f2f2f2;border-left:none;color:#333;border-color:#ccc}input[type="text"],input[type="password"],input[type="date"],input[type="datetime"],input[type="datetime-local"],input[type="month"],input[type="week"],input[type="email"],input[type="number"],input[type="search"],input[type="tel"],input[type="time"],input[type="url"],input[type="color"],textarea{-webkit-appearance:none;border-radius:0;background-color:#fff;font-family:inherit;border-style:solid;border-width:1px;border-color:#ccc;box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);color:rgba(0,0,0,0.75);display:block;font-size:.875rem;margin:0 0 1rem 0;padding:.5rem;height:2.3125rem;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;transition:all .15s linear}input[type="text"]:focus,input[type="password"]:focus,input[type="date"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="month"]:focus,input[type="week"]:focus,input[type="email"]:focus,input[type="number"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="time"]:focus,input[type="url"]:focus,input[type="color"]:focus,textarea:focus{background:#fafafa;border-color:#999;outline:none}input[type="text"]:disabled,input[type="password"]:disabled,input[type="date"]:disabled,input[type="datetime"]:disabled,input[type="datetime-local"]:disabled,input[type="month"]:disabled,input[type="week"]:disabled,input[type="email"]:disabled,input[type="number"]:disabled,input[type="search"]:disabled,input[type="tel"]:disabled,input[type="time"]:disabled,input[type="url"]:disabled,input[type="color"]:disabled,textarea:disabled{background-color:#ddd;cursor:default}input[type="text"][disabled],input[type="text"][readonly],fieldset[disabled] input[type="text"],input[type="password"][disabled],input[type="password"][readonly],fieldset[disabled] input[type="password"],input[type="date"][disabled],input[type="date"][readonly],fieldset[disabled] input[type="date"],input[type="datetime"][disabled],input[type="datetime"][readonly],fieldset[disabled] input[type="datetime"],input[type="datetime-local"][disabled],input[type="datetime-local"][readonly],fieldset[disabled] input[type="datetime-local"],input[type="month"][disabled],input[type="month"][readonly],fieldset[disabled] input[type="month"],input[type="week"][disabled],input[type="week"][readonly],fieldset[disabled] input[type="week"],input[type="email"][disabled],input[type="email"][readonly],fieldset[disabled] input[type="email"],input[type="number"][disabled],input[type="number"][readonly],fieldset[disabled] input[type="number"],input[type="search"][disabled],input[type="search"][readonly],fieldset[disabled] input[type="search"],input[type="tel"][disabled],input[type="tel"][readonly],fieldset[disabled] input[type="tel"],input[type="time"][disabled],input[type="time"][readonly],fieldset[disabled] input[type="time"],input[type="url"][disabled],input[type="url"][readonly],fieldset[disabled] input[type="url"],input[type="color"][disabled],input[type="color"][readonly],fieldset[disabled] input[type="color"],textarea[disabled],textarea[readonly],fieldset[disabled] textarea{background-color:#ddd;cursor:default}input[type="text"].radius,input[type="password"].radius,input[type="date"].radius,input[type="datetime"].radius,input[type="datetime-local"].radius,input[type="month"].radius,input[type="week"].radius,input[type="email"].radius,input[type="number"].radius,input[type="search"].radius,input[type="tel"].radius,input[type="time"].radius,input[type="url"].radius,input[type="color"].radius,textarea.radius{border-radius:3px}form .row .prefix-radius.row.collapse input,form .row .prefix-radius.row.collapse textarea,form .row .prefix-radius.row.collapse select,form .row .prefix-radius.row.collapse button{border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}form .row .prefix-radius.row.collapse .prefix{border-radius:0;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}form .row .postfix-radius.row.collapse input,form .row .postfix-radius.row.collapse textarea,form .row .postfix-radius.row.collapse select,form .row .postfix-radius.row.collapse button{border-radius:0;-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}form .row .postfix-radius.row.collapse .postfix{border-radius:0;-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}form .row .prefix-round.row.collapse input,form .row .prefix-round.row.collapse textarea,form .row .prefix-round.row.collapse select,form .row .prefix-round.row.collapse button{border-radius:0;-webkit-border-bottom-right-radius:1000px;-webkit-border-top-right-radius:1000px;border-bottom-right-radius:1000px;border-top-right-radius:1000px}form .row .prefix-round.row.collapse .prefix{border-radius:0;-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}form .row .postfix-round.row.collapse input,form .row .postfix-round.row.collapse textarea,form .row .postfix-round.row.collapse select,form .row .postfix-round.row.collapse button{border-radius:0;-webkit-border-bottom-left-radius:1000px;-webkit-border-top-left-radius:1000px;border-bottom-left-radius:1000px;border-top-left-radius:1000px}form .row .postfix-round.row.collapse .postfix{border-radius:0;-webkit-border-bottom-right-radius:1000px;-webkit-border-top-right-radius:1000px;border-bottom-right-radius:1000px;border-top-right-radius:1000px}input[type="submit"]{-webkit-appearance:none;border-radius:0}textarea[rows]{height:auto}textarea{max-width:100%}select{-webkit-appearance:none !important;border-radius:0;background-color:#FAFAFA;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);background-position:100% center;background-repeat:no-repeat;border-style:solid;border-width:1px;border-color:#ccc;padding:.5rem;font-size:.875rem;font-family:"Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;color:rgba(0,0,0,0.75);line-height:normal;border-radius:0;height:2.3125rem}select::-ms-expand{display:none}select.radius{border-radius:3px}select:hover{background-color:#f3f3f3;border-color:#999}select:disabled{background-color:#ddd;cursor:default}select[multiple]{height:auto}input[type="file"],input[type="checkbox"],input[type="radio"],select{margin:0 0 1rem 0}input[type="checkbox"]+label,input[type="radio"]+label{display:inline-block;margin-left:.5rem;margin-right:1rem;margin-bottom:0;vertical-align:baseline}input[type="file"]{width:100%}fieldset{border:1px solid #ddd;padding:1.25rem;margin:1.125rem 0}fieldset legend{font-weight:bold;background:#fff;padding:0 .1875rem;margin:0;margin-left:-.1875rem}[data-abide] .error small.error,[data-abide] .error span.error,[data-abide] span.error,[data-abide] small.error{display:block;padding:.375rem .5625rem .5625rem;margin-top:-1px;margin-bottom:1rem;font-size:.75rem;font-weight:normal;font-style:italic;background:#f04124;color:#fff}[data-abide] span.error,[data-abide] small.error{display:none}span.error,small.error{display:block;padding:.375rem .5625rem .5625rem;margin-top:-1px;margin-bottom:1rem;font-size:.75rem;font-weight:normal;font-style:italic;background:#f04124;color:#fff}.error input,.error textarea,.error select{margin-bottom:0}.error input[type="checkbox"],.error input[type="radio"]{margin-bottom:1rem}.error label,.error label.error{color:#f04124}.error small.error{display:block;padding:.375rem .5625rem .5625rem;margin-top:-1px;margin-bottom:1rem;font-size:.75rem;font-weight:normal;font-style:italic;background:#f04124;color:#fff}.error>label>small{color:#676767;background:transparent;padding:0;text-transform:capitalize;font-style:normal;font-size:60%;margin:0;display:inline}.error span.error-message{display:block}input.error,textarea.error,select.error{margin-bottom:0}label.error{color:#f04124}.icon-bar{width:100%;font-size:0;display:inline-block;background:#333}.icon-bar>*{text-align:center;font-size:1rem;width:25%;margin:0 auto;display:block;padding:1.25rem;float:left}.icon-bar>* i,.icon-bar>* img{display:block;margin:0 auto}.icon-bar>* i+label,.icon-bar>* img+label{margin-top:.0625rem}.icon-bar>* i{font-size:1.875rem;vertical-align:middle}.icon-bar>* img{width:1.875rem;height:1.875rem}.icon-bar.label-right>* i,.icon-bar.label-right>* img{margin:0 .0625rem 0 0;display:inline-block}.icon-bar.label-right>* i+label,.icon-bar.label-right>* img+label{margin-top:0}.icon-bar.label-right>* label{display:inline-block}.icon-bar.vertical.label-right>*{text-align:left}.icon-bar.vertical,.icon-bar.small-vertical{height:100%;width:auto}.icon-bar.vertical .item,.icon-bar.small-vertical .item{width:auto;margin:auto;float:none}@media only screen and (min-width: 40.063em){.icon-bar.medium-vertical{height:100%;width:auto}.icon-bar.medium-vertical .item{width:auto;margin:auto;float:none}}@media only screen and (min-width: 64.063em){.icon-bar.large-vertical{height:100%;width:auto}.icon-bar.large-vertical .item{width:auto;margin:auto;float:none}}.icon-bar>*{font-size:1rem;padding:1.25rem}.icon-bar>* i+label,.icon-bar>* img+label{margin-top:.0625rem}.icon-bar>* i{font-size:1.875rem}.icon-bar>* img{width:1.875rem;height:1.875rem}.icon-bar>* label{color:#fff}.icon-bar>* i{color:#fff}.icon-bar>a:hover{background:#08c}.icon-bar>a:hover label{color:#fff}.icon-bar>a:hover i{color:#fff}.icon-bar>a.active,#univ-menu .menu-head .icon-bar>a.search-in.activate{background:#08c}.icon-bar>a.active label,#univ-menu .menu-head .icon-bar>a.search-in.activate label{color:#fff}.icon-bar>a.active i,#univ-menu .menu-head .icon-bar>a.search-in.activate i{color:#fff}.icon-bar .item.disabled{opacity:.7;cursor:not-allowed;pointer-events:none}.icon-bar .item.disabled>*{opacity:.7;cursor:not-allowed}.icon-bar.two-up .item{width:50%}.icon-bar.two-up.vertical .item,.icon-bar.two-up.small-vertical .item{width:auto}@media only screen and (min-width: 40.063em){.icon-bar.two-up.medium-vertical .item{width:auto}}@media only screen and (min-width: 64.063em){.icon-bar.two-up.large-vertical .item{width:auto}}.icon-bar.three-up .item{width:33.3333%}.icon-bar.three-up.vertical .item,.icon-bar.three-up.small-vertical .item{width:auto}@media only screen and (min-width: 40.063em){.icon-bar.three-up.medium-vertical .item{width:auto}}@media only screen and (min-width: 64.063em){.icon-bar.three-up.large-vertical .item{width:auto}}.icon-bar.four-up .item{width:25%}.icon-bar.four-up.vertical .item,.icon-bar.four-up.small-vertical .item{width:auto}@media only screen and (min-width: 40.063em){.icon-bar.four-up.medium-vertical .item{width:auto}}@media only screen and (min-width: 64.063em){.icon-bar.four-up.large-vertical .item{width:auto}}.icon-bar.five-up .item{width:20%}.icon-bar.five-up.vertical .item,.icon-bar.five-up.small-vertical .item{width:auto}@media only screen and (min-width: 40.063em){.icon-bar.five-up.medium-vertical .item{width:auto}}@media only screen and (min-width: 64.063em){.icon-bar.five-up.large-vertical .item{width:auto}}.icon-bar.six-up .item{width:16.66667%}.icon-bar.six-up.vertical .item,.icon-bar.six-up.small-vertical .item{width:auto}@media only screen and (min-width: 40.063em){.icon-bar.six-up.medium-vertical .item{width:auto}}@media only screen and (min-width: 64.063em){.icon-bar.six-up.large-vertical .item{width:auto}}.icon-bar.seven-up .item{width:14.28571%}.icon-bar.seven-up.vertical .item,.icon-bar.seven-up.small-vertical .item{width:auto}@media only screen and (min-width: 40.063em){.icon-bar.seven-up.medium-vertical .item{width:auto}}@media only screen and (min-width: 64.063em){.icon-bar.seven-up.large-vertical .item{width:auto}}.icon-bar.eight-up .item{width:12.5%}.icon-bar.eight-up.vertical .item,.icon-bar.eight-up.small-vertical .item{width:auto}@media only screen and (min-width: 40.063em){.icon-bar.eight-up.medium-vertical .item{width:auto}}@media only screen and (min-width: 64.063em){.icon-bar.eight-up.large-vertical .item{width:auto}}.inline-list{margin:0 auto 1.0625rem auto;margin-left:-1.375rem;margin-right:0;padding:0;list-style:none;overflow:hidden}.inline-list>li{list-style:none;float:left;margin-left:1.375rem;display:block}.inline-list>li>*{display:block}.joyride-list{display:none}.joyride-tip-guide{display:none;position:absolute;background:#333;color:#fff;z-index:101;top:0;left:2.5%;font-family:inherit;font-weight:normal;width:95%}.lt-ie9 .joyride-tip-guide{max-width:800px;left:50%;margin-left:-400px}.joyride-content-wrapper{width:100%;padding:1.125rem 1.25rem 1.5rem}.joyride-content-wrapper .button{margin-bottom:0 !important}.joyride-content-wrapper .joyride-prev-tip{margin-right:10px}.joyride-tip-guide .joyride-nub{display:block;position:absolute;left:22px;width:0;height:0;border:10px solid #333}.joyride-tip-guide .joyride-nub.top{border-top-style:solid;border-color:#333;border-top-color:transparent !important;border-left-color:transparent !important;border-right-color:transparent !important;top:-20px}.joyride-tip-guide .joyride-nub.bottom{border-bottom-style:solid;border-color:#333 !important;border-bottom-color:transparent !important;border-left-color:transparent !important;border-right-color:transparent !important;bottom:-20px}.joyride-tip-guide .joyride-nub.right{right:-20px}.joyride-tip-guide .joyride-nub.left{left:-20px}.joyride-tip-guide h1,.joyride-tip-guide h2,.joyride-tip-guide h3,.joyride-tip-guide h4,.joyride-tip-guide h5,.joyride-tip-guide h6{line-height:1.25;margin:0;font-weight:bold;color:#fff}.joyride-tip-guide p{margin:0 0 1.125rem 0;font-size:.875rem;line-height:1.3}.joyride-timer-indicator-wrap{width:50px;height:3px;border:solid 1px #555;position:absolute;right:1.0625rem;bottom:1rem}.joyride-timer-indicator{display:block;width:0;height:inherit;background:#666}.joyride-close-tip{position:absolute;right:12px;top:10px;color:#777 !important;text-decoration:none;font-size:24px;font-weight:normal;line-height:.5 !important}.joyride-close-tip:hover,.joyride-close-tip:focus{color:#eee !important}.joyride-modal-bg{position:fixed;height:100%;width:100%;background:transparent;background:rgba(0,0,0,0.5);z-index:100;display:none;top:0;left:0;cursor:pointer}.joyride-expose-wrapper{background-color:#fff;position:absolute;border-radius:3px;z-index:102;box-shadow:0 0 15px #fff}.joyride-expose-cover{background:transparent;border-radius:3px;position:absolute;z-index:9999;top:0;left:0}@media only screen and (min-width: 40.063em){.joyride-tip-guide{width:300px;left:inherit}.joyride-tip-guide .joyride-nub.bottom{border-color:#333 !important;border-bottom-color:transparent !important;border-left-color:transparent !important;border-right-color:transparent !important;bottom:-20px}.joyride-tip-guide .joyride-nub.right{border-color:#333 !important;border-top-color:transparent !important;border-right-color:transparent !important;border-bottom-color:transparent !important;top:22px;left:auto;right:-20px}.joyride-tip-guide .joyride-nub.left{border-color:#333 !important;border-top-color:transparent !important;border-left-color:transparent !important;border-bottom-color:transparent !important;top:22px;left:-20px;right:auto}}.keystroke,kbd{background-color:#ededed;border-color:#ddd;color:#222;border-style:solid;border-width:1px;margin:0;font-family:"Consolas","Menlo","Courier",monospace;font-size:inherit;padding:.125rem .25rem 0;border-radius:3px}.label{font-weight:normal;font-family:"Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;text-align:center;text-decoration:none;line-height:1;white-space:nowrap;display:inline-block;position:relative;margin-bottom:auto;padding:.25rem .5rem .25rem;font-size:.6875rem;background-color:#08c;color:#fff}.label.radius{border-radius:3px}.label.round{border-radius:1000px}.label.alert{background-color:#f04124;color:#fff}.label.warning{background-color:#f08a24;color:#fff}.label.success{background-color:#43AC6A;color:#fff}.label.secondary{background-color:#e7e7e7;color:#333}.label.info{background-color:#a0d3e8;color:#333}[data-magellan-expedition],[data-magellan-expedition-clone]{background:#fff;z-index:50;min-width:100%;padding:10px}[data-magellan-expedition] .sub-nav,[data-magellan-expedition-clone] .sub-nav{margin-bottom:0}[data-magellan-expedition] .sub-nav dd,[data-magellan-expedition-clone] .sub-nav dd{margin-bottom:0}[data-magellan-expedition] .sub-nav a,[data-magellan-expedition-clone] .sub-nav a{line-height:1.8em}@-webkit-keyframes rotate{from{-webkit-transform:rotate(0deg)}to{-webkit-transform:rotate(360deg)}}@-moz-keyframes rotate{from{-moz-transform:rotate(0deg)}to{-moz-transform:rotate(360deg)}}@-o-keyframes rotate{from{-o-transform:rotate(0deg)}to{-o-transform:rotate(360deg)}}@keyframes rotate{from{transform:rotate(0deg)}to{transform:rotate(360deg)}}.slideshow-wrapper{position:relative}.slideshow-wrapper ul{list-style-type:none;margin:0}.slideshow-wrapper ul li,.slideshow-wrapper ul li .orbit-caption{display:none}.slideshow-wrapper ul li:first-child{display:block}.slideshow-wrapper .orbit-container{background-color:transparent}.slideshow-wrapper .orbit-container li{display:block}.slideshow-wrapper .orbit-container li .orbit-caption{display:block}.slideshow-wrapper .orbit-container .orbit-bullets li{display:inline-block}.slideshow-wrapper .preloader{display:block;width:40px;height:40px;position:absolute;top:50%;left:50%;margin-top:-20px;margin-left:-20px;border:solid 3px;border-color:#555 #fff;border-radius:1000px;animation-name:rotate;animation-duration:1.5s;animation-iteration-count:infinite;animation-timing-function:linear}.orbit-container{overflow:hidden;width:100%;position:relative;background:none}.orbit-container .orbit-slides-container{list-style:none;margin:0;padding:0;position:relative;-webkit-transform:translateZ(0)}.orbit-container .orbit-slides-container img{display:block;max-width:100%}.orbit-container .orbit-slides-container>*{position:absolute;top:0;width:100%;margin-left:100%}.orbit-container .orbit-slides-container>*:first-child{margin-left:0}.orbit-container .orbit-slides-container>* .orbit-caption{position:absolute;bottom:0;background-color:rgba(51,51,51,0.8);color:#fff;width:100%;padding:.625rem .875rem;font-size:.875rem}.orbit-container .orbit-slide-number{position:absolute;top:10px;left:10px;font-size:12px;color:#fff;background:transparent;z-index:10}.orbit-container .orbit-slide-number span{font-weight:700;padding:.3125rem}.orbit-container .orbit-timer{position:absolute;top:12px;right:10px;height:6px;width:100px;z-index:10}.orbit-container .orbit-timer .orbit-progress{height:3px;background-color:rgba(255,255,255,0.3);display:block;width:0;position:relative;right:20px;top:5px}.orbit-container .orbit-timer>span{display:none;position:absolute;top:0;right:0;width:11px;height:14px;border:solid 4px #fff;border-top:none;border-bottom:none}.orbit-container .orbit-timer.paused>span{right:-4px;top:0;width:11px;height:14px;border:inset 8px;border-left-style:solid;border-color:transparent;border-left-color:#fff}.orbit-container .orbit-timer.paused>span.dark{border-left-color:#333}.orbit-container:hover .orbit-timer>span{display:block}.orbit-container .orbit-prev,.orbit-container .orbit-next{position:absolute;top:45%;margin-top:-25px;width:36px;height:60px;line-height:50px;color:white;background-color:transparent;text-indent:-9999px !important;z-index:10}.orbit-container .orbit-prev:hover,.orbit-container .orbit-next:hover{background-color:rgba(0,0,0,0.3)}.orbit-container .orbit-prev>span,.orbit-container .orbit-next>span{position:absolute;top:50%;margin-top:-10px;display:block;width:0;height:0;border:inset 10px}.orbit-container .orbit-prev{left:0}.orbit-container .orbit-prev>span{border-right-style:solid;border-color:transparent;border-right-color:#fff}.orbit-container .orbit-prev:hover>span{border-right-color:#fff}.orbit-container .orbit-next{right:0}.orbit-container .orbit-next>span{border-color:transparent;border-left-style:solid;border-left-color:#fff;left:50%;margin-left:-4px}.orbit-container .orbit-next:hover>span{border-left-color:#fff}.orbit-bullets-container{text-align:center}.orbit-bullets{margin:0 auto 30px auto;overflow:hidden;position:relative;top:10px;float:none;text-align:center;display:block}.orbit-bullets li{cursor:pointer;display:inline-block;width:.5625rem;height:.5625rem;background:#ccc;float:none;margin-right:6px;border-radius:1000px}.orbit-bullets li.active,.orbit-bullets #univ-menu .menu-head li.search-in.activate,#univ-menu .menu-head .orbit-bullets li.search-in.activate{background:#999}.orbit-bullets li:last-child{margin-right:0}.touch .orbit-container .orbit-prev,.touch .orbit-container .orbit-next{display:none}.touch .orbit-bullets{display:none}@media only screen and (min-width: 40.063em){.touch .orbit-container .orbit-prev,.touch .orbit-container .orbit-next{display:inherit}.touch .orbit-bullets{display:block}}@media only screen and (max-width: 40em){.orbit-stack-on-small .orbit-slides-container{height:auto !important}.orbit-stack-on-small .orbit-slides-container>*{position:relative;margin:0 !important;opacity:1 !important}.orbit-stack-on-small .orbit-slide-number{display:none}.orbit-timer{display:none}.orbit-next,.orbit-prev{display:none}.orbit-bullets{display:none}}ul.pagination{display:block;min-height:1.5rem;margin-left:-.3125rem}ul.pagination li{height:1.5rem;color:#222;font-size:.875rem;margin-left:.3125rem}ul.pagination li a,ul.pagination li button{display:block;padding:.0625rem .625rem .0625rem;color:#999;background:none;border-radius:3px;font-weight:normal;font-size:1em;line-height:inherit;transition:background-color 300ms ease-out}ul.pagination li:hover a,ul.pagination li a:focus,ul.pagination li:hover button,ul.pagination li button:focus{background:#e6e6e6}ul.pagination li.unavailable a,ul.pagination li.unavailable button{cursor:default;color:#999}ul.pagination li.unavailable:hover a,ul.pagination li.unavailable a:focus,ul.pagination li.unavailable:hover button,ul.pagination li.unavailable button:focus{background:transparent}ul.pagination li.current a,ul.pagination li.current button{background:#08c;color:#fff;font-weight:bold;cursor:default}ul.pagination li.current a:hover,ul.pagination li.current a:focus,ul.pagination li.current button:hover,ul.pagination li.current button:focus{background:#08c}ul.pagination li{float:left;display:block}.pagination-centered{text-align:center}.pagination-centered ul.pagination li{float:none;display:inline-block}.panel{border-style:solid;border-width:1px;border-color:#d8d8d8;margin-bottom:1.25rem;padding:1.25rem;background:#f2f2f2;color:#333}.panel>:first-child{margin-top:0}.panel>:last-child{margin-bottom:0}.panel h1,.panel h2,.panel h3,.panel h4,.panel h5,.panel h6,.panel p,.panel li,.panel dl{color:#333}.panel h1,.panel h2,.panel h3,.panel h4,.panel h5,.panel h6{line-height:1;margin-bottom:.625rem}.panel h1.subheader,.panel h2.subheader,.panel h3.subheader,.panel h4.subheader,.panel h5.subheader,.panel h6.subheader{line-height:1.4}.panel.callout{border-style:solid;border-width:1px;border-color:#b7e7ff;margin-bottom:1.25rem;padding:1.25rem;background:#edf9ff;color:#333}.panel.callout>:first-child{margin-top:0}.panel.callout>:last-child{margin-bottom:0}.panel.callout h1,.panel.callout h2,.panel.callout h3,.panel.callout h4,.panel.callout h5,.panel.callout h6,.panel.callout p,.panel.callout li,.panel.callout dl{color:#333}.panel.callout h1,.panel.callout h2,.panel.callout h3,.panel.callout h4,.panel.callout h5,.panel.callout h6{line-height:1;margin-bottom:.625rem}.panel.callout h1.subheader,.panel.callout h2.subheader,.panel.callout h3.subheader,.panel.callout h4.subheader,.panel.callout h5.subheader,.panel.callout h6.subheader{line-height:1.4}.panel.callout a:not(.button){color:#08c}.panel.callout a:not(.button):hover,.panel.callout a:not(.button):focus{color:#0075af}.panel.radius{border-radius:3px}.pricing-table{border:solid 1px #ddd;margin-left:0;margin-bottom:1.25rem}.pricing-table *{list-style:none;line-height:1}.pricing-table .title{background-color:#333;padding:.9375rem 1.25rem;text-align:center;color:#eee;font-weight:normal;font-size:1rem;font-family:"Helvetica Neue",Helvetica,Roboto,Arial,sans-serif}.pricing-table .price{background-color:#F6F6F6;padding:.9375rem 1.25rem;text-align:center;color:#333;font-weight:normal;font-size:2rem;font-family:"Helvetica Neue",Helvetica,Roboto,Arial,sans-serif}.pricing-table .description{background-color:#fff;padding:.9375rem;text-align:center;color:#777;font-size:.75rem;font-weight:normal;line-height:1.4;border-bottom:dotted 1px #ddd}.pricing-table .bullet-item{background-color:#fff;padding:.9375rem;text-align:center;color:#333;font-size:.875rem;font-weight:normal;border-bottom:dotted 1px #ddd}.pricing-table .cta-button{background-color:#fff;text-align:center;padding:1.25rem 1.25rem 0}.progress{background-color:#F6F6F6;height:1.5625rem;border:1px solid #fff;padding:.125rem;margin-bottom:.625rem}.progress .meter{background:#08c;height:100%;display:block}.progress.secondary .meter{background:#e7e7e7;height:100%;display:block}.progress.success .meter{background:#43AC6A;height:100%;display:block}.progress.alert .meter{background:#f04124;height:100%;display:block}.progress.radius{border-radius:3px}.progress.radius .meter{border-radius:2px}.progress.round{border-radius:1000px}.progress.round .meter{border-radius:999px}.range-slider{position:relative;border:1px solid #ddd;margin:1.25rem 0;-ms-touch-action:none;touch-action:none;display:block;width:100%;height:1rem;background:#FAFAFA}.range-slider.vertical-range{position:relative;border:1px solid #ddd;margin:1.25rem 0;-ms-touch-action:none;touch-action:none;display:inline-block;width:1rem;height:12.5rem}.range-slider.vertical-range .range-slider-handle{margin-top:0;margin-left:-.5rem;position:absolute;bottom:-10.5rem}.range-slider.vertical-range .range-slider-active-segment{width:.875rem;height:auto;bottom:0}.range-slider.radius{background:#FAFAFA;border-radius:3px}.range-slider.radius .range-slider-handle{background:#08c;border-radius:3px}.range-slider.radius .range-slider-handle:hover{background:#0078b4}.range-slider.round{background:#FAFAFA;border-radius:1000px}.range-slider.round .range-slider-handle{background:#08c;border-radius:1000px}.range-slider.round .range-slider-handle:hover{background:#0078b4}.range-slider.disabled,.range-slider[disabled]{background:#FAFAFA;cursor:not-allowed;opacity:.7}.range-slider.disabled .range-slider-handle,.range-slider[disabled] .range-slider-handle{background:#08c;cursor:default;opacity:.7}.range-slider.disabled .range-slider-handle:hover,.range-slider[disabled] .range-slider-handle:hover{background:#0078b4}.range-slider-active-segment{display:inline-block;position:absolute;height:.875rem;background:#e5e5e5}.range-slider-handle{display:inline-block;position:absolute;z-index:1;top:-.3125rem;width:2rem;height:1.375rem;border:1px solid none;cursor:pointer;-ms-touch-action:manipulation;touch-action:manipulation;background:#08c}.range-slider-handle:hover{background:#0078b4}.reveal-modal-bg{position:fixed;top:0;bottom:0;left:0;right:0;background:#000;background:rgba(0,0,0,0.45);z-index:1004;display:none;left:0}.reveal-modal{visibility:hidden;display:none;position:absolute;z-index:1005;width:100%;top:0;border-radius:3px;left:0;background-color:#fff;padding:1.875rem;border:solid 1px #666;box-shadow:0 0 10px rgba(0,0,0,0.4)}@media only screen and (max-width: 40em){.reveal-modal{min-height:100vh}}.reveal-modal .column,.reveal-modal .columns{min-width:0}.reveal-modal>:first-child{margin-top:0}.reveal-modal>:last-child{margin-bottom:0}@media only screen and (min-width: 40.063em){.reveal-modal{width:80%;max-width:62.5rem;left:0;right:0;margin:0 auto}}@media only screen and (min-width: 40.063em){.reveal-modal{top:6.25rem}}.reveal-modal.radius{border-radius:3px}.reveal-modal.round{border-radius:1000px}.reveal-modal.collapse{padding:0}@media only screen and (min-width: 40.063em){.reveal-modal.tiny{width:30%;max-width:62.5rem;left:0;right:0;margin:0 auto}}@media only screen and (min-width: 40.063em){.reveal-modal.small{width:40%;max-width:62.5rem;left:0;right:0;margin:0 auto}}@media only screen and (min-width: 40.063em){.reveal-modal.medium{width:60%;max-width:62.5rem;left:0;right:0;margin:0 auto}}@media only screen and (min-width: 40.063em){.reveal-modal.large{width:70%;max-width:62.5rem;left:0;right:0;margin:0 auto}}@media only screen and (min-width: 40.063em){.reveal-modal.xlarge{width:95%;max-width:62.5rem;left:0;right:0;margin:0 auto}}.reveal-modal.full{top:0;left:0;height:100%;height:100vh;min-height:100vh;max-width:none !important;margin-left:0 !important}@media only screen and (min-width: 40.063em){.reveal-modal.full{width:100%;max-width:62.5rem;left:0;right:0;margin:0 auto}}.reveal-modal.toback{z-index:1003}.reveal-modal .close-reveal-modal{font-size:2.5rem;line-height:1;position:absolute;top:.625rem;right:1.375rem;color:#aaa;font-weight:bold;cursor:pointer}.side-nav{display:block;margin:0;padding:.875rem 0;list-style-type:none;list-style-position:outside;font-family:"Helvetica Neue",Helvetica,Roboto,Arial,sans-serif}.side-nav li{margin:0 0 .4375rem 0;font-size:.875rem;font-weight:normal}.side-nav li a:not(.button){display:block;color:#08c;margin:0;padding:.4375rem .875rem}.side-nav li a:not(.button):hover,.side-nav li a:not(.button):focus{background:rgba(0,0,0,0.025);color:#29b8ff}.side-nav li.active>a:first-child:not(.button),.side-nav #univ-menu .menu-head li.search-in.activate>a:first-child:not(.button),#univ-menu .menu-head .side-nav li.search-in.activate>a:first-child:not(.button){color:#29b8ff;font-weight:normal;font-family:"Helvetica Neue",Helvetica,Roboto,Arial,sans-serif}.side-nav li.divider{border-top:1px solid;height:0;padding:0;list-style:none;border-top-color:#fff}.side-nav li.heading{color:#08c;font-size:.875rem;font-weight:bold;text-transform:uppercase}.split.button{position:relative;padding-right:5.0625rem}.split.button span{display:block;height:100%;position:absolute;right:0;top:0;border-left:solid 1px}.split.button span:after{position:absolute;content:"";width:0;height:0;display:block;border-style:inset;top:50%;left:50%}.split.button span:active{background-color:rgba(0,0,0,0.1)}.split.button span{border-left-color:rgba(255,255,255,0.5)}.split.button span{width:3.09375rem}.split.button span:after{border-top-style:solid;border-width:.375rem;top:48%;margin-left:-.375rem}.split.button span:after{border-color:#fff transparent transparent transparent}.split.button.secondary span{border-left-color:rgba(255,255,255,0.5)}.split.button.secondary span:after{border-color:#fff transparent transparent transparent}.split.button.alert span{border-left-color:rgba(255,255,255,0.5)}.split.button.success span{border-left-color:rgba(255,255,255,0.5)}.split.button.tiny{padding-right:3.75rem}.split.button.tiny span{width:2.25rem}.split.button.tiny span:after{border-top-style:solid;border-width:.375rem;top:48%;margin-left:-.375rem}.split.button.small{padding-right:4.375rem}.split.button.small span{width:2.625rem}.split.button.small span:after{border-top-style:solid;border-width:.4375rem;top:48%;margin-left:-.375rem}.split.button.large{padding-right:5.5rem}.split.button.large span{width:3.4375rem}.split.button.large span:after{border-top-style:solid;border-width:.3125rem;top:48%;margin-left:-.375rem}.split.button.expand{padding-left:2rem}.split.button.secondary span:after{border-color:#333 transparent transparent transparent}.split.button.radius span{-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}.split.button.round span{-webkit-border-bottom-right-radius:1000px;-webkit-border-top-right-radius:1000px;border-bottom-right-radius:1000px;border-top-right-radius:1000px}.split.button.no-pip span:before{border-style:none}.split.button.no-pip span:after{border-style:none}.split.button.no-pip span>i{top:50%;display:block;position:absolute;left:50%;margin-left:-0.28889em;margin-top:-0.48889em}.sub-nav{display:block;width:auto;overflow:hidden;margin-bottom:-.25rem 0 1.125rem;padding-top:.25rem}.sub-nav dt{text-transform:uppercase}.sub-nav dt,.sub-nav dd,.sub-nav li{float:left;margin-left:1rem;margin-bottom:0;font-family:"Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;font-weight:normal;font-size:.875rem;color:#999}.sub-nav dt a,.sub-nav dd a,.sub-nav li a{text-decoration:none;color:#999;padding:.1875rem 1rem}.sub-nav dt a:hover,.sub-nav dd a:hover,.sub-nav li a:hover{color:#737373}.sub-nav dt.active a,.sub-nav #univ-menu .menu-head dt.search-in.activate a,#univ-menu .menu-head .sub-nav dt.search-in.activate a,.sub-nav dd.active a,.sub-nav #univ-menu .menu-head dd.search-in.activate a,#univ-menu .menu-head .sub-nav dd.search-in.activate a,.sub-nav li.active a,.sub-nav #univ-menu .menu-head li.search-in.activate a,#univ-menu .menu-head .sub-nav li.search-in.activate a{border-radius:3px;font-weight:normal;background:#08c;padding:.1875rem 1rem;cursor:default;color:#fff}.sub-nav dt.active a:hover,.sub-nav #univ-menu .menu-head dt.search-in.activate a:hover,#univ-menu .menu-head .sub-nav dt.search-in.activate a:hover,.sub-nav dd.active a:hover,.sub-nav #univ-menu .menu-head dd.search-in.activate a:hover,#univ-menu .menu-head .sub-nav dd.search-in.activate a:hover,.sub-nav li.active a:hover,.sub-nav #univ-menu .menu-head li.search-in.activate a:hover,#univ-menu .menu-head .sub-nav li.search-in.activate a:hover{background:#0075af}.switch{padding:0;border:none;position:relative;outline:0;-webkit-user-select:none;-moz-user-select:none;user-select:none}.switch label{display:block;margin-bottom:1rem;position:relative;color:transparent;background:#ddd;text-indent:100%;width:4rem;height:2rem;cursor:pointer;transition:left .15s ease-out}.switch input{opacity:0;position:absolute;top:9px;left:10px;padding:0}.switch input+label{margin-left:0;margin-right:0}.switch label:after{content:"";display:block;background:#fff;position:absolute;top:.25rem;left:.25rem;width:1.5rem;height:1.5rem;-webkit-transition:left .15s ease-out;-moz-transition:left .15s ease-out;-o-transition:translate3d(0, 0, 0);transition:left .15s ease-out;-webkit-transform:translate3d(0, 0, 0);-moz-transform:translate3d(0, 0, 0);-o-transform:translate3d(0, 0, 0);transform:translate3d(0, 0, 0)}.switch input:checked+label{background:#08c}.switch input:checked+label:after{left:2.25rem}.switch label{width:4rem;height:2rem}.switch label:after{width:1.5rem;height:1.5rem}.switch input:checked+label:after{left:2.25rem}.switch label{color:transparent;background:#ddd}.switch label:after{background:#fff}.switch input:checked+label{background:#08c}.switch.large label{width:5rem;height:2.5rem}.switch.large label:after{width:2rem;height:2rem}.switch.large input:checked+label:after{left:2.75rem}.switch.small label{width:3.5rem;height:1.75rem}.switch.small label:after{width:1.25rem;height:1.25rem}.switch.small input:checked+label:after{left:2rem}.switch.tiny label{width:3rem;height:1.5rem}.switch.tiny label:after{width:1rem;height:1rem}.switch.tiny input:checked+label:after{left:1.75rem}.switch.radius label{border-radius:4px}.switch.radius label:after{border-radius:3px}.switch.round{border-radius:1000px}.switch.round label{border-radius:2rem}.switch.round label:after{border-radius:2rem}table{background:#fff;margin-bottom:1.25rem;border:solid 1px #ddd;table-layout:auto}table caption{background:transparent;color:#222;font-size:1rem;font-weight:bold}table thead{background:#f5f5f5}table thead tr th,table thead tr td{padding:.5rem .625rem .625rem;font-size:.875rem;font-weight:bold;color:#222}table tfoot{background:#f5f5f5}table tfoot tr th,table tfoot tr td{padding:.5rem .625rem .625rem;font-size:.875rem;font-weight:bold;color:#222}table tr th,table tr td{padding:.5625rem .625rem;font-size:.875rem;color:#222;text-align:left}table tr.even,table tr.alt,table tr:nth-of-type(even){background:#F9F9F9}table thead tr th,table tfoot tr th,table tfoot tr td,table tbody tr th,table tbody tr td,table tr td{display:table-cell;line-height:1.125rem}.tabs,.tabs-tryrequest,.tabs.vertical.light{margin-bottom:0 !important;margin-left:0}.tabs:before,.tabs-tryrequest:before,.tabs.vertical.light:before,.tabs:after,.tabs-tryrequest:after,.tabs.vertical.light:after{content:" ";display:table}.tabs:after,.tabs-tryrequest:after,.tabs.vertical.light:after{clear:both}.tabs dd,.tabs-tryrequest dd,.tabs.vertical.light dd,.tabs .tab-title,.tabs-tryrequest .tab-title,.tabs.vertical.light .tab-title{position:relative;margin-bottom:0 !important;list-style:none;float:left}.tabs dd>a,.tabs-tryrequest dd>a,.tabs.vertical.light dd>a,.tabs .tab-title>a,.tabs-tryrequest .tab-title>a,.tabs.vertical.light .tab-title>a{display:block;background-color:#EFEFEF;color:#222;padding:1rem 2rem;font-family:"Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;font-size:1rem}.tabs dd>a:hover,.tabs-tryrequest dd>a:hover,.tabs.vertical.light dd>a:hover,.tabs .tab-title>a:hover,.tabs-tryrequest .tab-title>a:hover{background-color:#e1e1e1}.tabs dd>a:focus,.tabs-tryrequest dd>a:focus,.tabs.vertical.light dd>a:focus,.tabs .tab-title>a:focus,.tabs-tryrequest .tab-title>a:focus{outline:none}.tabs dd.active a,.tabs-tryrequest dd.active a,.tabs.vertical.light dd.active a,.tabs #univ-menu .menu-head dd.search-in.activate a,#univ-menu .menu-head .tabs dd.search-in.activate a,.tabs-tryrequest #univ-menu .menu-head dd.search-in.activate a,#univ-menu .menu-head .tabs-tryrequest dd.search-in.activate a,.tabs .tab-title.active a,.tabs-tryrequest .tab-title.active a,.tabs #univ-menu .menu-head .tab-title.search-in.activate a,#univ-menu .menu-head .tabs .tab-title.search-in.activate a,.tabs-tryrequest #univ-menu .menu-head .tab-title.search-in.activate a,#univ-menu .menu-head .tabs-tryrequest .tab-title.search-in.activate a{background-color:#fff;color:#222}.tabs.radius dd:first-child a,.radius.tabs-tryrequest dd:first-child a,.tabs.radius .tab:first-child a,.radius.tabs-tryrequest .tab:first-child a{-webkit-border-bottom-left-radius:3px;-webkit-border-top-left-radius:3px;border-bottom-left-radius:3px;border-top-left-radius:3px}.tabs.radius dd:last-child a,.radius.tabs-tryrequest dd:last-child a,.tabs.radius .tab:last-child a,.radius.tabs-tryrequest .tab:last-child a{-webkit-border-bottom-right-radius:3px;-webkit-border-top-right-radius:3px;border-bottom-right-radius:3px;border-top-right-radius:3px}.tabs.vertical dd,.vertical.tabs-tryrequest dd,.vertical.tabs.light dd,.tabs.vertical .tab-title,.vertical.tabs-tryrequest .tab-title{position:inherit;float:none;display:block;top:auto}.tabs-content{margin-bottom:1.5rem;width:100%}.tabs-content:before,.tabs-content:after{content:" ";display:table}.tabs-content:after{clear:both}.tabs-content>.content{display:none;float:left;padding:.9375rem 0;width:100%}.tabs-content>.content.active,#univ-menu .menu-head .tabs-content>.content.search-in.activate{display:block;float:none}.tabs-content>.content.contained{padding:.9375rem}.tabs-content.vertical{display:block}.tabs-content.vertical>.content{padding:0 .9375rem}@media only screen and (min-width: 40.063em){.tabs.vertical,.vertical.tabs-tryrequest,.vertical.tabs.light{width:20%;max-width:20%;float:left;margin:0 0 1.25rem}.tabs-content.vertical{width:80%;max-width:80%;float:left;margin-left:-1px;padding-left:1rem}}.no-js .tabs-content>.content{display:block;float:none}.th{line-height:0;display:inline-block;border:solid 4px #fff;max-width:100%;box-shadow:0 0 0 1px rgba(0,0,0,0.2);transition:all 200ms ease-out}.th:hover,.th:focus{box-shadow:0 0 6px 1px rgba(0,136,204,0.5)}.th.radius{border-radius:3px}.has-tip{border-bottom:dotted 1px #ccc;cursor:help;font-weight:bold;color:#333}.has-tip:hover,.has-tip:focus{border-bottom:dotted 1px #003d5c;color:#08c}.has-tip.tip-left,.has-tip.tip-right{float:none !important}.tooltip{display:none;position:absolute;z-index:1006;font-weight:normal;font-size:.875rem;line-height:1.3;padding:.75rem;max-width:300px;left:50%;width:100%;color:#fff;background:#333}.tooltip>.nub{display:block;left:5px;position:absolute;width:0;height:0;border:solid 5px;border-color:transparent transparent #333 transparent;top:-10px;pointer-events:none}.tooltip>.nub.rtl{left:auto;right:5px}.tooltip.radius{border-radius:3px}.tooltip.round{border-radius:1000px}.tooltip.round>.nub{left:2rem}.tooltip.opened{color:#08c !important;border-bottom:dotted 1px #003d5c !important}.tap-to-close{display:block;font-size:.625rem;color:#777;font-weight:normal}@media only screen and (min-width: 40.063em){.tooltip>.nub{border-color:transparent transparent #333 transparent;top:-10px}.tooltip.tip-top>.nub{border-color:#333 transparent transparent transparent;top:auto;bottom:-10px}.tooltip.tip-left,.tooltip.tip-right{float:none !important}.tooltip.tip-left>.nub{border-color:transparent transparent transparent #333;right:-10px;left:auto;top:50%;margin-top:-5px}.tooltip.tip-right>.nub{border-color:transparent #333 transparent transparent;right:auto;left:-10px;top:50%;margin-top:-5px}}meta.foundation-mq-topbar{font-family:"/only screen and (min-width:40.063em)/";width:40.063em}.contain-to-grid{width:100%;background:#333}.contain-to-grid .top-bar{margin-bottom:0}.fixed{width:100%;left:0;position:fixed;top:0;z-index:99}.fixed.expanded:not(.top-bar){overflow-y:auto;height:auto;width:100%;max-height:100%}.fixed.expanded:not(.top-bar) .title-area{position:fixed;width:100%;z-index:99}.fixed.expanded:not(.top-bar) .top-bar-section{z-index:98;margin-top:2.8125rem}.top-bar{overflow:hidden;height:2.8125rem;line-height:2.8125rem;position:relative;background:#333;margin-bottom:0}.top-bar ul{margin-bottom:0;list-style:none}.top-bar .row{max-width:none}.top-bar form,.top-bar input{margin-bottom:0}.top-bar input{height:1.75rem;padding-top:.35rem;padding-bottom:.35rem;font-size:.75rem}.top-bar .button,.top-bar button{padding-top:0.4125rem;padding-bottom:0.4125rem;margin-bottom:0;font-size:.75rem}@media only screen and (max-width: 40em){.top-bar .button,.top-bar button{position:relative;top:-1px}}.top-bar .title-area{position:relative;margin:0}.top-bar .name{height:2.8125rem;margin:0;font-size:16px}.top-bar .name h1,.top-bar .name h2,.top-bar .name h3,.top-bar .name h4,.top-bar .name p,.top-bar .name span{line-height:2.8125rem;font-size:1.0625rem;margin:0}.top-bar .name h1 a,.top-bar .name h2 a,.top-bar .name h3 a,.top-bar .name h4 a,.top-bar .name p a,.top-bar .name span a{font-weight:normal;color:#fff;width:75%;display:block;padding:0 .9375rem}.top-bar .toggle-topbar{position:absolute;right:0;top:0}.top-bar .toggle-topbar a{color:#fff;text-transform:uppercase;font-size:.8125rem;font-weight:bold;position:relative;display:block;padding:0 .9375rem;height:2.8125rem;line-height:2.8125rem}.top-bar .toggle-topbar.menu-icon{top:50%;margin-top:-16px}.top-bar .toggle-topbar.menu-icon a{height:34px;line-height:33px;padding:0 2.5rem 0 .9375rem;color:#fff;position:relative}.top-bar .toggle-topbar.menu-icon a span::after{content:"";position:absolute;display:block;height:0;top:50%;margin-top:-8px;right:.9375rem;box-shadow:0 0 0 1px #fff,0 7px 0 1px #fff,0 14px 0 1px #fff;width:16px}.top-bar .toggle-topbar.menu-icon a span:hover:after{box-shadow:0 0 0 1px "",0 7px 0 1px "",0 14px 0 1px ""}.top-bar.expanded{height:auto;background:transparent}.top-bar.expanded .title-area{background:#333}.top-bar.expanded .toggle-topbar a{color:#888}.top-bar.expanded .toggle-topbar a span::after{box-shadow:0 0 0 1px #888,0 7px 0 1px #888,0 14px 0 1px #888}.top-bar-section{left:0;position:relative;width:auto;transition:left 300ms ease-out}.top-bar-section ul{padding:0;width:100%;height:auto;display:block;font-size:16px;margin:0}.top-bar-section .divider,.top-bar-section [role="separator"]{border-top:solid 1px #1a1a1a;clear:both;height:1px;width:100%}.top-bar-section ul li{background:#333}.top-bar-section ul li>a{display:block;width:100%;color:#fff;padding:12px 0 12px 0;padding-left:.9375rem;font-family:"Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;font-size:.8125rem;font-weight:normal;text-transform:none}.top-bar-section ul li>a.button{font-size:.8125rem;padding-right:.9375rem;padding-left:.9375rem;background-color:#08c;border-color:#006da3;color:#fff}.top-bar-section ul li>a.button:hover,.top-bar-section ul li>a.button:focus{background-color:#006da3}.top-bar-section ul li>a.button:hover,.top-bar-section ul li>a.button:focus{color:#fff}.top-bar-section ul li>a.button.secondary{background-color:#e7e7e7;border-color:#b9b9b9;color:#333}.top-bar-section ul li>a.button.secondary:hover,.top-bar-section ul li>a.button.secondary:focus{background-color:#b9b9b9}.top-bar-section ul li>a.button.secondary:hover,.top-bar-section ul li>a.button.secondary:focus{color:#333}.top-bar-section ul li>a.button.success{background-color:#43AC6A;border-color:#368a55;color:#fff}.top-bar-section ul li>a.button.success:hover,.top-bar-section ul li>a.button.success:focus{background-color:#368a55}.top-bar-section ul li>a.button.success:hover,.top-bar-section ul li>a.button.success:focus{color:#fff}.top-bar-section ul li>a.button.alert{background-color:#f04124;border-color:#cf2a0e;color:#fff}.top-bar-section ul li>a.button.alert:hover,.top-bar-section ul li>a.button.alert:focus{background-color:#cf2a0e}.top-bar-section ul li>a.button.alert:hover,.top-bar-section ul li>a.button.alert:focus{color:#fff}.top-bar-section ul li>a.button.warning{background-color:#f08a24;border-color:#cf6e0e;color:#fff}.top-bar-section ul li>a.button.warning:hover,.top-bar-section ul li>a.button.warning:focus{background-color:#cf6e0e}.top-bar-section ul li>a.button.warning:hover,.top-bar-section ul li>a.button.warning:focus{color:#fff}.top-bar-section ul li>button{font-size:.8125rem;padding-right:.9375rem;padding-left:.9375rem;background-color:#08c;border-color:#006da3;color:#fff}.top-bar-section ul li>button:hover,.top-bar-section ul li>button:focus{background-color:#006da3}.top-bar-section ul li>button:hover,.top-bar-section ul li>button:focus{color:#fff}.top-bar-section ul li>button.secondary{background-color:#e7e7e7;border-color:#b9b9b9;color:#333}.top-bar-section ul li>button.secondary:hover,.top-bar-section ul li>button.secondary:focus{background-color:#b9b9b9}.top-bar-section ul li>button.secondary:hover,.top-bar-section ul li>button.secondary:focus{color:#333}.top-bar-section ul li>button.success{background-color:#43AC6A;border-color:#368a55;color:#fff}.top-bar-section ul li>button.success:hover,.top-bar-section ul li>button.success:focus{background-color:#368a55}.top-bar-section ul li>button.success:hover,.top-bar-section ul li>button.success:focus{color:#fff}.top-bar-section ul li>button.alert{background-color:#f04124;border-color:#cf2a0e;color:#fff}.top-bar-section ul li>button.alert:hover,.top-bar-section ul li>button.alert:focus{background-color:#cf2a0e}.top-bar-section ul li>button.alert:hover,.top-bar-section ul li>button.alert:focus{color:#fff}.top-bar-section ul li>button.warning{background-color:#f08a24;border-color:#cf6e0e;color:#fff}.top-bar-section ul li>button.warning:hover,.top-bar-section ul li>button.warning:focus{background-color:#cf6e0e}.top-bar-section ul li>button.warning:hover,.top-bar-section ul li>button.warning:focus{color:#fff}.top-bar-section ul li:hover:not(.has-form)>a{background-color:#555;background:#333;color:#fff}.top-bar-section ul li.active>a,.top-bar-section ul #univ-menu .menu-head li.search-in.activate>a,#univ-menu .menu-head .top-bar-section ul li.search-in.activate>a{background:#08c;color:#fff}.top-bar-section ul li.active>a:hover,.top-bar-section ul #univ-menu .menu-head li.search-in.activate>a:hover,#univ-menu .menu-head .top-bar-section ul li.search-in.activate>a:hover{background:#0075af;color:#fff}.top-bar-section .has-form{padding:.9375rem}.top-bar-section .has-dropdown{position:relative}.top-bar-section .has-dropdown>a:after{content:"";display:block;width:0;height:0;border:inset 5px;border-color:transparent transparent transparent rgba(255,255,255,0.4);border-left-style:solid;margin-right:.9375rem;margin-top:-4.5px;position:absolute;top:50%;right:0}.top-bar-section .has-dropdown.moved{position:static}.top-bar-section .has-dropdown.moved>.dropdown{display:block;position:static !important;height:auto;width:auto;overflow:visible;clip:auto;position:absolute !important;width:100%}.top-bar-section .has-dropdown.moved>a:after{display:none}.top-bar-section .dropdown{padding:0;position:absolute;left:100%;top:0;z-index:99;display:block;position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}.top-bar-section .dropdown li{width:100%;height:auto}.top-bar-section .dropdown li a{font-weight:normal;padding:8px .9375rem}.top-bar-section .dropdown li a.parent-link{font-weight:normal}.top-bar-section .dropdown li.title h5,.top-bar-section .dropdown li.parent-link{margin-bottom:0;margin-top:0;font-size:1.125rem}.top-bar-section .dropdown li.title h5 a,.top-bar-section .dropdown li.parent-link a{color:#fff;display:block}.top-bar-section .dropdown li.title h5 a:hover,.top-bar-section .dropdown li.parent-link a:hover{background:none}.top-bar-section .dropdown li.has-form{padding:8px .9375rem}.top-bar-section .dropdown li .button,.top-bar-section .dropdown li button{top:auto}.top-bar-section .dropdown label{padding:8px .9375rem 2px;margin-bottom:0;text-transform:uppercase;color:#777;font-weight:bold;font-size:.625rem}.js-generated{display:block}@media only screen and (min-width: 40.063em){.top-bar{background:#333;overflow:visible}.top-bar:before,.top-bar:after{content:" ";display:table}.top-bar:after{clear:both}.top-bar .toggle-topbar{display:none}.top-bar .title-area{float:left}.top-bar .name h1 a,.top-bar .name h2 a,.top-bar .name h3 a,.top-bar .name h4 a,.top-bar .name h5 a,.top-bar .name h6 a{width:auto}.top-bar input,.top-bar .button,.top-bar button{font-size:.875rem;position:relative;height:1.75rem;top:.53125rem}.top-bar.expanded{background:#333}.contain-to-grid .top-bar{max-width:62.5rem;margin:0 auto;margin-bottom:0}.top-bar-section{transition:none 0 0;left:0 !important}.top-bar-section ul{width:auto;height:auto !important;display:inline}.top-bar-section ul li{float:left}.top-bar-section ul li .js-generated{display:none}.top-bar-section li.hover>a:not(.button){background-color:#555;background:#333;color:#fff}.top-bar-section li:not(.has-form) a:not(.button){padding:0 .9375rem;line-height:2.8125rem;background:#333}.top-bar-section li:not(.has-form) a:not(.button):hover{background-color:#555;background:#333}.top-bar-section li.active:not(.has-form) a:not(.button),.top-bar-section #univ-menu .menu-head li.search-in.activate:not(.has-form) a:not(.button),#univ-menu .menu-head .top-bar-section li.search-in.activate:not(.has-form) a:not(.button){padding:0 .9375rem;line-height:2.8125rem;color:#fff;background:#08c}.top-bar-section li.active:not(.has-form) a:not(.button):hover,.top-bar-section #univ-menu .menu-head li.search-in.activate:not(.has-form) a:not(.button):hover,#univ-menu .menu-head .top-bar-section li.search-in.activate:not(.has-form) a:not(.button):hover{background:#0075af;color:#fff}.top-bar-section .has-dropdown>a{padding-right:2.1875rem !important}.top-bar-section .has-dropdown>a:after{content:"";display:block;width:0;height:0;border:inset 5px;border-color:rgba(255,255,255,0.4) transparent transparent transparent;border-top-style:solid;margin-top:-2.5px;top:1.40625rem}.top-bar-section .has-dropdown.moved{position:relative}.top-bar-section .has-dropdown.moved>.dropdown{display:block;position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}.top-bar-section .has-dropdown.hover>.dropdown,.top-bar-section .has-dropdown.not-click:hover>.dropdown{display:block;position:static !important;height:auto;width:auto;overflow:visible;clip:auto;position:absolute !important}.top-bar-section .has-dropdown>a:focus+.dropdown{display:block;position:static !important;height:auto;width:auto;overflow:visible;clip:auto;position:absolute !important}.top-bar-section .has-dropdown .dropdown li.has-dropdown>a:after{border:none;content:"\00bb";top:1rem;margin-top:-1px;right:5px;line-height:1.2}.top-bar-section .dropdown{left:0;top:auto;background:transparent;min-width:100%}.top-bar-section .dropdown li a{color:#fff;line-height:2.8125rem;white-space:nowrap;padding:12px .9375rem;background:#333}.top-bar-section .dropdown li:not(.has-form):not(.active):not(#univ-menu .menu-head .search-in.activate)>a:not(.button){color:#fff;background:#333}.top-bar-section .dropdown li:not(.has-form):not(.active):not(#univ-menu .menu-head .search-in.activate):hover>a:not(.button){color:#fff;background-color:#555;background:#333}.top-bar-section .dropdown li label{white-space:nowrap;background:#333}.top-bar-section .dropdown li .dropdown{left:100%;top:0}.top-bar-section>ul>.divider,.top-bar-section>ul>[role="separator"]{border-bottom:none;border-top:none;border-right:solid 1px #4e4e4e;clear:none;height:2.8125rem;width:0}.top-bar-section .has-form{background:#333;padding:0 .9375rem;height:2.8125rem}.top-bar-section .right li .dropdown{left:auto;right:0}.top-bar-section .right li .dropdown li .dropdown{right:100%}.top-bar-section .left li .dropdown{right:auto;left:0}.top-bar-section .left li .dropdown li .dropdown{left:100%}.no-js .top-bar-section ul li:hover>a{background-color:#555;background:#333;color:#fff}.no-js .top-bar-section ul li:active>a{background:#08c;color:#fff}.no-js .top-bar-section .has-dropdown:hover>.dropdown{display:block;position:static !important;height:auto;width:auto;overflow:visible;clip:auto;position:absolute !important}.no-js .top-bar-section .has-dropdown>a:focus+.dropdown{display:block;position:static !important;height:auto;width:auto;overflow:visible;clip:auto;position:absolute !important}}.text-left{text-align:left !important}.text-right{text-align:right !important}.text-center{text-align:center !important}.text-justify{text-align:justify !important}@media only screen and (max-width: 40em){.small-only-text-left{text-align:left !important}.small-only-text-right{text-align:right !important}.small-only-text-center{text-align:center !important}.small-only-text-justify{text-align:justify !important}}@media only screen{.small-text-left{text-align:left !important}.small-text-right{text-align:right !important}.small-text-center{text-align:center !important}.small-text-justify{text-align:justify !important}}@media only screen and (min-width: 40.063em) and (max-width: 64em){.medium-only-text-left{text-align:left !important}.medium-only-text-right{text-align:right !important}.medium-only-text-center{text-align:center !important}.medium-only-text-justify{text-align:justify !important}}@media only screen and (min-width: 40.063em){.medium-text-left{text-align:left !important}.medium-text-right{text-align:right !important}.medium-text-center{text-align:center !important}.medium-text-justify{text-align:justify !important}}@media only screen and (min-width: 64.063em) and (max-width: 90em){.large-only-text-left{text-align:left !important}.large-only-text-right{text-align:right !important}.large-only-text-center{text-align:center !important}.large-only-text-justify{text-align:justify !important}}@media only screen and (min-width: 64.063em){.large-text-left{text-align:left !important}.large-text-right{text-align:right !important}.large-text-center{text-align:center !important}.large-text-justify{text-align:justify !important}}@media only screen and (min-width: 90.063em) and (max-width: 120em){.xlarge-only-text-left{text-align:left !important}.xlarge-only-text-right{text-align:right !important}.xlarge-only-text-center{text-align:center !important}.xlarge-only-text-justify{text-align:justify !important}}@media only screen and (min-width: 90.063em){.xlarge-text-left{text-align:left !important}.xlarge-text-right{text-align:right !important}.xlarge-text-center{text-align:center !important}.xlarge-text-justify{text-align:justify !important}}@media only screen and (min-width: 120.063em) and (max-width: 99999999em){.xxlarge-only-text-left{text-align:left !important}.xxlarge-only-text-right{text-align:right !important}.xxlarge-only-text-center{text-align:center !important}.xxlarge-only-text-justify{text-align:justify !important}}@media only screen and (min-width: 120.063em){.xxlarge-text-left{text-align:left !important}.xxlarge-text-right{text-align:right !important}.xxlarge-text-center{text-align:center !important}.xxlarge-text-justify{text-align:justify !important}}div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,form,p,blockquote,th,td{margin:0;padding:0}a{color:#08c;text-decoration:none;line-height:inherit;transition:all 300ms ease-out}a:hover,a:focus{color:#5cc3f6}a img{border:none}p{font-family:inherit;font-weight:normal;font-size:1rem;line-height:1.6;margin-bottom:1.25rem;text-rendering:optimizeLegibility}p.lead{font-size:1.21875rem;line-height:1.6}p aside{font-size:.875rem;line-height:1.35;font-style:italic}h1,h2,h3,h4,h5,h6{font-family:"Helvetica Neue",Helvetica,Roboto,Arial,sans-serif;font-weight:normal;font-style:normal;color:#222;text-rendering:optimizeLegibility;margin-top:.2rem;margin-bottom:.5rem;line-height:1.4}h1 small,h2 small,h3 small,h4 small,h5 small,h6 small{font-size:60%;color:#6f6f6f;line-height:0}h1{font-size:2.125rem}h2{font-size:1.6875rem}h3{font-size:1.375rem}h4{font-size:1.125rem}h5{font-size:1.125rem}h6{font-size:1rem}.subheader{line-height:1.4;color:#6f6f6f;font-weight:normal;margin-top:.2rem;margin-bottom:.5rem}hr{border:solid #ddd;border-width:1px 0 0;clear:both;margin:1.25rem 0 1.1875rem;height:0}em,i{font-style:italic;line-height:inherit}strong,b{font-weight:bold;line-height:inherit}small{font-size:60%;line-height:inherit}code{font-family:Consolas,"Liberation Mono",Courier,monospace;font-weight:normal;color:#333;background-color:#f8f8f8;border-width:1px;border-style:solid;border-color:#dfdfdf;padding:.125rem .3125rem .0625rem}ul,ol,dl{font-size:1rem;line-height:1.6;margin-bottom:1.25rem;list-style-position:outside;font-family:inherit}ul{margin-left:1.1rem}ul.no-bullet{margin-left:0}ul.no-bullet li ul,ul.no-bullet li ol{margin-left:1.25rem;margin-bottom:0;list-style:none}ul li ul,ul li ol{margin-left:1.25rem;margin-bottom:0}ul.square li ul,ul.circle li ul,ul.disc li ul{list-style:inherit}ul.square{list-style-type:square;margin-left:1.1rem}ul.circle{list-style-type:circle;margin-left:1.1rem}ul.disc{list-style-type:disc;margin-left:1.1rem}ul.no-bullet{list-style:none}ol{margin-left:1.4rem}ol li ul,ol li ol{margin-left:1.25rem;margin-bottom:0}dl dt{margin-bottom:.3rem;font-weight:bold}dl dd{margin-bottom:.75rem}abbr,acronym{text-transform:uppercase;font-size:90%;color:#222;cursor:help}abbr{text-transform:none}abbr[title]{border-bottom:1px dotted #ddd}blockquote{margin:0 0 1.25rem;padding:.5625rem 1.25rem 0 1.1875rem;border-left:1px solid #ddd}blockquote cite{display:block;font-size:.8125rem;color:#555}blockquote cite:before{content:"\2014 \0020"}blockquote cite a,blockquote cite a:visited{color:#555}blockquote,blockquote p{line-height:1.6;color:#6f6f6f}.vcard{display:inline-block;margin:0 0 1.25rem 0;border:1px solid #ddd;padding:.625rem .75rem}.vcard li{margin:0;display:block}.vcard .fn{font-weight:bold;font-size:.9375rem}.vevent .summary{font-weight:bold}.vevent abbr{cursor:default;text-decoration:none;font-weight:bold;border:none;padding:0 .0625rem}@media only screen and (min-width: 40.063em){h1,h2,h3,h4,h5,h6{line-height:1.4}h1{font-size:2.75rem}h2{font-size:2.3125rem}h3{font-size:1.6875rem}h4{font-size:1.4375rem}h5{font-size:1.125rem}h6{font-size:1rem}}.off-canvas-wrap{-webkit-backface-visibility:hidden;position:relative;width:100%;overflow:hidden}.off-canvas-wrap.move-right,.off-canvas-wrap.move-left{min-height:100%;-webkit-overflow-scrolling:touch}.inner-wrap{position:relative;width:100%;-webkit-transition:-webkit-transform 500ms ease;-moz-transition:-moz-transform 500ms ease;-ms-transition:-ms-transform 500ms ease;-o-transition:-o-transform 500ms ease;transition:transform 500ms ease}.inner-wrap:before,.inner-wrap:after{content:" ";display:table}.inner-wrap:after{clear:both}.tab-bar{-webkit-backface-visibility:hidden;background:#333;color:#fff;height:2.8125rem;line-height:2.8125rem;position:relative}.tab-bar h1,.tab-bar h2,.tab-bar h3,.tab-bar h4,.tab-bar h5,.tab-bar h6{color:#fff;font-weight:bold;line-height:2.8125rem;margin:0}.tab-bar h1,.tab-bar h2,.tab-bar h3,.tab-bar h4{font-size:1.125rem}.left-small{width:2.8125rem;height:2.8125rem;position:absolute;top:0;border-right:solid 1px #1a1a1a;left:0}.right-small{width:2.8125rem;height:2.8125rem;position:absolute;top:0;border-left:solid 1px #1a1a1a;right:0}.tab-bar-section{padding:0 .625rem;position:absolute;text-align:center;height:2.8125rem;top:0}@media only screen and (min-width: 40.063em){.tab-bar-section.left{text-align:left}.tab-bar-section.right{text-align:right}}.tab-bar-section.left{left:0;right:2.8125rem}.tab-bar-section.right{left:2.8125rem;right:0}.tab-bar-section.middle{left:2.8125rem;right:2.8125rem}.tab-bar .menu-icon{text-indent:2.1875rem;width:2.8125rem;height:2.8125rem;display:block;padding:0;color:#fff;position:relative;transform:translate3d(0, 0, 0)}.tab-bar .menu-icon span::after{content:"";position:absolute;display:block;height:0;top:50%;margin-top:-.5rem;left:.90625rem;box-shadow:0 0 0 1px #fff,0 7px 0 1px #fff,0 14px 0 1px #fff;width:1rem}.tab-bar .menu-icon span:hover:after{box-shadow:0 0 0 1px #b3b3b3,0 7px 0 1px #b3b3b3,0 14px 0 1px #b3b3b3}.left-off-canvas-menu{-webkit-backface-visibility:hidden;width:15.625rem;top:0;bottom:0;position:absolute;overflow-x:hidden;overflow-y:auto;background:#333;z-index:1001;box-sizing:content-box;transition:transform 500ms ease 0s;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;-ms-transform:translate(-100%, 0);-webkit-transform:translate3d(-100%, 0, 0);-moz-transform:translate3d(-100%, 0, 0);-ms-transform:translate3d(-100%, 0, 0);-o-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0}.left-off-canvas-menu *{-webkit-backface-visibility:hidden}.right-off-canvas-menu{-webkit-backface-visibility:hidden;width:15.625rem;top:0;bottom:0;position:absolute;overflow-x:hidden;overflow-y:auto;background:#333;z-index:1001;box-sizing:content-box;transition:transform 500ms ease 0s;-webkit-overflow-scrolling:touch;-ms-overflow-style:-ms-autohiding-scrollbar;-ms-transform:translate(100%, 0);-webkit-transform:translate3d(100%, 0, 0);-moz-transform:translate3d(100%, 0, 0);-ms-transform:translate3d(100%, 0, 0);-o-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);right:0}.right-off-canvas-menu *{-webkit-backface-visibility:hidden}ul.off-canvas-list{list-style-type:none;padding:0;margin:0}ul.off-canvas-list li label{display:block;padding:0.3rem .9375rem;color:#999;text-transform:uppercase;font-size:.75rem;font-weight:bold;background:#444;border-top:1px solid #5e5e5e;border-bottom:none;margin:0}ul.off-canvas-list li a{display:block;padding:.66667rem;color:rgba(255,255,255,0.7);border-bottom:1px solid #262626;transition:background 300ms ease}ul.off-canvas-list li a:hover{background:#242424}.move-right>.inner-wrap{-ms-transform:translate(15.625rem, 0);-webkit-transform:translate3d(15.625rem, 0, 0);-moz-transform:translate3d(15.625rem, 0, 0);-ms-transform:translate3d(15.625rem, 0, 0);-o-transform:translate3d(15.625rem, 0, 0);transform:translate3d(15.625rem, 0, 0)}.move-right .exit-off-canvas{-webkit-backface-visibility:hidden;transition:background 300ms ease;cursor:pointer;box-shadow:-4px 0 4px rgba(0,0,0,0.5),4px 0 4px rgba(0,0,0,0.5);display:block;position:absolute;background:rgba(255,255,255,0.2);top:0;bottom:0;left:0;right:0;z-index:1002;-webkit-tap-highlight-color:transparent}@media only screen and (min-width: 40.063em){.move-right .exit-off-canvas:hover{background:rgba(255,255,255,0.05)}}.move-left>.inner-wrap{-ms-transform:translate(-15.625rem, 0);-webkit-transform:translate3d(-15.625rem, 0, 0);-moz-transform:translate3d(-15.625rem, 0, 0);-ms-transform:translate3d(-15.625rem, 0, 0);-o-transform:translate3d(-15.625rem, 0, 0);transform:translate3d(-15.625rem, 0, 0)}.move-left .exit-off-canvas{-webkit-backface-visibility:hidden;transition:background 300ms ease;cursor:pointer;box-shadow:-4px 0 4px rgba(0,0,0,0.5),4px 0 4px rgba(0,0,0,0.5);display:block;position:absolute;background:rgba(255,255,255,0.2);top:0;bottom:0;left:0;right:0;z-index:1002;-webkit-tap-highlight-color:transparent}@media only screen and (min-width: 40.063em){.move-left .exit-off-canvas:hover{background:rgba(255,255,255,0.05)}}.offcanvas-overlap .left-off-canvas-menu,.offcanvas-overlap .right-off-canvas-menu{-ms-transform:none;-webkit-transform:none;-moz-transform:none;-o-transform:none;transform:none;z-index:1003}.offcanvas-overlap .exit-off-canvas{-webkit-backface-visibility:hidden;transition:background 300ms ease;cursor:pointer;box-shadow:-4px 0 4px rgba(0,0,0,0.5),4px 0 4px rgba(0,0,0,0.5);display:block;position:absolute;background:rgba(255,255,255,0.2);top:0;bottom:0;left:0;right:0;z-index:1002;-webkit-tap-highlight-color:transparent}@media only screen and (min-width: 40.063em){.offcanvas-overlap .exit-off-canvas:hover{background:rgba(255,255,255,0.05)}}.offcanvas-overlap-left .right-off-canvas-menu{-ms-transform:none;-webkit-transform:none;-moz-transform:none;-o-transform:none;transform:none;z-index:1003}.offcanvas-overlap-left .exit-off-canvas{-webkit-backface-visibility:hidden;transition:background 300ms ease;cursor:pointer;box-shadow:-4px 0 4px rgba(0,0,0,0.5),4px 0 4px rgba(0,0,0,0.5);display:block;position:absolute;background:rgba(255,255,255,0.2);top:0;bottom:0;left:0;right:0;z-index:1002;-webkit-tap-highlight-color:transparent}@media only screen and (min-width: 40.063em){.offcanvas-overlap-left .exit-off-canvas:hover{background:rgba(255,255,255,0.05)}}.offcanvas-overlap-right .left-off-canvas-menu{-ms-transform:none;-webkit-transform:none;-moz-transform:none;-o-transform:none;transform:none;z-index:1003}.offcanvas-overlap-right .exit-off-canvas{-webkit-backface-visibility:hidden;transition:background 300ms ease;cursor:pointer;box-shadow:-4px 0 4px rgba(0,0,0,0.5),4px 0 4px rgba(0,0,0,0.5);display:block;position:absolute;background:rgba(255,255,255,0.2);top:0;bottom:0;left:0;right:0;z-index:1002;-webkit-tap-highlight-color:transparent}@media only screen and (min-width: 40.063em){.offcanvas-overlap-right .exit-off-canvas:hover{background:rgba(255,255,255,0.05)}}.no-csstransforms .left-off-canvas-menu{left:-15.625rem}.no-csstransforms .right-off-canvas-menu{right:-15.625rem}.no-csstransforms .move-left>.inner-wrap{right:15.625rem}.no-csstransforms .move-right>.inner-wrap{left:15.625rem}.left-submenu{-webkit-backface-visibility:hidden;width:15.625rem;top:0;bottom:0;position:absolute;margin:0;overflow-x:hidden;overflow-y:auto;background:#333;z-index:1002;box-sizing:content-box;-webkit-overflow-scrolling:touch;-ms-transform:translate(-100%, 0);-webkit-transform:translate3d(-100%, 0, 0);-moz-transform:translate3d(-100%, 0, 0);-ms-transform:translate3d(-100%, 0, 0);-o-transform:translate3d(-100%, 0, 0);transform:translate3d(-100%, 0, 0);left:0;-webkit-transition:-webkit-transform 500ms ease;-moz-transition:-moz-transform 500ms ease;-ms-transition:-ms-transform 500ms ease;-o-transition:-o-transform 500ms ease;transition:transform 500ms ease}.left-submenu *{-webkit-backface-visibility:hidden}.left-submenu .back>a{padding:0.3rem .9375rem;color:#999;text-transform:uppercase;font-weight:bold;background:#444;border-top:1px solid #5e5e5e;border-bottom:none;margin:0}.left-submenu .back>a:hover{background:#303030;border-top:1px solid #5e5e5e;border-bottom:none}.left-submenu .back>a:before{content:"\AB";margin-right:0.5rem;display:inline}.left-submenu.move-right,.left-submenu.offcanvas-overlap-right,.left-submenu.offcanvas-overlap{-ms-transform:translate(0%, 0);-webkit-transform:translate3d(0%, 0, 0);-moz-transform:translate3d(0%, 0, 0);-ms-transform:translate3d(0%, 0, 0);-o-transform:translate3d(0%, 0, 0);transform:translate3d(0%, 0, 0)}.right-submenu{-webkit-backface-visibility:hidden;width:15.625rem;top:0;bottom:0;position:absolute;margin:0;overflow-x:hidden;overflow-y:auto;background:#333;z-index:1002;box-sizing:content-box;-webkit-overflow-scrolling:touch;-ms-transform:translate(100%, 0);-webkit-transform:translate3d(100%, 0, 0);-moz-transform:translate3d(100%, 0, 0);-ms-transform:translate3d(100%, 0, 0);-o-transform:translate3d(100%, 0, 0);transform:translate3d(100%, 0, 0);right:0;-webkit-transition:-webkit-transform 500ms ease;-moz-transition:-moz-transform 500ms ease;-ms-transition:-ms-transform 500ms ease;-o-transition:-o-transform 500ms ease;transition:transform 500ms ease}.right-submenu *{-webkit-backface-visibility:hidden}.right-submenu .back>a{padding:0.3rem .9375rem;color:#999;text-transform:uppercase;font-weight:bold;background:#444;border-top:1px solid #5e5e5e;border-bottom:none;margin:0}.right-submenu .back>a:hover{background:#303030;border-top:1px solid #5e5e5e;border-bottom:none}.right-submenu .back>a:after{content:"\BB";margin-left:0.5rem;display:inline}.right-submenu.move-left,.right-submenu.offcanvas-overlap-left,.right-submenu.offcanvas-overlap{-ms-transform:translate(0%, 0);-webkit-transform:translate3d(0%, 0, 0);-moz-transform:translate3d(0%, 0, 0);-ms-transform:translate3d(0%, 0, 0);-o-transform:translate3d(0%, 0, 0);transform:translate3d(0%, 0, 0)}.left-off-canvas-menu ul.off-canvas-list li.has-submenu>a:after{content:"\BB";margin-left:0.5rem;display:inline}.right-off-canvas-menu ul.off-canvas-list li.has-submenu>a:before{content:"\AB";margin-right:0.5rem;display:inline}@media only screen{.show-for-small-only,.show-for-small-up,.show-for-small,.show-for-small-down,.hide-for-medium-only,.hide-for-medium-up,.hide-for-medium,.show-for-medium-down,.hide-for-large-only,.hide-for-large-up,.hide-for-large,.show-for-large-down,.hide-for-xlarge-only,.hide-for-xlarge-up,.hide-for-xlarge,.show-for-xlarge-down,.hide-for-xxlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge,.show-for-xxlarge-down{display:inherit !important}.hide-for-small-only,.hide-for-small-up,.hide-for-small,.hide-for-small-down,.show-for-medium-only,.show-for-medium-up,.show-for-medium,.hide-for-medium-down,.show-for-large-only,.show-for-large-up,.show-for-large,.hide-for-large-down,.show-for-xlarge-only,.show-for-xlarge-up,.show-for-xlarge,.hide-for-xlarge-down,.show-for-xxlarge-only,.show-for-xxlarge-up,.show-for-xxlarge,.hide-for-xxlarge-down{display:none !important}.visible-for-small-only,.visible-for-small-up,.visible-for-small,.visible-for-small-down,.hidden-for-medium-only,.hidden-for-medium-up,.hidden-for-medium,.visible-for-medium-down,.hidden-for-large-only,.hidden-for-large-up,.hidden-for-large,.visible-for-large-down,.hidden-for-xlarge-only,.hidden-for-xlarge-up,.hidden-for-xlarge,.visible-for-xlarge-down,.hidden-for-xxlarge-only,.hidden-for-xxlarge-up,.hidden-for-xxlarge,.visible-for-xxlarge-down{position:static !important;height:auto;width:auto;overflow:visible;clip:auto}.hidden-for-small-only,.hidden-for-small-up,.hidden-for-small,.hidden-for-small-down,.visible-for-medium-only,.visible-for-medium-up,.visible-for-medium,.hidden-for-medium-down,.visible-for-large-only,.visible-for-large-up,.visible-for-large,.hidden-for-large-down,.visible-for-xlarge-only,.visible-for-xlarge-up,.visible-for-xlarge,.hidden-for-xlarge-down,.visible-for-xxlarge-only,.visible-for-xxlarge-up,.visible-for-xxlarge,.hidden-for-xxlarge-down{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}table.show-for-small-only,table.show-for-small-up,table.show-for-small,table.show-for-small-down,table.hide-for-medium-only,table.hide-for-medium-up,table.hide-for-medium,table.show-for-medium-down,table.hide-for-large-only,table.hide-for-large-up,table.hide-for-large,table.show-for-large-down,table.hide-for-xlarge-only,table.hide-for-xlarge-up,table.hide-for-xlarge,table.show-for-xlarge-down,table.hide-for-xxlarge-only,table.hide-for-xxlarge-up,table.hide-for-xxlarge,table.show-for-xxlarge-down{display:table !important}thead.show-for-small-only,thead.show-for-small-up,thead.show-for-small,thead.show-for-small-down,thead.hide-for-medium-only,thead.hide-for-medium-up,thead.hide-for-medium,thead.show-for-medium-down,thead.hide-for-large-only,thead.hide-for-large-up,thead.hide-for-large,thead.show-for-large-down,thead.hide-for-xlarge-only,thead.hide-for-xlarge-up,thead.hide-for-xlarge,thead.show-for-xlarge-down,thead.hide-for-xxlarge-only,thead.hide-for-xxlarge-up,thead.hide-for-xxlarge,thead.show-for-xxlarge-down{display:table-header-group !important}tbody.show-for-small-only,tbody.show-for-small-up,tbody.show-for-small,tbody.show-for-small-down,tbody.hide-for-medium-only,tbody.hide-for-medium-up,tbody.hide-for-medium,tbody.show-for-medium-down,tbody.hide-for-large-only,tbody.hide-for-large-up,tbody.hide-for-large,tbody.show-for-large-down,tbody.hide-for-xlarge-only,tbody.hide-for-xlarge-up,tbody.hide-for-xlarge,tbody.show-for-xlarge-down,tbody.hide-for-xxlarge-only,tbody.hide-for-xxlarge-up,tbody.hide-for-xxlarge,tbody.show-for-xxlarge-down{display:table-row-group !important}tr.show-for-small-only,tr.show-for-small-up,tr.show-for-small,tr.show-for-small-down,tr.hide-for-medium-only,tr.hide-for-medium-up,tr.hide-for-medium,tr.show-for-medium-down,tr.hide-for-large-only,tr.hide-for-large-up,tr.hide-for-large,tr.show-for-large-down,tr.hide-for-xlarge-only,tr.hide-for-xlarge-up,tr.hide-for-xlarge,tr.show-for-xlarge-down,tr.hide-for-xxlarge-only,tr.hide-for-xxlarge-up,tr.hide-for-xxlarge,tr.show-for-xxlarge-down{display:table-row}th.show-for-small-only,td.show-for-small-only,th.show-for-small-up,td.show-for-small-up,th.show-for-small,td.show-for-small,th.show-for-small-down,td.show-for-small-down,th.hide-for-medium-only,td.hide-for-medium-only,th.hide-for-medium-up,td.hide-for-medium-up,th.hide-for-medium,td.hide-for-medium,th.show-for-medium-down,td.show-for-medium-down,th.hide-for-large-only,td.hide-for-large-only,th.hide-for-large-up,td.hide-for-large-up,th.hide-for-large,td.hide-for-large,th.show-for-large-down,td.show-for-large-down,th.hide-for-xlarge-only,td.hide-for-xlarge-only,th.hide-for-xlarge-up,td.hide-for-xlarge-up,th.hide-for-xlarge,td.hide-for-xlarge,th.show-for-xlarge-down,td.show-for-xlarge-down,th.hide-for-xxlarge-only,td.hide-for-xxlarge-only,th.hide-for-xxlarge-up,td.hide-for-xxlarge-up,th.hide-for-xxlarge,td.hide-for-xxlarge,th.show-for-xxlarge-down,td.show-for-xxlarge-down{display:table-cell !important}}@media only screen and (min-width: 40.063em){.hide-for-small-only,.show-for-small-up,.hide-for-small,.hide-for-small-down,.show-for-medium-only,.show-for-medium-up,.show-for-medium,.show-for-medium-down,.hide-for-large-only,.hide-for-large-up,.hide-for-large,.show-for-large-down,.hide-for-xlarge-only,.hide-for-xlarge-up,.hide-for-xlarge,.show-for-xlarge-down,.hide-for-xxlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge,.show-for-xxlarge-down{display:inherit !important}.show-for-small-only,.hide-for-small-up,.show-for-small,.show-for-small-down,.hide-for-medium-only,.hide-for-medium-up,.hide-for-medium,.hide-for-medium-down,.show-for-large-only,.show-for-large-up,.show-for-large,.hide-for-large-down,.show-for-xlarge-only,.show-for-xlarge-up,.show-for-xlarge,.hide-for-xlarge-down,.show-for-xxlarge-only,.show-for-xxlarge-up,.show-for-xxlarge,.hide-for-xxlarge-down{display:none !important}.hidden-for-small-only,.visible-for-small-up,.hidden-for-small,.hidden-for-small-down,.visible-for-medium-only,.visible-for-medium-up,.visible-for-medium,.visible-for-medium-down,.hidden-for-large-only,.hidden-for-large-up,.hidden-for-large,.visible-for-large-down,.hidden-for-xlarge-only,.hidden-for-xlarge-up,.hidden-for-xlarge,.visible-for-xlarge-down,.hidden-for-xxlarge-only,.hidden-for-xxlarge-up,.hidden-for-xxlarge,.visible-for-xxlarge-down{position:static !important;height:auto;width:auto;overflow:visible;clip:auto}.visible-for-small-only,.hidden-for-small-up,.visible-for-small,.visible-for-small-down,.hidden-for-medium-only,.hidden-for-medium-up,.hidden-for-medium,.hidden-for-medium-down,.visible-for-large-only,.visible-for-large-up,.visible-for-large,.hidden-for-large-down,.visible-for-xlarge-only,.visible-for-xlarge-up,.visible-for-xlarge,.hidden-for-xlarge-down,.visible-for-xxlarge-only,.visible-for-xxlarge-up,.visible-for-xxlarge,.hidden-for-xxlarge-down{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}table.hide-for-small-only,table.show-for-small-up,table.hide-for-small,table.hide-for-small-down,table.show-for-medium-only,table.show-for-medium-up,table.show-for-medium,table.show-for-medium-down,table.hide-for-large-only,table.hide-for-large-up,table.hide-for-large,table.show-for-large-down,table.hide-for-xlarge-only,table.hide-for-xlarge-up,table.hide-for-xlarge,table.show-for-xlarge-down,table.hide-for-xxlarge-only,table.hide-for-xxlarge-up,table.hide-for-xxlarge,table.show-for-xxlarge-down{display:table !important}thead.hide-for-small-only,thead.show-for-small-up,thead.hide-for-small,thead.hide-for-small-down,thead.show-for-medium-only,thead.show-for-medium-up,thead.show-for-medium,thead.show-for-medium-down,thead.hide-for-large-only,thead.hide-for-large-up,thead.hide-for-large,thead.show-for-large-down,thead.hide-for-xlarge-only,thead.hide-for-xlarge-up,thead.hide-for-xlarge,thead.show-for-xlarge-down,thead.hide-for-xxlarge-only,thead.hide-for-xxlarge-up,thead.hide-for-xxlarge,thead.show-for-xxlarge-down{display:table-header-group !important}tbody.hide-for-small-only,tbody.show-for-small-up,tbody.hide-for-small,tbody.hide-for-small-down,tbody.show-for-medium-only,tbody.show-for-medium-up,tbody.show-for-medium,tbody.show-for-medium-down,tbody.hide-for-large-only,tbody.hide-for-large-up,tbody.hide-for-large,tbody.show-for-large-down,tbody.hide-for-xlarge-only,tbody.hide-for-xlarge-up,tbody.hide-for-xlarge,tbody.show-for-xlarge-down,tbody.hide-for-xxlarge-only,tbody.hide-for-xxlarge-up,tbody.hide-for-xxlarge,tbody.show-for-xxlarge-down{display:table-row-group !important}tr.hide-for-small-only,tr.show-for-small-up,tr.hide-for-small,tr.hide-for-small-down,tr.show-for-medium-only,tr.show-for-medium-up,tr.show-for-medium,tr.show-for-medium-down,tr.hide-for-large-only,tr.hide-for-large-up,tr.hide-for-large,tr.show-for-large-down,tr.hide-for-xlarge-only,tr.hide-for-xlarge-up,tr.hide-for-xlarge,tr.show-for-xlarge-down,tr.hide-for-xxlarge-only,tr.hide-for-xxlarge-up,tr.hide-for-xxlarge,tr.show-for-xxlarge-down{display:table-row}th.hide-for-small-only,td.hide-for-small-only,th.show-for-small-up,td.show-for-small-up,th.hide-for-small,td.hide-for-small,th.hide-for-small-down,td.hide-for-small-down,th.show-for-medium-only,td.show-for-medium-only,th.show-for-medium-up,td.show-for-medium-up,th.show-for-medium,td.show-for-medium,th.show-for-medium-down,td.show-for-medium-down,th.hide-for-large-only,td.hide-for-large-only,th.hide-for-large-up,td.hide-for-large-up,th.hide-for-large,td.hide-for-large,th.show-for-large-down,td.show-for-large-down,th.hide-for-xlarge-only,td.hide-for-xlarge-only,th.hide-for-xlarge-up,td.hide-for-xlarge-up,th.hide-for-xlarge,td.hide-for-xlarge,th.show-for-xlarge-down,td.show-for-xlarge-down,th.hide-for-xxlarge-only,td.hide-for-xxlarge-only,th.hide-for-xxlarge-up,td.hide-for-xxlarge-up,th.hide-for-xxlarge,td.hide-for-xxlarge,th.show-for-xxlarge-down,td.show-for-xxlarge-down{display:table-cell !important}}@media only screen and (min-width: 64.063em){.hide-for-small-only,.show-for-small-up,.hide-for-small,.hide-for-small-down,.hide-for-medium-only,.show-for-medium-up,.hide-for-medium,.hide-for-medium-down,.show-for-large-only,.show-for-large-up,.show-for-large,.show-for-large-down,.hide-for-xlarge-only,.hide-for-xlarge-up,.hide-for-xlarge,.show-for-xlarge-down,.hide-for-xxlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge,.show-for-xxlarge-down{display:inherit !important}.show-for-small-only,.hide-for-small-up,.show-for-small,.show-for-small-down,.show-for-medium-only,.hide-for-medium-up,.show-for-medium,.show-for-medium-down,.hide-for-large-only,.hide-for-large-up,.hide-for-large,.hide-for-large-down,.show-for-xlarge-only,.show-for-xlarge-up,.show-for-xlarge,.hide-for-xlarge-down,.show-for-xxlarge-only,.show-for-xxlarge-up,.show-for-xxlarge,.hide-for-xxlarge-down{display:none !important}.hidden-for-small-only,.visible-for-small-up,.hidden-for-small,.hidden-for-small-down,.hidden-for-medium-only,.visible-for-medium-up,.hidden-for-medium,.hidden-for-medium-down,.visible-for-large-only,.visible-for-large-up,.visible-for-large,.visible-for-large-down,.hidden-for-xlarge-only,.hidden-for-xlarge-up,.hidden-for-xlarge,.visible-for-xlarge-down,.hidden-for-xxlarge-only,.hidden-for-xxlarge-up,.hidden-for-xxlarge,.visible-for-xxlarge-down{position:static !important;height:auto;width:auto;overflow:visible;clip:auto}.visible-for-small-only,.hidden-for-small-up,.visible-for-small,.visible-for-small-down,.visible-for-medium-only,.hidden-for-medium-up,.visible-for-medium,.visible-for-medium-down,.hidden-for-large-only,.hidden-for-large-up,.hidden-for-large,.hidden-for-large-down,.visible-for-xlarge-only,.visible-for-xlarge-up,.visible-for-xlarge,.hidden-for-xlarge-down,.visible-for-xxlarge-only,.visible-for-xxlarge-up,.visible-for-xxlarge,.hidden-for-xxlarge-down{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}table.hide-for-small-only,table.show-for-small-up,table.hide-for-small,table.hide-for-small-down,table.hide-for-medium-only,table.show-for-medium-up,table.hide-for-medium,table.hide-for-medium-down,table.show-for-large-only,table.show-for-large-up,table.show-for-large,table.show-for-large-down,table.hide-for-xlarge-only,table.hide-for-xlarge-up,table.hide-for-xlarge,table.show-for-xlarge-down,table.hide-for-xxlarge-only,table.hide-for-xxlarge-up,table.hide-for-xxlarge,table.show-for-xxlarge-down{display:table !important}thead.hide-for-small-only,thead.show-for-small-up,thead.hide-for-small,thead.hide-for-small-down,thead.hide-for-medium-only,thead.show-for-medium-up,thead.hide-for-medium,thead.hide-for-medium-down,thead.show-for-large-only,thead.show-for-large-up,thead.show-for-large,thead.show-for-large-down,thead.hide-for-xlarge-only,thead.hide-for-xlarge-up,thead.hide-for-xlarge,thead.show-for-xlarge-down,thead.hide-for-xxlarge-only,thead.hide-for-xxlarge-up,thead.hide-for-xxlarge,thead.show-for-xxlarge-down{display:table-header-group !important}tbody.hide-for-small-only,tbody.show-for-small-up,tbody.hide-for-small,tbody.hide-for-small-down,tbody.hide-for-medium-only,tbody.show-for-medium-up,tbody.hide-for-medium,tbody.hide-for-medium-down,tbody.show-for-large-only,tbody.show-for-large-up,tbody.show-for-large,tbody.show-for-large-down,tbody.hide-for-xlarge-only,tbody.hide-for-xlarge-up,tbody.hide-for-xlarge,tbody.show-for-xlarge-down,tbody.hide-for-xxlarge-only,tbody.hide-for-xxlarge-up,tbody.hide-for-xxlarge,tbody.show-for-xxlarge-down{display:table-row-group !important}tr.hide-for-small-only,tr.show-for-small-up,tr.hide-for-small,tr.hide-for-small-down,tr.hide-for-medium-only,tr.show-for-medium-up,tr.hide-for-medium,tr.hide-for-medium-down,tr.show-for-large-only,tr.show-for-large-up,tr.show-for-large,tr.show-for-large-down,tr.hide-for-xlarge-only,tr.hide-for-xlarge-up,tr.hide-for-xlarge,tr.show-for-xlarge-down,tr.hide-for-xxlarge-only,tr.hide-for-xxlarge-up,tr.hide-for-xxlarge,tr.show-for-xxlarge-down{display:table-row}th.hide-for-small-only,td.hide-for-small-only,th.show-for-small-up,td.show-for-small-up,th.hide-for-small,td.hide-for-small,th.hide-for-small-down,td.hide-for-small-down,th.hide-for-medium-only,td.hide-for-medium-only,th.show-for-medium-up,td.show-for-medium-up,th.hide-for-medium,td.hide-for-medium,th.hide-for-medium-down,td.hide-for-medium-down,th.show-for-large-only,td.show-for-large-only,th.show-for-large-up,td.show-for-large-up,th.show-for-large,td.show-for-large,th.show-for-large-down,td.show-for-large-down,th.hide-for-xlarge-only,td.hide-for-xlarge-only,th.hide-for-xlarge-up,td.hide-for-xlarge-up,th.hide-for-xlarge,td.hide-for-xlarge,th.show-for-xlarge-down,td.show-for-xlarge-down,th.hide-for-xxlarge-only,td.hide-for-xxlarge-only,th.hide-for-xxlarge-up,td.hide-for-xxlarge-up,th.hide-for-xxlarge,td.hide-for-xxlarge,th.show-for-xxlarge-down,td.show-for-xxlarge-down{display:table-cell !important}}@media only screen and (min-width: 90.063em){.hide-for-small-only,.show-for-small-up,.hide-for-small,.hide-for-small-down,.hide-for-medium-only,.show-for-medium-up,.hide-for-medium,.hide-for-medium-down,.hide-for-large-only,.show-for-large-up,.hide-for-large,.hide-for-large-down,.show-for-xlarge-only,.show-for-xlarge-up,.show-for-xlarge,.show-for-xlarge-down,.hide-for-xxlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge,.show-for-xxlarge-down{display:inherit !important}.show-for-small-only,.hide-for-small-up,.show-for-small,.show-for-small-down,.show-for-medium-only,.hide-for-medium-up,.show-for-medium,.show-for-medium-down,.show-for-large-only,.hide-for-large-up,.show-for-large,.show-for-large-down,.hide-for-xlarge-only,.hide-for-xlarge-up,.hide-for-xlarge,.hide-for-xlarge-down,.show-for-xxlarge-only,.show-for-xxlarge-up,.show-for-xxlarge,.hide-for-xxlarge-down{display:none !important}.hidden-for-small-only,.visible-for-small-up,.hidden-for-small,.hidden-for-small-down,.hidden-for-medium-only,.visible-for-medium-up,.hidden-for-medium,.hidden-for-medium-down,.hidden-for-large-only,.visible-for-large-up,.hidden-for-large,.hidden-for-large-down,.visible-for-xlarge-only,.visible-for-xlarge-up,.visible-for-xlarge,.visible-for-xlarge-down,.hidden-for-xxlarge-only,.hidden-for-xxlarge-up,.hidden-for-xxlarge,.visible-for-xxlarge-down{position:static !important;height:auto;width:auto;overflow:visible;clip:auto}.visible-for-small-only,.hidden-for-small-up,.visible-for-small,.visible-for-small-down,.visible-for-medium-only,.hidden-for-medium-up,.visible-for-medium,.visible-for-medium-down,.visible-for-large-only,.hidden-for-large-up,.visible-for-large,.visible-for-large-down,.hidden-for-xlarge-only,.hidden-for-xlarge-up,.hidden-for-xlarge,.hidden-for-xlarge-down,.visible-for-xxlarge-only,.visible-for-xxlarge-up,.visible-for-xxlarge,.hidden-for-xxlarge-down{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}table.hide-for-small-only,table.show-for-small-up,table.hide-for-small,table.hide-for-small-down,table.hide-for-medium-only,table.show-for-medium-up,table.hide-for-medium,table.hide-for-medium-down,table.hide-for-large-only,table.show-for-large-up,table.hide-for-large,table.hide-for-large-down,table.show-for-xlarge-only,table.show-for-xlarge-up,table.show-for-xlarge,table.show-for-xlarge-down,table.hide-for-xxlarge-only,table.hide-for-xxlarge-up,table.hide-for-xxlarge,table.show-for-xxlarge-down{display:table !important}thead.hide-for-small-only,thead.show-for-small-up,thead.hide-for-small,thead.hide-for-small-down,thead.hide-for-medium-only,thead.show-for-medium-up,thead.hide-for-medium,thead.hide-for-medium-down,thead.hide-for-large-only,thead.show-for-large-up,thead.hide-for-large,thead.hide-for-large-down,thead.show-for-xlarge-only,thead.show-for-xlarge-up,thead.show-for-xlarge,thead.show-for-xlarge-down,thead.hide-for-xxlarge-only,thead.hide-for-xxlarge-up,thead.hide-for-xxlarge,thead.show-for-xxlarge-down{display:table-header-group !important}tbody.hide-for-small-only,tbody.show-for-small-up,tbody.hide-for-small,tbody.hide-for-small-down,tbody.hide-for-medium-only,tbody.show-for-medium-up,tbody.hide-for-medium,tbody.hide-for-medium-down,tbody.hide-for-large-only,tbody.show-for-large-up,tbody.hide-for-large,tbody.hide-for-large-down,tbody.show-for-xlarge-only,tbody.show-for-xlarge-up,tbody.show-for-xlarge,tbody.show-for-xlarge-down,tbody.hide-for-xxlarge-only,tbody.hide-for-xxlarge-up,tbody.hide-for-xxlarge,tbody.show-for-xxlarge-down{display:table-row-group !important}tr.hide-for-small-only,tr.show-for-small-up,tr.hide-for-small,tr.hide-for-small-down,tr.hide-for-medium-only,tr.show-for-medium-up,tr.hide-for-medium,tr.hide-for-medium-down,tr.hide-for-large-only,tr.show-for-large-up,tr.hide-for-large,tr.hide-for-large-down,tr.show-for-xlarge-only,tr.show-for-xlarge-up,tr.show-for-xlarge,tr.show-for-xlarge-down,tr.hide-for-xxlarge-only,tr.hide-for-xxlarge-up,tr.hide-for-xxlarge,tr.show-for-xxlarge-down{display:table-row}th.hide-for-small-only,td.hide-for-small-only,th.show-for-small-up,td.show-for-small-up,th.hide-for-small,td.hide-for-small,th.hide-for-small-down,td.hide-for-small-down,th.hide-for-medium-only,td.hide-for-medium-only,th.show-for-medium-up,td.show-for-medium-up,th.hide-for-medium,td.hide-for-medium,th.hide-for-medium-down,td.hide-for-medium-down,th.hide-for-large-only,td.hide-for-large-only,th.show-for-large-up,td.show-for-large-up,th.hide-for-large,td.hide-for-large,th.hide-for-large-down,td.hide-for-large-down,th.show-for-xlarge-only,td.show-for-xlarge-only,th.show-for-xlarge-up,td.show-for-xlarge-up,th.show-for-xlarge,td.show-for-xlarge,th.show-for-xlarge-down,td.show-for-xlarge-down,th.hide-for-xxlarge-only,td.hide-for-xxlarge-only,th.hide-for-xxlarge-up,td.hide-for-xxlarge-up,th.hide-for-xxlarge,td.hide-for-xxlarge,th.show-for-xxlarge-down,td.show-for-xxlarge-down{display:table-cell !important}}@media only screen and (min-width: 120.063em){.hide-for-small-only,.show-for-small-up,.hide-for-small,.hide-for-small-down,.hide-for-medium-only,.show-for-medium-up,.hide-for-medium,.hide-for-medium-down,.hide-for-large-only,.show-for-large-up,.hide-for-large,.hide-for-large-down,.hide-for-xlarge-only,.show-for-xlarge-up,.hide-for-xlarge,.hide-for-xlarge-down,.show-for-xxlarge-only,.show-for-xxlarge-up,.show-for-xxlarge,.show-for-xxlarge-down{display:inherit !important}.show-for-small-only,.hide-for-small-up,.show-for-small,.show-for-small-down,.show-for-medium-only,.hide-for-medium-up,.show-for-medium,.show-for-medium-down,.show-for-large-only,.hide-for-large-up,.show-for-large,.show-for-large-down,.show-for-xlarge-only,.hide-for-xlarge-up,.show-for-xlarge,.show-for-xlarge-down,.hide-for-xxlarge-only,.hide-for-xxlarge-up,.hide-for-xxlarge,.hide-for-xxlarge-down{display:none !important}.hidden-for-small-only,.visible-for-small-up,.hidden-for-small,.hidden-for-small-down,.hidden-for-medium-only,.visible-for-medium-up,.hidden-for-medium,.hidden-for-medium-down,.hidden-for-large-only,.visible-for-large-up,.hidden-for-large,.hidden-for-large-down,.hidden-for-xlarge-only,.visible-for-xlarge-up,.hidden-for-xlarge,.hidden-for-xlarge-down,.visible-for-xxlarge-only,.visible-for-xxlarge-up,.visible-for-xxlarge,.visible-for-xxlarge-down{position:static !important;height:auto;width:auto;overflow:visible;clip:auto}.visible-for-small-only,.hidden-for-small-up,.visible-for-small,.visible-for-small-down,.visible-for-medium-only,.hidden-for-medium-up,.visible-for-medium,.visible-for-medium-down,.visible-for-large-only,.hidden-for-large-up,.visible-for-large,.visible-for-large-down,.visible-for-xlarge-only,.hidden-for-xlarge-up,.visible-for-xlarge,.visible-for-xlarge-down,.hidden-for-xxlarge-only,.hidden-for-xxlarge-up,.hidden-for-xxlarge,.hidden-for-xxlarge-down{position:absolute !important;height:1px;width:1px;overflow:hidden;clip:rect(1px, 1px, 1px, 1px)}table.hide-for-small-only,table.show-for-small-up,table.hide-for-small,table.hide-for-small-down,table.hide-for-medium-only,table.show-for-medium-up,table.hide-for-medium,table.hide-for-medium-down,table.hide-for-large-only,table.show-for-large-up,table.hide-for-large,table.hide-for-large-down,table.hide-for-xlarge-only,table.show-for-xlarge-up,table.hide-for-xlarge,table.hide-for-xlarge-down,table.show-for-xxlarge-only,table.show-for-xxlarge-up,table.show-for-xxlarge,table.show-for-xxlarge-down{display:table !important}thead.hide-for-small-only,thead.show-for-small-up,thead.hide-for-small,thead.hide-for-small-down,thead.hide-for-medium-only,thead.show-for-medium-up,thead.hide-for-medium,thead.hide-for-medium-down,thead.hide-for-large-only,thead.show-for-large-up,thead.hide-for-large,thead.hide-for-large-down,thead.hide-for-xlarge-only,thead.show-for-xlarge-up,thead.hide-for-xlarge,thead.hide-for-xlarge-down,thead.show-for-xxlarge-only,thead.show-for-xxlarge-up,thead.show-for-xxlarge,thead.show-for-xxlarge-down{display:table-header-group !important}tbody.hide-for-small-only,tbody.show-for-small-up,tbody.hide-for-small,tbody.hide-for-small-down,tbody.hide-for-medium-only,tbody.show-for-medium-up,tbody.hide-for-medium,tbody.hide-for-medium-down,tbody.hide-for-large-only,tbody.show-for-large-up,tbody.hide-for-large,tbody.hide-for-large-down,tbody.hide-for-xlarge-only,tbody.show-for-xlarge-up,tbody.hide-for-xlarge,tbody.hide-for-xlarge-down,tbody.show-for-xxlarge-only,tbody.show-for-xxlarge-up,tbody.show-for-xxlarge,tbody.show-for-xxlarge-down{display:table-row-group !important}tr.hide-for-small-only,tr.show-for-small-up,tr.hide-for-small,tr.hide-for-small-down,tr.hide-for-medium-only,tr.show-for-medium-up,tr.hide-for-medium,tr.hide-for-medium-down,tr.hide-for-large-only,tr.show-for-large-up,tr.hide-for-large,tr.hide-for-large-down,tr.hide-for-xlarge-only,tr.show-for-xlarge-up,tr.hide-for-xlarge,tr.hide-for-xlarge-down,tr.show-for-xxlarge-only,tr.show-for-xxlarge-up,tr.show-for-xxlarge,tr.show-for-xxlarge-down{display:table-row}th.hide-for-small-only,td.hide-for-small-only,th.show-for-small-up,td.show-for-small-up,th.hide-for-small,td.hide-for-small,th.hide-for-small-down,td.hide-for-small-down,th.hide-for-medium-only,td.hide-for-medium-only,th.show-for-medium-up,td.show-for-medium-up,th.hide-for-medium,td.hide-for-medium,th.hide-for-medium-down,td.hide-for-medium-down,th.hide-for-large-only,td.hide-for-large-only,th.show-for-large-up,td.show-for-large-up,th.hide-for-large,td.hide-for-large,th.hide-for-large-down,td.hide-for-large-down,th.hide-for-xlarge-only,td.hide-for-xlarge-only,th.show-for-xlarge-up,td.show-for-xlarge-up,th.hide-for-xlarge,td.hide-for-xlarge,th.hide-for-xlarge-down,td.hide-for-xlarge-down,th.show-for-xxlarge-only,td.show-for-xxlarge-only,th.show-for-xxlarge-up,td.show-for-xxlarge-up,th.show-for-xxlarge,td.show-for-xxlarge,th.show-for-xxlarge-down,td.show-for-xxlarge-down{display:table-cell !important}}.show-for-landscape,.hide-for-portrait{display:inherit !important}.hide-for-landscape,.show-for-portrait{display:none !important}table.hide-for-landscape,table.show-for-portrait{display:table !important}thead.hide-for-landscape,thead.show-for-portrait{display:table-header-group !important}tbody.hide-for-landscape,tbody.show-for-portrait{display:table-row-group !important}tr.hide-for-landscape,tr.show-for-portrait{display:table-row !important}td.hide-for-landscape,td.show-for-portrait,th.hide-for-landscape,th.show-for-portrait{display:table-cell !important}@media only screen and (orientation: landscape){.show-for-landscape,.hide-for-portrait{display:inherit !important}.hide-for-landscape,.show-for-portrait{display:none !important}table.show-for-landscape,table.hide-for-portrait{display:table !important}thead.show-for-landscape,thead.hide-for-portrait{display:table-header-group !important}tbody.show-for-landscape,tbody.hide-for-portrait{display:table-row-group !important}tr.show-for-landscape,tr.hide-for-portrait{display:table-row !important}td.show-for-landscape,td.hide-for-portrait,th.show-for-landscape,th.hide-for-portrait{display:table-cell !important}}@media only screen and (orientation: portrait){.show-for-portrait,.hide-for-landscape{display:inherit !important}.hide-for-portrait,.show-for-landscape{display:none !important}table.show-for-portrait,table.hide-for-landscape{display:table !important}thead.show-for-portrait,thead.hide-for-landscape{display:table-header-group !important}tbody.show-for-portrait,tbody.hide-for-landscape{display:table-row-group !important}tr.show-for-portrait,tr.hide-for-landscape{display:table-row !important}td.show-for-portrait,td.hide-for-landscape,th.show-for-portrait,th.hide-for-landscape{display:table-cell !important}}.show-for-touch{display:none !important}.hide-for-touch{display:inherit !important}.touch .show-for-touch{display:inherit !important}.touch .hide-for-touch{display:none !important}table.hide-for-touch{display:table !important}.touch table.show-for-touch{display:table !important}thead.hide-for-touch{display:table-header-group !important}.touch thead.show-for-touch{display:table-header-group !important}tbody.hide-for-touch{display:table-row-group !important}.touch tbody.show-for-touch{display:table-row-group !important}tr.hide-for-touch{display:table-row !important}.touch tr.show-for-touch{display:table-row !important}td.hide-for-touch{display:table-cell !important}.touch td.show-for-touch{display:table-cell !important}th.hide-for-touch{display:table-cell !important}.touch th.show-for-touch{display:table-cell !important}.print-only{display:none !important}@media print{*{background:transparent !important;color:#000 !important;box-shadow:none !important;text-shadow:none !important}.show-for-print{display:block}.hide-for-print{display:none}table.show-for-print{display:table !important}thead.show-for-print{display:table-header-group !important}tbody.show-for-print{display:table-row-group !important}tr.show-for-print{display:table-row !important}td.show-for-print{display:table-cell !important}th.show-for-print{display:table-cell !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}.ir a:after,a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}@page{margin:0.5cm}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}.hide-on-print{display:none !important}.print-only{display:block !important}.hide-for-print{display:none !important}.show-for-print{display:inherit !important}}@media print{.show-for-print{display:block}.hide-for-print{display:none}table.show-for-print{display:table !important}thead.show-for-print{display:table-header-group !important}tbody.show-for-print{display:table-row-group !important}tr.show-for-print{display:table-row !important}td.show-for-print{display:table-cell !important}th.show-for-print{display:table-cell !important}}@media only screen and (min-width: 90.063em){.xlarge-block-grid-1{display:block;padding:0;margin:0 -.625rem}.xlarge-block-grid-1:before,.xlarge-block-grid-1:after{content:" ";display:table}.xlarge-block-grid-1:after{clear:both}.xlarge-block-grid-1>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xlarge-block-grid-1>li{width:100%;padding:0 .625rem 1.25rem;list-style:none}.xlarge-block-grid-1>li:nth-of-type(1n){clear:none}.xlarge-block-grid-1>li:nth-of-type(1n+1){clear:both}}@media only screen and (min-width: 120.063em){.xxlarge-block-grid-1{display:block;padding:0;margin:0 -.625rem}.xxlarge-block-grid-1:before,.xxlarge-block-grid-1:after{content:" ";display:table}.xxlarge-block-grid-1:after{clear:both}.xxlarge-block-grid-1>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xxlarge-block-grid-1>li{width:100%;padding:0 .625rem 1.25rem;list-style:none}.xxlarge-block-grid-1>li:nth-of-type(1n){clear:none}.xxlarge-block-grid-1>li:nth-of-type(1n+1){clear:both}}@media only screen and (min-width: 90.063em){.xlarge-block-grid-2{display:block;padding:0;margin:0 -.625rem}.xlarge-block-grid-2:before,.xlarge-block-grid-2:after{content:" ";display:table}.xlarge-block-grid-2:after{clear:both}.xlarge-block-grid-2>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xlarge-block-grid-2>li{width:50%;padding:0 .625rem 1.25rem;list-style:none}.xlarge-block-grid-2>li:nth-of-type(1n){clear:none}.xlarge-block-grid-2>li:nth-of-type(2n+1){clear:both}}@media only screen and (min-width: 120.063em){.xxlarge-block-grid-2{display:block;padding:0;margin:0 -.625rem}.xxlarge-block-grid-2:before,.xxlarge-block-grid-2:after{content:" ";display:table}.xxlarge-block-grid-2:after{clear:both}.xxlarge-block-grid-2>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xxlarge-block-grid-2>li{width:50%;padding:0 .625rem 1.25rem;list-style:none}.xxlarge-block-grid-2>li:nth-of-type(1n){clear:none}.xxlarge-block-grid-2>li:nth-of-type(2n+1){clear:both}}@media only screen and (min-width: 90.063em){.xlarge-block-grid-3{display:block;padding:0;margin:0 -.625rem}.xlarge-block-grid-3:before,.xlarge-block-grid-3:after{content:" ";display:table}.xlarge-block-grid-3:after{clear:both}.xlarge-block-grid-3>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xlarge-block-grid-3>li{width:33.33333%;padding:0 .625rem 1.25rem;list-style:none}.xlarge-block-grid-3>li:nth-of-type(1n){clear:none}.xlarge-block-grid-3>li:nth-of-type(3n+1){clear:both}}@media only screen and (min-width: 120.063em){.xxlarge-block-grid-3{display:block;padding:0;margin:0 -.625rem}.xxlarge-block-grid-3:before,.xxlarge-block-grid-3:after{content:" ";display:table}.xxlarge-block-grid-3:after{clear:both}.xxlarge-block-grid-3>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xxlarge-block-grid-3>li{width:33.33333%;padding:0 .625rem 1.25rem;list-style:none}.xxlarge-block-grid-3>li:nth-of-type(1n){clear:none}.xxlarge-block-grid-3>li:nth-of-type(3n+1){clear:both}}@media only screen and (min-width: 90.063em){.xlarge-block-grid-4{display:block;padding:0;margin:0 -.625rem}.xlarge-block-grid-4:before,.xlarge-block-grid-4:after{content:" ";display:table}.xlarge-block-grid-4:after{clear:both}.xlarge-block-grid-4>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xlarge-block-grid-4>li{width:25%;padding:0 .625rem 1.25rem;list-style:none}.xlarge-block-grid-4>li:nth-of-type(1n){clear:none}.xlarge-block-grid-4>li:nth-of-type(4n+1){clear:both}}@media only screen and (min-width: 120.063em){.xxlarge-block-grid-4{display:block;padding:0;margin:0 -.625rem}.xxlarge-block-grid-4:before,.xxlarge-block-grid-4:after{content:" ";display:table}.xxlarge-block-grid-4:after{clear:both}.xxlarge-block-grid-4>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xxlarge-block-grid-4>li{width:25%;padding:0 .625rem 1.25rem;list-style:none}.xxlarge-block-grid-4>li:nth-of-type(1n){clear:none}.xxlarge-block-grid-4>li:nth-of-type(4n+1){clear:both}}@media only screen and (min-width: 90.063em){.xlarge-block-grid-5{display:block;padding:0;margin:0 -.625rem}.xlarge-block-grid-5:before,.xlarge-block-grid-5:after{content:" ";display:table}.xlarge-block-grid-5:after{clear:both}.xlarge-block-grid-5>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xlarge-block-grid-5>li{width:20%;padding:0 .625rem 1.25rem;list-style:none}.xlarge-block-grid-5>li:nth-of-type(1n){clear:none}.xlarge-block-grid-5>li:nth-of-type(5n+1){clear:both}}@media only screen and (min-width: 120.063em){.xxlarge-block-grid-5{display:block;padding:0;margin:0 -.625rem}.xxlarge-block-grid-5:before,.xxlarge-block-grid-5:after{content:" ";display:table}.xxlarge-block-grid-5:after{clear:both}.xxlarge-block-grid-5>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xxlarge-block-grid-5>li{width:20%;padding:0 .625rem 1.25rem;list-style:none}.xxlarge-block-grid-5>li:nth-of-type(1n){clear:none}.xxlarge-block-grid-5>li:nth-of-type(5n+1){clear:both}}@media only screen and (min-width: 90.063em){.xlarge-block-grid-6{display:block;padding:0;margin:0 -.625rem}.xlarge-block-grid-6:before,.xlarge-block-grid-6:after{content:" ";display:table}.xlarge-block-grid-6:after{clear:both}.xlarge-block-grid-6>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xlarge-block-grid-6>li{width:16.66667%;padding:0 .625rem 1.25rem;list-style:none}.xlarge-block-grid-6>li:nth-of-type(1n){clear:none}.xlarge-block-grid-6>li:nth-of-type(6n+1){clear:both}}@media only screen and (min-width: 120.063em){.xxlarge-block-grid-6{display:block;padding:0;margin:0 -.625rem}.xxlarge-block-grid-6:before,.xxlarge-block-grid-6:after{content:" ";display:table}.xxlarge-block-grid-6:after{clear:both}.xxlarge-block-grid-6>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xxlarge-block-grid-6>li{width:16.66667%;padding:0 .625rem 1.25rem;list-style:none}.xxlarge-block-grid-6>li:nth-of-type(1n){clear:none}.xxlarge-block-grid-6>li:nth-of-type(6n+1){clear:both}}@media only screen and (min-width: 90.063em){.xlarge-block-grid-7{display:block;padding:0;margin:0 -.625rem}.xlarge-block-grid-7:before,.xlarge-block-grid-7:after{content:" ";display:table}.xlarge-block-grid-7:after{clear:both}.xlarge-block-grid-7>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xlarge-block-grid-7>li{width:14.28571%;padding:0 .625rem 1.25rem;list-style:none}.xlarge-block-grid-7>li:nth-of-type(1n){clear:none}.xlarge-block-grid-7>li:nth-of-type(7n+1){clear:both}}@media only screen and (min-width: 120.063em){.xxlarge-block-grid-7{display:block;padding:0;margin:0 -.625rem}.xxlarge-block-grid-7:before,.xxlarge-block-grid-7:after{content:" ";display:table}.xxlarge-block-grid-7:after{clear:both}.xxlarge-block-grid-7>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xxlarge-block-grid-7>li{width:14.28571%;padding:0 .625rem 1.25rem;list-style:none}.xxlarge-block-grid-7>li:nth-of-type(1n){clear:none}.xxlarge-block-grid-7>li:nth-of-type(7n+1){clear:both}}@media only screen and (min-width: 90.063em){.xlarge-block-grid-8{display:block;padding:0;margin:0 -.625rem}.xlarge-block-grid-8:before,.xlarge-block-grid-8:after{content:" ";display:table}.xlarge-block-grid-8:after{clear:both}.xlarge-block-grid-8>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xlarge-block-grid-8>li{width:12.5%;padding:0 .625rem 1.25rem;list-style:none}.xlarge-block-grid-8>li:nth-of-type(1n){clear:none}.xlarge-block-grid-8>li:nth-of-type(8n+1){clear:both}}@media only screen and (min-width: 120.063em){.xxlarge-block-grid-8{display:block;padding:0;margin:0 -.625rem}.xxlarge-block-grid-8:before,.xxlarge-block-grid-8:after{content:" ";display:table}.xxlarge-block-grid-8:after{clear:both}.xxlarge-block-grid-8>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xxlarge-block-grid-8>li{width:12.5%;padding:0 .625rem 1.25rem;list-style:none}.xxlarge-block-grid-8>li:nth-of-type(1n){clear:none}.xxlarge-block-grid-8>li:nth-of-type(8n+1){clear:both}}@media only screen and (min-width: 90.063em){.xlarge-block-grid-9{display:block;padding:0;margin:0 -.625rem}.xlarge-block-grid-9:before,.xlarge-block-grid-9:after{content:" ";display:table}.xlarge-block-grid-9:after{clear:both}.xlarge-block-grid-9>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xlarge-block-grid-9>li{width:11.11111%;padding:0 .625rem 1.25rem;list-style:none}.xlarge-block-grid-9>li:nth-of-type(1n){clear:none}.xlarge-block-grid-9>li:nth-of-type(9n+1){clear:both}}@media only screen and (min-width: 120.063em){.xxlarge-block-grid-9{display:block;padding:0;margin:0 -.625rem}.xxlarge-block-grid-9:before,.xxlarge-block-grid-9:after{content:" ";display:table}.xxlarge-block-grid-9:after{clear:both}.xxlarge-block-grid-9>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xxlarge-block-grid-9>li{width:11.11111%;padding:0 .625rem 1.25rem;list-style:none}.xxlarge-block-grid-9>li:nth-of-type(1n){clear:none}.xxlarge-block-grid-9>li:nth-of-type(9n+1){clear:both}}@media only screen and (min-width: 90.063em){.xlarge-block-grid-10{display:block;padding:0;margin:0 -.625rem}.xlarge-block-grid-10:before,.xlarge-block-grid-10:after{content:" ";display:table}.xlarge-block-grid-10:after{clear:both}.xlarge-block-grid-10>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xlarge-block-grid-10>li{width:10%;padding:0 .625rem 1.25rem;list-style:none}.xlarge-block-grid-10>li:nth-of-type(1n){clear:none}.xlarge-block-grid-10>li:nth-of-type(10n+1){clear:both}}@media only screen and (min-width: 120.063em){.xxlarge-block-grid-10{display:block;padding:0;margin:0 -.625rem}.xxlarge-block-grid-10:before,.xxlarge-block-grid-10:after{content:" ";display:table}.xxlarge-block-grid-10:after{clear:both}.xxlarge-block-grid-10>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xxlarge-block-grid-10>li{width:10%;padding:0 .625rem 1.25rem;list-style:none}.xxlarge-block-grid-10>li:nth-of-type(1n){clear:none}.xxlarge-block-grid-10>li:nth-of-type(10n+1){clear:both}}@media only screen and (min-width: 90.063em){.xlarge-block-grid-11{display:block;padding:0;margin:0 -.625rem}.xlarge-block-grid-11:before,.xlarge-block-grid-11:after{content:" ";display:table}.xlarge-block-grid-11:after{clear:both}.xlarge-block-grid-11>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xlarge-block-grid-11>li{width:9.09091%;padding:0 .625rem 1.25rem;list-style:none}.xlarge-block-grid-11>li:nth-of-type(1n){clear:none}.xlarge-block-grid-11>li:nth-of-type(11n+1){clear:both}}@media only screen and (min-width: 120.063em){.xxlarge-block-grid-11{display:block;padding:0;margin:0 -.625rem}.xxlarge-block-grid-11:before,.xxlarge-block-grid-11:after{content:" ";display:table}.xxlarge-block-grid-11:after{clear:both}.xxlarge-block-grid-11>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xxlarge-block-grid-11>li{width:9.09091%;padding:0 .625rem 1.25rem;list-style:none}.xxlarge-block-grid-11>li:nth-of-type(1n){clear:none}.xxlarge-block-grid-11>li:nth-of-type(11n+1){clear:both}}@media only screen and (min-width: 90.063em){.xlarge-block-grid-12{display:block;padding:0;margin:0 -.625rem}.xlarge-block-grid-12:before,.xlarge-block-grid-12:after{content:" ";display:table}.xlarge-block-grid-12:after{clear:both}.xlarge-block-grid-12>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xlarge-block-grid-12>li{width:8.33333%;padding:0 .625rem 1.25rem;list-style:none}.xlarge-block-grid-12>li:nth-of-type(1n){clear:none}.xlarge-block-grid-12>li:nth-of-type(12n+1){clear:both}}@media only screen and (min-width: 120.063em){.xxlarge-block-grid-12{display:block;padding:0;margin:0 -.625rem}.xxlarge-block-grid-12:before,.xxlarge-block-grid-12:after{content:" ";display:table}.xxlarge-block-grid-12:after{clear:both}.xxlarge-block-grid-12>li{display:block;height:auto;float:left;padding:0 .625rem 1.25rem}.xxlarge-block-grid-12>li{width:8.33333%;padding:0 .625rem 1.25rem;list-style:none}.xxlarge-block-grid-12>li:nth-of-type(1n){clear:none}.xxlarge-block-grid-12>li:nth-of-type(12n+1){clear:both}}@-webkit-keyframes uil-ring-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-moz-keyframes uil-ring-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-ms-keyframes uil-ring-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.mini-docking-footer a,.mini-docking-footer-dark a,.footer-links li a,.sitemap-footer ul a.social,.sitemap-footer-light ul a.social,#univ-menu .menu-footer .columns a.social,.modal .issocialbutton,.modal #recaptcha .recaptcha-tool a,.modal .recaptcha .recaptcha-tool a,.circular,span.icon-medium-dark-circle,span.icon-medium-light-circle,span.blue-number,.owl-controls .owl-dots .owl-dot span,.owl-controls .owl-dots .owl-dot.active span,.owl-controls .owl-dots #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head .owl-controls .owl-dots .owl-dot.search-in.activate span{-webkit-border-radius:50%;-moz-border-radius:50%;-o-border-radius:50%;border-radius:50%}.block-grid-listing li .listing>img{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);-moz-transform:translate(-50%, -50%);-o-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}@font-face{font-family:'myriad_set_protext';src:url("/assets/fonts/myriad-set-pro_text-webfont.eot");src:url("/assets/fonts/myriad-set-pro_text-webfont.eot?#iefix") format("embedded-opentype"),url("/assets/fonts/myriad-set-pro_text-webfont.woff") format("woff"),url("/assets/fonts/myriad-set-pro_text-webfont.ttf") format("truetype"),url("/assets/fonts/myriad-set-pro_text-webfont.svg#myriad_set_protext") format("svg");font-weight:normal;font-style:normal}@font-face{font-family:'myriad_set_prothin';src:url("/assets/fonts/myriad-set-pro_thin-webfont.eot");src:url("/assets/fonts/myriad-set-pro_thin-webfont.eot?#iefix") format("embedded-opentype"),url("/assets/fonts/myriad-set-pro_thin-webfont.woff") format("woff"),url("/assets/fonts/myriad-set-pro_thin-webfont.ttf") format("truetype"),url("/assets/fonts/myriad-set-pro_thin-webfont.svg#myriad_set_prothin") format("svg");font-weight:normal;font-style:normal}@font-face{font-family:'myriad_set_proultralight';src:url("/assets/fonts/myriad-set-pro_ultralight-webfont.eot");src:url("/assets/fonts/myriad-set-pro_ultralight-webfont.eot?#iefix") format("embedded-opentype"),url("/assets/fonts/myriad-set-pro_ultralight-webfont.woff") format("woff"),url("/assets/fonts/myriad-set-pro_ultralight-webfont.ttf") format("truetype"),url("/assets/fonts/myriad-set-pro_ultralight-webfont.svg#myriad_set_proultralight") format("svg");font-weight:normal;font-style:normal}.button-line,.button-line-small{font-size:1.5rem;font-family:"myriad_set_prothin","Lucida Grande",Helvetica,sans-serif;color:#0072bc;margin:10px 10px 20px;padding-bottom:2px}.button-line span,.button-line-small span{color:#0072bc;margin-right:10px;line-height:37px;vertical-align:middle}.button-line:hover,.button-line-small:hover,.button-line:hover span,.button-line-small:hover span{color:#5cc3f6;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.button-line.white,.white.button-line-small{color:#fff}.button-line.white span,.white.button-line-small span{color:#fff}.button-line.white:hover,.white.button-line-small:hover{border-bottom:1px solid #fff}span.top-1{position:relative;top:1px}.button-line-small{font-size:1rem;margin-top:0px;margin-bottom:0px}.button-line-small:hover,.button-line-small:hover span{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;color:#5cc3f6}.button-line-small span{padding-right:5px;margin:0px}.button-large,.button-large-pill,.button-material-new{-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:9px 26px;font-size:1.125rem;line-height:1.5;background:none;margin:0px 5px;display:inline-block;margin-bottom:15px;font-family:"myriad_set_protext","Lucida Grande",Helvetica,sans-serif}.button-large .icon::before,.button-large-pill .icon::before,.button-material-new .icon::before{margin-right:12px;font-size:1.25rem;font-style:normal}.button-large.hollow-dark,.hollow-dark.button-large-pill,.hollow-dark.button-material-new,.button-large.hollow-light,.hollow-light.button-large-pill,.hollow-light.button-material-new{padding:8px 26px}.button-large-pill{-webkit-border-radius:23px;-moz-border-radius:23px;-o-border-radius:23px;border-radius:23px;cursor:pointer}.button-large-pill .icon-right{margin-left:12px;font-size:1.25rem;font-style:normal;line-height:1.35;vertical-align:middle}.button-medium{-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:5px 22px;font-size:1rem;line-height:1.5;background:none;margin:0px 5px;display:inline-block;margin-bottom:15px;font-family:"myriad_set_protext","Lucida Grande",Helvetica,sans-serif}.button-medium span{vertical-align:top;display:inline-block}.button-medium .icon::before{margin-right:10px;font-size:1.125rem;font-style:normal}.button-medium.hollow-dark,.button-medium.hollow-light{padding:4px 22px}.button-small,.button-small-pill{-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:4px 20px;font-size:.875rem;line-height:1.5;display:inline-block}.button-small.hollow-dark,.hollow-dark.button-small-pill,.button-small.hollow-light,.hollow-light.button-small-pill{padding:3px 20px}.button-small-pill{-webkit-border-radius:15px;-moz-border-radius:15px;-o-border-radius:15px;border-radius:15px;padding-left:30px;padding-right:30px;margin:0px 3px}.button-material-new{background-color:#1e88e5;color:white}.button-material-new:hover{background-color:#166dba;color:white}.blue{background-color:#36abd1;background:-webkit-linear-gradient(#36abd1, #0074b3);background:-moz-linear-gradient(#36abd1, #0074b3);background:-o-linear-gradient(#36abd1, #0074b3);background:linear-gradient(#36abd1, #0074b3);color:#fff !important;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.blue:hover{background-color:#5bb9d8;background:-webkit-linear-gradient(#5bb9d8, #308ec0);background:-moz-linear-gradient(#5bb9d8, #308ec0);background:-o-linear-gradient(#5bb9d8, #308ec0);background:linear-gradient(#5bb9d8, #308ec0);color:#fff}.blue:active{background-color:#33a0c4;background:-webkit-linear-gradient(#33a0c4, #00629d);background:-moz-linear-gradient(#33a0c4, #00629d);background:-o-linear-gradient(#33a0c4, #00629d);background:linear-gradient(#33a0c4, #00629d);color:#fff}.blue:visited{background-color:#36abd1;background:-webkit-linear-gradient(#36abd1, #0074b3);background:-moz-linear-gradient(#36abd1, #0074b3);background:-o-linear-gradient(#36abd1, #0074b3);background:linear-gradient(#36abd1, #0074b3);color:#fff !important}.orange{background-color:#f0ac4d;background:-webkit-linear-gradient(#f0ac4d, #e77a00);background:-moz-linear-gradient(#f0ac4d, #e77a00);background:-o-linear-gradient(#f0ac4d, #e77a00);background:linear-gradient(#f0ac4d, #e77a00);color:#fff !important;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.orange:hover{background-color:#f0ba6c;background:-webkit-linear-gradient(#f0ba6c, #e99330);background:-moz-linear-gradient(#f0ba6c, #e99330);background:-o-linear-gradient(#f0ba6c, #e99330);background:linear-gradient(#f0ba6c, #e99330);color:#fff}.orange:active{background-color:#e99330;background:-webkit-linear-gradient(#e99330, #d26a00);background:-moz-linear-gradient(#e99330, #d26a00);background:-o-linear-gradient(#e99330, #d26a00);background:linear-gradient(#e99330, #d26a00);color:#fff}.orange:visited{background-color:#f0ac4d;background:-webkit-linear-gradient(#f0ac4d, #e77a00);background:-moz-linear-gradient(#f0ac4d, #e77a00);background:-o-linear-gradient(#f0ac4d, #e77a00);background:linear-gradient(#f0ac4d, #e77a00);color:#fff !important}.green{background-color:#59d135;background:-webkit-linear-gradient(#59d135, #00b300);background:-moz-linear-gradient(#59d135, #00b300);background:-o-linear-gradient(#59d135, #00b300);background:linear-gradient(#59d135, #00b300);color:#fff;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.green:hover{background-color:#78d85b;background:-webkit-linear-gradient(#78d85b, #30c030);background:-moz-linear-gradient(#78d85b, #30c030);background:-o-linear-gradient(#78d85b, #30c030);background:linear-gradient(#78d85b, #30c030);color:#fff}.green:active{background-color:#54c432;background:-webkit-linear-gradient(#54c432, #009e00);background:-moz-linear-gradient(#54c432, #009e00);background:-o-linear-gradient(#54c432, #009e00);background:linear-gradient(#54c432, #009e00);color:#fff;box-shadow:0px 1px 0px rgba(0,0,0,0.4) inset}.green:visited{background-color:#78d85d;background:-webkit-linear-gradient(#78d85b, #30c030);background:-moz-linear-gradient(#78d85b, #30c030);background:-o-linear-gradient(#78d85b, #30c030);background:linear-gradient(#78d85b, #30c030);color:#fff}.grey{background-color:#e1e1e1;background:-webkit-linear-gradient(#e1e1e1, #cecece);background:-moz-linear-gradient(#e1e1e1, #cecece);background:-o-linear-gradient(#e1e1e1, #cecece);background:linear-gradient(#e1e1e1, #cecece);color:#0072bc;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.grey:hover{background-color:#efefef;background:-webkit-linear-gradient(#efefef, #d5d5d5);background:-moz-linear-gradient(#efefef, #d5d5d5);background:-o-linear-gradient(#efefef, #d5d5d5);background:linear-gradient(#efefef, #d5d5d5);color:#0072bc}.grey:visited{background-color:#efefef;background:-webkit-linear-gradient(#efefef, #d5d5d5);background:-moz-linear-gradient(#efefef, #d5d5d5);background:-o-linear-gradient(#efefef, #d5d5d5);background:linear-gradient(#efefef, #d5d5d5);color:#0072bc}.hollow-light{background:transparent;border:1px solid #fff;color:#fff;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;background:none !important;outline:none}.hollow-light:visited{border:1px solid #fff;color:#fff;background:none !important;outline:none}.hollow-light:hover{border:1px solid #0088cc;color:#fff;background:rgba(0,0,0,0.1);background:none !important;outline:none}.hollow-light:focus{background:none !important;outline:none}.hollow-light:active{border:1px solid #0088cc;color:#0088cc;box-shadow:0px 0px 10px rgba(255,255,255,0.1) inset;background:none !important;outline:none}.hollow-dark{background:transparent;border:1px solid #000;color:#000;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.hollow-dark:visited{border:1px solid #000;color:#000;background:none !important}.hollow-dark:hover{border:1px solid #0072bc;color:#0072bc;background:none !important}.hollow-dark:focus{background:none !important;outline:none}.hollow-dark:active{border:1px solid #0072bc;color:#000;box-shadow:none;box-shadow:0px 0px 5px rgba(0,0,0,0.3) inset;background:none !important;background:transparent !important}@media only screen{.button-large,.button-large-pill,.button-material-new,.button-large-pill{padding:5px 22px;font-size:1rem}.button-large .icon::before,.button-large-pill .icon::before,.button-material-new .icon::before,.button-large-pill .icon::before{font-size:1.125rem}.button-large.hollow-dark,.hollow-dark.button-large-pill,.hollow-dark.button-material-new,.button-large.hollow-light,.hollow-light.button-large-pill,.hollow-light.button-material-new,.button-large-pill.hollow-dark,.button-large-pill.hollow-light{padding:4px 22px}}@media only screen and (min-width: 64.063em){.button-large,.button-large-pill,.button-material-new,.button-large-pill{padding:9px 26px;font-size:1.125rem}.button-large .icon::before,.button-large-pill .icon::before,.button-material-new .icon::before,.button-large-pill .icon::before{font-size:1.25rem}.button-large.hollow-dark,.hollow-dark.button-large-pill,.hollow-dark.button-material-new,.button-large.hollow-light,.hollow-light.button-large-pill,.hollow-light.button-material-new,.button-large-pill.hollow-dark,.button-large-pill.hollow-light{padding:7px 26px}}/*!
  Ionicons, v2.0.0
  Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
  https://twitter.com/benjsperry  https://twitter.com/ionicframework
  MIT License: https://github.com/driftyco/ionicons

  Android-style icons originally built by Google’s
  Material Design Icons: https://github.com/google/material-design-icons
  used under CC BY http://creativecommons.org/licenses/by/4.0/
  Modified icons to fit ionicon’s grid from original.
*/@font-face{font-family:"Ionicons";src:url("/assets/lib/ionicons/fonts/ionicons.eot?v=2.0.0");src:url("/assets/lib/ionicons/fonts/ionicons.eot?v=2.0.0#iefix") format("embedded-opentype"),url("/assets/lib/ionicons/fonts/ionicons.ttf?v=2.0.0") format("truetype"),url("/assets/lib/ionicons/fonts/ionicons.woff?v=2.0.0") format("woff"),url("/assets/lib/ionicons/fonts/ionicons.svg?v=2.0.0#Ionicons") format("svg");font-weight:normal;font-style:normal}.ion,.ionicons,.ion-alert:before,.ion-alert-circled:before,.ion-android-add:before,.ion-android-add-circle:before,.ion-android-alarm-clock:before,.ion-android-alert:before,.ion-android-apps:before,.ion-android-archive:before,.ion-android-arrow-back:before,.ion-android-arrow-down:before,.ion-android-arrow-dropdown:before,.ion-android-arrow-dropdown-circle:before,.ion-android-arrow-dropleft:before,.ion-android-arrow-dropleft-circle:before,.ion-android-arrow-dropright:before,.ion-android-arrow-dropright-circle:before,.ion-android-arrow-dropup:before,.ion-android-arrow-dropup-circle:before,.ion-android-arrow-forward:before,.ion-android-arrow-up:before,.ion-android-attach:before,.ion-android-bar:before,.ion-android-bicycle:before,.ion-android-boat:before,.ion-android-bookmark:before,.ion-android-bulb:before,.ion-android-bus:before,.ion-android-calendar:before,.ion-android-call:before,.ion-android-camera:before,.ion-android-cancel:before,.ion-android-car:before,.ion-android-cart:before,.ion-android-chat:before,.ion-android-checkbox:before,.ion-android-checkbox-blank:before,.ion-android-checkbox-outline:before,.ion-android-checkbox-outline-blank:before,.ion-android-checkmark-circle:before,.ion-android-clipboard:before,.ion-android-close:before,.ion-android-cloud:before,.ion-android-cloud-circle:before,.ion-android-cloud-done:before,.ion-android-cloud-outline:before,.ion-android-color-palette:before,.ion-android-compass:before,.ion-android-contact:before,.ion-android-contacts:before,.ion-android-contract:before,.ion-android-create:before,.ion-android-delete:before,.ion-android-desktop:before,.ion-android-document:before,.ion-android-done:before,.ion-android-done-all:before,.ion-android-download:before,.ion-android-drafts:before,.ion-android-exit:before,.ion-android-expand:before,.ion-android-favorite:before,.ion-android-favorite-outline:before,.ion-android-film:before,.ion-android-folder:before,.ion-android-folder-open:before,.ion-android-funnel:before,.ion-android-globe:before,.ion-android-hand:before,.ion-android-hangout:before,.ion-android-happy:before,.ion-android-home:before,.ion-android-image:before,.ion-android-laptop:before,.ion-android-list:before,.ion-android-locate:before,.ion-android-lock:before,.ion-android-mail:before,.ion-android-map:before,.ion-android-menu:before,.ion-android-microphone:before,.ion-android-microphone-off:before,.ion-android-more-horizontal:before,.ion-android-more-vertical:before,.ion-android-navigate:before,.ion-android-notifications:before,.ion-android-notifications-none:before,.ion-android-notifications-off:before,.ion-android-open:before,.ion-android-options:before,.ion-android-people:before,.ion-android-person:before,.ion-android-person-add:before,.ion-android-phone-landscape:before,.ion-android-phone-portrait:before,.ion-android-pin:before,.ion-android-plane:before,.ion-android-playstore:before,.ion-android-print:before,.ion-android-radio-button-off:before,.ion-android-radio-button-on:before,.ion-android-refresh:before,.ion-android-remove:before,.ion-android-remove-circle:before,.ion-android-restaurant:before,.ion-android-sad:before,.ion-android-search:before,.ion-android-send:before,.ion-android-settings:before,.ion-android-share:before,.ion-android-share-alt:before,.ion-android-star:before,.ion-android-star-half:before,.ion-android-star-outline:before,.ion-android-stopwatch:before,.ion-android-subway:before,.ion-android-sunny:before,.ion-android-sync:before,.ion-android-textsms:before,.ion-android-time:before,.ion-android-train:before,.ion-android-unlock:before,.ion-android-upload:before,.ion-android-volume-down:before,.ion-android-volume-mute:before,.ion-android-volume-off:before,.ion-android-volume-up:before,.ion-android-walk:before,.ion-android-warning:before,.ion-android-watch:before,.ion-android-wifi:before,.ion-aperture:before,.ion-archive:before,.ion-arrow-down-a:before,.ion-arrow-down-b:before,.ion-arrow-down-c:before,.ion-arrow-expand:before,.ion-arrow-graph-down-left:before,.ion-arrow-graph-down-right:before,.ion-arrow-graph-up-left:before,.ion-arrow-graph-up-right:before,.ion-arrow-left-a:before,.ion-arrow-left-b:before,.ion-arrow-left-c:before,.ion-arrow-move:before,.ion-arrow-resize:before,.ion-arrow-return-left:before,.ion-arrow-return-right:before,.ion-arrow-right-a:before,.ion-arrow-right-b:before,.ion-arrow-right-c:before,.ion-arrow-shrink:before,.ion-arrow-swap:before,.ion-arrow-up-a:before,.ion-arrow-up-b:before,.ion-arrow-up-c:before,.ion-asterisk:before,.ion-at:before,.ion-backspace:before,.ion-backspace-outline:before,.ion-bag:before,.ion-battery-charging:before,.ion-battery-empty:before,.ion-battery-full:before,.ion-battery-half:before,.ion-battery-low:before,.ion-beaker:before,.ion-beer:before,.ion-bluetooth:before,.ion-bonfire:before,.ion-bookmark:before,.ion-bowtie:before,.ion-briefcase:before,.ion-bug:before,.ion-calculator:before,.ion-calendar:before,.ion-camera:before,.ion-card:before,.ion-cash:before,.ion-chatbox:before,.ion-chatbox-working:before,.ion-chatboxes:before,.ion-chatbubble:before,.ion-chatbubble-working:before,.ion-chatbubbles:before,.ion-checkmark:before,.ion-checkmark-circled:before,.ion-checkmark-round:before,.ion-chevron-down:before,.ion-chevron-left:before,.ion-chevron-right:before,.ion-chevron-up:before,.ion-clipboard:before,.ion-clock:before,.ion-close:before,.ion-close-circled:before,.ion-close-round:before,.ion-closed-captioning:before,.ion-cloud:before,.ion-code:before,.ion-code-download:before,.ion-code-working:before,.ion-coffee:before,.ion-compass:before,.ion-compose:before,.ion-connection-bars:before,.ion-contrast:before,.ion-crop:before,.ion-cube:before,.ion-disc:before,.ion-document:before,.ion-document-text:before,.ion-drag:before,.ion-earth:before,.ion-easel:before,.ion-edit:before,.ion-egg:before,.ion-eject:before,.ion-email:before,.ion-email-unread:before,.ion-erlenmeyer-flask:before,.ion-erlenmeyer-flask-bubbles:before,.ion-eye:before,.ion-eye-disabled:before,.ion-female:before,.ion-filing:before,.ion-film-marker:before,.ion-fireball:before,.ion-flag:before,.ion-flame:before,.ion-flash:before,.ion-flash-off:before,.ion-folder:before,.ion-fork:before,.ion-fork-repo:before,.ion-forward:before,.ion-funnel:before,.ion-gear-a:before,.ion-gear-b:before,.ion-grid:before,.ion-hammer:before,.ion-happy:before,.ion-happy-outline:before,.ion-headphone:before,.ion-heart:before,.ion-heart-broken:before,.ion-help:before,.ion-help-buoy:before,.ion-help-circled:before,.ion-home:before,.ion-icecream:before,.ion-image:before,.ion-images:before,.ion-information:before,.ion-information-circled:before,.ion-ionic:before,.ion-ios-alarm:before,.ion-ios-alarm-outline:before,.ion-ios-albums:before,.ion-ios-albums-outline:before,.ion-ios-americanfootball:before,.ion-ios-americanfootball-outline:before,.ion-ios-analytics:before,.ion-ios-analytics-outline:before,.ion-ios-arrow-back:before,.ion-ios-arrow-down:before,.ion-ios-arrow-forward:before,.ion-ios-arrow-left:before,.ion-ios-arrow-right:before,.ion-ios-arrow-thin-down:before,.ion-ios-arrow-thin-left:before,.ion-ios-arrow-thin-right:before,.ion-ios-arrow-thin-up:before,.ion-ios-arrow-up:before,.ion-ios-at:before,.ion-ios-at-outline:before,.ion-ios-barcode:before,.ion-ios-barcode-outline:before,.ion-ios-baseball:before,.ion-ios-baseball-outline:before,.ion-ios-basketball:before,.ion-ios-basketball-outline:before,.ion-ios-bell:before,.ion-ios-bell-outline:before,.ion-ios-body:before,.ion-ios-body-outline:before,.ion-ios-bolt:before,.ion-ios-bolt-outline:before,.ion-ios-book:before,.ion-ios-book-outline:before,.ion-ios-bookmarks:before,.ion-ios-bookmarks-outline:before,.ion-ios-box:before,.ion-ios-box-outline:before,.ion-ios-briefcase:before,.ion-ios-briefcase-outline:before,.ion-ios-browsers:before,.ion-ios-browsers-outline:before,.ion-ios-calculator:before,.ion-ios-calculator-outline:before,.ion-ios-calendar:before,.ion-ios-calendar-outline:before,.ion-ios-camera:before,.ion-ios-camera-outline:before,.ion-ios-cart:before,.ion-ios-cart-outline:before,.ion-ios-chatboxes:before,.ion-ios-chatboxes-outline:before,.ion-ios-chatbubble:before,.ion-ios-chatbubble-outline:before,.ion-ios-checkmark:before,.ion-ios-checkmark-empty:before,.ion-ios-checkmark-outline:before,.ion-ios-circle-filled:before,.ion-ios-circle-outline:before,.ion-ios-clock:before,.ion-ios-clock-outline:before,.ion-ios-close:before,.ion-ios-close-empty:before,.ion-ios-close-outline:before,.ion-ios-cloud:before,.ion-ios-cloud-download:before,.ion-ios-cloud-download-outline:before,.ion-ios-cloud-outline:before,.ion-ios-cloud-upload:before,.ion-ios-cloud-upload-outline:before,.ion-ios-cloudy:before,.ion-ios-cloudy-night:before,.ion-ios-cloudy-night-outline:before,.ion-ios-cloudy-outline:before,.ion-ios-cog:before,.ion-ios-cog-outline:before,.ion-ios-color-filter:before,.ion-ios-color-filter-outline:before,.ion-ios-color-wand:before,.ion-ios-color-wand-outline:before,.ion-ios-compose:before,.ion-ios-compose-outline:before,.ion-ios-contact:before,.ion-ios-contact-outline:before,.ion-ios-copy:before,.ion-ios-copy-outline:before,.ion-ios-crop:before,.ion-ios-crop-strong:before,.ion-ios-download:before,.ion-ios-download-outline:before,.ion-ios-drag:before,.ion-ios-email:before,.ion-ios-email-outline:before,.ion-ios-eye:before,.ion-ios-eye-outline:before,.ion-ios-fastforward:before,.ion-ios-fastforward-outline:before,.ion-ios-filing:before,.ion-ios-filing-outline:before,.ion-ios-film:before,.ion-ios-film-outline:before,.ion-ios-flag:before,.ion-ios-flag-outline:before,.ion-ios-flame:before,.ion-ios-flame-outline:before,.ion-ios-flask:before,.ion-ios-flask-outline:before,.ion-ios-flower:before,.ion-ios-flower-outline:before,.ion-ios-folder:before,.ion-ios-folder-outline:before,.ion-ios-football:before,.ion-ios-football-outline:before,.ion-ios-game-controller-a:before,.ion-ios-game-controller-a-outline:before,.ion-ios-game-controller-b:before,.ion-ios-game-controller-b-outline:before,.ion-ios-gear:before,.ion-ios-gear-outline:before,.ion-ios-glasses:before,.ion-ios-glasses-outline:before,.ion-ios-grid-view:before,.ion-ios-grid-view-outline:before,.ion-ios-heart:before,.ion-ios-heart-outline:before,.ion-ios-help:before,.ion-ios-help-empty:before,.ion-ios-help-outline:before,.ion-ios-home:before,.ion-ios-home-outline:before,.ion-ios-infinite:before,.ion-ios-infinite-outline:before,.ion-ios-information:before,.ion-ios-information-empty:before,.ion-ios-information-outline:before,.ion-ios-ionic-outline:before,.ion-ios-keypad:before,.ion-ios-keypad-outline:before,.ion-ios-lightbulb:before,.ion-ios-lightbulb-outline:before,.ion-ios-list:before,.ion-ios-list-outline:before,.ion-ios-location:before,.ion-ios-location-outline:before,.ion-ios-locked:before,.ion-ios-locked-outline:before,.ion-ios-loop:before,.ion-ios-loop-strong:before,.ion-ios-medical:before,.ion-ios-medical-outline:before,.ion-ios-medkit:before,.ion-ios-medkit-outline:before,.ion-ios-mic:before,.ion-ios-mic-off:before,.ion-ios-mic-outline:before,.ion-ios-minus:before,.ion-ios-minus-empty:before,.ion-ios-minus-outline:before,.ion-ios-monitor:before,.ion-ios-monitor-outline:before,.ion-ios-moon:before,.ion-ios-moon-outline:before,.ion-ios-more:before,.ion-ios-more-outline:before,.ion-ios-musical-note:before,.ion-ios-musical-notes:before,.ion-ios-navigate:before,.ion-ios-navigate-outline:before,.ion-ios-nutrition:before,.ion-ios-nutrition-outline:before,.ion-ios-paper:before,.ion-ios-paper-outline:before,.ion-ios-paperplane:before,.ion-ios-paperplane-outline:before,.ion-ios-partlysunny:before,.ion-ios-partlysunny-outline:before,.ion-ios-pause:before,.ion-ios-pause-outline:before,.ion-ios-paw:before,.ion-ios-paw-outline:before,.ion-ios-people:before,.ion-ios-people-outline:before,.ion-ios-person:before,.ion-ios-person-outline:before,.ion-ios-personadd:before,.ion-ios-personadd-outline:before,.ion-ios-photos:before,.ion-ios-photos-outline:before,.ion-ios-pie:before,.ion-ios-pie-outline:before,.ion-ios-pint:before,.ion-ios-pint-outline:before,.ion-ios-play:before,.ion-ios-play-outline:before,.ion-ios-plus:before,.ion-ios-plus-empty:before,.ion-ios-plus-outline:before,.ion-ios-pricetag:before,.ion-ios-pricetag-outline:before,.ion-ios-pricetags:before,.ion-ios-pricetags-outline:before,.ion-ios-printer:before,.ion-ios-printer-outline:before,.ion-ios-pulse:before,.ion-ios-pulse-strong:before,.ion-ios-rainy:before,.ion-ios-rainy-outline:before,.ion-ios-recording:before,.ion-ios-recording-outline:before,.ion-ios-redo:before,.ion-ios-redo-outline:before,.ion-ios-refresh:before,.ion-ios-refresh-empty:before,.ion-ios-refresh-outline:before,.ion-ios-reload:before,.ion-ios-reverse-camera:before,.ion-ios-reverse-camera-outline:before,.ion-ios-rewind:before,.ion-ios-rewind-outline:before,.ion-ios-rose:before,.ion-ios-rose-outline:before,.ion-ios-search:before,.ion-ios-search-strong:before,.ion-ios-settings:before,.ion-ios-settings-strong:before,.ion-ios-shuffle:before,.ion-ios-shuffle-strong:before,.ion-ios-skipbackward:before,.ion-ios-skipbackward-outline:before,.ion-ios-skipforward:before,.ion-ios-skipforward-outline:before,.ion-ios-snowy:before,.ion-ios-speedometer:before,.ion-ios-speedometer-outline:before,.ion-ios-star:before,.ion-ios-star-half:before,.ion-ios-star-outline:before,.ion-ios-stopwatch:before,.ion-ios-stopwatch-outline:before,.ion-ios-sunny:before,.ion-ios-sunny-outline:before,.ion-ios-telephone:before,.ion-ios-telephone-outline:before,.ion-ios-tennisball:before,.ion-ios-tennisball-outline:before,.ion-ios-thunderstorm:before,.ion-ios-thunderstorm-outline:before,.ion-ios-time:before,.ion-ios-time-outline:before,.ion-ios-timer:before,.ion-ios-timer-outline:before,.ion-ios-toggle:before,.ion-ios-toggle-outline:before,.ion-ios-trash:before,.ion-ios-trash-outline:before,.ion-ios-undo:before,.ion-ios-undo-outline:before,.ion-ios-unlocked:before,.ion-ios-unlocked-outline:before,.ion-ios-upload:before,.ion-ios-upload-outline:before,.ion-ios-videocam:before,.ion-ios-videocam-outline:before,.ion-ios-volume-high:before,.ion-ios-volume-low:before,.ion-ios-wineglass:before,.ion-ios-wineglass-outline:before,.ion-ios-world:before,.ion-ios-world-outline:before,.ion-ipad:before,.ion-iphone:before,.ion-ipod:before,.ion-jet:before,.ion-key:before,.ion-knife:before,.ion-laptop:before,.ion-leaf:before,.ion-levels:before,.ion-lightbulb:before,.ion-link:before,.ion-load-a:before,.ion-load-b:before,.ion-load-c:before,.ion-load-d:before,.ion-location:before,.ion-lock-combination:before,.ion-locked:before,.ion-log-in:before,.ion-log-out:before,.ion-loop:before,.ion-magnet:before,.ion-male:before,.ion-man:before,.ion-map:before,.ion-medkit:before,.ion-merge:before,.ion-mic-a:before,.ion-mic-b:before,.ion-mic-c:before,.ion-minus:before,.ion-minus-circled:before,.ion-minus-round:before,.ion-model-s:before,.ion-monitor:before,.ion-more:before,.ion-mouse:before,.ion-music-note:before,.ion-navicon:before,.ion-navicon-round:before,.ion-navigate:before,.ion-network:before,.ion-no-smoking:before,.ion-nuclear:before,.ion-outlet:before,.ion-paintbrush:before,.ion-paintbucket:before,.ion-paper-airplane:before,.ion-paperclip:before,.ion-pause:before,.ion-person:before,.ion-person-add:before,.ion-person-stalker:before,.ion-pie-graph:before,.ion-pin:before,.ion-pinpoint:before,.ion-pizza:before,.ion-plane:before,.ion-planet:before,.ion-play:before,.ion-playstation:before,.ion-plus:before,.ion-plus-circled:before,.ion-plus-round:before,.ion-podium:before,.ion-pound:before,.ion-power:before,.ion-pricetag:before,.ion-pricetags:before,.ion-printer:before,.ion-pull-request:before,.ion-qr-scanner:before,.ion-quote:before,.ion-radio-waves:before,.ion-record:before,.ion-refresh:before,.ion-reply:before,.ion-reply-all:before,.ion-ribbon-a:before,.ion-ribbon-b:before,.ion-sad:before,.ion-sad-outline:before,.ion-scissors:before,.ion-search:before,.ion-settings:before,.ion-share:before,.ion-shuffle:before,.ion-skip-backward:before,.ion-skip-forward:before,.ion-social-android:before,.ion-social-android-outline:before,.ion-social-angular:before,.ion-social-angular-outline:before,.ion-social-apple:before,.ion-social-apple-outline:before,.ion-social-bitcoin:before,.ion-social-bitcoin-outline:before,.ion-social-buffer:before,.ion-social-buffer-outline:before,.ion-social-chrome:before,.ion-social-chrome-outline:before,.ion-social-codepen:before,.ion-social-codepen-outline:before,.ion-social-css3:before,.ion-social-css3-outline:before,.ion-social-designernews:before,.ion-social-designernews-outline:before,.ion-social-dribbble:before,.ion-social-dribbble-outline:before,.ion-social-dropbox:before,.ion-social-dropbox-outline:before,.ion-social-euro:before,.ion-social-euro-outline:before,.ion-social-facebook:before,.ion-social-facebook-outline:before,.ion-social-foursquare:before,.ion-social-foursquare-outline:before,.ion-social-freebsd-devil:before,.ion-social-github:before,.ion-social-github-outline:before,.ion-social-google:before,.ion-social-google-outline:before,.ion-social-googleplus:before,.ion-social-googleplus-outline:before,.ion-social-hackernews:before,.ion-social-hackernews-outline:before,.ion-social-html5:before,.ion-social-html5-outline:before,.ion-social-instagram:before,.ion-social-instagram-outline:before,.ion-social-javascript:before,.ion-social-javascript-outline:before,.ion-social-linkedin:before,.ion-social-linkedin-outline:before,.ion-social-markdown:before,.ion-social-nodejs:before,.ion-social-octocat:before,.ion-social-pinterest:before,.ion-social-pinterest-outline:before,.ion-social-python:before,.ion-social-reddit:before,.ion-social-reddit-outline:before,.ion-social-rss:before,.ion-social-rss-outline:before,.ion-social-sass:before,.ion-social-skype:before,.ion-social-skype-outline:before,.ion-social-snapchat:before,.ion-social-snapchat-outline:before,.ion-social-tumblr:before,.ion-social-tumblr-outline:before,.ion-social-tux:before,.ion-social-twitch:before,.ion-social-twitch-outline:before,.ion-social-twitter:before,.ion-social-twitter-outline:before,.ion-social-usd:before,.ion-social-usd-outline:before,.ion-social-vimeo:before,.ion-social-vimeo-outline:before,.ion-social-whatsapp:before,.ion-social-whatsapp-outline:before,.ion-social-windows:before,.ion-social-windows-outline:before,.ion-social-wordpress:before,.ion-social-wordpress-outline:before,.ion-social-yahoo:before,.ion-social-yahoo-outline:before,.ion-social-yen:before,.ion-social-yen-outline:before,.ion-social-youtube:before,.ion-social-youtube-outline:before,.ion-soup-can:before,.ion-soup-can-outline:before,.ion-speakerphone:before,.ion-speedometer:before,.ion-spoon:before,.ion-star:before,.ion-stats-bars:before,.ion-steam:before,.ion-stop:before,.ion-thermometer:before,.ion-thumbsdown:before,.ion-thumbsup:before,.ion-toggle:before,.ion-toggle-filled:before,.ion-transgender:before,.ion-trash-a:before,.ion-trash-b:before,.ion-trophy:before,.ion-tshirt:before,.ion-tshirt-outline:before,.ion-umbrella:before,.ion-university:before,.ion-unlocked:before,.ion-upload:before,.ion-usb:before,.ion-videocamera:before,.ion-volume-high:before,.ion-volume-low:before,.ion-volume-medium:before,.ion-volume-mute:before,.ion-wand:before,.ion-waterdrop:before,.ion-wifi:before,.ion-wineglass:before,.ion-woman:before,.ion-wrench:before,.ion-xbox:before{display:inline-block;font-family:"Ionicons";speak:none;font-style:normal;font-weight:normal;font-variant:normal;text-transform:none;text-rendering:auto;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.ion-alert:before{content:""}.ion-alert-circled:before{content:""}.ion-android-add:before{content:""}.ion-android-add-circle:before{content:""}.ion-android-alarm-clock:before{content:""}.ion-android-alert:before{content:""}.ion-android-apps:before{content:""}.ion-android-archive:before{content:""}.ion-android-arrow-back:before{content:""}.ion-android-arrow-down:before{content:""}.ion-android-arrow-dropdown:before{content:""}.ion-android-arrow-dropdown-circle:before{content:""}.ion-android-arrow-dropleft:before{content:""}.ion-android-arrow-dropleft-circle:before{content:""}.ion-android-arrow-dropright:before{content:""}.ion-android-arrow-dropright-circle:before{content:""}.ion-android-arrow-dropup:before{content:""}.ion-android-arrow-dropup-circle:before{content:""}.ion-android-arrow-forward:before{content:""}.ion-android-arrow-up:before{content:""}.ion-android-attach:before{content:""}.ion-android-bar:before{content:""}.ion-android-bicycle:before{content:""}.ion-android-boat:before{content:""}.ion-android-bookmark:before{content:""}.ion-android-bulb:before{content:""}.ion-android-bus:before{content:""}.ion-android-calendar:before{content:""}.ion-android-call:before{content:""}.ion-android-camera:before{content:""}.ion-android-cancel:before{content:""}.ion-android-car:before{content:""}.ion-android-cart:before{content:""}.ion-android-chat:before{content:""}.ion-android-checkbox:before{content:""}.ion-android-checkbox-blank:before{content:""}.ion-android-checkbox-outline:before{content:""}.ion-android-checkbox-outline-blank:before{content:""}.ion-android-checkmark-circle:before{content:""}.ion-android-clipboard:before{content:""}.ion-android-close:before{content:""}.ion-android-cloud:before{content:""}.ion-android-cloud-circle:before{content:""}.ion-android-cloud-done:before{content:""}.ion-android-cloud-outline:before{content:""}.ion-android-color-palette:before{content:""}.ion-android-compass:before{content:""}.ion-android-contact:before{content:""}.ion-android-contacts:before{content:""}.ion-android-contract:before{content:""}.ion-android-create:before{content:""}.ion-android-delete:before{content:""}.ion-android-desktop:before{content:""}.ion-android-document:before{content:""}.ion-android-done:before{content:""}.ion-android-done-all:before{content:""}.ion-android-download:before{content:""}.ion-android-drafts:before{content:""}.ion-android-exit:before{content:""}.ion-android-expand:before{content:""}.ion-android-favorite:before{content:""}.ion-android-favorite-outline:before{content:""}.ion-android-film:before{content:""}.ion-android-folder:before{content:""}.ion-android-folder-open:before{content:""}.ion-android-funnel:before{content:""}.ion-android-globe:before{content:""}.ion-android-hand:before{content:""}.ion-android-hangout:before{content:""}.ion-android-happy:before{content:""}.ion-android-home:before{content:""}.ion-android-image:before{content:""}.ion-android-laptop:before{content:""}.ion-android-list:before{content:""}.ion-android-locate:before{content:""}.ion-android-lock:before{content:""}.ion-android-mail:before{content:""}.ion-android-map:before{content:""}.ion-android-menu:before{content:""}.ion-android-microphone:before{content:""}.ion-android-microphone-off:before{content:""}.ion-android-more-horizontal:before{content:""}.ion-android-more-vertical:before{content:""}.ion-android-navigate:before{content:""}.ion-android-notifications:before{content:""}.ion-android-notifications-none:before{content:""}.ion-android-notifications-off:before{content:""}.ion-android-open:before{content:""}.ion-android-options:before{content:""}.ion-android-people:before{content:""}.ion-android-person:before{content:""}.ion-android-person-add:before{content:""}.ion-android-phone-landscape:before{content:""}.ion-android-phone-portrait:before{content:""}.ion-android-pin:before{content:""}.ion-android-plane:before{content:""}.ion-android-playstore:before{content:""}.ion-android-print:before{content:""}.ion-android-radio-button-off:before{content:""}.ion-android-radio-button-on:before{content:""}.ion-android-refresh:before{content:""}.ion-android-remove:before{content:""}.ion-android-remove-circle:before{content:""}.ion-android-restaurant:before{content:""}.ion-android-sad:before{content:""}.ion-android-search:before{content:""}.ion-android-send:before{content:""}.ion-android-settings:before{content:""}.ion-android-share:before{content:""}.ion-android-share-alt:before{content:""}.ion-android-star:before{content:""}.ion-android-star-half:before{content:""}.ion-android-star-outline:before{content:""}.ion-android-stopwatch:before{content:""}.ion-android-subway:before{content:""}.ion-android-sunny:before{content:""}.ion-android-sync:before{content:""}.ion-android-textsms:before{content:""}.ion-android-time:before{content:""}.ion-android-train:before{content:""}.ion-android-unlock:before{content:""}.ion-android-upload:before{content:""}.ion-android-volume-down:before{content:""}.ion-android-volume-mute:before{content:""}.ion-android-volume-off:before{content:""}.ion-android-volume-up:before{content:""}.ion-android-walk:before{content:""}.ion-android-warning:before{content:""}.ion-android-watch:before{content:""}.ion-android-wifi:before{content:""}.ion-aperture:before{content:""}.ion-archive:before{content:""}.ion-arrow-down-a:before{content:""}.ion-arrow-down-b:before{content:""}.ion-arrow-down-c:before{content:""}.ion-arrow-expand:before{content:""}.ion-arrow-graph-down-left:before{content:""}.ion-arrow-graph-down-right:before{content:""}.ion-arrow-graph-up-left:before{content:""}.ion-arrow-graph-up-right:before{content:""}.ion-arrow-left-a:before{content:""}.ion-arrow-left-b:before{content:""}.ion-arrow-left-c:before{content:""}.ion-arrow-move:before{content:""}.ion-arrow-resize:before{content:""}.ion-arrow-return-left:before{content:""}.ion-arrow-return-right:before{content:""}.ion-arrow-right-a:before{content:""}.ion-arrow-right-b:before{content:""}.ion-arrow-right-c:before{content:""}.ion-arrow-shrink:before{content:""}.ion-arrow-swap:before{content:""}.ion-arrow-up-a:before{content:""}.ion-arrow-up-b:before{content:""}.ion-arrow-up-c:before{content:""}.ion-asterisk:before{content:""}.ion-at:before{content:""}.ion-backspace:before{content:""}.ion-backspace-outline:before{content:""}.ion-bag:before{content:""}.ion-battery-charging:before{content:""}.ion-battery-empty:before{content:""}.ion-battery-full:before{content:""}.ion-battery-half:before{content:""}.ion-battery-low:before{content:""}.ion-beaker:before{content:""}.ion-beer:before{content:""}.ion-bluetooth:before{content:""}.ion-bonfire:before{content:""}.ion-bookmark:before{content:""}.ion-bowtie:before{content:""}.ion-briefcase:before{content:""}.ion-bug:before{content:""}.ion-calculator:before{content:""}.ion-calendar:before{content:""}.ion-camera:before{content:""}.ion-card:before{content:""}.ion-cash:before{content:""}.ion-chatbox:before{content:""}.ion-chatbox-working:before{content:""}.ion-chatboxes:before{content:""}.ion-chatbubble:before{content:""}.ion-chatbubble-working:before{content:""}.ion-chatbubbles:before{content:""}.ion-checkmark:before{content:""}.ion-checkmark-circled:before{content:""}.ion-checkmark-round:before{content:""}.ion-chevron-down:before{content:""}.ion-chevron-left:before{content:""}.ion-chevron-right:before{content:""}.ion-chevron-up:before{content:""}.ion-clipboard:before{content:""}.ion-clock:before{content:""}.ion-close:before{content:""}.ion-close-circled:before{content:""}.ion-close-round:before{content:""}.ion-closed-captioning:before{content:""}.ion-cloud:before{content:""}.ion-code:before{content:""}.ion-code-download:before{content:""}.ion-code-working:before{content:""}.ion-coffee:before{content:""}.ion-compass:before{content:""}.ion-compose:before{content:""}.ion-connection-bars:before{content:""}.ion-contrast:before{content:""}.ion-crop:before{content:""}.ion-cube:before{content:""}.ion-disc:before{content:""}.ion-document:before{content:""}.ion-document-text:before{content:""}.ion-drag:before{content:""}.ion-earth:before{content:""}.ion-easel:before{content:""}.ion-edit:before{content:""}.ion-egg:before{content:""}.ion-eject:before{content:""}.ion-email:before{content:""}.ion-email-unread:before{content:""}.ion-erlenmeyer-flask:before{content:""}.ion-erlenmeyer-flask-bubbles:before{content:""}.ion-eye:before{content:""}.ion-eye-disabled:before{content:""}.ion-female:before{content:""}.ion-filing:before{content:""}.ion-film-marker:before{content:""}.ion-fireball:before{content:""}.ion-flag:before{content:""}.ion-flame:before{content:""}.ion-flash:before{content:""}.ion-flash-off:before{content:""}.ion-folder:before{content:""}.ion-fork:before{content:""}.ion-fork-repo:before{content:""}.ion-forward:before{content:""}.ion-funnel:before{content:""}.ion-gear-a:before{content:""}.ion-gear-b:before{content:""}.ion-grid:before{content:""}.ion-hammer:before{content:""}.ion-happy:before{content:""}.ion-happy-outline:before{content:""}.ion-headphone:before{content:""}.ion-heart:before{content:""}.ion-heart-broken:before{content:""}.ion-help:before{content:""}.ion-help-buoy:before{content:""}.ion-help-circled:before{content:""}.ion-home:before{content:""}.ion-icecream:before{content:""}.ion-image:before{content:""}.ion-images:before{content:""}.ion-information:before{content:""}.ion-information-circled:before{content:""}.ion-ionic:before{content:""}.ion-ios-alarm:before{content:""}.ion-ios-alarm-outline:before{content:""}.ion-ios-albums:before{content:""}.ion-ios-albums-outline:before{content:""}.ion-ios-americanfootball:before{content:""}.ion-ios-americanfootball-outline:before{content:""}.ion-ios-analytics:before{content:""}.ion-ios-analytics-outline:before{content:""}.ion-ios-arrow-back:before{content:""}.ion-ios-arrow-down:before{content:""}.ion-ios-arrow-forward:before{content:""}.ion-ios-arrow-left:before{content:""}.ion-ios-arrow-right:before{content:""}.ion-ios-arrow-thin-down:before{content:""}.ion-ios-arrow-thin-left:before{content:""}.ion-ios-arrow-thin-right:before{content:""}.ion-ios-arrow-thin-up:before{content:""}.ion-ios-arrow-up:before{content:""}.ion-ios-at:before{content:""}.ion-ios-at-outline:before{content:""}.ion-ios-barcode:before{content:""}.ion-ios-barcode-outline:before{content:""}.ion-ios-baseball:before{content:""}.ion-ios-baseball-outline:before{content:""}.ion-ios-basketball:before{content:""}.ion-ios-basketball-outline:before{content:""}.ion-ios-bell:before{content:""}.ion-ios-bell-outline:before{content:""}.ion-ios-body:before{content:""}.ion-ios-body-outline:before{content:""}.ion-ios-bolt:before{content:""}.ion-ios-bolt-outline:before{content:""}.ion-ios-book:before{content:""}.ion-ios-book-outline:before{content:""}.ion-ios-bookmarks:before{content:""}.ion-ios-bookmarks-outline:before{content:""}.ion-ios-box:before{content:""}.ion-ios-box-outline:before{content:""}.ion-ios-briefcase:before{content:""}.ion-ios-briefcase-outline:before{content:""}.ion-ios-browsers:before{content:""}.ion-ios-browsers-outline:before{content:""}.ion-ios-calculator:before{content:""}.ion-ios-calculator-outline:before{content:""}.ion-ios-calendar:before{content:""}.ion-ios-calendar-outline:before{content:""}.ion-ios-camera:before{content:""}.ion-ios-camera-outline:before{content:""}.ion-ios-cart:before{content:""}.ion-ios-cart-outline:before{content:""}.ion-ios-chatboxes:before{content:""}.ion-ios-chatboxes-outline:before{content:""}.ion-ios-chatbubble:before{content:""}.ion-ios-chatbubble-outline:before{content:""}.ion-ios-checkmark:before{content:""}.ion-ios-checkmark-empty:before{content:""}.ion-ios-checkmark-outline:before{content:""}.ion-ios-circle-filled:before{content:""}.ion-ios-circle-outline:before{content:""}.ion-ios-clock:before{content:""}.ion-ios-clock-outline:before{content:""}.ion-ios-close:before{content:""}.ion-ios-close-empty:before{content:""}.ion-ios-close-outline:before{content:""}.ion-ios-cloud:before{content:""}.ion-ios-cloud-download:before{content:""}.ion-ios-cloud-download-outline:before{content:""}.ion-ios-cloud-outline:before{content:""}.ion-ios-cloud-upload:before{content:""}.ion-ios-cloud-upload-outline:before{content:""}.ion-ios-cloudy:before{content:""}.ion-ios-cloudy-night:before{content:""}.ion-ios-cloudy-night-outline:before{content:""}.ion-ios-cloudy-outline:before{content:""}.ion-ios-cog:before{content:""}.ion-ios-cog-outline:before{content:""}.ion-ios-color-filter:before{content:""}.ion-ios-color-filter-outline:before{content:""}.ion-ios-color-wand:before{content:""}.ion-ios-color-wand-outline:before{content:""}.ion-ios-compose:before{content:""}.ion-ios-compose-outline:before{content:""}.ion-ios-contact:before{content:""}.ion-ios-contact-outline:before{content:""}.ion-ios-copy:before{content:""}.ion-ios-copy-outline:before{content:""}.ion-ios-crop:before{content:""}.ion-ios-crop-strong:before{content:""}.ion-ios-download:before{content:""}.ion-ios-download-outline:before{content:""}.ion-ios-drag:before{content:""}.ion-ios-email:before{content:""}.ion-ios-email-outline:before{content:""}.ion-ios-eye:before{content:""}.ion-ios-eye-outline:before{content:""}.ion-ios-fastforward:before{content:""}.ion-ios-fastforward-outline:before{content:""}.ion-ios-filing:before{content:""}.ion-ios-filing-outline:before{content:""}.ion-ios-film:before{content:""}.ion-ios-film-outline:before{content:""}.ion-ios-flag:before{content:""}.ion-ios-flag-outline:before{content:""}.ion-ios-flame:before{content:""}.ion-ios-flame-outline:before{content:""}.ion-ios-flask:before{content:""}.ion-ios-flask-outline:before{content:""}.ion-ios-flower:before{content:""}.ion-ios-flower-outline:before{content:""}.ion-ios-folder:before{content:""}.ion-ios-folder-outline:before{content:""}.ion-ios-football:before{content:""}.ion-ios-football-outline:before{content:""}.ion-ios-game-controller-a:before{content:""}.ion-ios-game-controller-a-outline:before{content:""}.ion-ios-game-controller-b:before{content:""}.ion-ios-game-controller-b-outline:before{content:""}.ion-ios-gear:before{content:""}.ion-ios-gear-outline:before{content:""}.ion-ios-glasses:before{content:""}.ion-ios-glasses-outline:before{content:""}.ion-ios-grid-view:before{content:""}.ion-ios-grid-view-outline:before{content:""}.ion-ios-heart:before{content:""}.ion-ios-heart-outline:before{content:""}.ion-ios-help:before{content:""}.ion-ios-help-empty:before{content:""}.ion-ios-help-outline:before{content:""}.ion-ios-home:before{content:""}.ion-ios-home-outline:before{content:""}.ion-ios-infinite:before{content:""}.ion-ios-infinite-outline:before{content:""}.ion-ios-information:before{content:""}.ion-ios-information-empty:before{content:""}.ion-ios-information-outline:before{content:""}.ion-ios-ionic-outline:before{content:""}.ion-ios-keypad:before{content:""}.ion-ios-keypad-outline:before{content:""}.ion-ios-lightbulb:before{content:""}.ion-ios-lightbulb-outline:before{content:""}.ion-ios-list:before{content:""}.ion-ios-list-outline:before{content:""}.ion-ios-location:before{content:""}.ion-ios-location-outline:before{content:""}.ion-ios-locked:before{content:""}.ion-ios-locked-outline:before{content:""}.ion-ios-loop:before{content:""}.ion-ios-loop-strong:before{content:""}.ion-ios-medical:before{content:""}.ion-ios-medical-outline:before{content:""}.ion-ios-medkit:before{content:""}.ion-ios-medkit-outline:before{content:""}.ion-ios-mic:before{content:""}.ion-ios-mic-off:before{content:""}.ion-ios-mic-outline:before{content:""}.ion-ios-minus:before{content:""}.ion-ios-minus-empty:before{content:""}.ion-ios-minus-outline:before{content:""}.ion-ios-monitor:before{content:""}.ion-ios-monitor-outline:before{content:""}.ion-ios-moon:before{content:""}.ion-ios-moon-outline:before{content:""}.ion-ios-more:before{content:""}.ion-ios-more-outline:before{content:""}.ion-ios-musical-note:before{content:""}.ion-ios-musical-notes:before{content:""}.ion-ios-navigate:before{content:""}.ion-ios-navigate-outline:before{content:""}.ion-ios-nutrition:before{content:""}.ion-ios-nutrition-outline:before{content:""}.ion-ios-paper:before{content:""}.ion-ios-paper-outline:before{content:""}.ion-ios-paperplane:before{content:""}.ion-ios-paperplane-outline:before{content:""}.ion-ios-partlysunny:before{content:""}.ion-ios-partlysunny-outline:before{content:""}.ion-ios-pause:before{content:""}.ion-ios-pause-outline:before{content:""}.ion-ios-paw:before{content:""}.ion-ios-paw-outline:before{content:""}.ion-ios-people:before{content:""}.ion-ios-people-outline:before{content:""}.ion-ios-person:before{content:""}.ion-ios-person-outline:before{content:""}.ion-ios-personadd:before{content:""}.ion-ios-personadd-outline:before{content:""}.ion-ios-photos:before{content:""}.ion-ios-photos-outline:before{content:""}.ion-ios-pie:before{content:""}.ion-ios-pie-outline:before{content:""}.ion-ios-pint:before{content:""}.ion-ios-pint-outline:before{content:""}.ion-ios-play:before{content:""}.ion-ios-play-outline:before{content:""}.ion-ios-plus:before{content:""}.ion-ios-plus-empty:before{content:""}.ion-ios-plus-outline:before{content:""}.ion-ios-pricetag:before{content:""}.ion-ios-pricetag-outline:before{content:""}.ion-ios-pricetags:before{content:""}.ion-ios-pricetags-outline:before{content:""}.ion-ios-printer:before{content:""}.ion-ios-printer-outline:before{content:""}.ion-ios-pulse:before{content:""}.ion-ios-pulse-strong:before{content:""}.ion-ios-rainy:before{content:""}.ion-ios-rainy-outline:before{content:""}.ion-ios-recording:before{content:""}.ion-ios-recording-outline:before{content:""}.ion-ios-redo:before{content:""}.ion-ios-redo-outline:before{content:""}.ion-ios-refresh:before{content:""}.ion-ios-refresh-empty:before{content:""}.ion-ios-refresh-outline:before{content:""}.ion-ios-reload:before{content:""}.ion-ios-reverse-camera:before{content:""}.ion-ios-reverse-camera-outline:before{content:""}.ion-ios-rewind:before{content:""}.ion-ios-rewind-outline:before{content:""}.ion-ios-rose:before{content:""}.ion-ios-rose-outline:before{content:""}.ion-ios-search:before{content:""}.ion-ios-search-strong:before{content:""}.ion-ios-settings:before{content:""}.ion-ios-settings-strong:before{content:""}.ion-ios-shuffle:before{content:""}.ion-ios-shuffle-strong:before{content:""}.ion-ios-skipbackward:before{content:""}.ion-ios-skipbackward-outline:before{content:""}.ion-ios-skipforward:before{content:""}.ion-ios-skipforward-outline:before{content:""}.ion-ios-snowy:before{content:""}.ion-ios-speedometer:before{content:""}.ion-ios-speedometer-outline:before{content:""}.ion-ios-star:before{content:""}.ion-ios-star-half:before{content:""}.ion-ios-star-outline:before{content:""}.ion-ios-stopwatch:before{content:""}.ion-ios-stopwatch-outline:before{content:""}.ion-ios-sunny:before{content:""}.ion-ios-sunny-outline:before{content:""}.ion-ios-telephone:before{content:""}.ion-ios-telephone-outline:before{content:""}.ion-ios-tennisball:before{content:""}.ion-ios-tennisball-outline:before{content:""}.ion-ios-thunderstorm:before{content:""}.ion-ios-thunderstorm-outline:before{content:""}.ion-ios-time:before{content:""}.ion-ios-time-outline:before{content:""}.ion-ios-timer:before{content:""}.ion-ios-timer-outline:before{content:""}.ion-ios-toggle:before{content:""}.ion-ios-toggle-outline:before{content:""}.ion-ios-trash:before{content:""}.ion-ios-trash-outline:before{content:""}.ion-ios-undo:before{content:""}.ion-ios-undo-outline:before{content:""}.ion-ios-unlocked:before{content:""}.ion-ios-unlocked-outline:before{content:""}.ion-ios-upload:before{content:""}.ion-ios-upload-outline:before{content:""}.ion-ios-videocam:before{content:""}.ion-ios-videocam-outline:before{content:""}.ion-ios-volume-high:before{content:""}.ion-ios-volume-low:before{content:""}.ion-ios-wineglass:before{content:""}.ion-ios-wineglass-outline:before{content:""}.ion-ios-world:before{content:""}.ion-ios-world-outline:before{content:""}.ion-ipad:before{content:""}.ion-iphone:before{content:""}.ion-ipod:before{content:""}.ion-jet:before{content:""}.ion-key:before{content:""}.ion-knife:before{content:""}.ion-laptop:before{content:""}.ion-leaf:before{content:""}.ion-levels:before{content:""}.ion-lightbulb:before{content:""}.ion-link:before{content:""}.ion-load-a:before{content:""}.ion-load-b:before{content:""}.ion-load-c:before{content:""}.ion-load-d:before{content:""}.ion-location:before{content:""}.ion-lock-combination:before{content:""}.ion-locked:before{content:""}.ion-log-in:before{content:""}.ion-log-out:before{content:""}.ion-loop:before{content:""}.ion-magnet:before{content:""}.ion-male:before{content:""}.ion-man:before{content:""}.ion-map:before{content:""}.ion-medkit:before{content:""}.ion-merge:before{content:""}.ion-mic-a:before{content:""}.ion-mic-b:before{content:""}.ion-mic-c:before{content:""}.ion-minus:before{content:""}.ion-minus-circled:before{content:""}.ion-minus-round:before{content:""}.ion-model-s:before{content:""}.ion-monitor:before{content:""}.ion-more:before{content:""}.ion-mouse:before{content:""}.ion-music-note:before{content:""}.ion-navicon:before{content:""}.ion-navicon-round:before{content:""}.ion-navigate:before{content:""}.ion-network:before{content:""}.ion-no-smoking:before{content:""}.ion-nuclear:before{content:""}.ion-outlet:before{content:""}.ion-paintbrush:before{content:""}.ion-paintbucket:before{content:""}.ion-paper-airplane:before{content:""}.ion-paperclip:before{content:""}.ion-pause:before{content:""}.ion-person:before{content:""}.ion-person-add:before{content:""}.ion-person-stalker:before{content:""}.ion-pie-graph:before{content:""}.ion-pin:before{content:""}.ion-pinpoint:before{content:""}.ion-pizza:before{content:""}.ion-plane:before{content:""}.ion-planet:before{content:""}.ion-play:before{content:""}.ion-playstation:before{content:""}.ion-plus:before{content:""}.ion-plus-circled:before{content:""}.ion-plus-round:before{content:""}.ion-podium:before{content:""}.ion-pound:before{content:""}.ion-power:before{content:""}.ion-pricetag:before{content:""}.ion-pricetags:before{content:""}.ion-printer:before{content:""}.ion-pull-request:before{content:""}.ion-qr-scanner:before{content:""}.ion-quote:before{content:""}.ion-radio-waves:before{content:""}.ion-record:before{content:""}.ion-refresh:before{content:""}.ion-reply:before{content:""}.ion-reply-all:before{content:""}.ion-ribbon-a:before{content:""}.ion-ribbon-b:before{content:""}.ion-sad:before{content:""}.ion-sad-outline:before{content:""}.ion-scissors:before{content:""}.ion-search:before{content:""}.ion-settings:before{content:""}.ion-share:before{content:""}.ion-shuffle:before{content:""}.ion-skip-backward:before{content:""}.ion-skip-forward:before{content:""}.ion-social-android:before{content:""}.ion-social-android-outline:before{content:""}.ion-social-angular:before{content:""}.ion-social-angular-outline:before{content:""}.ion-social-apple:before{content:""}.ion-social-apple-outline:before{content:""}.ion-social-bitcoin:before{content:""}.ion-social-bitcoin-outline:before{content:""}.ion-social-buffer:before{content:""}.ion-social-buffer-outline:before{content:""}.ion-social-chrome:before{content:""}.ion-social-chrome-outline:before{content:""}.ion-social-codepen:before{content:""}.ion-social-codepen-outline:before{content:""}.ion-social-css3:before{content:""}.ion-social-css3-outline:before{content:""}.ion-social-designernews:before{content:""}.ion-social-designernews-outline:before{content:""}.ion-social-dribbble:before{content:""}.ion-social-dribbble-outline:before{content:""}.ion-social-dropbox:before{content:""}.ion-social-dropbox-outline:before{content:""}.ion-social-euro:before{content:""}.ion-social-euro-outline:before{content:""}.ion-social-facebook:before{content:""}.ion-social-facebook-outline:before{content:""}.ion-social-foursquare:before{content:""}.ion-social-foursquare-outline:before{content:""}.ion-social-freebsd-devil:before{content:""}.ion-social-github:before{content:""}.ion-social-github-outline:before{content:""}.ion-social-google:before{content:""}.ion-social-google-outline:before{content:""}.ion-social-googleplus:before{content:""}.ion-social-googleplus-outline:before{content:""}.ion-social-hackernews:before{content:""}.ion-social-hackernews-outline:before{content:""}.ion-social-html5:before{content:""}.ion-social-html5-outline:before{content:""}.ion-social-instagram:before{content:""}.ion-social-instagram-outline:before{content:""}.ion-social-javascript:before{content:""}.ion-social-javascript-outline:before{content:""}.ion-social-linkedin:before{content:""}.ion-social-linkedin-outline:before{content:""}.ion-social-markdown:before{content:""}.ion-social-nodejs:before{content:""}.ion-social-octocat:before{content:""}.ion-social-pinterest:before{content:""}.ion-social-pinterest-outline:before{content:""}.ion-social-python:before{content:""}.ion-social-reddit:before{content:""}.ion-social-reddit-outline:before{content:""}.ion-social-rss:before{content:""}.ion-social-rss-outline:before{content:""}.ion-social-sass:before{content:""}.ion-social-skype:before{content:""}.ion-social-skype-outline:before{content:""}.ion-social-snapchat:before{content:""}.ion-social-snapchat-outline:before{content:""}.ion-social-tumblr:before{content:""}.ion-social-tumblr-outline:before{content:""}.ion-social-tux:before{content:""}.ion-social-twitch:before{content:""}.ion-social-twitch-outline:before{content:""}.ion-social-twitter:before{content:""}.ion-social-twitter-outline:before{content:""}.ion-social-usd:before{content:""}.ion-social-usd-outline:before{content:""}.ion-social-vimeo:before{content:""}.ion-social-vimeo-outline:before{content:""}.ion-social-whatsapp:before{content:""}.ion-social-whatsapp-outline:before{content:""}.ion-social-windows:before{content:""}.ion-social-windows-outline:before{content:""}.ion-social-wordpress:before{content:""}.ion-social-wordpress-outline:before{content:""}.ion-social-yahoo:before{content:""}.ion-social-yahoo-outline:before{content:""}.ion-social-yen:before{content:""}.ion-social-yen-outline:before{content:""}.ion-social-youtube:before{content:""}.ion-social-youtube-outline:before{content:""}.ion-soup-can:before{content:""}.ion-soup-can-outline:before{content:""}.ion-speakerphone:before{content:""}.ion-speedometer:before{content:""}.ion-spoon:before{content:""}.ion-star:before{content:""}.ion-stats-bars:before{content:""}.ion-steam:before{content:""}.ion-stop:before{content:""}.ion-thermometer:before{content:""}.ion-thumbsdown:before{content:""}.ion-thumbsup:before{content:""}.ion-toggle:before{content:""}.ion-toggle-filled:before{content:""}.ion-transgender:before{content:""}.ion-trash-a:before{content:""}.ion-trash-b:before{content:""}.ion-trophy:before{content:""}.ion-tshirt:before{content:""}.ion-tshirt-outline:before{content:""}.ion-umbrella:before{content:""}.ion-university:before{content:""}.ion-unlocked:before{content:""}.ion-upload:before{content:""}.ion-usb:before{content:""}.ion-videocamera:before{content:""}.ion-volume-high:before{content:""}.ion-volume-low:before{content:""}.ion-volume-medium:before{content:""}.ion-volume-mute:before{content:""}.ion-wand:before{content:""}.ion-waterdrop:before{content:""}.ion-wifi:before{content:""}.ion-wineglass:before{content:""}.ion-woman:before{content:""}.ion-wrench:before{content:""}.ion-xbox:before{content:""}body{-webkit-font-smoothing:antialiased;font-smoothing:antialiased}h1,h2,h3,h4,h5,h6{font-family:"myriad_set_prothin","Lucida Grande",Helvetica,sans-serif}p{font-family:"myriad_set_protext","Lucida Grande",Helvetica,sans-serif;color:#333}h1{font-size:4rem;line-height:1.0625;margin-bottom:24px;letter-spacing:-1px;color:#000}h2{font-size:3.25rem;line-height:1.0769;color:#000;margin-bottom:24px}h3{font-size:2.625rem;line-height:1.1990;color:#000;margin-bottom:24px}h4{font-size:2rem;line-height:1.25;color:#000;margin-bottom:10px}h5{font-size:1.5rem;line-height:1.333;color:#000;margin-bottom:10px}h6{font-size:1.125rem;line-height:1.4;color:#000}p{font-size:1.125rem;line-height:1.444;color:#555}hgroup{width:100%;margin:auto}.badge-large{font-family:"myriad_set_proultralight","Lucida Grande",Helvetica,sans-serif;font-size:5rem;display:block;text-align:center;line-height:1}.badge-large .badge-half{font-size:2.625rem;line-height:33px}.badge-large img{width:auto;margin:0px}.badge-small{font-family:"myriad_set_protext","Lucida Grande",Helvetica,sans-serif;font-size:.875rem;text-transform:uppercase;display:block;text-align:center}@media only screen{h1{font-size:3.0625rem;text-align:left}h2{font-size:2.625rem;text-align:left}h3{font-size:2rem;text-align:left}h4{font-size:1.6875rem;text-align:left}h5{font-size:1.3125rem;text-align:left}h6{font-size:1.125rem;text-align:left}p{font-size:1.0625rem;text-align:left}.badge-large{font-size:2.625rem;line-height:68px}.badge-large .badge-half{font-size:2.1875rem}}@media only screen and (min-width: 40.063em){.badge-large{font-size:5rem}.badge-small{font-size:.875rem}}@media only screen and (min-width: 64.063em){h1{font-size:4rem;text-align:left}h2{font-size:3.25rem;text-align:left}h3{font-size:2.625rem;text-align:left}h4{font-size:2rem;text-align:left}h5{font-size:1.5rem;text-align:left}h6{font-size:1.125rem;text-align:left}p{font-size:1.0625rem;text-align:left}}span.small-icon{font-size:18px}span.medium-icon,span.large-icon{font-size:32px}span.large-icon{font-size:64px}html,body{width:100%;font-size:100%;font-family:"myriad_set_protext","Lucida Grande",Helvetica,sans-serif;line-height:1.444;background:#fff}.header-theme.white{background:rgba(0,0,0,0.8);border-bottom:1px solid #333}.header-theme.white .logo{color:#fff !important}.header-theme.white .logo .intersoft-logo{fill:#fff !important}.header-theme.white ul.icon-menu li a#login-button{border:1px solid #fff !important}.header-theme.white ul.icon-menu li a#loggedin-button{border:1px solid #fff !important}.header-theme.white ul.icon-menu li a#loggedin-button:hover{border:1px solid #fff !important}.header-theme.white ul li{color:#fff !important}.header-theme.white ul li a{color:#fff !important}.header-theme.white ul li a.active,.header-theme.white ul li #univ-menu .menu-head a.search-in.activate,#univ-menu .menu-head .header-theme.white ul li a.search-in.activate{color:#0088cc !important}.header-theme.white ul li a .nav-icon{fill:#fff !important}.header-theme.white ul li span{color:#fff !important}.header-theme.white ul li a:hover,.header-theme.white ul li a:hover span,.header-theme.white ul li a:hover span,.header-theme.white ul li span:hover{color:#0088cc !important}.header-theme.white ul li a:hover .nav-icon{fill:#0088cc !important}.header-theme.white ul li ul.childnav{background:rgba(0,0,0,0.9) !important}.header-theme.white ul li ul.childnav li a.all-product{background:#000 !important}.header-theme.white ul li ul.childnav li a.active p,.header-theme.white ul li ul.childnav li #univ-menu .menu-head a.search-in.activate p,#univ-menu .menu-head .header-theme.white ul li ul.childnav li a.search-in.activate p{color:#0088cc !important}.header-theme.white ul.childnav{-webkit-box-shadow:0px 5px 20px rgba(0,0,0,0.2) !important;-moz-box-shadow:0px 5px 20px rgba(0,0,0,0.2) !important;box-shadow:0px 5px 20px rgba(0,0,0,0.2) !important;background:rgba(0,0,0,0.9) !important}.header-theme.white ul.childnav li a{border-bottom:1px solid #333 !important}.header-theme.white ul.childnav li a .list p{color:#fff !important}.header-theme.white ul.childnav li a .list span{color:#999 !important}.header-theme.white ul.childnav li a span.ion-ios-cloud-download-outline{color:#0076ff !important}.header-theme.white ul.childnav li a span.ion-ios-star-outline{color:#ff3824 !important}.header-theme.white ul.childnav li a:hover p{color:#0072bc !important}.header-theme.white ul.childnav li a:hover div span{color:#999 !important}.header-theme.white ul.childnav li a.all-product{background:rgba(0,0,0,0.8) !important}.header-theme{position:fixed;z-index:50;top:0px;left:0px;width:100%;padding:0px;background:rgba(0,0,0,0.8);border-bottom:1px solid #333;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;-webkit-backface-visibility:hidden}.header-theme .logo{float:left;margin:0px;padding:0px;color:#fff}.header-theme .logo .intersoft-logo{height:48px;fill:#fff}.header-theme .logo-indepth{padding-left:60px;font-size:1.5rem;line-height:47px;display:inline-block;color:#fff}.header-theme .logo-indepth.crosslight-logo{background:url("/assets/images/default/logo-crosslight-medium.png");background-size:50px 50px;background-repeat:no-repeat;background-position:left top}.header-theme .logo-indepth.webui-logo{background:url("/assets/images/default/logo-webui-medium.png");background-size:50px 50px;background-repeat:no-repeat;background-position:left top}.header-theme .logo-indepth.clientui-logo{background:url("/assets/images/default/logo-clientui-medium.png");background-size:50px 50px;background-repeat:no-repeat;background-position:left top}.header-theme .home-link{float:right;margin-top:10px;display:inline-block;text-align:left;width:32px;height:32px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.header-theme .home-link span.icon{width:32px;line-height:32px;display:block;font-size:1.33333em;color:#000;text-align:center;color:#fff;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.header-theme .home-link:hover span.icon{color:#0072bc}.header-theme ul{float:right;list-style:none;display:block;margin:0px;margin-right:20px;padding:8px 0}.header-theme ul li{float:left;margin-left:5px;color:#fff}.header-theme ul li span{font-size:1.33333em;line-height:18px;display:inline-block;width:24px;text-align:center;vertical-align:middle}.header-theme ul li span.arrow{cursor:pointer;font-size:1em}.header-theme ul li a{line-height:32px;display:inline-block;padding:5px 10px;color:#fff;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.header-theme ul li a.active,.header-theme ul li #univ-menu .menu-head a.search-in.activate,#univ-menu .menu-head .header-theme ul li a.search-in.activate{color:#0088cc}.header-theme ul li a .nav-icon{fill:#fff}.header-theme ul li:last-child{margin-right:0px}.header-theme ul li span{color:#fff}.header-theme ul li a:hover,.header-theme ul li a:hover span,.header-theme ul li a:hover span,.header-theme ul li span:hover{color:#0088cc}.header-theme ul li a:hover .nav-icon{fill:#0088cc}.header-theme ul li ul.childnav{margin-right:0px;background:rgba(0,0,0,0.9);margin-top:-5px}.header-theme ul li ul.childnav li a.all-product{background:#000}.header-theme ul li ul.childnav li a.active p,.header-theme ul li ul.childnav li #univ-menu .menu-head a.search-in.activate p,#univ-menu .menu-head .header-theme ul li ul.childnav li a.search-in.activate p{color:#0088cc}.header-theme ul.icon-menu{margin:0px;padding:0px}.header-theme ul.icon-menu li{padding:0px}.header-theme ul.icon-menu li a{padding:0px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.header-theme ul.icon-menu li a img{margin:0px}.header-theme ul.icon-menu li a#search-btn{line-height:32px;display:inline-block}.header-theme ul.icon-menu li a#search-btn span{width:42px;height:32px;line-height:32px;padding:0px 10px 0px 0px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.header-theme ul.icon-menu li a#login-button{padding:0px 20px 0px 2px;-webkit-border-radius:36px;-moz-border-radius:36px;border-radius:36px;border:1px solid #fff}.header-theme ul.icon-menu li a .icon-circle{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;width:32px;height:32px;margin-right:5px;vertical-align:middle;text-align:center;display:inline-block;line-height:28px}.header-theme ul.icon-menu li a#login-button:hover{color:#08c;border:1px solid #08c}.header-theme ul.icon-menu li a#login-button:active{color:#08c;border:1px solid #08c}.header-theme ul.icon-menu li a#loggedin-button{padding:0px 10px 2px 2px;-webkit-border-radius:40px;-moz-border-radius:40px;border-radius:40px;border:1px solid #fff}.header-theme ul.icon-menu li a#loggedin-button:hover{border:1px solid #fff}.header-theme ul.icon-menu li a svg{position:relative;top:-1px}.header-theme ul.icon-menu li.loggedin{position:relative}.header-theme ul.icon-menu li.loggedin>a{margin-bottom:8px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.header-theme ul.icon-menu li.loggedin>a img{border-radius:50%;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;overflow:hidden;margin-right:5px;border:none}.header-theme ul.icon-menu li.loggedin>a span{font-size:1rem;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.header-theme ul.icon-menu li.loggedin ul.childnav{margin-right:0px;right:0px}.header-theme ul.icon-menu li.loggedin ul.childnav li a{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.header-theme ul.icon-menu li.loggedin ul.childnav li span{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;margin-right:10px}.header-theme ul.icon-menu li.loggedin ul.childnav li:nth-child(1){background:url("/assets/images/default/cover-signin-bg.jpg") left top no-repeat;background-size:cover;overflow:hidden}.header-theme ul.icon-menu li.loggedin ul.childnav li:nth-child(1) span{padding:10px 20px;text-align:left;font-size:18px;line-height:1.4;display:table-cell;min-width:220px;height:110px;vertical-align:bottom}.header-theme ul.icon-menu li.loggedin ul.childnav li:nth-child(1) span:hover{color:#fff}#header-index-2nd{background:rgba(0,0,0,0.6)}#header-index-2nd ul.icon-menu{padding-top:10px}#header-index-2nd.bgchanged{background:rgba(0,0,0,0.8);border-bottom:1px solid rgba(0,0,0,0.9);-webkit-backface-visibility:hidden}ul.childnav{-webkit-box-shadow:0px 5px 20px rgba(0,0,0,0.2);-moz-box-shadow:0px 5px 20px rgba(0,0,0,0.2);box-shadow:0px 5px 20px rgba(0,0,0,0.2);opacity:0;visibility:hidden;float:none;position:absolute;height:0px;background:rgba(0,0,0,0.9);-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;border-radius:4px;margin:0px;padding:0px;overflow:hidden;z-index:300}ul.childnav li{float:none;margin-left:0px}ul.childnav li:last-child a{border-bottom:none}ul.childnav li a{font-size:1.0625rem;display:block;padding:10px 20px !important;border-bottom:1px solid #333;margin:0px}ul.childnav li a .list p{font-size:17px;color:#fff;line-height:25px;margin:0px;padding:0px}ul.childnav li a .list span{font-size:17px;color:#999;margin:0px;line-height:25px;padding:0px;display:block;width:auto !important;text-align:left}ul.childnav li a .list.crosslight{background-image:url("/assets/images/default/logo-crosslight-large.png");background-size:50px 50px;padding-left:60px;height:50px;background-position:left center;background-repeat:no-repeat}ul.childnav li a .list.webui{background-image:url("/assets/images/default/logo-webui-large.png");background-size:50px 50px;padding-left:60px;height:50px;background-position:left center;background-repeat:no-repeat}ul.childnav li a .list.clientui{background-image:url("/assets/images/default/logo-clientui-large.png");background-size:50px 50px;padding-left:60px;height:50px;background-position:left center;background-repeat:no-repeat}ul.childnav li a .list.getstarted{background-image:url("/assets/images/default/logo-getstarted-large.png");background-size:50px 50px;padding-left:60px;height:50px;background-position:left center;background-repeat:no-repeat}ul.childnav li a .list.whatnew{background-image:url("/assets/images/default/logo-whatnew-large.png");background-size:50px 50px;padding-left:60px;height:50px;background-position:left center;background-repeat:no-repeat}ul.childnav li a .list.trial{background-image:url("/assets/images/default/logo-trial-large.png");background-size:50px 50px;padding-left:60px;height:50px;background-position:left center;background-repeat:no-repeat}ul.childnav li a .list.ion-menu{padding-left:60px;height:50px}ul.childnav li a span.ion-menu-icon{float:left;font-size:46px;margin-left:4px}ul.childnav li a span.ion-ios-cloud-download-outline{color:#0076ff !important}ul.childnav li a span.ion-ios-star-outline{color:#ff3824 !important}ul.childnav li a:hover p{color:#0072bc}ul.childnav li a:hover div span{color:#999 !important}ul.childnav li a:hover>span:hover{opacity:1}ul.childnav li a.all-product{background:rgba(0,0,0,0.8)}.childnav-dropdown{-webkit-transition:all 0.3s ease;-moz-transition:all 0.3s ease;-o-transition:all 0.3s ease;-ms-transition:all 0.3s ease;transition:all 0.3s ease;-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;border-radius:4px;-webkit-box-shadow:0 20px 80px rgba(50,50,93,0.1),0 15px 35px rgba(50,50,93,0.15),0 5px 15px rgba(0,0,0,0.1);box-shadow:0 20px 80px rgba(50,50,93,0.1),0 15px 35px rgba(50,50,93,0.15),0 5px 15px rgba(0,0,0,0.1);opacity:0;visibility:hidden;height:auto;left:50%;transform:translate(-50%, 0) perspective(10px) rotateX(-0.15deg);transform-origin:center top;position:absolute;z-index:300;cursor:default;pointer-events:none;min-width:450px}.childnav-dropdown:before{-webkit-box-shadow:0 20px 80px rgba(50,50,93,0.1),0 15px 35px rgba(50,50,93,0.15),0 5px 15px rgba(0,0,0,0.1);box-shadow:0 20px 80px rgba(50,50,93,0.1),0 15px 35px rgba(50,50,93,0.15),0 5px 15px rgba(0,0,0,0.1);content:' ';position:absolute;top:0;left:50%;transform:translate(-50%, -50%) rotate(45deg);width:10px;height:10px;background:white}.childnav-dropdown .childnav-container{-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;border-radius:4px;overflow:hidden;position:relative}.childnav-dropdown .childnav-container a.childnav-action{display:block;padding:0;margin:0;border-bottom:none}.childnav-dropdown .childnav-container a.childnav-action.display-table>div{vertical-align:top}.childnav-dropdown .childnav-container a.childnav-action.display-table>div h6{font-size:14px}.childnav-dropdown .childnav-container a.childnav-action.display-table>div p{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;font-size:15px}.childnav-dropdown .childnav-container a.childnav-action.display-table>div.content{min-width:300px}.childnav-dropdown .childnav-container a.childnav-action .icon{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;display:inline-block;width:30px;height:30px;overflow:hidden;text-align:center;position:relative}.childnav-dropdown .childnav-container a.childnav-action .list{text-align:center;margin-bottom:10px}.childnav-dropdown .childnav-container a.childnav-action .list .list-icon{width:45px;height:45px;background-size:45px 45px;background-position:center center;background-repeat:no-repeat;width:45px;height:45px;margin-bottom:4px}.childnav-dropdown .childnav-container a.childnav-action .list .list-icon.web-service{background-image:url("/assets/images/services/homepage/nav-web-icon@2x.png")}.childnav-dropdown .childnav-container a.childnav-action .list .list-icon.mobile-service{background-image:url("/assets/images/services/homepage/nav-mobile-icon@2x.png")}.childnav-dropdown .childnav-container a.childnav-action .list .list-icon.enterprise-service{background-image:url("/assets/images/services/homepage/nav-enterprise-icon@2x.png")}.childnav-dropdown .childnav-container a.childnav-action .list .list-icon.custom-service{background-image:url("/assets/images/services/homepage/nav-custom-icon@2x.png")}.childnav-dropdown .childnav-container a.childnav-action .list .list-icon.logo-blog{background-image:url("/assets/images/default/logo-blog.png")}.childnav-dropdown .childnav-container a.childnav-action .list .list-icon.logo-community{background-image:url("/assets/images/default/logo-community.png")}.childnav-dropdown .childnav-container a.childnav-action .list.ion-menu{padding-left:60px;height:50px}.childnav-dropdown .childnav-container a.childnav-action span.ion-menu-icon{float:left;font-size:46px;margin-left:4px}.childnav-dropdown .childnav-container a.childnav-action:hover .icon{position:relative;filter:grayscale(0.5)}.childnav-dropdown .childnav-container a.childnav-action:hover .icon.navbar-fnb-icon{filter:grayscale(0.3)}.childnav-dropdown .childnav-container a.childnav-action:hover .icon.navbar-express-icon{filter:grayscale(0.7)}.childnav-dropdown .childnav-container a.childnav-action:hover .retail-color{color:#166dba}.childnav-dropdown .childnav-container a.childnav-action:hover .fnb-color{color:#ba160a}.childnav-dropdown .childnav-container a.childnav-action:hover .express-color{color:#255827}.childnav-dropdown .childnav-container a.childnav-action:hover p{color:black}.childnav-dropdown .childnav-container ul.childnav{float:none;background:white;margin:0px;padding:8px 20px;font-size:0;opacity:1;height:auto;visibility:visible;position:relative}.childnav-dropdown .childnav-container ul.childnav li{float:none;margin:0px;padding:10px 0;font-size:15px}.childnav-dropdown .childnav-container ul.childnav li a{border-bottom:none}.childnav-dropdown .childnav-container ul.childnav li.half-grid-list{display:inline-block;vertical-align:middle;width:50%}.childnav-dropdown .childnav-container ul.childnav li.half-grid-list a.childnav-action{padding:0 8px !important}.childnav-dropdown .childnav-container ul.childnav li.half-grid-list a.childnav-action p{text-align:center;font-size:15px;color:#555}.childnav-dropdown .childnav-container ul.childnav li.nav-grouping{font-size:0}.childnav-dropdown .childnav-container ul.childnav li.nav-grouping h6{margin-top:0;font-weight:bold}.childnav-dropdown .childnav-container ul.childnav li.nav-grouping .group-with-icon{display:inline-block;vertical-align:middle;width:25%;text-align:center;margin-bottom:10px;padding:0 8px !important}.childnav-dropdown .childnav-container ul.childnav li.nav-grouping .group-with-icon .icon-group{background-size:60px 60px;background-position:center center;background-repeat:no-repeat;width:60px;height:60px}.childnav-dropdown .childnav-container ul.childnav li.nav-grouping .group-with-icon .icon-group.crosslight{background-image:url("/assets/images/default/logo-crosslight-large.png")}.childnav-dropdown .childnav-container ul.childnav li.nav-grouping .group-with-icon .icon-group.webui{background-image:url("/assets/images/default/logo-webui-large.png")}.childnav-dropdown .childnav-container ul.childnav li.nav-grouping .group-with-icon .icon-group.clientui{background-image:url("/assets/images/default/logo-clientui-large.png")}.childnav-dropdown .childnav-container ul.childnav li.nav-grouping .group-with-icon .icon-group.getstarted{background-image:url("/assets/images/default/logo-getstarted-large.png")}.childnav-dropdown .childnav-container ul.childnav li.nav-grouping .group-with-icon .icon-group.whatnew{background-image:url("/assets/images/default/logo-whatnew-large.png")}.childnav-dropdown .childnav-container ul.childnav li.nav-grouping .group-with-icon .icon-group.trial{background-image:url("/assets/images/default/logo-trial-large.png")}.childnav-dropdown .childnav-container ul.childnav li.nav-grouping .group-with-icon .icon-group.business-iseller{background-image:url("/assets/images/default/logo-business-iseller-large.png")}.childnav-dropdown .childnav-container ul.childnav li.nav-grouping .group-with-icon .icon-group.business-retail{background-image:url("/assets/images/default/logo-business-retail-large.png")}.childnav-dropdown .childnav-container ul.childnav li.nav-grouping .group-with-icon .icon-group.business-fnb{background-image:url("/assets/images/default/logo-business-fnb-large.png")}.childnav-dropdown .childnav-container ul.childnav li.nav-grouping .group-with-icon .icon-group.business-express{background-image:url("/assets/images/default/logo-business-express-large.png")}.childnav-dropdown .childnav-container ul.childnav li.nav-grouping .group-with-icon p{text-align:center;margin:0;font-size:15px}.childnav-dropdown .childnav-container ul.childnav li.nav-grouping:last-child{border-top:1px solid lightgrey;padding-bottom:0}.childnav-dropdown .childnav-container ul.childnav li.nav-grouping:last-child h6{margin-top:10px}.childnav-dropdown .childnav-container .contextual-section{background-color:#f9f9f9;padding:18px 20px}.childnav-dropdown .childnav-container .contextual-section a.childnav-action .icon{width:55px;height:55px}.childnav-dropdown .childnav-container .contextual-section a.childnav-action h6{color:inherit;margin-top:8px;margin-bottom:0;font-size:14px}.childnav-dropdown .childnav-container .contextual-section a.childnav-action:hover{color:#166dba}.childnav-dropdown.dropdown-hide{visibility:hidden !important;opacity:0 !important}li.dropdown{position:relative}li.dropdown:hover .childnav{opacity:1;visibility:visible;margin-top:0px;height:auto;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}li.dropdown .childnav-dropdown.active,li.dropdown #univ-menu .menu-head .childnav-dropdown.search-in.activate,#univ-menu .menu-head li.dropdown .childnav-dropdown.search-in.activate{opacity:1;visibility:visible;transform:translate(-50%, 0) perspective(0) rotateX(0);pointer-events:all}#second-nav{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;width:100%;text-align:center;padding:0px;position:relative;top:1px;-webkit-backface-visibility:hidden}#second-nav div.second-nav-list{padding:0px;display:inline-block;width:10%;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}#second-nav div.owl-item{padding:0px}#second-nav div.owl-item .second-nav-list{width:100%}#second-nav a{border-bottom:1px solid transparent;color:#fff;display:block;font-size:14px;font-family:"myriad_set_protext","Lucida Grande",Helvetica,sans-serif;text-align:center;padding:0 0px 10px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}#second-nav a.active,#second-nav #univ-menu .menu-head a.search-in.activate,#univ-menu .menu-head #second-nav a.search-in.activate{border-bottom:1px solid #0088cc;color:#0088cc}#second-nav a .icon{width:auto;height:50px;display:block;text-align:center;margin-bottom:5px;background-position:center center;background-repeat:no-repeat;background-size:50px 50px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}#second-nav a .whatsnew-icon{background-image:url("/assets/images/crosslight/whatsnew-icon-medium@2x.png")}#second-nav a .foundation-icon{background-image:url("/assets/images/crosslight/foundation-icon-medium@2x.png")}#second-nav a .android-icon{background-image:url("/assets/images/crosslight/android-icon-medium@2x.png")}#second-nav a .ios-icon{background-image:url("/assets/images/crosslight/ios-icon-medium@2x.png")}#second-nav a .winphone-icon{background-image:url("/assets/images/crosslight/winphone-icon-medium@2x.png")}#second-nav a .windows8-icon{background-image:url("/assets/images/crosslight/win8-icon-medium@2x.png")}#second-nav a .webgrid-icon{background-image:url("/assets/images/webui/homepage/nav-webgrid-icon@2x.png")}#second-nav a .webinput-icon{background-image:url("/assets/images/webui/homepage/nav-webinput-icon@2x.png")}#second-nav a .webscheduler-icon{background-image:url("/assets/images/webui/homepage/nav-webscheduler-icon@2x.png")}#second-nav a .webcombo-icon{background-image:url("/assets/images/webui/homepage/nav-webcombo-icon@2x.png")}#second-nav a .webessentials-icon{background-image:url("/assets/images/webui/homepage/nav-webessentials-icon@2x.png")}#second-nav a .webdesktop-icon{background-image:url("/assets/images/webui/homepage/nav-webdesktop-icon@2x.png")}#second-nav a .webtexteditor-icon{background-image:url("/assets/images/webui/homepage/nav-webtexteditor-icon@2x.png")}#second-nav a .webtreeview-icon{background-image:url("/assets/images/webui/homepage/nav-webtreeview-icon@2x.png")}#second-nav a .isdatasource-icon{background-image:url("/assets/images/webui/homepage/nav-isdatasource-icon@2x.png")}#second-nav a .whatsnew-clientui-icon{background-image:url("/assets/images/clientui/homepage/nav-whatsnew-icon@2x.png")}#second-nav a .architecture-clientui-icon{background-image:url("/assets/images/clientui/homepage/nav-architecture-icon@2x.png")}#second-nav a .controls-clientui-icon{background-image:url("/assets/images/clientui/homepage/nav-controls-icon@2x.png")}#second-nav a .benefits-clientui-icon{background-image:url("/assets/images/clientui/homepage/nav-benefits-icon@2x.png")}#second-nav a .showcase-clientui-icon{background-image:url("/assets/images/clientui/homepage/nav-showcase-icon@2x.png")}#second-nav a .dev-clientui-icon{background-image:url("/assets/images/clientui/homepage/nav-devexp-icon@2x.png")}#second-nav a .user-clientui-icon{background-image:url("/assets/images/clientui/homepage/nav-userexp-icon@2x.png")}#second-nav a .compare-clientui-icon{background-image:url("/assets/images/clientui/homepage/nav-compare-icon@2x.png")}#second-nav a .getstarted-clientui-icon{background-image:url("/assets/images/clientui/homepage/nav-getstarted-icon@2x.png")}#second-nav a .web-service-icon{background-image:url("/assets/images/services/homepage/nav-web-icon@2x.png")}#second-nav a .mobile-service-icon{background-image:url("/assets/images/services/homepage/nav-mobile-icon@2x.png")}#second-nav a .enterprise-service-icon{background-image:url("/assets/images/services/homepage/nav-enterprise-icon@2x.png")}#second-nav a .custom-service-icon{background-image:url("/assets/images/services/homepage/nav-custom-icon@2x.png")}#second-nav a .corporate-history-icon{background-image:url("/assets/images/corporate/nav-history-icon@2x.png")}#second-nav a .corporate-awards-icon{background-image:url("/assets/images/corporate/nav-awards-icon@2x.png")}#second-nav a .corporate-testimonials-icon{background-image:url("/assets/images/corporate/nav-testimonials-icon@2x.png")}#second-nav a .corporate-press-release-icon{background-image:url("/assets/images/corporate/nav-pressrelease-icon@2x.png")}#second-nav a .corporate-newsletter-icon{background-image:url("/assets/images/corporate/nav-newsletter-icon@2x.png")}#second-nav a .corporate-reseller-icon{background-image:url("/assets/images/corporate/nav-resellers-icon@2x.png")}#second-nav a .corporate-careers-icon{background-image:url("/assets/images/corporate/nav-careers-icon@2x.png")}#second-nav a .corporate-contact-icon{background-image:url("/assets/images/corporate/nav-contact-icon@2x.png")}#second-nav a .corporate-online-privacy-icon{background-image:url("/assets/images/corporate/nav-online-privacy-icon@2x.png")}#second-nav a:hover{border-bottom:1px solid #08c}#second-nav a:hover span{opacity:0.5}#second-nav .owl-controls{margin:0px;padding:0px}.search,#univ-menu .menu-head .search-in{position:relative;z-index:2;border:1px solid transparent;padding:10px;width:52px;height:54px;display:inline-block;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.search a,#univ-menu .menu-head .search-in a{padding:0px !important}.search .searchform .input-field,#univ-menu .menu-head .search-in .searchform .input-field{color:#000}@media only screen{.header-theme{padding:0px}.header-theme .logo a{display:inline-block}.header-theme .logo .intersoft-logo{height:32px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.header-theme .logo.minimize{line-height:1}.header-theme .logo.minimize .intersoft-logo{padding-top:1px;height:30px;line-height:1}.header-theme .row{padding:10px 10px}.header-theme ul li a{padding:0px;line-height:0}.header-theme .home-link{margin-top:8px}#second-nav{position:relative;width:100%}.owl-stage-outer{padding-left:0px !important;padding-right:0px !important}}@media only screen and (min-width: 40.063em){.header-theme .row{padding:10px}.header-theme .logo .intersoft-logo{height:48px;padding:0px}.header-theme .logo.minimize{line-height:0}.header-theme .logo.minimize .intersoft-logo{line-height:1;height:48px;padding:0px}.header-theme .home-link{margin-top:10px}.header-theme ul{padding:0px;margin:0px}.header-theme ul li a{padding:8px 8px;line-height:32px}.header-theme ul.icon-menu{padding-top:7px}#header-index-2nd ul.icon-menu{padding-top:7px}#second-nav{width:100%;text-align:center;padding:0px;position:relative;top:1px}}@media only screen and (min-width: 64.063em){.header-theme .home-link{margin-top:7px}}#small-banner{width:100%;height:300px;position:relative;background-attachment:scroll;background-size:cover;background-repeat:no-repeat;padding:140px 0 30px}#small-banner.online-privacy{background-image:url("/assets/images/global/global-online-privacy-bg.jpg");padding-top:180px}#small-banner.termsofuse{background-image:url("/assets/images/global/global-term-of-use-bg.jpg")}#small-banner.webui-all-features{background-image:url("/assets/images/webui/allfeatures-heading-bg.jpg")}#small-banner.heading-request-trial{background-position:center top;padding-top:90px}#small-banner.general{background-image:url("/assets/images/webui/homepage/homepage-heading-bg.jpg")}#medium-banner{width:100%;max-height:500px;position:relative;background-attachment:scroll;background-size:cover;background-repeat:no-repeat;padding:130px 0 60px}#medium-banner.thankyou{background-image:url("/assets/images/global/global-thankyou-bg.jpg")}#medium-banner.thankyou .row{margin-top:130px}#medium-banner.error{background-image:url("/assets/images/global/global-error-bg.jpg")}#medium-banner.error .row{margin-top:60px}#medium-banner.heading-corporate-homepage{background-image:url("/assets/images/corporate/homepage-heading-bg.jpg")}#medium-banner.heading-corporate-history{background-image:url("/assets/images/corporate/history/corporate-history-heading-bg.jpg");background-size:cover}#medium-banner.heading-corporate-awards{background-image:url("/assets/images/corporate/awards/corporate-awards-bg.jpg")}#medium-banner.heading-corporate-testimonials{background-image:url("/assets/images/corporate/testimonial/testimonial-heading-bg.jpg");background-position:center bottom}#medium-banner.heading-corporate-press{background-image:url("/assets/images/corporate/corporate-press-release-bg.jpg");background-position:center bottom}#medium-banner.heading-corporate-newsletter{background-image:url("/assets/images/corporate/corporate-newsletter-bg.jpg");background-position:center bottom}#medium-banner.heading-corporate-reseller{background-image:url("/assets/images/corporate/reseller/corporate-reseller-bg.jpg");background-position:center bottom}#medium-banner.heading-corporate-contact{background-image:url("/assets/images/corporate/corporate-contact-bg.jpg");background-position:center -40px}#medium-banner.heading-corporate-careers{background-image:url("/assets/images/corporate/corporate-career-bg.jpg");background-position:center bottom}#hero{width:100%;background-attachment:scroll;background-repeat:no-repeat;background-position:center top;position:relative;padding:140px 0 70px;top:0px;left:0px;transform:none}#hero .row{padding-top:0px;position:static;transform:none}#hero.home-banner{background-image:url("/assets/images/home/home-banner-bg@2x.jpg");padding-top:90px}#hero.home-banner .row{padding:0px}#hero.home-banner .column-5{width:33%}#hero.home-banner .column-5 img{display:block}#hero.home-banner .cta{padding:15px 0}#hero.home-banner .cta a{display:inline-block;font-size:1.125rem}#hero.home-banner .cta a span{font-size:1.125rem}#hero.home-banner .cta a:nth-child(2){margin-left:40px}#hero.heading-index{background-image:url("/assets/images/home/home-heading-bg.jpg")}#hero.heading-service-homepage{background-image:url("/assets/images/services/homepage/homepage-heading-bg.jpg")}#hero.heading-service-mobile{background-image:url("/assets/images/services/mobile/mobile-heading-bg.jpg")}#hero.heading-service-website{background-image:url("/assets/images/services/website/web-heading-bg.jpg")}#hero.heading-service-enterprise{background-image:url("/assets/images/services/enterprise/enterprise-heading-bg.jpg")}#hero.heading-services-custom{background-image:url("/assets/images/services/custom/custom-heading-bg.jpg")}#hero.homepage-crosslight{background-image:url("/assets/images/crosslight/crosslight-homepage-heading-bg.jpg")}#hero.heading-whatsnew-crosslight{background-image:url("/assets/images/crosslight/whatsnew/whatsnew-bg-1.jpg")}#hero.heading-whatsnew-crosslight-v4{background-image:url("/assets/images/crosslight/whatsnew/2015r1/whatsnew-2015r1-heading-bg.jpg");background-position:center bottom}#hero.heading-foundation-crosslight{background-image:url("/assets/images/crosslight/foundation/crosslight-foundation-heading-bg.jpg")}#hero.heading-ios-crosslight{background-image:url("/assets/images/crosslight/ios/crosslight-ios-heading-bg.jpg")}#hero.heading-ios-crosslight .free-flow-left{top:132px;right:0px}#hero.heading-android-crosslight{background-image:url("/assets/images/crosslight/android/android-heading-bg.jpg")}#hero.heading-winphone-crosslight{background-image:url("/assets/images/crosslight/winphone/winphone-heading-bg.jpg")}#hero.heading-winstore-crosslight{background-image:url("/assets/images/crosslight/winstore/winstore-heading-bg.jpg")}#hero.heading-index-webui{background-image:url("/assets/images/webui/homepage/bg-webui.jpg");background-size:100% 900px;background-color:#f2f2f2}#hero.heading-request-trial{background-image:url("/assets/images/global/requestrial-bg.jpg");background-position:left top;background-size:100% auto;padding:100px 0 60px}#hero.heading-getstarted{background-image:url("/assets/images/getstarted/getstarted-bg.jpg");background-position:left top;background-size:cover;padding:180px 0 60px}#hero.heading-webgrid{background-image:url("/assets/images/webui/webgrid/webgrid-heading-bg.jpg")}#hero.heading-webcombo{background-image:url("/assets/images/webui/webcombo/webcombo-heading-bg.jpg")}#hero.heading-webinput{background-image:url("/assets/images/webui/webinput/webinput-heading-bg.jpg")}#hero.heading-webdesktop{background-image:url("/assets/images/webui/webdesktop/webdesktop-heading-bg.jpg")}#hero.heading-webscheduler{background-image:url("/assets/images/webui/webscheduler/webscheduler-heading-bg.jpg")}#hero.heading-webessentials{background-image:url("/assets/images/webui/webessentials/webessentials-heading-bg.jpg")}#hero.heading-webtexteditor{background-image:url("/assets/images/webui/webtexteditor/webtexteditor-heading-bg.jpg")}#hero.heading-webtreeview{background-image:url("/assets/images/webui/webtreeview/webtreeview-heading-bg.jpg")}#hero.heading-index-clientui{background-image:url("/assets/images/clientui/homepage/homepage-heading-bg.jpg")}#hero.heading-whatsnew-clientui{background-image:url("/assets/images/clientui/whatsnew/clientui-whatsnew-heading-bg.jpg")}#hero.heading-clientui-architecture{background-image:url("/assets/images/clientui/architecture/architecture-heading-bg.jpg")}#hero.heading-clientui-controls{background-image:url("/assets/images/clientui/controls/controls-heading-bg.jpg")}#hero.heading-clientui-benefits{background-image:url("/assets/images/clientui/benefits/benefits-heading-bg.jpg")}#hero.heading-clientui-dvx{background-image:url("/assets/images/clientui/dvx/devx-heading-bg.jpg")}#hero.heading-clientui-ux{background-image:url("/assets/images/clientui/ux/ux-heading-bg.jpg")}#hero.heading-clientui-showcase{background-image:url("/assets/images/clientui/showcase/showcase-heading-bg.jpg")}#hero.heading-clientui-compare{background-image:url("/assets/images/clientui/compare/compare-bg.jpg")}#hero.heading-clientui-getstarted{background-image:url("/assets/images/clientui/getstarted/getstarted-heading-bg.jpg")}#hero.heading-404page{background-image:url("/assets/images/global/404-bg.jpg");height:100%;padding:120px 0 70px}#hero.heading-studycase-traknus{background-image:url("/assets/images/studycase/traknus/trs-heading-bg.jpg");background-position:center bottom;min-height:100%}#hero.heading-studycase-extendasp{background-image:url("/assets/images/studycase/extendasp/extendasp-heading-bg.png");background-position:left bottom;min-height:100%}#hero.heading-studycase-dnanews{background-image:url("/assets/images/studycase/dnanews/banner-dna.png");background-position:left bottom;min-height:100%}#hero.heading-studycase-navcore{background-image:url("/assets/images/studycase/navcore/Navcore-heading-bg.jpg");background-position:left bottom;min-height:100%}#hero.heading-studycase-volvo{background-image:url("/assets/images/studycase/volvo/banner-volvo.jpg");background-position:left bottom;min-height:100%}#hero.heading-studycase-loran{background-image:url("/assets/images/studycase/loran/bg-loran.png");background-position:left bottom;min-height:100%}#hero.heading-studycase-verizon{background-image:url("/assets/images/studycase/verizon/bg-verizon.png");background-position:right bottom;min-height:100%}#hero.heading-studycase-meridian{background-image:url("/assets/images/studycase/meridian/bg-meridian.png");background-position:right bottom;min-height:100%}#hero.heading-studycase-aab{background-image:url("/assets/images/studycase/aab/aab-heading-bg.jpg");background-position:left bottom;min-height:100%}#hero.heading-studycase-premhouse{background-image:url("/assets/images/studycase/premhouse/bg-heading-premhouse.jpg");min-height:100%}#hero.allproducts{padding:90px 0 70px}section{padding:70px 0;width:100%}section.boxed-section{height:auto;padding:8px 16px}section.boxed-section .text-uppercase{letter-spacing:0.08rem;font-weight:bold}section.boxed-section .box{position:relative;height:100%;padding:35px 20px;overflow:hidden;border-radius:10px}section.boxed-section .box>.row,section.boxed-section .box .box-action{position:relative;z-index:2}section.boxed-section .box .box-background{z-index:1}section.boxed-section .box .box-left-info{margin-bottom:35px}section.boxed-section .box .box-left-info img{max-height:60px;margin:0}section.boxed-section .box .box-left-info h3{margin-top:6px;margin-bottom:16px}section.boxed-section .box .box-left-info h6{margin:0}section.boxed-section .box .box-background{position:relative}section.boxed-section .box .box-background img{margin:0}section.boxed-section .box .box-background .background-business{text-align:center;white-space:nowrap;transform:translateY(20%)}section.boxed-section .box .box-background .background-business img{max-width:60%}section.boxed-section .box .box-background .background-business img:last-child{margin-left:-25%}section.boxed-section .box .box-background .background-tools{white-space:nowrap;transform:translate(-5%, 10%)}section.boxed-section .box .box-background .background-tools img:nth-child(1){max-width:50%}section.boxed-section .box .box-background .background-tools img:nth-child(2){max-width:35%;margin-left:-19%;transform:translateY(36%)}section.boxed-section .box .box-background .background-tools img:nth-child(3){max-width:25%;margin-left:-24%;transform:translateY(-21%)}section.boxed-section .box .box-background .background-tools img:nth-child(4){max-width:50%;margin-left:-10%;transform:translateY(8%)}section.boxed-section .box .box-background .background-app{text-align:center;transform:translateY(10%)}section.boxed-section .box .box-background .background-app img{max-width:40%}section.boxed-section .box .box-action{margin-top:70px}section.boxed-section .box .box-action .button-material-new{-webkit-box-shadow:0px 6px 24px 0px rgba(0,0,0,0.2);-moz-box-shadow:0px 6px 24px 0px rgba(0,0,0,0.2);box-shadow:0px 6px 24px 0px rgba(0,0,0,0.2)}section.boxed-section .box .box-action .button-material-new:hover{-webkit-box-shadow:0px 6px 26px 0px rgba(0,0,0,0.1);-moz-box-shadow:0px 6px 26px 0px rgba(0,0,0,0.1);box-shadow:0px 6px 26px 0px rgba(0,0,0,0.1)}section.boxed-section .box .icon-info{text-align:center;margin-bottom:32px}section.boxed-section .box .icon-info img{margin:0;max-height:80px}section.boxed-section .box.light-blue-gradient{background-image:linear-gradient(to bottom, #daefff, #a2d3fc)}section.boxed-section .box.dark-blue-gradient{background-image:linear-gradient(to bottom, #272fb8, #005ed0)}section.boxed-section .box.dark-blue-gradient h1,section.boxed-section .box.dark-blue-gradient h2,section.boxed-section .box.dark-blue-gradient h3,section.boxed-section .box.dark-blue-gradient h4,section.boxed-section .box.dark-blue-gradient h5,section.boxed-section .box.dark-blue-gradient h6{color:white}section.boxed-section .box.dark-purple-gradient{background-image:linear-gradient(to bottom, #a301b9, #5b00c1)}section.boxed-section .box.dark-purple-gradient h1,section.boxed-section .box.dark-purple-gradient h2,section.boxed-section .box.dark-purple-gradient h3,section.boxed-section .box.dark-purple-gradient h4,section.boxed-section .box.dark-purple-gradient h5,section.boxed-section .box.dark-purple-gradient h6{color:white}section.light-bg{background:#f2f2f2;color:#333}section.light-bg h2,section.light-bg h3,section.light-bg h4,section.light-bg h5{color:#000}section.light-bg h5{color:#666}section.light-bg p{color:#333}section.oxfordblue-bg{background:#252e35;color:#fff}section.oxfordblue-bg h2,section.oxfordblue-bg h3,section.oxfordblue-bg h4,section.oxfordblue-bg h5{color:#fff}section.oxfordblue-bg p,section.oxfordblue-bg a{color:#fff}section.purple-bg,section.light-green-bg,section.green-bg,section.light-blue-bg,section.darkblue-bg,section.indigo-bg,section.orange-bg,section.brown-bg,section.red-bg,section.tosca-bg,section.grey-bg{background:#8e44ad;color:#fff}section.purple-bg h1,section.light-green-bg h1,section.green-bg h1,section.light-blue-bg h1,section.darkblue-bg h1,section.indigo-bg h1,section.orange-bg h1,section.brown-bg h1,section.red-bg h1,section.tosca-bg h1,section.grey-bg h1,section.purple-bg h2,section.light-green-bg h2,section.green-bg h2,section.light-blue-bg h2,section.darkblue-bg h2,section.indigo-bg h2,section.orange-bg h2,section.brown-bg h2,section.red-bg h2,section.tosca-bg h2,section.grey-bg h2,section.purple-bg h3,section.light-green-bg h3,section.green-bg h3,section.light-blue-bg h3,section.darkblue-bg h3,section.indigo-bg h3,section.orange-bg h3,section.brown-bg h3,section.red-bg h3,section.tosca-bg h3,section.grey-bg h3,section.purple-bg h4,section.light-green-bg h4,section.green-bg h4,section.light-blue-bg h4,section.darkblue-bg h4,section.indigo-bg h4,section.orange-bg h4,section.brown-bg h4,section.red-bg h4,section.tosca-bg h4,section.grey-bg h4,section.purple-bg h5,section.light-green-bg h5,section.green-bg h5,section.light-blue-bg h5,section.darkblue-bg h5,section.indigo-bg h5,section.orange-bg h5,section.brown-bg h5,section.red-bg h5,section.tosca-bg h5,section.grey-bg h5,section.purple-bg h6,section.light-green-bg h6,section.green-bg h6,section.light-blue-bg h6,section.darkblue-bg h6,section.indigo-bg h6,section.orange-bg h6,section.brown-bg h6,section.red-bg h6,section.tosca-bg h6,section.grey-bg h6{color:#fff}section.purple-bg p,section.light-green-bg p,section.green-bg p,section.light-blue-bg p,section.darkblue-bg p,section.indigo-bg p,section.orange-bg p,section.brown-bg p,section.red-bg p,section.tosca-bg p,section.grey-bg p,section.purple-bg a,section.light-green-bg a,section.green-bg a,section.light-blue-bg a,section.darkblue-bg a,section.indigo-bg a,section.orange-bg a,section.brown-bg a,section.red-bg a,section.tosca-bg a,section.grey-bg a{color:#fff}section.purple-bg .carousel-center-grid .owl-controls,section.light-green-bg .carousel-center-grid .owl-controls,section.green-bg .carousel-center-grid .owl-controls,section.light-blue-bg .carousel-center-grid .owl-controls,section.darkblue-bg .carousel-center-grid .owl-controls,section.indigo-bg .carousel-center-grid .owl-controls,section.orange-bg .carousel-center-grid .owl-controls,section.brown-bg .carousel-center-grid .owl-controls,section.red-bg .carousel-center-grid .owl-controls,section.tosca-bg .carousel-center-grid .owl-controls,section.grey-bg .carousel-center-grid .owl-controls,section.purple-bg .carousel-center-grid-service .owl-controls,section.light-green-bg .carousel-center-grid-service .owl-controls,section.green-bg .carousel-center-grid-service .owl-controls,section.light-blue-bg .carousel-center-grid-service .owl-controls,section.darkblue-bg .carousel-center-grid-service .owl-controls,section.indigo-bg .carousel-center-grid-service .owl-controls,section.orange-bg .carousel-center-grid-service .owl-controls,section.brown-bg .carousel-center-grid-service .owl-controls,section.red-bg .carousel-center-grid-service .owl-controls,section.tosca-bg .carousel-center-grid-service .owl-controls,section.grey-bg .carousel-center-grid-service .owl-controls{margin-top:0px}section.purple-bg .carousel-center-grid .owl-controls .owl-dot span,section.light-green-bg .carousel-center-grid .owl-controls .owl-dot span,section.green-bg .carousel-center-grid .owl-controls .owl-dot span,section.light-blue-bg .carousel-center-grid .owl-controls .owl-dot span,section.darkblue-bg .carousel-center-grid .owl-controls .owl-dot span,section.indigo-bg .carousel-center-grid .owl-controls .owl-dot span,section.orange-bg .carousel-center-grid .owl-controls .owl-dot span,section.brown-bg .carousel-center-grid .owl-controls .owl-dot span,section.red-bg .carousel-center-grid .owl-controls .owl-dot span,section.tosca-bg .carousel-center-grid .owl-controls .owl-dot span,section.grey-bg .carousel-center-grid .owl-controls .owl-dot span,section.purple-bg .carousel-center-grid-service .owl-controls .owl-dot span,section.light-green-bg .carousel-center-grid-service .owl-controls .owl-dot span,section.green-bg .carousel-center-grid-service .owl-controls .owl-dot span,section.light-blue-bg .carousel-center-grid-service .owl-controls .owl-dot span,section.darkblue-bg .carousel-center-grid-service .owl-controls .owl-dot span,section.indigo-bg .carousel-center-grid-service .owl-controls .owl-dot span,section.orange-bg .carousel-center-grid-service .owl-controls .owl-dot span,section.brown-bg .carousel-center-grid-service .owl-controls .owl-dot span,section.red-bg .carousel-center-grid-service .owl-controls .owl-dot span,section.tosca-bg .carousel-center-grid-service .owl-controls .owl-dot span,section.grey-bg .carousel-center-grid-service .owl-controls .owl-dot span{border:1px solid #fff}section.purple-bg .carousel-center-grid .owl-controls .owl-dot.active span,section.light-green-bg .carousel-center-grid .owl-controls .owl-dot.active span,section.green-bg .carousel-center-grid .owl-controls .owl-dot.active span,section.light-blue-bg .carousel-center-grid .owl-controls .owl-dot.active span,section.darkblue-bg .carousel-center-grid .owl-controls .owl-dot.active span,section.indigo-bg .carousel-center-grid .owl-controls .owl-dot.active span,section.orange-bg .carousel-center-grid .owl-controls .owl-dot.active span,section.brown-bg .carousel-center-grid .owl-controls .owl-dot.active span,section.red-bg .carousel-center-grid .owl-controls .owl-dot.active span,section.tosca-bg .carousel-center-grid .owl-controls .owl-dot.active span,section.grey-bg .carousel-center-grid .owl-controls .owl-dot.active span,section.purple-bg .carousel-center-grid-service .owl-controls .owl-dot.active span,section.light-green-bg .carousel-center-grid-service .owl-controls .owl-dot.active span,section.green-bg .carousel-center-grid-service .owl-controls .owl-dot.active span,section.light-blue-bg .carousel-center-grid-service .owl-controls .owl-dot.active span,section.darkblue-bg .carousel-center-grid-service .owl-controls .owl-dot.active span,section.indigo-bg .carousel-center-grid-service .owl-controls .owl-dot.active span,section.orange-bg .carousel-center-grid-service .owl-controls .owl-dot.active span,section.brown-bg .carousel-center-grid-service .owl-controls .owl-dot.active span,section.red-bg .carousel-center-grid-service .owl-controls .owl-dot.active span,section.tosca-bg .carousel-center-grid-service .owl-controls .owl-dot.active span,section.grey-bg .carousel-center-grid-service .owl-controls .owl-dot.active span,section.purple-bg .carousel-center-grid .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.purple-bg .carousel-center-grid .owl-controls .owl-dot.search-in.activate span,section.light-green-bg .carousel-center-grid .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.light-green-bg .carousel-center-grid .owl-controls .owl-dot.search-in.activate span,section.green-bg .carousel-center-grid .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.green-bg .carousel-center-grid .owl-controls .owl-dot.search-in.activate span,section.light-blue-bg .carousel-center-grid .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.light-blue-bg .carousel-center-grid .owl-controls .owl-dot.search-in.activate span,section.darkblue-bg .carousel-center-grid .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.darkblue-bg .carousel-center-grid .owl-controls .owl-dot.search-in.activate span,section.indigo-bg .carousel-center-grid .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.indigo-bg .carousel-center-grid .owl-controls .owl-dot.search-in.activate span,section.orange-bg .carousel-center-grid .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.orange-bg .carousel-center-grid .owl-controls .owl-dot.search-in.activate span,section.brown-bg .carousel-center-grid .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.brown-bg .carousel-center-grid .owl-controls .owl-dot.search-in.activate span,section.red-bg .carousel-center-grid .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.red-bg .carousel-center-grid .owl-controls .owl-dot.search-in.activate span,section.tosca-bg .carousel-center-grid .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.tosca-bg .carousel-center-grid .owl-controls .owl-dot.search-in.activate span,section.grey-bg .carousel-center-grid .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.grey-bg .carousel-center-grid .owl-controls .owl-dot.search-in.activate span,section.purple-bg .carousel-center-grid-service .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.purple-bg .carousel-center-grid-service .owl-controls .owl-dot.search-in.activate span,section.light-green-bg .carousel-center-grid-service .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.light-green-bg .carousel-center-grid-service .owl-controls .owl-dot.search-in.activate span,section.green-bg .carousel-center-grid-service .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.green-bg .carousel-center-grid-service .owl-controls .owl-dot.search-in.activate span,section.light-blue-bg .carousel-center-grid-service .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.light-blue-bg .carousel-center-grid-service .owl-controls .owl-dot.search-in.activate span,section.darkblue-bg .carousel-center-grid-service .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.darkblue-bg .carousel-center-grid-service .owl-controls .owl-dot.search-in.activate span,section.indigo-bg .carousel-center-grid-service .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.indigo-bg .carousel-center-grid-service .owl-controls .owl-dot.search-in.activate span,section.orange-bg .carousel-center-grid-service .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.orange-bg .carousel-center-grid-service .owl-controls .owl-dot.search-in.activate span,section.brown-bg .carousel-center-grid-service .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.brown-bg .carousel-center-grid-service .owl-controls .owl-dot.search-in.activate span,section.red-bg .carousel-center-grid-service .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.red-bg .carousel-center-grid-service .owl-controls .owl-dot.search-in.activate span,section.tosca-bg .carousel-center-grid-service .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.tosca-bg .carousel-center-grid-service .owl-controls .owl-dot.search-in.activate span,section.grey-bg .carousel-center-grid-service .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.grey-bg .carousel-center-grid-service .owl-controls .owl-dot.search-in.activate span{background:#fff}section.light-green-bg{background:#2ecc71}section.green-bg{background:#699f00}section.green-bg a{color:#dcf630}section.green-bg a:hover{text-decoration:underline}section.light-blue-bg{background:#03A9F4}section.darkblue-bg{background:#2980b9}section.indigo-bg{background:#215596}section.orange-bg{background:#e28e26}section.brown-bg{background:#45403C}section.red-bg{background:#c0392b}section.tosca-bg{background:#1abc9c}section.blue-grad-bg{background:-webkit-linear-gradient(-45deg, #0072bc, #1cd9d6);background:-o-linear-gradient(-45deg, #0072bc, #1cd9d6);background:-moz-linear-gradient(-45deg, #0072bc, #1cd9d6);background:linear-gradient(-45deg, #0072bc, #1cd9d6)}section.blue-grad-bg .hollow-light:hover{border:1px solid #1cd9d6}section.blue-grad-bg .hollow-light:active{border:1px solid #1cd9d6}section.blue-bg{background:#37a7db;color:#fff}section.blue-bg h1,section.blue-bg h2,section.blue-bg h3,section.blue-bg h4,section.blue-bg h5{color:#fff}section.blue-bg h5{color:#fff}section.blue-bg p{color:#fff}section.blue-bg .white-link h4{color:inherit}section.blue-bg .arrow{position:relative}section.blue-bg .arrow:before{content:url("/assets/images/webui/homepage/shadow.png");width:510px;height:17px;position:absolute;display:block;left:50%;margin-left:-255px;top:-70px;z-index:2}section.blue-bg .arrow:after{content:'';border:20px solid transparent;border-top:20px solid #fff;width:0px;height:0px;position:absolute;display:block;left:50%;margin-left:-20px;top:-70px;z-index:3}section.blue-bg .carousel-center-grid .owl-controls .owl-dot span,section.blue-bg .carousel-center-grid-service .owl-controls .owl-dot span{border:1px solid #fff}section.blue-bg .carousel-center-grid .owl-controls .owl-dot.active span,section.blue-bg .carousel-center-grid-service .owl-controls .owl-dot.active span,section.blue-bg .carousel-center-grid .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.blue-bg .carousel-center-grid .owl-controls .owl-dot.search-in.activate span,section.blue-bg .carousel-center-grid-service .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.blue-bg .carousel-center-grid-service .owl-controls .owl-dot.search-in.activate span{background:#fff}section.blue-bg .tabs,section.blue-bg .tabs-tryrequest,section.blue-bg .tabs.vertical.light{border-bottom:none}section.blue-bg .tabs .tab-title h5,section.blue-bg .tabs-tryrequest .tab-title h5{opacity:0.5;text-align:center;display:inline-block}section.blue-bg .tabs .tab-title a,section.blue-bg .tabs-tryrequest .tab-title a{border-bottom:0px}section.blue-bg .tabs .tab-title a:hover h5,section.blue-bg .tabs-tryrequest .tab-title a:hover h5{opacity:1;border-bottom:1px solid #fff;display:inline-block;padding:0px;padding-bottom:8px}section.blue-bg .tabs .tab-title.active a,section.blue-bg .tabs-tryrequest .tab-title.active a,section.blue-bg .tabs #univ-menu .menu-head .tab-title.search-in.activate a,#univ-menu .menu-head section.blue-bg .tabs .tab-title.search-in.activate a,section.blue-bg .tabs-tryrequest #univ-menu .menu-head .tab-title.search-in.activate a,#univ-menu .menu-head section.blue-bg .tabs-tryrequest .tab-title.search-in.activate a{border-bottom:0px}section.blue-bg .tabs .tab-title.active h5,section.blue-bg .tabs-tryrequest .tab-title.active h5,section.blue-bg .tabs #univ-menu .menu-head .tab-title.search-in.activate h5,#univ-menu .menu-head section.blue-bg .tabs .tab-title.search-in.activate h5,section.blue-bg .tabs-tryrequest #univ-menu .menu-head .tab-title.search-in.activate h5,#univ-menu .menu-head section.blue-bg .tabs-tryrequest .tab-title.search-in.activate h5{padding:0px;padding-bottom:8px;border-bottom:1px solid #fff;color:#fff;opacity:1}section.light-gradient-bg{background-color:#fff;background:#f5f5f5;background:-moz-linear-gradient(top, #f5f5f5 0%, #fff 100%);background:-webkit-gradient(left top, left bottom, color-stop(0%, #f5f5f5), color-stop(100%, #fff));background:-webkit-linear-gradient(top, #f5f5f5 0%, #fff 100%);background:-o-linear-gradient(top, #f5f5f5 0%, #fff 100%);background:-ms-linear-gradient(top, #f5f5f5 0%, #fff 100%);background:linear-gradient(to bottom, #f5f5f5 0%, #fff 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#f5f5f5', endColorstr='#ffffff', GradientType=0 )}section.light-gradient-bg-reverse{background-color:#fff;background:#f5f5f5;background:-moz-linear-gradient(top, #fff 0%, #f5f5f5 100%);background:-webkit-gradient(left top, left bottom, color-stop(0%, #fff), color-stop(100%, #f5f5f5));background:-webkit-linear-gradient(top, #fff 0%, #f5f5f5 100%);background:-o-linear-gradient(top, #fff 0%, #f5f5f5 100%);background:-ms-linear-gradient(top, #fff 0%, #f5f5f5 100%);background:linear-gradient(to bottom, #fff 0%, #f5f5f5 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f5f5f5', GradientType=0 )}section.lightgrey-bg{background:#e1e1e1;color:#333}section.lightgrey-bg h2,section.lightgrey-bg h3,section.lightgrey-bg h4,section.lightgrey-bg h5{color:#000}section.lightgrey-bg h5{color:#666}section.lightgrey-bg p{color:#333}section.white-bg{background-color:#fff;color:#555}section.white-bg h2,section.white-bg h3,section.white-bg h4,section.white-bg h5{color:#000}section.white-bg h5{color:#666}section.white-bg p{color:#555}section.white-bg.meticulously-designed{background:url("/assets/images/edm/crosslight-charting/meticulously-designed-bg.png") no-repeat center top;padding-top:470px}section.grey-bg{background-color:#34495e}section.grey-bg h1,section.grey-bg h2,section.grey-bg h3,section.grey-bg h4,section.grey-bg h5{color:#fff}section.grey-bg h5{color:#fff}section.grey-bg p{color:#efefef}section.webgrid-bg{background:#2195fb;background:-moz-linear-gradient(45deg, #2195fb 0%, #0d48a1 100%);background:-webkit-gradient(left bottom, right top, color-stop(0%, #2195fb), color-stop(100%, #0d48a1));background:-webkit-linear-gradient(45deg, #2195fb 0%, #0d48a1 100%);background:-o-linear-gradient(45deg, #2195fb 0%, #0d48a1 100%);background:-ms-linear-gradient(45deg, #2195fb 0%, #0d48a1 100%);background:linear-gradient(45deg, #2195fb 0%, #0d48a1 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#2195fb', endColorstr='#0d48a1', GradientType=1 );color:#fff}section.webgrid-bg h1,section.webgrid-bg h2,section.webgrid-bg h3,section.webgrid-bg h4,section.webgrid-bg h5,section.webgrid-bg h6,section.webgrid-bg span{color:#fff}section.webgrid-bg h5{color:#fff}section.webgrid-bg p{color:#fff}section.webgrid-bg .carousel-center-grid .owl-controls .owl-dot span,section.webgrid-bg .carousel-center-grid-service .owl-controls .owl-dot span{border:1px solid #fff}section.webgrid-bg .carousel-center-grid .owl-controls .owl-dot.active span,section.webgrid-bg .carousel-center-grid-service .owl-controls .owl-dot.active span,section.webgrid-bg .carousel-center-grid .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.webgrid-bg .carousel-center-grid .owl-controls .owl-dot.search-in.activate span,section.webgrid-bg .carousel-center-grid-service .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.webgrid-bg .carousel-center-grid-service .owl-controls .owl-dot.search-in.activate span{background:#fff}section.webcombo-bg{background:#33691e;background:-moz-linear-gradient(45deg, #33691e 0%, #8bc34a 100%);background:-webkit-gradient(left bottom, right top, color-stop(0%, #33691e), color-stop(100%, #8bc34a));background:-webkit-linear-gradient(45deg, #33691e 0%, #8bc34a 100%);background:-o-linear-gradient(45deg, #33691e 0%, #8bc34a 100%);background:-ms-linear-gradient(45deg, #33691e 0%, #8bc34a 100%);background:linear-gradient(45deg, #33691e 0%, #8bc34a 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#33691e', endColorstr='#8bc34a', GradientType=1 );color:#fff}section.webcombo-bg h1,section.webcombo-bg h2,section.webcombo-bg h3,section.webcombo-bg h4,section.webcombo-bg h5,section.webcombo-bg h6,section.webcombo-bg span{color:#fff}section.webcombo-bg h5{color:#fff}section.webcombo-bg p{color:#fff}section.webcombo-bg .carousel-center-grid .owl-controls .owl-dot span,section.webcombo-bg .carousel-center-grid-service .owl-controls .owl-dot span{border:1px solid #fff}section.webcombo-bg .carousel-center-grid .owl-controls .owl-dot.active span,section.webcombo-bg .carousel-center-grid-service .owl-controls .owl-dot.active span,section.webcombo-bg .carousel-center-grid .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.webcombo-bg .carousel-center-grid .owl-controls .owl-dot.search-in.activate span,section.webcombo-bg .carousel-center-grid-service .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.webcombo-bg .carousel-center-grid-service .owl-controls .owl-dot.search-in.activate span{background:#fff}section.webinput-bg{background:#4a148c;background:-moz-linear-gradient(45deg, #4a148c 0%, #9c27b0 100%);background:-webkit-gradient(left bottom, right top, color-stop(0%, #4a148c), color-stop(100%, #9c27b0));background:-webkit-linear-gradient(45deg, #4a148c 0%, #9c27b0 100%);background:-o-linear-gradient(45deg, #4a148c 0%, #9c27b0 100%);background:-ms-linear-gradient(45deg, #4a148c 0%, #9c27b0 100%);background:linear-gradient(45deg, #4a148c 0%, #9c27b0 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#4a148c', endColorstr='#9c27b0', GradientType=1 );color:#fff}section.webinput-bg h1,section.webinput-bg h2,section.webinput-bg h3,section.webinput-bg h4,section.webinput-bg h5,section.webinput-bg h6,section.webinput-bg span{color:#fff}section.webinput-bg h5{color:#fff}section.webinput-bg p{color:#fff}section.webinput-bg .carousel-center-grid .owl-controls .owl-dot span,section.webinput-bg .carousel-center-grid-service .owl-controls .owl-dot span{border:1px solid #fff}section.webinput-bg .carousel-center-grid .owl-controls .owl-dot.active span,section.webinput-bg .carousel-center-grid-service .owl-controls .owl-dot.active span,section.webinput-bg .carousel-center-grid .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.webinput-bg .carousel-center-grid .owl-controls .owl-dot.search-in.activate span,section.webinput-bg .carousel-center-grid-service .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.webinput-bg .carousel-center-grid-service .owl-controls .owl-dot.search-in.activate span{background:#fff}section.webdesktop-bg{background:#3e2723;background:-moz-linear-gradient(45deg, #3e2723 0%, #795548 100%);background:-webkit-gradient(left bottom, right top, color-stop(0%, #3e2723), color-stop(100%, #795548));background:-webkit-linear-gradient(45deg, #3e2723 0%, #795548 100%);background:-o-linear-gradient(45deg, #3e2723 0%, #795548 100%);background:-ms-linear-gradient(45deg, #3e2723 0%, #795548 100%);background:linear-gradient(45deg, #3e2723 0%, #795548 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#3e2723', endColorstr='#795548', GradientType=1 );color:#fff}section.webdesktop-bg h1,section.webdesktop-bg h2,section.webdesktop-bg h3,section.webdesktop-bg h4,section.webdesktop-bg h5,section.webdesktop-bg h6,section.webdesktop-bg span{color:#fff}section.webdesktop-bg h5{color:#fff}section.webdesktop-bg p{color:#fff}section.webdesktop-bg .carousel-center-grid .owl-controls .owl-dot span,section.webdesktop-bg .carousel-center-grid-service .owl-controls .owl-dot span{border:1px solid #fff}section.webdesktop-bg .carousel-center-grid .owl-controls .owl-dot.active span,section.webdesktop-bg .carousel-center-grid-service .owl-controls .owl-dot.active span,section.webdesktop-bg .carousel-center-grid .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.webdesktop-bg .carousel-center-grid .owl-controls .owl-dot.search-in.activate span,section.webdesktop-bg .carousel-center-grid-service .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.webdesktop-bg .carousel-center-grid-service .owl-controls .owl-dot.search-in.activate span{background:#fff}section.webscheduler-bg{background:#e65100;background:-moz-linear-gradient(45deg, #e65100 0%, #f90 100%);background:-webkit-gradient(left bottom, right top, color-stop(0%, #e65100), color-stop(100%, #f90));background:-webkit-linear-gradient(45deg, #e65100 0%, #f90 100%);background:-o-linear-gradient(45deg, #e65100 0%, #f90 100%);background:-ms-linear-gradient(45deg, #e65100 0%, #f90 100%);background:linear-gradient(45deg, #e65100 0%, #f90 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#e65100', endColorstr='#ff9900', GradientType=1 );color:#fff}section.webscheduler-bg h1,section.webscheduler-bg h2,section.webscheduler-bg h3,section.webscheduler-bg h4,section.webscheduler-bg h5,section.webscheduler-bg h6,section.webscheduler-bg span{color:#fff}section.webscheduler-bg h5{color:#fff}section.webscheduler-bg p{color:#fff}section.webscheduler-bg .carousel-center-grid .owl-controls .owl-dot span,section.webscheduler-bg .carousel-center-grid-service .owl-controls .owl-dot span{border:1px solid #fff}section.webscheduler-bg .carousel-center-grid .owl-controls .owl-dot.active span,section.webscheduler-bg .carousel-center-grid-service .owl-controls .owl-dot.active span,section.webscheduler-bg .carousel-center-grid .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.webscheduler-bg .carousel-center-grid .owl-controls .owl-dot.search-in.activate span,section.webscheduler-bg .carousel-center-grid-service .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.webscheduler-bg .carousel-center-grid-service .owl-controls .owl-dot.search-in.activate span{background:#fff}section.webessentials-bg{background:#283493;background:-moz-linear-gradient(45deg, #283493 0%, #3f51b5 100%);background:-webkit-gradient(left bottom, right top, color-stop(0%, #283493), color-stop(100%, #3f51b5));background:-webkit-linear-gradient(45deg, #283493 0%, #3f51b5 100%);background:-o-linear-gradient(45deg, #283493 0%, #3f51b5 100%);background:-ms-linear-gradient(45deg, #283493 0%, #3f51b5 100%);background:linear-gradient(45deg, #283493 0%, #3f51b5 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#283493', endColorstr='#3f51b5', GradientType=1 );color:#fff}section.webessentials-bg h1,section.webessentials-bg h2,section.webessentials-bg h3,section.webessentials-bg h4,section.webessentials-bg h5,section.webessentials-bg h6,section.webessentials-bg span{color:#fff}section.webessentials-bg h5{color:#fff}section.webessentials-bg p{color:#fff}section.webessentials-bg .carousel-center-grid .owl-controls .owl-dot span,section.webessentials-bg .carousel-center-grid-service .owl-controls .owl-dot span{border:1px solid #fff}section.webessentials-bg .carousel-center-grid .owl-controls .owl-dot.active span,section.webessentials-bg .carousel-center-grid-service .owl-controls .owl-dot.active span,section.webessentials-bg .carousel-center-grid .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.webessentials-bg .carousel-center-grid .owl-controls .owl-dot.search-in.activate span,section.webessentials-bg .carousel-center-grid-service .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.webessentials-bg .carousel-center-grid-service .owl-controls .owl-dot.search-in.activate span{background:#fff}section.webtexteditor-bg{background:#004d40;background:-moz-linear-gradient(45deg, #004d40 0%, #009687 100%);background:-webkit-gradient(left bottom, right top, color-stop(0%, #004d40), color-stop(100%, #009687));background:-webkit-linear-gradient(45deg, #004d40 0%, #009687 100%);background:-o-linear-gradient(45deg, #004d40 0%, #009687 100%);background:-ms-linear-gradient(45deg, #004d40 0%, #009687 100%);background:linear-gradient(45deg, #004d40 0%, #009687 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#004d40', endColorstr='#009687', GradientType=1 );color:#fff}section.webtexteditor-bg h1,section.webtexteditor-bg h2,section.webtexteditor-bg h3,section.webtexteditor-bg h4,section.webtexteditor-bg h5,section.webtexteditor-bg h6,section.webtexteditor-bg span{color:#fff}section.webtexteditor-bg h5{color:#fff}section.webtexteditor-bg p{color:#fff}section.webtexteditor-bg .carousel-center-grid .owl-controls .owl-dot span,section.webtexteditor-bg .carousel-center-grid-service .owl-controls .owl-dot span{border:1px solid #fff}section.webtexteditor-bg .carousel-center-grid .owl-controls .owl-dot.active span,section.webtexteditor-bg .carousel-center-grid-service .owl-controls .owl-dot.active span,section.webtexteditor-bg .carousel-center-grid .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.webtexteditor-bg .carousel-center-grid .owl-controls .owl-dot.search-in.activate span,section.webtexteditor-bg .carousel-center-grid-service .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.webtexteditor-bg .carousel-center-grid-service .owl-controls .owl-dot.search-in.activate span{background:#fff}section.webtreeview-bg{background:#b71c1c;background:-moz-linear-gradient(45deg, #b71c1c 0%, #f44236 100%);background:-webkit-gradient(left bottom, right top, color-stop(0%, #b71c1c), color-stop(100%, #f44236));background:-webkit-linear-gradient(45deg, #b71c1c 0%, #f44236 100%);background:-o-linear-gradient(45deg, #b71c1c 0%, #f44236 100%);background:-ms-linear-gradient(45deg, #b71c1c 0%, #f44236 100%);background:linear-gradient(45deg, #b71c1c 0%, #f44236 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#b71c1c', endColorstr='#f44236', GradientType=1 );color:#fff}section.webtreeview-bg h1,section.webtreeview-bg h2,section.webtreeview-bg h3,section.webtreeview-bg h4,section.webtreeview-bg h5,section.webtreeview-bg h6,section.webtreeview-bg span{color:#fff}section.webtreeview-bg h5{color:#fff}section.webtreeview-bg p{color:#fff}section.webtreeview-bg .carousel-center-grid .owl-controls .owl-dot span,section.webtreeview-bg .carousel-center-grid-service .owl-controls .owl-dot span{border:1px solid #fff}section.webtreeview-bg .carousel-center-grid .owl-controls .owl-dot.active span,section.webtreeview-bg .carousel-center-grid-service .owl-controls .owl-dot.active span,section.webtreeview-bg .carousel-center-grid .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.webtreeview-bg .carousel-center-grid .owl-controls .owl-dot.search-in.activate span,section.webtreeview-bg .carousel-center-grid-service .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.webtreeview-bg .carousel-center-grid-service .owl-controls .owl-dot.search-in.activate span{background:#fff}section.polygon-webgrid,section.polygon-webcombo,section.polygon-webinput,section.polygon-webdesktop,section.polygon-webscheduler,section.polygon-webessentials,section.polygon-webtexteditor,section.polygon-webtreeview,section.polygon-isdatasource{background-image:url("/assets/images/background/bg-webgrid-subtle.jpg");background-size:100% auto;background-repeat:no-repeat;background-position:center top}section.polygon-webcombo{background-image:url("/assets/images/background/bg-webcombo-subtle.jpg")}section.polygon-webinput{background-image:url("/assets/images/background/bg-webinput-subtle.jpg")}section.polygon-webdesktop{background-image:url("/assets/images/background/bg-webdesktop-subtle.jpg")}section.polygon-webscheduler{background-image:url("/assets/images/background/bg-webscheduler-subtle.jpg")}section.polygon-webessentials{background-image:url("/assets/images/background/bg-webessentials-subtle.jpg")}section.polygon-webtexteditor{background-image:url("/assets/images/background/bg-webtexteditor-subtle.jpg")}section.polygon-webtreeview{background-image:url("/assets/images/background/bg-webtreeview-subtle.jpg")}section.polygon-isdatasource{background-image:url("/assets/images/background/bg-istadasource-subtle.jpg")}section.webui-whatsnew-bg{background-color:#313e52;background-image:url("/assets/images/background/bg-webui-whatsnew.jpg");background-size:100% auto;background-repeat:no-repeat;background-position:center top}section.image-bg{background-repeat:no-repeat;background-size:cover;background-attachment:scroll;background-position:center top}section.image-bg.build-right{background-image:url("/assets/images/services/homepage/homepage-build-right-section-bg.jpg")}section.image-bg.tailor-made{background-image:url("/assets/images/services/homepage/homepage-tailor-made-section-bg.jpg")}section.image-bg.delightful-apps{background-image:url("/assets/images/services/mobile/mobile-delightful-apps-bg.jpg")}section.image-bg.cross-platform-native-apps{background-image:url("/assets/images/services/mobile/mobile-cross-platform-native-bg.jpg")}section.image-bg.thoughtfully-designed{background-image:url("/assets/images/services/mobile/mobile-every-little-detail-bg.jpg")}section.image-bg.develop-with-agility{background-image:url("/assets/images/services/mobile/mobile-develop-with-agility-bg.jpg")}section.image-bg.all-around-integration{background-image:url("/assets/images/services/mobile/mobile-all-around-integration-bg.jpg")}section.image-bg.seeing-believing{background-image:url("/assets/images/services/website/web-seeing-is-believing-bg.jpg");background-position:center bottom}section.image-bg.future-proof{background-image:url("/assets/images/services/website/web-future-proof-bg.jpg");background-position:center bottom}section.image-bg.maximize-productivity{background-image:url("/assets/images/services/enterprise/enterprise-maximized-productivity-bg.jpg")}section.image-bg.smart-investment{background-image:url("/assets/images/services/enterprise/enterprise-the-right-investment-bg.jpg")}section.image-bg.better-experience{background-image:url("/assets/images/services/custom/custom-better-experience-bg.jpg")}section.image-bg.webui-action{background-image:url("/assets/images/webui/homepage/webui-cta-bg.jpg")}section.image-bg.webui-action a{text-align:center;color:#fff;display:block;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}section.image-bg.webui-action a span{font-size:90px;display:block;text-align:center;color:#fff;line-height:1;margin-bottom:10px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}section.image-bg.webui-action a:hover{color:#0072bc}section.image-bg.webui-action a:hover span{color:#0072bc}section.image-bg.clientui-action{background-image:url("/assets/images/clientui/clientui-cta-bg.jpg")}section.image-bg.clientui-action a{text-align:center;color:#fff;display:block;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}section.image-bg.clientui-action a span{font-size:90px;display:block;text-align:center;color:#fff;line-height:1;margin-bottom:10px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}section.image-bg.clientui-action a:hover{color:#0072bc}section.image-bg.clientui-action a:hover span{color:#0072bc}section.image-bg.clientui-action a.button-large,section.image-bg.clientui-action a.button-large-pill,section.image-bg.clientui-action a.button-material-new{display:inline-block;margin-bottom:0px}section.image-bg.clientui-action a.button-large span,section.image-bg.clientui-action a.button-large-pill span,section.image-bg.clientui-action a.button-material-new span{display:inline-block;font-size:1.125rem;margin-bottom:0px}section.image-bg.clientui-action a.button-large:hover,section.image-bg.clientui-action a.button-large-pill:hover,section.image-bg.clientui-action a.button-material-new:hover{color:#fff}section.image-bg.clientui-action a.button-large:hover span,section.image-bg.clientui-action a.button-large-pill:hover span,section.image-bg.clientui-action a.button-material-new:hover span{color:#fff}section.image-bg.mobile-charting{background-image:url("/assets/images/crosslight/whatsnew/2015r1/whatsnew-2015r1-2-bg.jpg");background-size:auto;background-position:center top;background-color:#fff;padding-top:300px}section.image-bg.mvvm-barcode{background-image:url("/assets/images/crosslight/whatsnew/2015r1/whatsnew-2015r1-3-bg.jpg");background-size:auto;background-position:right bottom;background-color:#787163}section.image-bg.best-enterprise-development{background-image:url("/assets/images/crosslight/whatsnew/2015r1/whatsnew-2015r1-4-bg.jpg");background-size:cover;background-position:right bottom;background-color:#323232}section.blur-bg-dark{background-color:#000;background-repeat:no-repeat;background-size:cover;background-attachment:fixed;background-position:center top;color:#fff}section.blur-bg-dark h2,section.blur-bg-dark h3,section.blur-bg-dark h4,section.blur-bg-dark h5{color:#fff}section.blur-bg-dark h5{color:#fff}section.blur-bg-dark p{color:#fff}section.blur-bg-dark.foundation-cta{background-image:url("/assets/images/crosslight/foundation/crosslight-cta-section-bg.jpg")}section.blur-bg-dark.ios-bg-2{background-image:url("/assets/images/crosslight/ios/crosslight-ios-bg-1.jpg")}section.blur-bg-dark.home-bg-2{background-image:url("/assets/images/default/study-case-bg.jpg")}section.blur-bg-dark.crosslight-bg-1{background-image:url("/assets/images/crosslight/crosslight-homepage-bg-1.jpg")}section.blur-bg-dark.crosslight-bg-2{background-image:url("/assets/images/crosslight/crosslight-homepage-bg-2.jpg")}section.blur-bg-dark.webui-whatsnew{background-image:url("/assets/images/webui/homepage/homepage-whatsnew-bg.jpg")}section.blur-bg-dark.clientui-bg-whatsnew{background-image:url("/assets/images/clientui/homepage/homepage-whatsnew-bg.jpg")}section.blur-bg-dark.free-quotation{background-image:url("/assets/images/services/homepage/homepage-cta-section-bg.jpg")}section.blur-bg-dark.traknus-cta{background-image:url("/assets/images/studycase/traknus/trs-cta-bg.jpg");background-position:center bottom;height:500px}section.blur-bg-dark.extendasp-cta{background-image:url("/assets/images/studycase/extendasp/extendasp-cta-bg.png");background-position:center bottom;height:500px}section.blur-bg-dark.premhouse-cta{background-image:url("/assets/images/studycase/premhouse/bg-premhouse-bottom.jpg");background-position:center -3px}section.blur-bg-light{background-color:#fff;background-repeat:no-repeat;background-size:cover;background-attachment:fixed;background-position:center top;color:#000}section.blur-bg-light h2,section.blur-bg-light h3,section.blur-bg-light h4,section.blur-bg-light h5{color:#000}section.blur-bg-light h5{color:#000}section.blur-bg-light p{color:#333}section.blur-bg-light.home-bg-1{background-image:url("/assets/images/default/bg-home-light-blurred-1.jpg")}section.blur-bg-light.whatsnew-bg-1{background-image:url("/assets/images/crosslight/whatsnew/whatsnew-bg-2.jpg")}section.blur-bg-light.satisfaction-guaranteed{background-image:url("/assets/images/services/homepage/homepage-satisfaction-guaranteed-bg.jpg")}section.gold-bg{background:#eee7db;text-align:left !important}section.gold-bg h2,section.gold-bg a{color:#ab9054;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}section.gold-bg a:hover{color:#775e27}section.gold-bg p{color:#333;text-align:left;min-height:46px}section.gold-bg .price-table{margin-bottom:35px}section.gold-bg .price-table table{border:none;background:transparent;width:100%}section.gold-bg .price-table table tr:nth-child(odd){background:#e5dbcc}section.gold-bg .price-table table tr:nth-child(even){background:transparent}section.gold-bg .price-table h5{margin-bottom:0px}section.gold-bg .owl-controls .owl-dots .owl-dot span{border:1px solid #ab9054}section.gold-bg .owl-controls .owl-dots .owl-dot.active span,section.gold-bg .owl-controls .owl-dots #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head section.gold-bg .owl-controls .owl-dots .owl-dot.search-in.activate span{border:1px solid #ab9054;background:#ab9054}section.navigation-bottom{border-top:1px solid #e1e1e1;padding:0px}section.navigation-bottom a{display:block;line-height:26px;padding:20px 0}section.navigation-bottom a p{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;display:inline-block;width:80%;margin:0px;line-height:26px;vertical-align:middle;color:#08c;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}section.navigation-bottom a span{display:inline-block;vertical-align:middle;color:#08c;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}section.navigation-bottom a:hover p,section.navigation-bottom a:hover span{color:#5cc3f6}section.navigation-bottom a.nextlink p{text-align:right}section.navigation-bottom a.nextlink span{margin-left:8px}section.navigation-bottom a.previouslink span{margin-right:8px}section.navigation-bottom span{position:relative;top:1px;display:inline-block}section.pattern-bg{background-repeat:repeat;background-position:left top;background-attachment:scroll}section.pattern-bg.crosslight{background-image:url("/assets/images/background/bg-pattern-crosslight.png")}.mini-footer,.mini-footer-global{background-image:url("/assets/images/default/bg-footer.jpg");background-attachment:fixed;background-size:cover;background-position:center top;padding:70px 0px 0px}.mini-footer .cta-footer a:hover span,.mini-footer-global .cta-footer a:hover span{color:#0072bc;border:1px solid #0072bc}.mini-docking-footer,.mini-docking-footer-dark{padding:10px 0;width:100%;position:fixed;bottom:0px}.mini-docking-footer .columns,.mini-docking-footer-dark .columns{text-align:center;padding-bottom:5px}.mini-docking-footer a,.mini-docking-footer-dark a{border:1px solid #fff;background:transparent;display:inline-block;width:32px;height:32px;margin-right:5px}.mini-docking-footer a span,.mini-docking-footer-dark a span{font-size:18px;color:#fff;text-align:center;vertical-align:middle;width:30px;height:30px;display:inline-block;position:relative;top:2px}.mini-docking-footer a .nav-icon,.mini-docking-footer-dark a .nav-icon{fill:#fff}.mini-docking-footer a:hover,.mini-docking-footer-dark a:hover{border:1px solid #0088cc}.mini-docking-footer a.social-facebook:hover,.mini-docking-footer-dark a.social-facebook:hover{border:1px solid #547bbe}.mini-docking-footer a.social-facebook:hover span,.mini-docking-footer-dark a.social-facebook:hover span{color:#547bbe}.mini-docking-footer a.social-twitter:hover,.mini-docking-footer-dark a.social-twitter:hover{border:1px solid #79cdf1}.mini-docking-footer a.social-twitter:hover span,.mini-docking-footer-dark a.social-twitter:hover span{color:#79cdf1}.mini-docking-footer a.social-linkedin:hover,.mini-docking-footer-dark a.social-linkedin:hover{border:1px solid #1f85c7}.mini-docking-footer a.social-linkedin:hover span,.mini-docking-footer-dark a.social-linkedin:hover span{color:#1f85c7}.mini-docking-footer a.social-youtube:hover,.mini-docking-footer-dark a.social-youtube:hover{border:1px solid #e9654c}.mini-docking-footer a.social-youtube:hover span,.mini-docking-footer-dark a.social-youtube:hover span{color:#e9654c}.mini-docking-footer a.social-wordpress:hover,.mini-docking-footer-dark a.social-wordpress:hover{border:1px solid #57adde}.mini-docking-footer a.social-wordpress:hover span,.mini-docking-footer-dark a.social-wordpress:hover span{color:#57adde}.mini-docking-footer span.copy,.mini-docking-footer-dark span.copy{font-size:14px;color:#fff;text-align:center;display:inline-block;line-height:32px}.mini-docking-footer a.tou,.mini-docking-footer-dark a.tou{border:0px;width:auto;height:auto;border-radius:none;margin:0px;padding:0px;font-size:14px;line-height:32px;color:#fff}.mini-docking-footer a.tou:hover,.mini-docking-footer-dark a.tou:hover{text-decoration:none;color:#0072bc}.mini-docking-footer .hamburger-icon,.mini-docking-footer-dark .hamburger-icon{padding-left:7px;padding-right:7px;padding-top:3px}.mini-docking-footer-dark{position:static}.mini-docking-footer-dark a{border:1px solid #000}.mini-docking-footer-dark a span{color:#000}.mini-docking-footer-dark a .nav-icon{fill:#000}.mini-docking-footer-dark span.copy{color:#000}.mini-docking-footer-dark a.tou{color:#000}.mini-footer-light{background:#e7e7e7;padding:70px 0px 0px}.mini-footer-light .cta-footer a{color:#333}.mini-footer-light .cta-footer a span{color:#333}.mini-footer-light .footer-links{background:#eee}.mini-footer-light .footer-links li a{border:1px solid #333}.mini-footer-light .footer-links li a span{color:#333}.mini-footer-light .footer-links li a .nav-icon{fill:#333}.mini-footer-light .footer-links li a.move-top{background:none}.mini-footer-light .footer-links span.copy,.mini-footer-light .footer-links span.tou{color:#333}.mini-footer-global{background-image:url("/assets/images/global/global-footer-bg.jpg")}.cta-footer{padding:35px 0px !important}.cta-footer a{text-align:center;color:#fff;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;display:block}.cta-footer a span{display:block;font-size:100px;text-align:center;color:#fff;line-height:1;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;margin-bottom:5px}.cta-footer a span.icon-medium-light-circle{font-size:30px;margin-bottom:0px;line-height:48px}.cta-footer a h5{text-align:center;color:#fff;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.cta-footer a:hover{color:#0072bc}.cta-footer a:hover span{color:#0072bc}.cta-footer a:hover h5{color:#0072bc}.footer-links{background:rgba(0,0,0,0.5);padding:15px 0}.footer-links li{padding:0px 20px}.footer-links li a{border:1px solid #fff;background:transparent;display:inline-block;width:32px;height:32px;margin-right:5px}.footer-links li a span{font-size:18px;color:#fff;text-align:center;vertical-align:middle;width:30px;height:30px;display:inline-block;position:relative;top:2px}.footer-links li a .nav-icon{fill:#fff}.footer-links li a.move-top{position:fixed;bottom:15px;right:20px;background:rgba(0,0,0,0.3);-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.footer-links li a.move-top:hover{background-color:transparent}.footer-links li a.move-top:hover span{color:#0088cc}.footer-links li a:hover{border:1px solid #0088cc}.footer-links li a.social-facebook:hover{border:1px solid #547bbe}.footer-links li a.social-facebook:hover span{color:#547bbe}.footer-links li a.social-twitter:hover{border:1px solid #79cdf1}.footer-links li a.social-twitter:hover span{color:#79cdf1}.footer-links li a.social-linkedin:hover{border:1px solid #1f85c7}.footer-links li a.social-linkedin:hover span{color:#1f85c7}.footer-links li a.social-youtube:hover{border:1px solid #e9654c}.footer-links li a.social-youtube:hover span{color:#e9654c}.footer-links li a.social-wordpress:hover{border:1px solid #57adde}.footer-links li a.social-wordpress:hover span{color:#57adde}.footer-links li span.copy{font-size:14px;color:#fff;text-align:center;line-height:32px}.footer-links li a.tou{border:0px;width:auto;height:auto;border-radius:none;margin:0px;padding:0px;font-size:14px;line-height:32px;color:#fff}.footer-links li a.tou:hover{text-decoration:none;color:#0072bc}.footer-links li .hamburger-icon{padding-left:7px;padding-right:7px;margin-right:45px;padding-top:2px}.sitemap-footer,.sitemap-footer-light{background:#1c2b36;padding-top:70px}.sitemap-footer ul,.sitemap-footer-light ul{list-style:none;margin-left:0px}.sitemap-footer ul li.phone a,.sitemap-footer-light ul li.phone a,.sitemap-footer ul li.email a,.sitemap-footer-light ul li.email a{display:block}.sitemap-footer ul li.phone a span,.sitemap-footer-light ul li.phone a span,.sitemap-footer ul li.email a span,.sitemap-footer-light ul li.email a span{width:20px;height:20px;display:inline-block;line-height:1.5;position:relative;top:2px}.sitemap-footer ul li.phone a span:before,.sitemap-footer-light ul li.phone a span:before,.sitemap-footer ul li.email a span:before,.sitemap-footer-light ul li.email a span:before{margin-right:10px}.sitemap-footer ul a,.sitemap-footer-light ul a{font-size:1rem;color:#7793a7;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.sitemap-footer ul a span.icon:before,.sitemap-footer-light ul a span.icon:before{font-size:1.25rem}.sitemap-footer ul a.tou,.sitemap-footer-light ul a.tou{color:#7793a7}.sitemap-footer ul a.tou:hover,.sitemap-footer-light ul a.tou:hover{color:#0072bc;text-decoration:none}.sitemap-footer ul a.social,.sitemap-footer-light ul a.social{font-size:1rem;border:1px solid #7793a7;background:transparent;display:inline-block;width:32px;height:32px;margin-right:5px;margin-bottom:10px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.sitemap-footer ul a.social span,.sitemap-footer-light ul a.social span{font-size:18px;color:#7793a7;text-align:center;vertical-align:middle;width:30px;height:30px;display:block;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.sitemap-footer ul a.social span:before,.sitemap-footer-light ul a.social span:before{vertical-align:middle}.sitemap-footer ul a:hover,.sitemap-footer-light ul a:hover{color:#fff}.sitemap-footer ul a.social-facebook:hover,.sitemap-footer-light ul a.social-facebook:hover{border:1px solid #547bbe}.sitemap-footer ul a.social-facebook:hover span,.sitemap-footer-light ul a.social-facebook:hover span{color:#547bbe}.sitemap-footer ul a.social-twitter:hover,.sitemap-footer-light ul a.social-twitter:hover{border:1px solid #79cdf1}.sitemap-footer ul a.social-twitter:hover span,.sitemap-footer-light ul a.social-twitter:hover span{color:#79cdf1}.sitemap-footer ul a.social-linkedin:hover,.sitemap-footer-light ul a.social-linkedin:hover{border:1px solid #1f85c7}.sitemap-footer ul a.social-linkedin:hover span,.sitemap-footer-light ul a.social-linkedin:hover span{color:#1f85c7}.sitemap-footer ul a.social-youtube:hover,.sitemap-footer-light ul a.social-youtube:hover{border:1px solid #e9654c}.sitemap-footer ul a.social-youtube:hover span,.sitemap-footer-light ul a.social-youtube:hover span{color:#e9654c}.sitemap-footer ul a.social-wordpress:hover,.sitemap-footer-light ul a.social-wordpress:hover{border:1px solid #57adde}.sitemap-footer ul a.social-wordpress:hover span,.sitemap-footer-light ul a.social-wordpress:hover span{color:#57adde}.sitemap-footer ul.namecard,.sitemap-footer-light ul.namecard{margin-bottom:35px;text-align:left}.sitemap-footer ul.media-social,.sitemap-footer-light ul.media-social{text-align:center}.sitemap-footer h6,.sitemap-footer-light h6{text-align:left;color:#5c798f}.sitemap-footer h6 a,.sitemap-footer-light h6 a{color:#5c798f}.sitemap-footer h6:hover a,.sitemap-footer-light h6:hover a{color:#0088cc}.sitemap-footer .is-footer,.sitemap-footer-light .is-footer{padding-bottom:15px;position:relative}.sitemap-footer .footer-links,.sitemap-footer-light .footer-links{background:rgba(0,0,0,0.3)}.sitemap-footer .footer-links span.copy,.sitemap-footer-light .footer-links span.copy,.sitemap-footer .footer-links span.tou,.sitemap-footer-light .footer-links span.tou{color:#7793a7}.sitemap-footer .footer-links a.move-top,.sitemap-footer-light .footer-links a.move-top{position:fixed;bottom:15px;right:20px;background:rgba(0,0,0,0.3);-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.sitemap-footer .footer-links a.hamburger-icon,.sitemap-footer-light .footer-links a.hamburger-icon{border:1px solid #7793a7;padding:2px 7px}.sitemap-footer .footer-links a.hamburger-icon .nav-icon,.sitemap-footer-light .footer-links a.hamburger-icon .nav-icon{fill:#7793a7}.sitemap-footer .footer-links a.hamburger-icon:hover,.sitemap-footer-light .footer-links a.hamburger-icon:hover{border:1px solid #fff}.sitemap-footer .footer-links a.hamburger-icon:hover .nav-icon,.sitemap-footer-light .footer-links a.hamburger-icon:hover .nav-icon{fill:#fff}.sitemap-footer-light{background:#e7e7e7}.sitemap-footer-light ul a{color:#333}.sitemap-footer-light ul a:hover{color:#0072bc}.sitemap-footer-light ul a.social{border:1px solid #333;color:#333}.sitemap-footer-light ul a.social span{color:#333}.sitemap-footer-light h6{color:#000}.sitemap-footer-light h6 a{color:#000}.sitemap-footer-light h6:hover a{color:#0072bc}.sitemap-footer-light .footer-links{background:#eee}.sitemap-footer-light .footer-links span.copy,.sitemap-footer-light .footer-links span.tou{color:#333}.sitemap-footer-light .footer-links a.hamburger-icon{border:1px solid #333}.sitemap-footer-light .footer-links a.hamburger-icon .nav-icon{fill:#333}.sitemap-footer-light .footer-links a.hamburger-icon:hover{border:1px solid #0072bc}.sitemap-footer-light .footer-links a.hamburger-icon:hover .nav-icon{fill:#0072bc}.sitemap-footer-light .footer-links a.move-top{position:fixed;bottom:15px;right:20px;background:transparent;border:1px solid #333;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.sitemap-footer-light .footer-links a.move-top span{color:#333}.sitemap-footer-light .footer-links a.move-top:hover{border:1px solid #0072bc}.sitemap-footer-light .footer-links a.tou{color:#333}.sitemap-footer-light .footer-links a.tou:hover{color:#0072bc}@media only screen{.mini-footer,.mini-footer-global{background-attachment:scroll}.footer-links li{text-align:center;width:100%;padding:15px 20px}.footer-links li a.move-top{position:static;display:inline-block}.footer-links li span.copy{display:inline}.footer-links li span.tou{font-size:14px;display:block;color:#fff;line-height:32px;text-align:left;white-space:nowrap}.footer-links li .hamburger-icon{padding-left:7px;padding-right:7px;margin-right:5px;padding-top:2px}.footer-links li:nth-child(3){text-align:center}.sitemap-footer ul.namecard,.sitemap-footer-light ul.namecard{text-align:center}.sitemap-footer .is-footer,.sitemap-footer-light .is-footer{width:80%;display:block;margin:20px auto}}@media only screen and (min-width: 40.063em){.sitemap-footer ul.namecard,.sitemap-footer-light ul.namecard{text-align:left}.sitemap-footer ul.media-social,.sitemap-footer-light ul.media-social{text-align:left}.sitemap-footer .is-footer,.sitemap-footer-light .is-footer{width:auto;display:inline-block;margin:auto}.footer-links li{float:left;padding:0px}.footer-links li span.copy{display:inline}.footer-links li span.tou{display:inline}.footer-links li:nth-child(1){text-align:center;padding:10px 0px;width:100%}.footer-links li:nth-child(2){text-align:left;padding-left:20px;width:75%}.footer-links li:nth-child(3){text-align:right;padding-right:20px;width:25%}.mini-docking-footer .columns,.mini-docking-footer-dark .columns{text-align:center;padding:5px 0}.mini-docking-footer .columns:nth-child(1),.mini-docking-footer-dark .columns:nth-child(1){text-align:left}.mini-docking-footer .columns:nth-child(3),.mini-docking-footer-dark .columns:nth-child(3){text-align:right}}@media only screen and (min-width: 64.063em){.footer-links li{width:33.3333%;padding:0px;text-align:center}.footer-links li:nth-child(1){padding:0px;width:25%;text-align:left;padding-left:20px}.footer-links li:nth-child(2){padding:0px;text-align:center;width:50%}.footer-links li:nth-child(3){padding:0px;width:25%;text-align:right;padding-right:20px}.sitemap-footer img.is-footer,.sitemap-footer-light img.is-footer{margin-top:0px}.sitemap-footer .is-footer,.sitemap-footer-light .is-footer{left:0;transform:none}}.mini-docking-footer a,.mini-docking-footer-dark a,.footer-links li a,.sitemap-footer ul a.social,.sitemap-footer-light ul a.social,#univ-menu .menu-footer .columns a.social,.modal .issocialbutton,.modal #recaptcha .recaptcha-tool a,.modal .recaptcha .recaptcha-tool a,.circular,span.icon-medium-dark-circle,span.icon-medium-light-circle,span.blue-number,.owl-controls .owl-dots .owl-dot span,.owl-controls .owl-dots .owl-dot.active span,.owl-controls .owl-dots #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head .owl-controls .owl-dots .owl-dot.search-in.activate span{-webkit-border-radius:50%;-moz-border-radius:50%;-o-border-radius:50%;border-radius:50%}#univ-menu.show-menu{visibility:visible;opacity:1;z-index:100;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;-webkit-transform:scale(1);-moz-transform:scale(1);-o-transform:scale(1);transform:scale(1);-webkit-transition-delay:.3s;transition-delay:.3s}.overlay{position:fixed;width:100%;height:100%;background:rgba(0,0,0,0.9);top:0px;left:0px;z-index:-1;visibility:hidden;opacity:0;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.overlay-white{position:fixed;width:100%;height:100%;top:0px;left:0px;z-index:-1;visibility:hidden;opacity:0;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;background:rgba(255,255,255,0.95)}.show-menu ~ .overlay-white{visibility:visible;opacity:1;z-index:50}.container{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;width:100%;height:100%;position:relative}#univ-menu{visibility:hidden;opacity:0;position:fixed;top:0px;left:0px;right:0px;bottom:0px;width:100%;min-height:100%;height:100%;z-index:-1;-webkit-overflow-scrolling:auto;-webkit-transform:scale(1);-moz-transform:scale(1);-o-transform:scale(1);transform:scale(1);-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}#univ-menu .menu-head{padding:10px 5px;text-align:left}#univ-menu .menu-head .icon{float:right;width:42px;height:42px;cursor:pointer;color:#333;font-size:1.5rem;display:inline-block;text-align:center;line-height:42px;margin-right:5px}#univ-menu .menu-head .icon:hover{color:#0088cc}#univ-menu .menu-head #close{font-size:2.625rem}#univ-menu .menu-head .search-in{width:42px;height:52px;float:right}#univ-menu .menu-head .search-in .searchform{top:5px;left:5px;width:100%}#univ-menu .menu-head .search-in.activate{width:70%}#univ-menu .menu-content{padding:0px;height:auto;overflow:visible}#univ-menu .menu-content span.icon-large{width:100px;height:100px;font-size:98px;line-height:100px;text-align:center;display:block;margin:0px auto;color:#333}#univ-menu .menu-content .product-link{display:block;text-align:center;color:#333;padding:0px;background:rgba(255,255,255,0);-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;border-radius:4px}#univ-menu .menu-content .product-link span{display:block}#univ-menu .menu-content .product-link span.ion-icon{position:relative;top:-14px;font-size:110px;height:128px}#univ-menu .menu-content .product-link span.ion-ios-cloud-download-outline{color:#0076ff}#univ-menu .menu-content .product-link span.ion-ios-star-outline{color:#ff3824}#univ-menu .menu-content .product-link img{width:auto;max-width:none}#univ-menu .menu-content .product-link:hover{background:rgba(255,255,255,0.6)}#univ-menu .menu-content .second-row,#univ-menu .menu-content .third-row{padding-top:35px;border-top:1px solid rgba(0,0,0,0.1)}#univ-menu .menu-content .second-row h5,#univ-menu .menu-content .third-row h5{text-align:left;color:#000}#univ-menu .menu-content .second-row a.store,#univ-menu .menu-content .third-row a.store{display:block;padding:10px 0}#univ-menu .menu-content .second-row a.store span,#univ-menu .menu-content .third-row a.store span{display:block;text-align:center;color:#333}#univ-menu .menu-content .second-row a.store:hover span,#univ-menu .menu-content .third-row a.store:hover span{color:#0088cc}#univ-menu .menu-content .second-row ul,#univ-menu .menu-content .third-row ul{list-style:none;margin:0px 0px 20px;padding:0px}#univ-menu .menu-content .second-row ul li,#univ-menu .menu-content .third-row ul li{padding:10px 0}#univ-menu .menu-content .second-row ul li a,#univ-menu .menu-content .third-row ul li a{color:#333;display:block;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}#univ-menu .menu-content .second-row ul li a:hover,#univ-menu .menu-content .third-row ul li a:hover{color:#0088cc}#univ-menu .menu-content .third-row{margin-top:35px;padding-top:0px}#univ-menu .menu-content .third-row .quick-link{padding:30px 0;display:block;text-align:center;color:#333;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}#univ-menu .menu-content .third-row .quick-link span{font-size:60px;display:block}#univ-menu .menu-content .third-row .quick-link img.universal-menu-icon{display:block;width:63px;margin-left:auto;margin-right:auto;margin-top:12px;margin-bottom:11px}#univ-menu .menu-content .third-row .quick-link:hover{color:#0088cc}#univ-menu .menu-content .third-row .quick-link:hover span{color:#0088cc}#univ-menu .menu-footer{position:relative;padding-top:35px;border-top:1px solid rgba(0,0,0,0.1);padding-bottom:35px}#univ-menu .menu-footer .columns{padding:10px 0px 0px;display:block;text-align:left}#univ-menu .menu-footer .columns a.social{border:1px solid #333;background:transparent;display:inline-block;width:32px;height:32px;margin-right:5px}#univ-menu .menu-footer .columns a.social span{font-size:18px;color:#333;text-align:center;vertical-align:middle;width:30px;height:30px;display:inline-block;position:relative;top:2px}#univ-menu .menu-footer .columns a.social-facebook:hover{border:1px solid #547bbe}#univ-menu .menu-footer .columns a.social-facebook:hover span{color:#547bbe}#univ-menu .menu-footer .columns a.social-twitter:hover{border:1px solid #79cdf1}#univ-menu .menu-footer .columns a.social-twitter:hover span{color:#79cdf1}#univ-menu .menu-footer .columns a.social-linkedin:hover{border:1px solid #1f85c7}#univ-menu .menu-footer .columns a.social-linkedin:hover span{color:#1f85c7}#univ-menu .menu-footer .columns a.social-youtube:hover{border:1px solid #e9654c}#univ-menu .menu-footer .columns a.social-youtube:hover span{color:#e9654c}#univ-menu .menu-footer .columns a.social-wordpress:hover{border:1px solid #57adde}#univ-menu .menu-footer .columns a.social-wordpress:hover span{color:#57adde}#univ-menu .menu-footer .columns span.copy{font-size:14px;color:#333;display:block;line-height:32px}#univ-menu .menu-footer .columns:last-child p{margin:0px;padding:0px;font-size:14px;color:#333}#univ-menu .menu-footer .columns:last-child p a{color:#333;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}#univ-menu .menu-footer .columns:last-child p a:hover{color:#0088cc}.modal{visibility:hidden;opacity:0;color:#fff;z-index:-1;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;position:fixed !important;width:100%;top:0px;left:0px;min-height:100%;height:100%;overflow-y:scroll;overflow-x:hidden;-webkit-transform:scale(1.4);-moz-transform:scale(1.4);transform:scale(1.4)}.modal .modal-content{width:380px;margin:auto;position:relative;margin-top:80px;margin-bottom:80px}.modal .modal-content .modal-item{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;-webkit-transform:scale(1.4);-moz-transform:scale(1.4);transform:scale(1.4);height:0px;overflow:hidden;visibility:hidden;opacity:0}.modal .modal-content .modal-item.active,.modal .modal-content #univ-menu .menu-head .modal-item.search-in.activate,#univ-menu .menu-head .modal .modal-content .modal-item.search-in.activate{-webkit-transform:scale(1);-moz-transform:scale(1);transform:scale(1);height:auto;overflow:visible;visibility:visible;opacity:1}.modal.active,#univ-menu .menu-head .modal.search-in.activate{z-index:53;opacity:1;visibility:visible;-webkit-transform:scale(1);-moz-transform:scale(1);transform:scale(1)}.modal .close-modal{position:fixed;right:0px;top:0px;font-size:2rem;color:#333;display:block;padding-top:20px;padding-right:20px}.modal .close-modal span{width:32px;height:32px;line-height:32px;display:block;text-align:center}.modal .close-modal:hover span{color:#0088cc}.modal .icon-large{font-size:80px;border:2px solid #333;color:#333;display:block;padding:10px;width:100px;height:100px;text-align:center;margin:0 auto 20px}.modal .icon-large:before{display:block}.modal .login-field{background:rgba(255,255,255,0.8);box-shadow:0px 0px 5px rgba(0,0,0,0.2);-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:0px 20px;position:relative;margin-bottom:1rem}.modal .login-field input[type="text"],.modal .login-field input[type="password"]{background:transparent;border:none;height:60px;color:#666;margin:0px;font-size:1rem;box-shadow:none;border-bottom:1px solid #ccc}.modal .login-field input[type="password"]{border-bottom:0px}.modal .login-field .submit-login-button{position:absolute;right:20px;bottom:15px}.modal .login-field .submit-login-button .icon{font-size:24px;color:#000;border:1px solid #000;width:30px;height:30px;text-align:center;display:block;padding:3px}.modal .login-field .submit-login-button .icon:before{display:block}.modal .login-field .submit-login-button .icon:hover{color:#00629d;border:#00629d 1px solid}.modal .input-login{height:60px;padding:0px 30px;background:transparent;border:1px solid #333;-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;border-radius:4px;font-family:"myriad_set_protext","Lucida Grande",Helvetica,sans-serif;font-size:1rem;color:#666}.modal .input-login::-webkit-input-placeholder{color:#999}.modal .input-login:-moz-placeholder{color:#999}.modal .input-login::-moz-placeholder{color:#999}.modal .input-login:-ms-input-placeholder{color:#999}.modal .input-login:focus{background:rgba(255,255,255,0.5)}.modal .input-login.error-input{border:1px solid #cf0000;background:rgba(207,0,0,0.2);color:#fff}.modal .input-login.error-input::-webkit-input-placeholder{color:#fff}.modal .input-login.error-input:-moz-placeholder{color:#fff}.modal .input-login.error-input::-moz-placeholder{color:#fff}.modal .input-login.error-input:-ms-input-placeholder{color:#fff}.modal .input-login.blogname{width:250px;display:inline-block;margin-right:10px}.modal .input-login.blogname+span{display:inline-block;color:#333}.modal .textseparator{border-top:1px solid #666;padding-top:20px;margin-top:20px;text-align:center}.modal .checkbox-field{text-align:left;padding-left:5px;padding-right:5px;padding-bottom:40px;position:relative}.modal .checkbox-field input[type="checkbox"]{margin:0px;line-height:24px;display:inline-block;vertical-align:top;margin:5px 0}.modal .checkbox-field span{color:#333;margin-left:8px;font-size:1rem;text-align:left;display:inline-block;width:550px}.modal span.hairline{display:block;border-top:1px solid #666;position:relative;transform:translateY(13px)}.modal .issocialbutton{font-size:1rem;border:1px solid #333;background:transparent;display:inline-block;width:50px;height:50px;margin-right:5px;margin-bottom:10px;margin-top:10px;padding:10px}.modal .issocialbutton a{display:block}.modal .issocialbutton .icon{width:50px;height:50px;text-align:center;vertical-align:middle;display:inline;line-height:30px;color:#333;font-size:30px}.modal .issocialbutton .openid{position:relative;width:30px;height:30px}.modal .issocialbutton #openID-logo{width:26px;height:26px}.modal .issocialbutton .open-id{fill:#333}.modal .social-facebook:hover{border:1px solid #547bbe}.modal .social-facebook:hover span{color:#547bbe}.modal .social-twitter:hover{border:1px solid #79cdf1}.modal .social-twitter:hover span{color:#79cdf1}.modal .social-googleplus:hover{border:1px solid #DA4735}.modal .social-googleplus:hover span{color:#DA4735}.modal .social-openid:hover{border:1px solid #F68423}.modal .social-openid:hover .open-id{fill:#F68423}.modal .social-yahoo:hover{border:1px solid #640F6C}.modal .social-yahoo:hover span{color:#640F6C}.modal .social-wordpress:hover{border:1px solid #00405A}.modal .social-wordpress:hover span{color:#00405A}.modal .dialog-footer{margin-top:30px;color:#333}.modal .dialog-footer p{color:#333;font-size:16px;text-align:center}.modal .row-dialogcontent{overflow:hidden}.modal .column-1{width:100%;padding:0px 5px;position:relative}.modal .column-2{float:left;width:50%;padding:0px 5px;position:relative}.modal .password-indicator{margin:0px;position:absolute;right:15px;top:23px}.modal .loading-circle{position:relative;top:1px;left:1px;margin:0px}.modal .loading-content{display:inline-block;padding:10px 20px;background:#fff;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0px 0px 5px rgba(0,0,0,0.2);-moz-box-shadow:0px 0px 5px rgba(0,0,0,0.2);box-shadow:0px 0px 5px rgba(0,0,0,0.2);margin:5px auto}.modal .loading-content img{margin:0px;margin-right:10px}.modal .loading-content span{color:#333}.modal .warningbox,.modal .errorbox,.modal .statusbox,.modal .successbox{background:#fff;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0px 0px 5px rgba(0,0,0,0.2);-moz-box-shadow:0px 0px 5px rgba(0,0,0,0.2);box-shadow:0px 0px 5px rgba(0,0,0,0.2);width:100%;display:table;overflow:hidden;margin-bottom:40px}.modal .warningbox .badge,.modal .errorbox .badge,.modal .statusbox .badge,.modal .successbox .badge{background:#F69A0B;display:table-cell;width:70px;vertical-align:top}.modal .warningbox .badge span,.modal .errorbox .badge span,.modal .statusbox .badge span,.modal .successbox .badge span{display:block;margin:20px auto;width:32px;height:32px;line-height:32px;font-size:32px;color:#cc7a00;text-align:center}.modal .warningbox .boxcontent,.modal .errorbox .boxcontent,.modal .statusbox .boxcontent,.modal .successbox .boxcontent{display:table-cell;padding:20px 15px}.modal .warningbox .boxcontent h5,.modal .errorbox .boxcontent h5,.modal .statusbox .boxcontent h5,.modal .successbox .boxcontent h5{color:#000}.modal .warningbox .boxcontent span,.modal .errorbox .boxcontent span,.modal .statusbox .boxcontent span,.modal .successbox .boxcontent span{display:block;line-height:24px;color:#555}.modal .warningbox .boxcontent ul li,.modal .errorbox .boxcontent ul li,.modal .statusbox .boxcontent ul li,.modal .successbox .boxcontent ul li{color:#999}.modal .errorbox .badge{background:#E84C3D}.modal .errorbox .badge span{color:#ce2f21}.modal .statusbox .badge{background:#7EC4F5}.modal .statusbox .badge span{color:#54a3d8}.modal .successbox .badge{background:#8DC929}.modal .successbox .badge span{color:#6ea50e}.modal #recaptcha,.modal .recaptcha{border:1px solid #333;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;padding:20px;margin-bottom:1rem}.modal #recaptcha #recaptcha_image,.modal .recaptcha #recaptcha_image{display:inline-block;margin:0px;margin-right:10px;vertical-align:top;margin-bottom:10px}.modal #recaptcha #recaptcha_image img,.modal .recaptcha #recaptcha_image img{padding:0px;margin:0px}.modal #recaptcha #recaptcha_response_field,.modal .recaptcha #recaptcha_response_field{background:none;padding:0px 10px;box-shadow:none;border:0px;border-bottom:1px solid #333;font-family:"myriad_set_protext","Lucida Grande",Helvetica,sans-serif;outline:none;font-size:1rem}.modal #recaptcha .recaptcha-tool,.modal .recaptcha .recaptcha-tool{display:inline-block}.modal #recaptcha .recaptcha-tool a,.modal .recaptcha .recaptcha-tool a{display:block;font-size:1rem;border:1px solid #333;background:transparent;display:inline-block;width:50px;height:50px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;margin:0px;margin-right:5px}.modal #recaptcha .recaptcha-tool a:hover,.modal .recaptcha .recaptcha-tool a:hover{border:1px solid #0072bc}.modal #recaptcha .recaptcha-text,.modal .recaptcha .recaptcha-text{display:block;line-height:1.5;color:#333;padding:10px 0}.modal #recaptcha .icon-recaptcha,.modal .recaptcha .icon-recaptcha{width:50px;height:50px;text-align:center;vertical-align:middle;display:block;line-height:50px;color:#333;font-size:30px}.combobox-container:not(.combobox-selected) .glyphicon-remove{display:none}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid #000;border-right:4px solid transparent;border-left:4px solid transparent}.control-group.error .combobox-container .add-on{color:#B94A48;border-color:#B94A48}.control-group.error .combobox-container .caret{border-top-color:#B94A48}.control-group.warning .combobox-container .add-on{color:#C09853;border-color:#C09853}.control-group.warning .combobox-container .caret{border-top-color:#C09853}.control-group.success .combobox-container .add-on{color:#468847;border-color:#468847}.control-group.success .combobox-container .caret{border-top-color:#468847}.combobox-container{margin-bottom:1rem;vertical-align:top}.combobox-container .input-group{position:relative}.combobox-container .input-group ul.typeahead{list-style:none;-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;border-radius:4px;color:#333;border:1px solid #333;margin:5px 0px 0px;background:rgba(255,255,255,0.5)}.combobox-container .input-group ul.typeahead li:hover a,.combobox-container .input-group ul.typeahead li.active a,.combobox-container .input-group ul.typeahead #univ-menu .menu-head li.search-in.activate a,#univ-menu .menu-head .combobox-container .input-group ul.typeahead li.search-in.activate a{background:#0072bc;color:#fff}.combobox-container .input-group ul.typeahead a{color:#333;padding:10px 30px;display:block}.combobox-container .input-group .input-group-addon{position:absolute;top:0px;right:0px;padding:19px}input.combobox{margin:0px;height:60px;padding:0px 30px;background:transparent;border:1px solid #333;-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;border-radius:4px;font-family:"myriad_set_protext","Lucida Grande",Helvetica,sans-serif;font-size:1rem;color:#666}input.combobox:focus{background:rgba(255,255,255,0.5);color:#333}.warningbox,.modal .errorbox,.modal .statusbox,.modal .successbox,.errorbox,.statusbox,.successbox{background:#fff;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0px 0px 5px rgba(0,0,0,0.2);-moz-box-shadow:0px 0px 5px rgba(0,0,0,0.2);box-shadow:0px 0px 5px rgba(0,0,0,0.2);width:100%;display:table;overflow:hidden;margin-bottom:40px}.warningbox .badge,.errorbox .badge,.statusbox .badge,.successbox .badge{background:#F69A0B;display:table-cell;width:70px;vertical-align:top}.warningbox .badge span,.errorbox .badge span,.statusbox .badge span,.successbox .badge span{display:block;margin:20px auto;width:32px;height:32px;line-height:32px;font-size:32px;color:#cc7a00;text-align:center}.warningbox .boxcontent,.errorbox .boxcontent,.statusbox .boxcontent,.successbox .boxcontent{display:table-cell;padding:20px 15px}.warningbox .boxcontent h5,.errorbox .boxcontent h5,.statusbox .boxcontent h5,.successbox .boxcontent h5{color:#000}.warningbox .boxcontent span,.errorbox .boxcontent span,.statusbox .boxcontent span,.successbox .boxcontent span{display:block;line-height:24px;color:#555}.warningbox .boxcontent ul li,.errorbox .boxcontent ul li,.statusbox .boxcontent ul li,.successbox .boxcontent ul li{color:#999}.errorbox .badge{background:#E84C3D}.errorbox .badge span{color:#ce2f21}.statusbox .badge{background:#7EC4F5}.statusbox .badge span{color:#54a3d8}.successbox .badge{background:#8DC929}.successbox .badge span{color:#6ea50e}.loading-circle{position:relative;top:1px;left:1px;margin:0px}.loading-content{display:inline-block;padding:10px 20px;background:#fff;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;-webkit-box-shadow:0px 0px 5px rgba(0,0,0,0.2);-moz-box-shadow:0px 0px 5px rgba(0,0,0,0.2);box-shadow:0px 0px 5px rgba(0,0,0,0.2);margin:auto}.loading-content img{margin:0px;margin-right:10px}.loading-content span{color:#333}@media only screen{#univ-menu{overflow-y:scroll;overflow-x:hidden}#univ-menu .menu-head .search-in.activate{width:70%}#univ-menu .menu-content{padding:0px;overflow:initial;width:100%;height:100%;padding:0 20px}#univ-menu .menu-content .first-row .product-link{padding:15px}#univ-menu .menu-content .first-row .product-link img{margin:0px;width:100%}#univ-menu .menu-content .first-row .product-link span.icon-large{width:75px;height:75px;line-height:75px;font-size:75px}#univ-menu .menu-content .second-row .columns,#univ-menu .menu-content .third-row .columns{border-bottom:1px solid rgba(0,0,0,0.1)}#univ-menu .menu-content .second-row .columns:nth-child(2),#univ-menu .menu-content .third-row .columns:nth-child(2){padding-top:20px}#univ-menu .menu-content .second-row .columns:nth-child(3),#univ-menu .menu-content .third-row .columns:nth-child(3){padding-top:20px;border-bottom:none}#univ-menu .menu-content .third-row .columns{border-bottom:none;padding-top:0px !important}#univ-menu .menu-footer{padding-top:30px}#univ-menu .menu-footer .columns{text-align:center}.modal .close-modal{position:absolute}.modal .modal-content{width:100%;padding:0 20px}.modal .checkbox-field span{width:80%}.modal #recaptcha #recaptcha_widget{overflow:hidden}.modal #recaptcha #recaptcha_image img{width:100%}}@media only screen and (min-width: 40.063em){#univ-menu{overflow-y:scroll;overflow-x:hidden}#univ-menu .menu-head{padding:10px}#univ-menu .menu-head .icon{width:42px;height:42px}#univ-menu .menu-head .search-in{padding:10px 5px;width:42px}#univ-menu .menu-head .search-in .icon{width:32px;height:32px;padding:0px}#univ-menu .menu-head .search-in .searchform{top:8px;left:5px;width:100%}#univ-menu .menu-head .search-in.activate{width:30%}#univ-menu .menu-content{height:auto;margin:0 auto;position:static;transform:none;overflow:initial}#univ-menu .menu-content .first-row .columns{padding:5px 0px;text-align:center}#univ-menu .menu-content .first-row .columns .product-link{padding:10px 0;text-align:center}#univ-menu .menu-content .first-row .columns .product-link img{display:inline-block;width:100px;margin:0 auto}#univ-menu .menu-content .first-row .columns .product-link span{margin:0px;padding:0px;display:block}#univ-menu .menu-content .first-row .columns .product-link span.icon-large{margin:0px auto;display:block;width:100px;height:100px;line-height:100px;font-size:100px}#univ-menu .menu-content .second-row .columns,#univ-menu .menu-content .third-row .columns{border-bottom:none !important}#univ-menu .menu-content .second-row .columns:nth-child(2),#univ-menu .menu-content .third-row .columns:nth-child(2){padding-top:0px;border-right:1px solid rgba(0,0,0,0.1)}#univ-menu .menu-content .second-row ul li,#univ-menu .menu-content .third-row ul li{padding:5px 0}#univ-menu .menu-content .second-row ul li a,#univ-menu .menu-content .third-row ul li a{display:block}#univ-menu .menu-content .second-row ul li span,#univ-menu .menu-content .third-row ul li span{display:block;text-align:center;color:#333}#univ-menu .menu-content .third-row .columns:nth-child(2){border-right:none}#univ-menu .menu-footer{padding-top:30px}#univ-menu .menu-footer .columns{text-align:left}#univ-menu .menu-footer .columns:last-child{text-align:right}.modal .modal-content{width:600px;padding:0px}}@media only screen and (min-width: 64.063em){.overlay-white{background:rgba(255,255,255,0.7)}#univ-menu.show-menu{overflow-y:scroll;overflow-x:hidden}#univ-menu{-webkit-transform:scale(1.2);-moz-transform:scale(1.2);-o-transform:scale(1.2);transform:scale(1.2)}#univ-menu .menu-head{position:fixed;top:0px;width:100%;padding:10px 20px}#univ-menu .menu-head .search-in.activate{width:20%}#univ-menu .menu-content{padding:80px 0;width:70%;outline:none;overflow-x:hidden;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}#univ-menu .menu-content .row{width:675px}#univ-menu .menu-content .first-row .columns{padding:0px 5px}#univ-menu .menu-content .second-row ul,#univ-menu .menu-content .third-row ul{margin:0px}#univ-menu .menu-content .second-row ul li,#univ-menu .menu-content .third-row ul li{padding:0}#univ-menu .menu-content .second-row ul li a,#univ-menu .menu-content .third-row ul li a{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}#univ-menu .menu-content .second-row ul li a:hover,#univ-menu .menu-content .third-row ul li a:hover{color:#0088cc}#univ-menu .menu-footer{padding-top:30px}.modal #login,.modal #openid,.modal #wordpress,.modal #logintrial{width:380px;margin:0 auto}.modal #login .checkbox-field span,.modal #openid .checkbox-field span,.modal #wordpress .checkbox-field span,.modal #logintrial .checkbox-field span{width:340px}.modal .close-modal{position:fixed}.modal .checkbox-field span{width:550px}.modal #recaptcha #recaptcha_image img{width:auto}}.owl-carousel{display:none;width:100%;-webkit-tap-highlight-color:transparent;position:relative;z-index:1}.owl-carousel .owl-stage{position:relative;-ms-touch-action:pan-Y}.owl-carousel .owl-stage:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0}.owl-carousel .owl-stage-outer{position:relative;overflow:hidden;width:100%;-webkit-transform:translate3d(0px, 0px, 0px)}.owl-carousel .owl-controls .owl-nav .owl-prev,.owl-carousel .owl-controls .owl-nav .owl-next,.owl-carousel .owl-controls .owl-dot{cursor:pointer;cursor:hand;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel.owl-loaded{display:block}.owl-carousel.owl-loading{opacity:0;display:block}.owl-carousel.owl-hidden{opacity:0}.owl-carousel .owl-refresh .owl-item{display:none}.owl-carousel .owl-item{position:relative;min-height:1px;float:left;-webkit-backface-visibility:hidden;-webkit-tap-highlight-color:transparent;-webkit-touch-callout:none;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.owl-carousel .owl-item img{display:block;width:100%;-webkit-transform-style:preserve-3d}.owl-carousel.owl-text-select-on .owl-item{-webkit-user-select:auto;-moz-user-select:auto;-ms-user-select:auto;user-select:auto}.owl-carousel .owl-grab{cursor:move;cursor:-webkit-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.owl-carousel .owl-rtl{direction:rtl}.owl-carousel .owl-rtl .owl-item{float:right}.no-js .owl-carousel{display:block}.circle-legend{position:relative;padding-left:15px;margin-right:10px}.circle-legend::before{content:'';width:10px;height:10px;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;background:#f00;position:absolute;left:0px;top:50%;margin-top:-5px}.circle-legend.circle-blue::before{background-color:#48A0F4}.circle-legend.circle-green::before{background-color:#5DB63E}.circle-legend.circle-cyan::before{background-color:#05d7f8}.circle-legend.circle-gray::before{background-color:#b1b2b4}.legend{padding-top:50px}.legend.right-legend{position:relative}.legend.right-legend .winner{background:url(/assets/images/crosslight/why/icon-winner@2x.png) no-repeat center top;background-size:127px 33px;display:block;width:127px;top:0px;left:50%;margin-left:-63px;position:absolute;height:33px}.info-cost{margin-top:15px}.info-cost span{display:block}.info-cost span.num-highlight{font-size:32px;font-family:"myriad_set_proultralight","Lucida Grande",Helvetica,sans-serif;line-height:1;color:#000}.info-cost span.subheadline{color:#999}.info-cost span.price{margin-top:15px;color:#e91e63;font-size:24px;line-height:1.3}.circlesvg{position:absolute;margin-left:-61px;left:50%;margin-top:-1px;z-index:10}.circle-container{text-align:center;width:120px;height:120px;border:1px solid #e1e1e1;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;display:inline-block;padding-top:37px}.circle-container span{display:block}.circle-container span.num-highlight{font-size:32px;font-family:"myriad_set_proultralight","Lucida Grande",Helvetica,sans-serif;line-height:1;color:#000}.circle-container span.num-highlight span{display:inline-block}.timeframe-container{background-image:url("/assets/images/crosslight/why/timeframe-bg@2x.png");background-size:730px 405px;background-repeat:no-repeat;background-attachment:scroll;background-position:center center;width:730px;height:405px;margin:0 auto;position:relative}.timeframe-container .month-icon{color:#4c67a5;font-size:4.375rem;font-family:"myriad_set_proultralight","Lucida Grande",Helvetica,sans-serif;line-height:1;padding-right:65px;background:url("/assets/images/crosslight/why/icon-month@2x.png") no-repeat right 2px;background-size:50px 50px;display:inline-block}.timeframe-container .price{color:#e91e63;font-size:18px;display:inline-block}.timeframe-container .native-legend{width:303px;text-align:center;height:165px;padding-top:30px}.timeframe-container .crosslight-legend{width:303px;text-align:center;height:165px;padding-top:30px}.timeframe-container .crosslight-legend .month,.timeframe-container .crosslight-legend .crosslight-xamarin{width:130px;display:inline-block}.timeframe-container .crosslight-legend .icon{font-size:24px;line-height:100px;vertical-align:top;display:inline-block}.timeframe-container .crosslight-legend .winner{background:url(/assets/images/crosslight/why/icon-winner@2x.png) no-repeat center top;background-size:127px 33px;display:block;height:33px;margin-bottom:15px}.timeframe-container .timeframe-content{position:absolute;top:0px;left:303px}.timeframe-container .timeframe-content span{display:block;line-height:70px;text-align:center}.timeframe-container .timeframe-content .native{height:70px;display:block;margin:50px 0}.timeframe-container .timeframe-content .crosslight{height:70px;display:block;margin:100px 0}.filter-container{display:inline-block;position:relative}.filter-container .button-large-pill{margin-left:5px;margin-right:5px}.filter-container .button-large-pill .icon-right{line-height:20px}.filter-container:hover .button-large-pill{border:1px solid #0072bc;color:#0072bc}.filter-container:hover .callout-list{opacity:1;height:auto;visibility:visible;margin-top:0px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.close{opacity:0 !important;visibility:hidden !important;margin-top:10px !important;height:0px !important;overflow:hidden !important;padding:0px !important}.callout-list{margin-top:10px;opacity:0;height:0px;visibility:hidden;padding:15px 30px;background:#fff;border-radius:8px;box-shadow:0px 2px 10px rgba(0,0,0,0.2);position:absolute;z-index:10;width:300px;margin-left:0px;left:0px}.callout-list:before{position:absolute;top:-19px;margin-left:-10px;left:25%;content:'';width:0px;height:0px;border:10px solid transparent;border-bottom:10px solid #fff}.callout-list ul{margin:0px}.callout-list ul li{border-bottom:1px solid #e1e1e1}.callout-list ul li:last-child{border:none}.callout-list ul li span{cursor:pointer;display:block;padding:5px 0}.callout-list ul li span.active,.callout-list ul li #univ-menu .menu-head span.search-in.activate,#univ-menu .menu-head .callout-list ul li span.search-in.activate,.callout-list ul li span:hover{color:#0072bc}.callout-list ul,.callout-list li{list-style:none}.grid-contentbox{overflow:hidden;-webkit-border-radius:6px;-moz-border-radius:6px;-o-border-radius:6px;border-radius:6px;box-shadow:0px 2px 5px rgba(0,0,0,0.2);-webkit-transform:translate3d(0px, 0px, 0px);width:92%;margin:4%;height:389px;position:relative;top:0px;display:inline-block;background:transparent}.grid-contentbox .inner-grid{background:transparent;overflow:hidden;-webkit-border-radius:6px;-moz-border-radius:6px;-o-border-radius:6px;border-radius:6px;background:#333}.grid-contentbox img{width:100%;opacity:1;height:100%;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;-webkit-border-radius:6px;-moz-border-radius:6px;-o-border-radius:6px;border-radius:6px;margin:0px;padding:0px}.grid-contentbox .grid-info{padding:15px 20px 0px;background-color:#fff;position:absolute;bottom:0px;left:0px;width:100%;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.grid-contentbox .grid-info .grid-table{display:table;width:100%;margin-bottom:15px}.grid-contentbox .grid-info .grid-table .icon{width:65px;display:table-cell;padding-right:5px}.grid-contentbox .grid-info .grid-table .icon img{width:50px;height:auto;max-width:none;margin:0px}.grid-contentbox .grid-info .grid-table .content{display:table-cell;vertical-align:top}.grid-contentbox .grid-info .grid-table .content h5{margin:0px;color:#000;line-height:1.2;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;width:100%}.grid-contentbox .grid-info .grid-table .content span.product{color:#999;font-size:.875rem}.grid-contentbox .grid-info .grid-table .content span.product.crosslight{padding:0 5px}.grid-contentbox .grid-info .grid-table .content span.product.crosslight .icon-android{margin-right:5px;font-size:18px;color:#a4c639}.grid-contentbox .grid-info .grid-table .content span.product.crosslight .icon-ios{margin-right:5px;font-size:18px;color:#999}.grid-contentbox .grid-info .grid-table .content span.product.crosslight .icon-winphone{margin-right:5px;color:#e51400}.grid-contentbox .grid-info .grid-table .content span.product.crosslight .icon-win8{margin-right:5px;color:#1ba1e2}.grid-contentbox .grid-info .link a{margin-top:0px}.grid-contentbox:hover .inner-grid>img{opacity:0.8;filter:grayscale(100%);-webkit-filter:grayscale(100%)}.grid-contentbox:hover .grid-info{bottom:0px}.grid-contentbox:hover .grid-info .grid-table .content h5{white-space:normal;overflow:visible;text-overflow:clip}@media only screen and (min-width: 40.063em){.callout-list{left:0px;-webkit-transform:none;-moz-transform:none;transform:none;width:300px;margin-left:0px}.callout-list:before{margin-left:-10px;left:25%}.grid-contentbox{width:47%;margin:1%}}@media only screen and (min-width: 64.063em){.filter-container .button-large-pill .icon-right{line-height:27px}.gs-inner-content{width:1020px;margin:0 auto}.grid-contentbox{width:48%;margin:1%}.grid-contentbox img{opacity:1}.grid-contentbox .grid-info{bottom:-52px;box-shadow:0px -3px 15px rgba(0,0,0,0.2)}.grid-contentbox .grid-info .grid-table .icon ~ .content h5{width:15em}.grid-contentbox .grid-info .grid-table .content h5{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%}}@media only screen and (min-width: 90.063em){.gs-content>.row:first-child{width:100%;max-width:100%}.gs-inner-content{width:auto}.grid-contentbox{width:31%;margin:1%}}.gs-content{position:relative;min-height:300px}.gs-button-area{padding:0px !important;margin:0px !important;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.gs-button-area a{display:inline-block;padding:2px 10px;line-height:24px;margin-top:0px !important}.gs-button-area span{line-height:24px;vertical-align:middle;color:#fff}.gs-button-area span:hover{color:#fff}.gs-button-area span.wpf-icon{background-image:url("/assets/images/corporate/windows-icon-large.png");display:inline-block;width:24px;height:24px;background-size:24px 24px;background-position:center center;background-repeat:no-repeat;margin-right:5px}.gs-button-area span.sl-icon{background-image:url("/assets/images/corporate/silverlight-icon-large.png");display:inline-block;margin-right:5px;width:24px;height:24px;background-size:24px 24px;background-position:center center;background-repeat:no-repeat}.gs-button-area span.select-btn{cursor:pointer;padding:4px 10px;border-left:1px solid rgba(225,225,225,0.4);line-height:24px;display:inline-block}.gs-button-area span.select-btn:hover{color:#fff}.gs-button-area.active ~ .callout,#univ-menu .menu-head .gs-button-area.search-in.activate ~ .callout{opacity:1;visibility:visible;height:auto;margin-top:0px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.gs-action-btn{display:inline-block;position:relative;margin:0px 5px 15px;vertical-align:top;color:#fff}.gs-action-btn .callout{border-radius:4px;box-shadow:0px 2px 10px rgba(0,0,0,0.2);position:absolute;top:-90px;right:3px;background:#fff;overflow:hidden;opacity:0;height:0px;visibility:hidden;margin-top:20px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.gs-action-btn .callout ul{margin:0px}.gs-action-btn .callout ul li{text-align:left;list-style:none;margin:0px;padding:0px}.gs-action-btn .callout ul li:hover{background:#e1e1e1;color:#08c}.gs-action-btn .callout ul li.active a,.gs-action-btn .callout ul #univ-menu .menu-head li.search-in.activate a,#univ-menu .menu-head .gs-action-btn .callout ul li.search-in.activate a{color:#08c}.gs-action-btn .callout ul li a{display:inline-block;padding:3px 10px;line-height:30px;color:#000;margin-top:0px !important}.gs-action-btn .callout ul li span{display:inline-block;vertical-align:middle}.gs-action-btn .callout ul li span.wpf-icon{background-image:url("/assets/images/corporate/windows-icon-large.png");display:inline-block;width:24px;height:24px;background-size:24px 24px;background-position:center center;background-repeat:no-repeat;margin-right:5px}.gs-action-btn .callout ul li span.sl-icon{background-image:url("/assets/images/corporate/silverlight-icon-large.png");display:inline-block;margin-right:5px;width:24px;height:24px;background-size:24px 24px;background-position:center center;background-repeat:no-repeat}.gs-header-theme{border-bottom:0px;-moz-transition:0.3s all ease-out;-webkit-transition:0.3s all ease-out;transition:0.3s all ease-out}#gs-second-nav.active,#univ-menu .menu-head #gs-second-nav.search-in.activate{opacity:1;height:43px;visibility:visible}.gs-second-nav{visibility:visible;opacity:0;height:0px;-moz-transition:0.3s all ease-out;-webkit-transition:0.3s all ease-out;transition:0.3s all ease-out;-webkit-backface-visibility:hidden;text-align:center;padding:0px !important}.gs-second-nav .second-nav-list{padding:10px 20px;width:auto;display:inline-block}.gs-second-nav .second-nav-list a{color:#fff;font-size:14px}.gs-second-nav .second-nav-list:hover,.gs-second-nav .second-nav-list.active,.gs-second-nav #univ-menu .menu-head .second-nav-list.search-in.activate,#univ-menu .menu-head .gs-second-nav .second-nav-list.search-in.activate{padding:10px 20px 9px;border-bottom:1px solid #08c}.gs-second-nav .second-nav-list:hover a,.gs-second-nav .second-nav-list.active a,.gs-second-nav #univ-menu .menu-head .second-nav-list.search-in.activate a,#univ-menu .menu-head .gs-second-nav .second-nav-list.search-in.activate a{color:#08c;outline:none}.gs-select h5,.gs-select img{opacity:0.5;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.gs-select.active h5,#univ-menu .menu-head .gs-select.search-in.activate h5,.gs-select.active img,#univ-menu .menu-head .gs-select.search-in.activate img,.gs-select:hover h5,.gs-select:hover img{opacity:1;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.ls-homepage,.ls-group,.ls-detail{width:100%;height:100%;position:fixed;z-index:-1;top:0px;left:0px;opacity:0;overflow-y:auto;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.ls-homepage.active,#univ-menu .menu-head .ls-homepage.search-in.activate,.ls-group.active,#univ-menu .menu-head .ls-group.search-in.activate,.ls-detail.active,#univ-menu .menu-head .ls-detail.search-in.activate{z-index:101;opacity:1}.ls-homepage.active .ls-content,#univ-menu .menu-head .ls-homepage.search-in.activate .ls-content,.ls-group.active .ls-content,#univ-menu .menu-head .ls-group.search-in.activate .ls-content,.ls-detail.active .ls-content,#univ-menu .menu-head .ls-detail.search-in.activate .ls-content{transform:scale(1)}.ls-homepage .ls-overlay,.ls-group .ls-overlay,.ls-detail .ls-overlay{position:absolute;top:0px;left:0px;width:100%;height:100%;background:rgba(0,0,0,0.8);z-index:11;opacity:0;visibility:hidden;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.ls-homepage .ls-overlay.active,.ls-homepage #univ-menu .menu-head .ls-overlay.search-in.activate,#univ-menu .menu-head .ls-homepage .ls-overlay.search-in.activate,.ls-group .ls-overlay.active,.ls-group #univ-menu .menu-head .ls-overlay.search-in.activate,#univ-menu .menu-head .ls-group .ls-overlay.search-in.activate,.ls-detail .ls-overlay.active,.ls-detail #univ-menu .menu-head .ls-overlay.search-in.activate,#univ-menu .menu-head .ls-detail .ls-overlay.search-in.activate{opacity:1;visibility:visible;z-index:11}.ls-homepage .ls-header,.ls-group .ls-header,.ls-detail .ls-header{position:relative}.ls-homepage .ls-header .subheading span,.ls-group .ls-header .subheading span,.ls-detail .ls-header .subheading span{display:inline-block;margin:0px 5px;color:#666;line-height:32px;font-family:"myriad_set_prothin","Lucida Grande",Helvetica,sans-serif}.ls-homepage .ls-header .subheading span.icon,.ls-group .ls-header .subheading span.icon,.ls-detail .ls-header .subheading span.icon{position:relative;top:1px;cursor:pointer}.ls-homepage .ls-header .subheading span.icon:hover,.ls-group .ls-header .subheading span.icon:hover,.ls-detail .ls-header .subheading span.icon:hover{color:#08c}.ls-homepage .ls-header .subheading span.icon .ls-callout,.ls-group .ls-header .subheading span.icon .ls-callout,.ls-detail .ls-header .subheading span.icon .ls-callout{opacity:0;height:auto;visibility:hidden;position:absolute;z-index:1;top:60px;right:0px;padding:20px;background:#08c;-webkit-border-radius:6px;-moz-border-radius:6px;-o-border-radius:6px;border-radius:6px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;-webkit-box-shadow:0px 5px 20px rgba(0,0,0,0.2);-moz-box-shadow:0px 5px 20px rgba(0,0,0,0.2);box-shadow:0px 5px 20px rgba(0,0,0,0.2);color:#fff}.ls-homepage .ls-header .subheading span.icon .ls-callout span,.ls-homepage .ls-header .subheading span.icon .ls-callout p,.ls-homepage .ls-header .subheading span.icon .ls-callout ul li,.ls-group .ls-header .subheading span.icon .ls-callout span,.ls-group .ls-header .subheading span.icon .ls-callout p,.ls-group .ls-header .subheading span.icon .ls-callout ul li,.ls-detail .ls-header .subheading span.icon .ls-callout span,.ls-detail .ls-header .subheading span.icon .ls-callout p,.ls-detail .ls-header .subheading span.icon .ls-callout ul li{color:#fff;font-family:"myriad_set_protext","Lucida Grande",Helvetica,sans-serif;font-size:16px;line-height:26px;text-align:left;display:block}.ls-homepage .ls-header .subheading span.icon .ls-callout ul li,.ls-group .ls-header .subheading span.icon .ls-callout ul li,.ls-detail .ls-header .subheading span.icon .ls-callout ul li{display:list-item}.ls-homepage .ls-header .subheading span.icon .ls-callout:after,.ls-group .ls-header .subheading span.icon .ls-callout:after,.ls-detail .ls-header .subheading span.icon .ls-callout:after{width:0px;height:0px;border:10px solid transparent;border-bottom:10px solid #08c;position:absolute;content:'';top:-19px;margin-left:-10px}.ls-homepage .ls-header .subheading span.icon .ls-callout.active,.ls-homepage .ls-header .subheading span.icon #univ-menu .menu-head .ls-callout.search-in.activate,#univ-menu .menu-head .ls-homepage .ls-header .subheading span.icon .ls-callout.search-in.activate,.ls-group .ls-header .subheading span.icon .ls-callout.active,.ls-group .ls-header .subheading span.icon #univ-menu .menu-head .ls-callout.search-in.activate,#univ-menu .menu-head .ls-group .ls-header .subheading span.icon .ls-callout.search-in.activate,.ls-detail .ls-header .subheading span.icon .ls-callout.active,.ls-detail .ls-header .subheading span.icon #univ-menu .menu-head .ls-callout.search-in.activate,#univ-menu .menu-head .ls-detail .ls-header .subheading span.icon .ls-callout.search-in.activate{opacity:1;height:auto;visibility:visible;display:block;top:44px;z-index:100}.ls-homepage .ls-header .icon-heading,.ls-group .ls-header .icon-heading,.ls-detail .ls-header .icon-heading{display:inline-block;padding-left:50px;line-height:50px;background-size:40px 40px;background-repeat:no-repeat}.ls-homepage .ls-header .icon-heading.webui,.ls-group .ls-header .icon-heading.webui,.ls-detail .ls-header .icon-heading.webui{background-image:url("/assets/images/products/icon-large-circled-webui.png")}.ls-homepage .ls-header .nav-right,.ls-group .ls-header .nav-right,.ls-detail .ls-header .nav-right{position:absolute;right:0px;top:0px;z-index:10}.ls-homepage .ls-header .nav-right a,.ls-group .ls-header .nav-right a,.ls-detail .ls-header .nav-right a{float:right;text-align:center;display:inline-block;margin-left:10px}.ls-homepage .ls-header .nav-right a span,.ls-group .ls-header .nav-right a span,.ls-detail .ls-header .nav-right a span{font-size:33px;width:40px;height:50px;line-height:50px;display:inline-block}.ls-homepage .ls-header .nav-left,.ls-group .ls-header .nav-left,.ls-detail .ls-header .nav-left{position:absolute;left:0px;top:0px;z-index:10}.ls-homepage .ls-header .nav-left a,.ls-group .ls-header .nav-left a,.ls-detail .ls-header .nav-left a{text-align:center;line-height:50px;display:inline-block;margin-right:15px;float:left}.ls-homepage .ls-header .nav-left a span,.ls-group .ls-header .nav-left a span,.ls-detail .ls-header .nav-left a span{font-size:33px;float:left;width:40px;height:50px;display:inline-block}.ls-homepage .ls-side-navigation,.ls-group .ls-side-navigation,.ls-detail .ls-side-navigation{padding:60px 0px 20px 0px;position:absolute;top:0px;height:100%;background:#1988d6;z-index:11;overflow-y:auto;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.ls-homepage .ls-side-navigation.active,.ls-homepage #univ-menu .menu-head .ls-side-navigation.search-in.activate,#univ-menu .menu-head .ls-homepage .ls-side-navigation.search-in.activate,.ls-group .ls-side-navigation.active,.ls-group #univ-menu .menu-head .ls-side-navigation.search-in.activate,#univ-menu .menu-head .ls-group .ls-side-navigation.search-in.activate,.ls-detail .ls-side-navigation.active,.ls-detail #univ-menu .menu-head .ls-side-navigation.search-in.activate,#univ-menu .menu-head .ls-detail .ls-side-navigation.search-in.activate{left:0px}.ls-homepage .ls-side-navigation a.ls-close-btn,.ls-group .ls-side-navigation a.ls-close-btn,.ls-detail .ls-side-navigation a.ls-close-btn{width:30px;height:50px;line-height:50px;display:inline-block;position:absolute;text-align:center;top:20px;right:20px}.ls-homepage .ls-side-navigation a.ls-close-btn span,.ls-group .ls-side-navigation a.ls-close-btn span,.ls-detail .ls-side-navigation a.ls-close-btn span{color:#fff}.ls-homepage .ls-side-navigation ul,.ls-group .ls-side-navigation ul,.ls-detail .ls-side-navigation ul{list-style:none;padding:0px;margin:20px 0px 10px;width:100%}.ls-homepage .ls-side-navigation ul li.nav-title,.ls-group .ls-side-navigation ul li.nav-title,.ls-detail .ls-side-navigation ul li.nav-title{padding:40px 0px 0px;margin:0px}.ls-homepage .ls-side-navigation ul li.nav-title span,.ls-group .ls-side-navigation ul li.nav-title span,.ls-detail .ls-side-navigation ul li.nav-title span{padding-left:30px;font-size:12px;color:#7fcaff;text-transform:uppercase}.ls-homepage .ls-side-navigation ul li.nav-title ul,.ls-group .ls-side-navigation ul li.nav-title ul,.ls-detail .ls-side-navigation ul li.nav-title ul{margin:0px;padding:20px 0;border-bottom:1px solid rgba(255,255,255,0.2)}.ls-homepage .ls-side-navigation ul a,.ls-group .ls-side-navigation ul a,.ls-detail .ls-side-navigation ul a{color:#fff;display:block;padding:10px 30px;font-size:16px;text-transform:capitalize}.ls-homepage .ls-side-navigation ul a span,.ls-group .ls-side-navigation ul a span,.ls-detail .ls-side-navigation ul a span{font-size:20px;margin-right:15px;display:inline-block;width:20px;text-align:center}.ls-homepage .ls-side-navigation ul a.active,.ls-homepage .ls-side-navigation ul #univ-menu .menu-head a.search-in.activate,#univ-menu .menu-head .ls-homepage .ls-side-navigation ul a.search-in.activate,.ls-homepage .ls-side-navigation ul a:hover,.ls-group .ls-side-navigation ul a.active,.ls-group .ls-side-navigation ul #univ-menu .menu-head a.search-in.activate,#univ-menu .menu-head .ls-group .ls-side-navigation ul a.search-in.activate,.ls-group .ls-side-navigation ul a:hover,.ls-detail .ls-side-navigation ul a.active,.ls-detail .ls-side-navigation ul #univ-menu .menu-head a.search-in.activate,#univ-menu .menu-head .ls-detail .ls-side-navigation ul a.search-in.activate,.ls-detail .ls-side-navigation ul a:hover{background-color:#096eb5}.ls-homepage .ls-content,.ls-group .ls-content,.ls-detail .ls-content{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;transform:scale(0.8)}.ls-homepage .ls-content .row,.ls-group .ls-content .row,.ls-detail .ls-content .row{height:100%}.ls-homepage .ls-content h6 span,.ls-group .ls-content h6 span,.ls-detail .ls-content h6 span{position:relative;top:2px;left:3px}.ls-homepage .ls-content #ls-index-content:hover .ls-detail-btn,.ls-homepage .ls-content #ls-index-content:hover .ls-group-btn,.ls-homepage .ls-content #ls-group-content:hover .ls-detail-btn,.ls-homepage .ls-content #ls-group-content:hover .ls-group-btn,.ls-group .ls-content #ls-index-content:hover .ls-detail-btn,.ls-group .ls-content #ls-index-content:hover .ls-group-btn,.ls-group .ls-content #ls-group-content:hover .ls-detail-btn,.ls-group .ls-content #ls-group-content:hover .ls-group-btn,.ls-detail .ls-content #ls-index-content:hover .ls-detail-btn,.ls-detail .ls-content #ls-index-content:hover .ls-group-btn,.ls-detail .ls-content #ls-group-content:hover .ls-detail-btn,.ls-detail .ls-content #ls-group-content:hover .ls-group-btn{opacity:0.6}.ls-homepage .ls-content #ls-index-content:hover .ls-detail-btn:hover,.ls-homepage .ls-content #ls-index-content:hover .ls-group-btn:hover,.ls-homepage .ls-content #ls-group-content:hover .ls-detail-btn:hover,.ls-homepage .ls-content #ls-group-content:hover .ls-group-btn:hover,.ls-group .ls-content #ls-index-content:hover .ls-detail-btn:hover,.ls-group .ls-content #ls-index-content:hover .ls-group-btn:hover,.ls-group .ls-content #ls-group-content:hover .ls-detail-btn:hover,.ls-group .ls-content #ls-group-content:hover .ls-group-btn:hover,.ls-detail .ls-content #ls-index-content:hover .ls-detail-btn:hover,.ls-detail .ls-content #ls-index-content:hover .ls-group-btn:hover,.ls-detail .ls-content #ls-group-content:hover .ls-detail-btn:hover,.ls-detail .ls-content #ls-group-content:hover .ls-group-btn:hover{opacity:1}.ls-detail .ls-header .switch-button{overflow:hidden;border:1px solid #0072bc;border-radius:4px;margin-top:5px;margin-right:50px}.ls-detail .ls-header .switch-button a{display:inline-block;padding:7px 20px;margin:0px}.ls-detail .ls-header .switch-button a.active,.ls-detail .ls-header .switch-button #univ-menu .menu-head a.search-in.activate,#univ-menu .menu-head .ls-detail .ls-header .switch-button a.search-in.activate{background:#0072bc;color:#fff}.ls-detail .ls-content{position:relative}.ls-detail .ls-content .iframe-wrap{position:relative}.ls-detail .ls-content .iframe-wrap .ls-preloader{position:absolute;cursor:default;width:32px;height:32px;border-radius:16px;box-shadow:0 1px 0 0 #0072bc;-ms-animation:uil-ring-anim 1s linear infinite;-moz-animation:uil-ring-anim 1s linear infinite;-webkit-animation:uil-ring-anim 1s linear infinite;-o-animation:uil-ring-anim 1s linear infinite;animation:uil-ring-anim 1s linear infinite;left:50%;top:50%;margin-top:-16px;margin-left:-16px}.ls-detail .ls-content iframe{border:none;width:100%}.ls-detail .ls-content .ls-arrow-nav a{position:absolute;top:50%;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%);text-align:center;display:inline-block;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;padding:60px 10px}.ls-detail .ls-content .ls-arrow-nav a .svg-arrow{fill:none;stroke-miterlimit:10;stroke-width:1px;stroke:#08c}.ls-detail .ls-content .ls-arrow-nav a.disabled{cursor:default}.ls-detail .ls-content .ls-arrow-nav a.disabled .svg-arrow{stroke:#999}.ls-detail .ls-content .ls-arrow-nav a.ls-arrow-left{left:0px}.ls-detail .ls-content .ls-arrow-nav a.ls-arrow-right{right:0px}@media only screen{.ls-homepage,.ls-group,.ls-detail{padding:8px}.ls-homepage .ls-header h4,.ls-group .ls-header h4,.ls-detail .ls-header h4{font-size:1.25rem;margin:0px}.ls-homepage .ls-header h4 .icon-heading,.ls-group .ls-header h4 .icon-heading,.ls-detail .ls-header h4 .icon-heading{background-position:-40px center;padding:0px}.ls-homepage .ls-header .subheading span,.ls-group .ls-header .subheading span,.ls-detail .ls-header .subheading span{font-size:16px}.ls-homepage .ls-header .subheading .icon .ls-callout,.ls-group .ls-header .subheading .icon .ls-callout,.ls-detail .ls-header .subheading .icon .ls-callout{-webkit-transform:translateX(97px);-moz-transform:translateX(97px);-o-transform:translateX(97px);-ms-transform:translateX(97px);transform:translateX(97px);width:320px}.ls-homepage .ls-header .subheading .icon .ls-callout:after,.ls-group .ls-header .subheading .icon .ls-callout:after,.ls-detail .ls-header .subheading .icon .ls-callout:after{left:73%}.ls-homepage .ls-side-navigation,.ls-group .ls-side-navigation,.ls-detail .ls-side-navigation{width:100%;left:-100%}.ls-homepage .ls-content,.ls-group .ls-content,.ls-detail .ls-content{height:calc(100% - 145px);padding:10px 0}.ls-homepage .ls-content iframe,.ls-group .ls-content iframe,.ls-detail .ls-content iframe{height:68vh}}@media only screen and (min-width: 40.063em){.ls-homepage,.ls-group,.ls-detail{padding:20px}.ls-homepage .ls-header h4,.ls-group .ls-header h4,.ls-detail .ls-header h4{font-size:2.1875rem}.ls-homepage .ls-header h4 .icon-heading,.ls-group .ls-header h4 .icon-heading,.ls-detail .ls-header h4 .icon-heading{background-position:left center;padding-left:50px}.ls-homepage .ls-header .subheading span,.ls-group .ls-header .subheading span,.ls-detail .ls-header .subheading span{font-size:20px}.ls-homepage .ls-header .subheading .icon .ls-callout,.ls-group .ls-header .subheading .icon .ls-callout,.ls-detail .ls-header .subheading .icon .ls-callout{-webkit-transform:translateX(393px);-moz-transform:translateX(393px);-o-transform:translateX(393px);-ms-transform:translateX(393px);transform:translateX(393px);width:800px}.ls-homepage .ls-header .subheading .icon .ls-callout:after,.ls-group .ls-header .subheading .icon .ls-callout:after,.ls-detail .ls-header .subheading .icon .ls-callout:after{left:50%}.ls-homepage .ls-header .nav-left i,.ls-group .ls-header .nav-left i,.ls-detail .ls-header .nav-left i{float:left;font-style:normal}.ls-homepage .ls-side-navigation,.ls-group .ls-side-navigation,.ls-detail .ls-side-navigation{width:25%;left:-25%}.ls-homepage .ls-content,.ls-group .ls-content,.ls-detail .ls-content{height:calc(100% - 82px);padding:35px 0}.ls-homepage .ls-content iframe,.ls-group .ls-content iframe,.ls-detail .ls-content iframe{height:80vh}}@media only screen and (min-width: 64.063em){.ls-homepage .ls-side-navigation,.ls-group .ls-side-navigation,.ls-detail .ls-side-navigation{width:17.8%;left:-17.8%}}#timeline{position:relative;background:url("/assets/images/corporate/history/history-timeline-bg.png") center top repeat-y;padding:100px 0;width:100%}#timeline::before{content:'';width:58px;height:58px;display:block;position:absolute;top:-55px;left:50%;margin-left:-29px;background:url("/assets/images/corporate/history/history-timeline-top.png") no-repeat center top}#timeline::after{content:'';width:58px;height:58px;display:block;position:absolute;bottom:0px;left:50%;margin-left:-29px;background:url("/assets/images/corporate/history/history-timeline-bottom.png") no-repeat center bottom}#timeline .timeline-list{width:40%;height:250px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;position:relative}#timeline .timeline-list .year-time{position:absolute;background:url("/assets/images/corporate/history/history-blue-dot.png") center 10px no-repeat #f2f2f2;padding:70px 10px 10px;right:-34%;width:69px;text-align:center;top:30px}#timeline .timeline-list .year-time span{font-size:1.5rem;font-family:"myriad_set_prothin","Lucida Grande",Helvetica,sans-serif;color:#666}#timeline .timeline-list .timeline-content{position:absolute;background:#fff;padding:20px;width:100%;box-shadow:0px 2px 8px rgba(0,0,0,0.2);-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;border-radius:4px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}#timeline .timeline-list .timeline-content::before{width:0px;height:0px;border:30px solid transparent;border-left:30px solid #fff;position:absolute;right:-50px;top:30px;content:''}#timeline .timeline-list .timeline-content img{margin-bottom:0px}#timeline .timeline-list .timeline-content p{visibility:hidden;opacity:0;height:0px;margin:0px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}#timeline .timeline-list .timeline-content:hover{cursor:pointer;z-index:10;margin-top:-5px;box-shadow:0px 8px 12px rgba(0,0,0,0.2);-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}#timeline .timeline-list .timeline-content:hover p{opacity:1;visibility:visible;height:auto}#timeline .timeline-list.timeline-right{left:60%}#timeline .timeline-list.timeline-right .timeline-content::before{border:30px solid transparent;border-right:30px solid #fff;position:absolute;left:-50px !important;top:30px;content:''}#timeline .timeline-list.timeline-right .year-time{background:url("/assets/images/corporate/history/history-yellow-dot.png") center 10px no-repeat #f2f2f2;left:-34% !important}@media only screen{#timeline .timeline-list{width:100%;height:auto}#timeline .timeline-list .year-time{position:relative;top:0px;left:50%;margin-left:-35px}#timeline .timeline-list .timeline-content{position:relative;margin-bottom:20px}#timeline .timeline-list .timeline-content::before{display:none}#timeline .timeline-list .timeline-content h4{text-align:center}#timeline .timeline-list .timeline-content span{color:#999;text-align:center;font-size:1.5rem;font-family:"myriad_set_prothin","Lucida Grande",Helvetica,sans-serif;margin-bottom:24px}#timeline .timeline-list .timeline-content img{display:block;margin-left:auto;margin-right:auto}#timeline .timeline-list .timeline-content p{visibility:visible;opacity:1;height:auto}#timeline .timeline-list .timeline-content:hover{margin-top:0px}#timeline .timeline-list.timeline-right{left:0px}#timeline .timeline-list.timeline-right .year-time{position:relative;top:0px !important;left:50% !important;margin-left:-35px}}@media only screen and (min-width: 40.063em){#timeline .timeline-list{width:40%;height:auto}#timeline .timeline-list .year-time{position:absolute;top:30px;left:125%}#timeline .timeline-list .timeline-content{position:relative;margin-bottom:20px}#timeline .timeline-list .timeline-content::before{display:block}#timeline .timeline-list.timeline-right{left:60%}#timeline .timeline-list.timeline-right .year-time{position:absolute;top:30px !important;left:-25% !important}}@media only screen and (min-width: 64.063em){#timeline .timeline-list{width:40%;height:250px}#timeline .timeline-list .timeline-content{position:absolute}#timeline .timeline-list .timeline-content::before{display:block}#timeline .timeline-list .timeline-content h4{text-align:left}#timeline .timeline-list .timeline-content span{color:#999;text-align:center;font-size:1.5rem;font-family:"myriad_set_prothin","Lucida Grande",Helvetica,sans-serif;margin-bottom:24px}#timeline .timeline-list .timeline-content img{display:inline-block;margin-left:0px;margin-right:0px}#timeline .timeline-list .timeline-content p{visibility:hidden;opacity:0;height:0px}#timeline .timeline-list .timeline-content:hover{margin-top:-5px}}.columnbox-container{width:800px;display:inline-block;position:relative}.columnbox-container::before{width:2px;height:500px;position:absolute;color:#eee;content:'';background-color:#eee;display:block;top:60px;left:47%}.columnbox-list{width:330px;position:relative;display:block}.columnbox-list img{margin-bottom:20px}.columnbox-list .indicator{position:absolute;top:50px;right:-70px}.columnbox-list p{margin-bottom:5px}.columnbox-list.column-right{margin-left:53%}.columnbox-list.column-right .indicator{position:absolute;top:50px;left:-70px}.columnbox-list:last-child{float:none !important}.videoplay-button,.videoplay-button-small{position:relative}.videoplay-button::after,.videoplay-button-small::after{content:'';background-image:url("/assets/images/edm/button-play@2x.png");width:144px;height:144px;display:block;position:absolute;left:50%;background-position:center center;background-repeat:no-repeat;margin-left:-72px;top:50%;margin-top:-112px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.videoplay-button-small::after{width:72px;height:72px;margin-left:-36px;margin-top:-36px;background-image:url("/assets/images/edm/button-play.png")}.cdp-1::after{margin-top:0px}a.videoplayer:hover img{opacity:0.5}a.videoplayer:hover .videoplay-button::after,a.videoplayer:hover .videoplay-button-small::after{background-image:url("/assets/images/edm/button-play-on@2x.png")}a.videoplayer:hover .videoplay-button-small::after{background-image:url("/assets/images/edm/button-play-on.png")}.webinar{position:relative;display:block}.webinar img{width:100%}.webinar .desc{position:absolute;padding:10px;background:rgba(0,0,0,0.5);font-size:.875rem;line-height:20px;bottom:20px;width:100%}.webinar .desc span{display:block;text-align:center;color:#fff;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.webinar:hover span{color:#8ad4fc}.tilted-arrow{position:relative;text-align:left}.tilted-arrow img{display:inline-block}.tilted-arrow::before{position:absolute;content:'';display:none;width:116px;height:52px;top:50%;margin-top:-26px;right:-70px;background-image:url("/assets/images/edm/crosslight-design-pattern/tilted-arrow.png");z-index:1}@media only screen{.columnbox-container{width:100%}.columnbox-container::before{display:none}.columnbox-list{width:100%;padding:0 10px;margin-bottom:35px}.columnbox-list.column-right{margin-left:0px}.webinar-row:hover img{-webkit-filter:blur(0px);filter:blur(0px);opacity:1;box-shadow:none}.webinar:hover img{opacity:1;box-shadow:none}.videoplay-button::after,.videoplay-button-small::after{width:60px;height:60px;background-size:60px 60px;margin-left:-30px;margin-top:-30px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}}@media only screen and (min-width: 64.063em){.columnbox-container{width:800px}.columnbox-container::before{display:block}.columnbox-list{width:330px;padding:0px;margin-bottom:0px}.columnbox-list.column-right{margin-left:53%}.webinar-row:hover img{-webkit-filter:blur(3px);filter:blur(3px);opacity:0.5;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;box-shadow:0px 1px 5px rgba(0,0,0,0.2)}.webinar:hover img{-webkit-filter:blur(0px);filter:blur(0px);opacity:1;box-shadow:0px 5px 15px rgba(0,0,0,0.2)}.tilted-arrow{text-align:center}.tilted-arrow::before{display:block}.row-push-170{position:relative;left:170px}.videoplay-button,.videoplay-button-small{position:relative}.videoplay-button img,.videoplay-button-small img{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.videoplay-button::after,.videoplay-button-small::after{width:144px;height:144px;background-size:contain;margin-left:-72px;margin-top:-72px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}}@-webkit-keyframes uil-ring-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes uil-ring-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-moz-keyframes uil-ring-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-ms-keyframes uil-ring-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-moz-keyframes uil-ring-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-webkit-keyframes uil-ring-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@-o-keyframes uil-ring-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes uil-ring-anim{0%{-ms-transform:rotate(0deg);-moz-transform:rotate(0deg);-webkit-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}100%{-ms-transform:rotate(360deg);-moz-transform:rotate(360deg);-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}.fancybox-inner{overflow:hidden !important}.fancybox-title-float-wrap{margin:0px;position:absolute;bottom:-80px;width:100%;left:0px}.fancybox-title-float-wrap .child{font-size:1.5rem;font-family:"myriad_set_prothin","Lucida Grande",Helvetica,sans-serif;color:#000;background:transparent;font-weight:normal;text-shadow:none;white-space:normal;line-height:32px;margin:0px;padding:0px;height:64px;overflow:hidden}.fancybox-title-outside-wrap{font-size:1.5rem;font-family:"myriad_set_prothin","Lucida Grande",Helvetica,sans-serif;color:#000;background:transparent;font-weight:normal;text-shadow:none;white-space:normal;line-height:32px;margin:0px;padding:0px;margin-top:25px}.fancybox-close{position:fixed;top:20px;right:20px;background-image:none;color:#000;font-family:"Ionicons";font-size:2.625rem;width:42px;height:42px;display:inline-block;line-height:1;text-align:center;z-index:9999}.fancybox-close:after{content:'\f404'}.fancybox-skin{position:relative;background:none;color:#444;text-shadow:none;-webkit-border-radius:none;-moz-border-radius:none;border-radius:none}.fancybox-opened .fancybox-skin{-webkit-box-shadow:none !important;-moz-box-shadow:none !important;box-shadow:none !important;background:none !important}#fancybox-loading{opacity:1;background:none;cursor:default;-webkit-transform:scale(0.21);-moz-transform:scale(0.21);-o-transform:scale(0.21);transform:scale(0.21)}#fancybox-loading div{background:none;cursor:default;position:relative;left:-160px;top:-160px;width:160px;height:160px;border-radius:80px;box-shadow:0 6px 0 0 #009fe4;-ms-animation:uil-ring-anim 1s linear infinite;-moz-animation:uil-ring-anim 1s linear infinite;-webkit-animation:uil-ring-anim 1s linear infinite;-o-animation:uil-ring-anim 1s linear infinite;animation:uil-ring-anim 1s linear infinite}#fancybox-thumbs ul li{opacity:0.5}#fancybox-thumbs ul li a{border:1px solid #eee;background:#fff}#fancybox-thumbs ul li.active a,#fancybox-thumbs ul #univ-menu .menu-head li.search-in.activate a,#univ-menu .menu-head #fancybox-thumbs ul li.search-in.activate a{border:1px solid #0072bc}#fancybox-thumbs.bottom{bottom:20px}.fancybox-nav{position:absolute;top:50%;margin-top:-42px;width:32px;height:84px}.fancybox-nav span{visibility:visible;background-image:none;opacity:0.5;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;position:static;display:block;margin:0px}.fancybox-nav:hover span{opacity:1}.fancybox-prev{left:-120px}.fancybox-prev span{background-image:url("/assets/images/default/arrow-large-thin-left.svg");background-repeat:no-repeat;background-position:left top;background-size:32px 84px;width:32px;height:84px}.fancybox-next{right:-120px}.fancybox-next span{background-image:url("/assets/images/default/arrow-large-thin-right.svg");background-repeat:no-repeat;background-position:left top;background-size:32px 84px;width:32px;height:84px}@media only screen{.fancybox-title-float-wrap{bottom:-65px}.fancybox-title-float-wrap .child{display:block;font-size:1rem;line-height:24px;height:48px;overflow:hidden}.fancybox-title-outside-wrap{display:block;font-size:1rem;line-height:24px;text-align:center}.fancybox-nav{display:none}.fancybox-prev{left:-60px}.fancybox-next{right:-60px}}@media only screen and (min-width: 64.063em){.fancybox-title-float-wrap{bottom:-70px}.fancybox-title-float-wrap .child{display:block;font-size:1.125rem;line-height:24px;text-align:center;height:48px;overflow:hidden}.fancybox-title-outside-wrap{font-size:1.5rem;line-height:32px}.fancybox-nav{display:inline-block}.fancybox-prev{left:-120px}.fancybox-next{right:-120px}}input:-webkit-autofill,textarea:-webkit-autofill,select:-webkit-autofill{background-color:transparent !important;background-image:none;color:#333}input[type=text]::-ms-clear{display:none !important;width:0;height:0}input[type=text]::-ms-reveal{display:none !important;width:0;height:0}input[type=password]::-ms-clear{display:none !important;width:0;height:0}input[type=password]::-ms-reveal{display:none !important;width:0;height:0}[data-sr]{visibility:hidden}.row{max-width:63.75rem;position:relative}.move-right{float:right !important}.text-center{text-align:center !important}.text-left{text-align:left !important}.text-shadow{text-shadow:0px 3px 5px rgba(0,0,0,0.3)}.text-shadow-white{text-shadow:0px 1px 1px rgba(255,255,255,0.9)}.textbold{font-weight:bold !important}.clear{clear:both}.clearfix{zoom:1}.clearfix:before{content:"";display:table}.clearfix:after{content:"";display:table;clear:both}.height0{height:0px !important}.disabled{display:none}.block{display:block !important}.no-float{float:none !important}.extend-full{margin-right:-3000px !important;padding-right:3000px !important;margin-left:-3000px !important;padding-left:3000px !important}.align-center{text-align:center;display:block;margin-left:auto !important;margin-right:auto !important}.align-right{text-align:right !important}.align-center-both{position:absolute;top:50%;left:50%;margin-top:-16px;margin-left:-16px}.align-bottom{position:static}.show-overlay{visibility:visible;opacity:1;z-index:100}.active,#univ-menu .menu-head .search-in.activate{opacity:1 !important}.blur{-webkit-filter:blur(20px);-moz-filter:blur(20px);-o-filter:blur(20px);filter:blur(20px)}.show{display:block !important}.overflow-hidden{overflow:hidden}code{background:transparent;border:0px}.smooth{-webkit-overflow-scrolling:touch;overflow:scroll}.hidden{opacity:0 !important;visibility:hidden !important;height:0 !important;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;-webkit-backface-visibility:hidden}.loader-blue{cursor:default;width:32px;height:32px;border-radius:16px;box-shadow:0 1px 0 0 #0072bc;-ms-animation:uil-ring-anim 1s linear infinite;-moz-animation:uil-ring-anim 1s linear infinite;-webkit-animation:uil-ring-anim 1s linear infinite;-o-animation:uil-ring-anim 1s linear infinite;animation:uil-ring-anim 1s linear infinite;display:block;position:absolute;top:50%;left:50%;margin-left:-16px;margin-top:-16px}.separator-light{position:relative}.separator-light::before{position:absolute;content:'';width:100px;height:1px;background:#ccc;top:0px;left:50%}.countdown{padding:10px;border:1px solid #fff;-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;border-radius:4px}.countdown span{display:block}.label-is{padding:3px 5px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;display:inline-block;font-size:13px;position:relative;top:-2px;vertical-align:middle;font-family:"myriad_set_protext","Lucida Grande",Helvetica,sans-serif}.label-is.red{background:#f00;color:#fff}.white-text{color:#fff !important}.gold-text{color:#ab9054 !important}.dark-text{color:#000 !important}.light-grey{color:#ccc !important}.lightgrey-text{color:#888 !important}.new-darkgrey-text,.childnav-dropdown .childnav-container .contextual-section a.childnav-action{color:#424242}.transparent{background-color:transparent !important;border:none !important}.imagebg-dark{background-attachment:fixed;background-size:cover;background-position:center center;background-repeat:no-repeat;text-align:center}.imagebg-dark h2,.imagebg-dark h3,.imagebg-dark h4,.imagebg-dark h5,.imagebg-dark h6,.imagebg-dark p{color:#fff}.imagebg-light{background-attachment:fixed;background-size:cover;background-position:center center;background-repeat:no-repeat;text-align:center}.imagebg-light h2,.imagebg-light h3,.imagebg-light h4,.imagebg-light h5,.imagebg-light h6{color:#000}.imagebg-light p{color:#555}.medium-margin-top-190{margin-top:0px}.margin-top-70{margin-top:70px !important}.margin-top-35{margin-top:35px !important}.margin-top-20{margin-top:20px !important}.margin-bottom-4{margin-bottom:4px !important}.margin-bottom-15{margin-bottom:15px !important}.margin-bottom-35{margin-bottom:35px !important}.margin-bottom-70{margin-bottom:70px !important}.margin-top-bottom-35{margin-top:35px !important;margin-bottom:35px !important}.margin-top-bottom-70{margin-top:70px !important;margin-bottom:70px !important}.no-margin{margin:0px !important}.no-margin-left{margin-left:0px !important}.no-margin-top{margin-top:0px !important}.no-margin-bottom{margin-bottom:0px !important}.margin-auto{margin-left:auto !important;margin-right:auto !important}.margin-30{margin:30px !important}.padding-15{padding:15px}.padding-30{padding:30px}.no-padding{padding:0px}.padding-top-70{padding-top:70px}.padding-top-35{padding-top:35px}.padding-top-16{padding-top:16px !important}.padding-bottom-16{padding-bottom:16px !important}.padding-bottom-35{padding-bottom:35px}.padding-bottom-70{padding-bottom:70px}.padding-top-bottom-35{padding-top:35px;padding-bottom:35px}.padding-top-15{padding-top:15px}.padding-bottom-15{padding-bottom:15px}.padding-top-bottom-15{padding-top:15px !important;padding-bottom:15px !important}.padding-right-15{padding-right:15px}.padding-left-right-15{padding-left:15px !important;padding-right:15px !important}.no-padding{padding:0px !important}.no-padding-bottom{padding-bottom:0px !important}.quote{background:url("/assets/images/corporate/history/corporate-quote.jpg") left top no-repeat}.quote .quote-content{padding-left:80px;padding-top:20px}.height-500,.height-600,.height-700,.height-800{height:auto;min-height:initial}.max-width-800{max-width:800px;margin-left:auto;margin-right:auto}.rounded{-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;border-radius:4px}.cta.text-left a{margin:0px 10px 10px 0px}.cta-icon-outline-large-dark,.cta-icon-outline-large-light{color:#000;text-align:center;display:block;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.cta-icon-outline-large-dark:hover,.cta-icon-outline-large-light:hover{color:#0072bc}.cta-icon-outline-large-dark span,.cta-icon-outline-large-light span{display:block;text-align:center;font-size:80px}.cta-icon-outline-large-light{color:#fff}.cta-icon-outline-large-light:hover{color:#0088cc}.cta-bottom span,.cta-bottom h4,.cta-bottom h5,.cta-bottom h6{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.cta-bottom:hover span{border:1px solid #0088cc;color:#0088cc}.cta-bottom:hover h4,.cta-bottom:hover h5,.cta-bottom:hover h6{color:#0088cc}.allproducts-link img,.allproducts-link h6{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.allproducts-link:hover img{opacity:0.4}.allproducts-link:hover h6{color:#0072bc}.border-top-light{border-top:1px solid #e1e1e1}.border-top-dark{padding:35px 0px 0px;margin:35px 0px 0px;border-top:1px solid #efefef}.border-left-grey{border-left:1px solid #333}.border-top-grey{border-top:1px solid rgba(0,0,0,0.1);padding-top:35px}.border-top{border-top:1px solid #ccc}.border-top-gold{border-top:1px solid #d5c091}.border-bottom-light-alt{border-bottom:1px solid #ececec}.border-bottom-light{border-bottom:1px solid rgba(255,255,255,0.2);padding-bottom:35px;margin-bottom:35px}.no-border{border:none !important}.platform-block-grid{padding:2px 0}.platform-block-grid li{padding:0px}.platform-block-grid a{background:#f2f2f2;border:2px solid #fff;display:block;padding:30px}.platform-block-grid a:hover{background:#e1e1e1}.platform-block-grid .icon-large{width:100px;height:100px;display:block;margin:0 auto 10px}.platform-block-grid .icon-large.ios-logo{background:url("/assets/images/crosslight/ios-icon-medium.png") no-repeat center center}.platform-block-grid .icon-large.android-logo{background:url("/assets/images/crosslight/android-icon-medium.png") no-repeat center center}.platform-block-grid .icon-large.winphone-logo{background:url("/assets/images/crosslight/winphone-icon-medium.png") no-repeat center center}.platform-block-grid .icon-large.winstore-logo{background:url("/assets/images/crosslight/win8-icon-medium.png") no-repeat center center}.block-grid-grey,.block-grid-light,.block-grid-light-alternate-2column,.block-grid-white,.block-grid-alternate{border-bottom:2px solid #f2f2f2}.block-grid-grey li,.block-grid-light li,.block-grid-light-alternate-2column li,.block-grid-white li,.block-grid-alternate li{padding:0px}.block-grid-grey .content-grid,.block-grid-light .content-grid,.block-grid-light-alternate-2column .content-grid,.block-grid-white .content-grid,.block-grid-alternate .content-grid{border:2px solid #f2f2f2;padding:40px 20px;background:#e1e1e1}.block-grid-grey .content-grid-white,.block-grid-light .content-grid-white,.block-grid-light-alternate-2column .content-grid-white,.block-grid-white .content-grid-white,.block-grid-alternate .content-grid-white{border:2px solid #fff;padding:40px 20px}.block-grid-light{border-top:8px solid #fff;border-bottom:8px solid #fff}.block-grid-light li{background:#f2f2f2;border:8px solid #fff;padding:30px}.block-grid-light .content-clientui-grid{background:#f2f2f2;border:8px solid #fff;padding:0px;overflow:hidden}.block-grid-light .content-clientui-grid h3{padding:60px 60px 30px}.block-grid-light .content-clientui-grid p{padding:30px 60px 60px}.block-grid-light-alternate-2column{border-top:2px solid #fff;border-bottom:2px solid #fff}.block-grid-light-alternate-2column li:first-child .content-grid{background:#fff}.block-grid-light-alternate-2column .content-grid{background:#f2f2f2;border:2px solid #fff;padding:30px}.block-grid-white{border-top:8px solid #f2f2f2;border-bottom:8px solid #f2f2f2}.block-grid-white .content-grid{background:#fff;border:8px solid #f2f2f2;padding:30px}.block-grid-alternate{border:0px}.block-grid-alternate .content-grid{background:#f2f2f2;border:0px;padding:60px}.block-grid-alternate li:first-child .content-grid,.block-grid-alternate li:last-child .content-grid{background:#eee;border:0px;padding:60px}.block-grid-home-banner{border-top:1px solid #fff;border-bottom:1px solid #fff}.block-grid-home-banner li{height:340px;background-size:cover;background-attachment:scroll;background-repeat:no-repeat;display:block;border:1px solid #fff;padding:0px}.block-grid-home-banner li a{padding:30px;height:340px;display:block}.block-grid-home-banner li.technology-support{background-image:url("/assets/images/home/tech-support-bg@2x.jpg")}.block-grid-home-banner li.technology-support span{line-height:30px;padding-left:35px;padding-right:10px;background-size:30px;background-repeat:no-repeat;background-position:left center;color:#333;display:inline-block}.block-grid-home-banner li.technology-support span.edge{background-image:url("/assets/images/home/microsoft-edge-icon-small@2x.png")}.block-grid-home-banner li.technology-support span.win10{background-image:url("/assets/images/home/win10-icon-small@2x.png")}.block-grid-home-banner li.technology-support span.chrome43{background-image:url("/assets/images/home/chrome43-icon-small@2x.png")}.block-grid-home-banner li.technology-support h5{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.block-grid-home-banner li.technology-support :hover h5{color:#0072bc}.block-grid-home-banner li.premier-studio-2015{background-color:#f2f2f2;padding:30px}.block-grid-home-banner li.premier-studio-2015 img{margin-top:25px}.block-grid-home-banner li.premier-studio-2015 a{padding:0px;display:inline-block;height:auto;margin-top:0px;margin-bottom:0px}.block-grid-home-banner li.data-visualization{background-image:url("/assets/images/home/datavisualization-img@2x.png");background-position:-114px top;background-size:800px}.block-grid-home-banner li.data-visualization h5{margin-top:208px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.block-grid-home-banner li.data-visualization :hover h5{color:#0072bc}.block-grid-home-banner li img{display:block;margin-left:auto;margin-right:auto;margin-bottom:15px}.block-grid-listing li{height:auto;background-size:cover;background-attachment:scroll;background-repeat:no-repeat;padding:0px;display:block}.block-grid-listing li .listing{overflow:hidden;position:relative;height:390px}.block-grid-listing li .listing>img{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;top:40% !important}.block-grid-listing li .listing>h3{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;width:100%;top:58% !important}.block-grid-listing li .listing::before{position:absolute;width:100%;height:100%;content:'';background:rgba(0,0,0,0.6);z-index:1;top:-50px;left:0px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;opacity:0;visibility:hidden}.block-grid-listing li .listing .content{padding:40px;position:absolute;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;width:100%;margin-top:50px;top:50%;opacity:0;visibility:hidden}.block-grid-listing li .listing .content li a{display:block;line-height:36px}.block-grid-listing li .listing:hover>h3,.block-grid-listing li .listing:hover>img{margin-top:10px;opacity:0;visibility:hidden}.block-grid-listing li .listing:hover .content{opacity:1;visibility:visible;z-index:10;margin-top:0px}.block-grid-listing li .listing:hover .content a{color:#fff}.block-grid-listing li .listing:hover .content a:hover{color:#08c}.block-grid-listing li .listing:hover::before{top:0px;left:0px;opacity:1;visibility:visible}.block-grid-images li{height:auto;background-size:cover;background-attachment:scroll;background-repeat:no-repeat;padding:0px;display:block}.block-grid-images li.microsoft10{background-image:url("/assets/images/crosslight/whatsnew/2015r1/windows10-support-bg.jpg");height:561px}.block-grid-images li.chrome-support{background-image:url("/assets/images/crosslight/whatsnew/2015r1/chrome-support-bg.jpg");height:561px}.block-grid-images li.mobile-solution{background-image:url("/assets/images/home/home-mobile-solution-bg.jpg")}.block-grid-images li.web-solution{background-image:url("/assets/images/home/home-web-solution-bg.jpg")}.block-grid-images li.enterprise-solution{background-image:url("/assets/images/home/home-enterprise-solution-bg.jpg")}.block-grid-images li.custom-development{background-image:url("/assets/images/home/home-custom-development-bg.jpg")}.block-grid-images li .content{padding:40px}.block-grid-images li .content h4,.block-grid-images li .content p{color:#000}.block-grid-images li>a{display:block;height:396px;position:relative;overflow:hidden}.block-grid-images li>a>h3{position:absolute;width:100%;opactiy:1;visibility:visible;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.block-grid-images li>a::before{position:absolute;width:100%;height:100%;content:'';background:rgba(0,0,0,0.8);z-index:1;top:-50px;left:0px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;opacity:0;visibility:hidden}.block-grid-images li>a .content{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;position:absolute;width:100%;top:55%;z-index:2;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%);opacity:0;visibility:hidden}.block-grid-images li>a:hover::before{top:0px;left:0px;opacity:1;visibility:visible}.block-grid-images li>a:hover>h3{opacity:0;visibility:hidden}.block-grid-images li>a:hover .content{opacity:1;top:50%;visibility:visible}.card-view{background:#fff;-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:0px;box-shadow:0px 2px 5px rgba(0,0,0,0.2);width:96%;overflow:hidden;margin:2%;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.card-view:hover{box-shadow:0px 5px 15px rgba(0,0,0,0.2)}.card-view img{width:100%;-webkit-transition:all .2s linear;-moz-transition:all .2s linear;-o-transition:all .2s linear;-ms-transition:all .2s linear;transition:all .2s linear}.card-view img:hover{-webkit-transform:scale(1.02);-moz-transform:scale(1.02);-o-transform:scale(1.02);transform:scale(1.02)}.card-view .content{padding:40px 30px}.card-view-profile{background:#fff;-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;border-radius:4px;padding:0px;box-shadow:0px 2px 5px rgba(0,0,0,0.2);width:96%;overflow:hidden;margin:2%;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.card-view-profile:hover{box-shadow:0px 5px 15px rgba(0,0,0,0.2)}.card-view-profile .cover{min-height:220px;margin:0px}.card-view-profile .head-content{position:absolute;z-index:10;top:0px;left:0px;width:100%;height:100%}.card-view-profile .head-content img{max-width:none;width:auto;display:block;margin:20px auto 10px}.card-view-profile .head-content h4{text-align:center;color:#fff;display:block;line-height:26px;vertical-align:middle;margin:0px}.card-view-profile .head-content h4 span{font-size:17px;line-height:26px;color:#08c;font-family:"myriad_set_protext","Lucida Grande",Helvetica,sans-serif;text-shadow:0px 2px 5px rgba(0,0,0,0.5);-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.card-view-profile .head-content h4 span:hover{color:#5cc3f6}.card-view-profile .content{padding:30px 20px}.card-view-profile .content p{margin:0px;line-height:32px}.card-view-profile .content p .icon{font-size:18px;color:#999;margin-right:10px}.press-list{padding:20px;border-bottom:1px solid #c1c1c1}.grid-ms .grid-ms-item,.grid-ms .grid-ms-resizer{width:100%}.grid-ms .grid-ms-item{margin:20px 0}.grid-ms .grid-ms-item .placeholder-profile{width:128px;height:128px;display:inline-block;vertical-align:top;margin:13px 20px 35px 0;background:url("/assets/images/corporate/testimonial/placeholder-user-img.png")}.grid-ms .grid-ms-item .grid-content{width:100%;display:inline-block}.grid-ms .grid-ms-item .grid-content .profile-name{font-size:1.5rem;font-family:"myriad_set_prothin","Lucida Grande",Helvetica,sans-serif;display:block}.grid-ms .grid-ms-item .grid-content .profile-company{font-size:1.125rem;font-family:"myriad_set_protext","Lucida Grande",Helvetica,sans-serif;display:block}.grid-cardview-ms .card-view:hover h4{color:#0072bc}ul.no-bullet li{padding:10px 0}ul.no-bullet li a{color:#333}ul.no-bullet li a:hover{color:#0072bc}ul.medium-3-center{margin:auto;width:200px;display:block}.tabs,.tabs-tryrequest,.tabs.vertical.light{border-bottom:1px solid #c1c1c1;text-align:center}.tabs .tab-title a,.tabs-tryrequest .tab-title a,.tabs.vertical.light .tab-title a{position:relative;top:1px;padding:0px;background-color:transparent;border-bottom:1px solid transparent;vertical-align:middle}.tabs .tab-title a:hover,.tabs-tryrequest .tab-title a:hover{background-color:transparent;border-bottom:1px solid #0072bc}.tabs .tab-title a h5,.tabs-tryrequest .tab-title a h5,.tabs.vertical.light .tab-title a h5{padding-left:30px;padding-right:30px}.tabs .tab-title a h6,.tabs-tryrequest .tab-title a h6,.tabs.vertical.light .tab-title a h6{padding-left:20px;padding-right:20px;color:#fff;border-left:1px solid transparent;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.tabs .tab-title a h6.light,.tabs-tryrequest .tab-title a h6.light{color:#999}.tabs .tab-title.active a,.tabs-tryrequest .tab-title.active a,.tabs #univ-menu .menu-head .tab-title.search-in.activate a,#univ-menu .menu-head .tabs .tab-title.search-in.activate a,.tabs-tryrequest #univ-menu .menu-head .tab-title.search-in.activate a,#univ-menu .menu-head .tabs-tryrequest .tab-title.search-in.activate a{background-color:transparent;border-bottom:1px solid #0072bc}.tabs .tab-title.active a h5,.tabs-tryrequest .tab-title.active a h5,.tabs #univ-menu .menu-head .tab-title.search-in.activate a h5,#univ-menu .menu-head .tabs .tab-title.search-in.activate a h5,.tabs-tryrequest #univ-menu .menu-head .tab-title.search-in.activate a h5,#univ-menu .menu-head .tabs-tryrequest .tab-title.search-in.activate a h5,.tabs .tab-title.active a h6,.tabs-tryrequest .tab-title.active a h6,.tabs #univ-menu .menu-head .tab-title.search-in.activate a h6,#univ-menu .menu-head .tabs .tab-title.search-in.activate a h6,.tabs-tryrequest #univ-menu .menu-head .tab-title.search-in.activate a h6,#univ-menu .menu-head .tabs-tryrequest .tab-title.search-in.activate a h6{color:#0073bc}.tabs-tryrequest{border-bottom:none;text-align:center}.tabs-tryrequest li.tab-title{float:none}.tabs-tryrequest li.tab-title a{margin:0px 15px;border-bottom:1px solid #c1c1c1}.tabs-content{background:transparent}.tabs-content .content,.tabs-content .content:before{background:transparent !important}.tabs-content .content h5{color:#fff}.tabs-content .content img{height:auto;display:inline-block !important}.tabs.vertical .tab-title,.vertical.tabs-tryrequest .tab-title{border:1px solid transparent}.tabs.vertical .tab-title a,.vertical.tabs-tryrequest .tab-title a{border:1px solid transparent}.tabs.vertical .tab-title p,.vertical.tabs-tryrequest .tab-title p{margin:0px;padding:10px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.tabs.vertical .tab-title:hover,.vertical.tabs-tryrequest .tab-title:hover{border:1px solid transparent}.tabs.vertical .tab-title:hover p,.vertical.tabs-tryrequest .tab-title:hover p{color:#08c}.tabs.vertical .tab-title:hover h6,.vertical.tabs-tryrequest .tab-title:hover h6{color:#000;border-left:1px solid #08c}.tabs.vertical .tab-title.active a,.vertical.tabs-tryrequest .tab-title.active a,.tabs.vertical #univ-menu .menu-head .tab-title.search-in.activate a,#univ-menu .menu-head .tabs.vertical .tab-title.search-in.activate a,.vertical.tabs-tryrequest #univ-menu .menu-head .tab-title.search-in.activate a,#univ-menu .menu-head .vertical.tabs-tryrequest .tab-title.search-in.activate a{border:1px solid transparent}.tabs.vertical .tab-title.active a p,.vertical.tabs-tryrequest .tab-title.active a p,.tabs.vertical #univ-menu .menu-head .tab-title.search-in.activate a p,#univ-menu .menu-head .tabs.vertical .tab-title.search-in.activate a p,.vertical.tabs-tryrequest #univ-menu .menu-head .tab-title.search-in.activate a p,#univ-menu .menu-head .vertical.tabs-tryrequest .tab-title.search-in.activate a p{color:#08c}.tabs.vertical .tab-title.active a h6,.vertical.tabs-tryrequest .tab-title.active a h6,.tabs.vertical #univ-menu .menu-head .tab-title.search-in.activate a h6,#univ-menu .menu-head .tabs.vertical .tab-title.search-in.activate a h6,.vertical.tabs-tryrequest #univ-menu .menu-head .tab-title.search-in.activate a h6,#univ-menu .menu-head .vertical.tabs-tryrequest .tab-title.search-in.activate a h6{color:#000;border-left:1px solid #08c}.tabs.vertical+.tabs-content,.vertical.tabs-tryrequest+.tabs-content{width:80%;float:left;padding-left:50px}.vertical.light.tabs-tryrequest .tab-title a h6,.vertical.light.tabs .tab-title a h6{color:#999}.vertical.light.tabs-tryrequest .tab-title:hover a h6,.vertical.light.tabs .tab-title:hover a h6,.vertical.light.tabs-tryrequest .tab-title.active a h6,.vertical.light.tabs .tab-title.active a h6,.vertical.light.tabs-tryrequest #univ-menu .menu-head .tab-title.search-in.activate a h6,#univ-menu .menu-head .vertical.light.tabs-tryrequest .tab-title.search-in.activate a h6,.vertical.light.tabs #univ-menu .menu-head .tab-title.search-in.activate a h6,#univ-menu .menu-head .vertical.light.tabs .tab-title.search-in.activate a h6{color:#fff}span.label-icon{margin-right:15px;display:inline-block;width:50px;height:50px;vertical-align:top;margin-bottom:24px}span.label-icon.ispresales-icon{background:url("/assets/images/corporate/career-pre-sales-icon.png") center center no-repeat}span.label-icon.ispm-icon{background:url("/assets/images/corporate/career-project-manager-icon.png") center center no-repeat}span.label-icon.isfed-icon{background:url("/assets/images/corporate/career-front-end-developer-icon.png") center center no-repeat}span.label-icon.isnet-icon{background:url("/assets/images/corporate/career-net-developer-icon.png") center center no-repeat}span.label-icon.isid-icon{background:url("/assets/images/corporate/career-ios-developer-icon.png") center center no-repeat}span.label-icon.isad-icon{background:url("/assets/images/corporate/career-android-developer-icon.png") center center no-repeat}span.label-icon.iswd-icon{background:url("/assets/images/corporate/career-web-studio-icon.png") center center no-repeat}span.label-icon.issa-icon{background:url("/assets/images/corporate/career-solutions-analysts-icon.png") center center no-repeat}span.label-icon+h3{display:inline-block}.cta{text-align:center}.cta-chat{padding:4px 34px 4px 4px;display:inline-block;border:1px solid #fff;-webkit-border-radius:40px;-moz-border-radius:40px;border-radius:40px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.cta-chat img{width:64px;height:64px;margin:0px;margin-right:5px}.cta-chat span{color:#fff;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.cta-chat:hover{border:1px solid #0072bc}.cta-chat:hover span{color:#0072bc}span.icon-medium-dark-circle,span.icon-medium-light-circle{width:50px;height:50px;border:1px solid #333;font-size:30px;color:#333;display:block;vertical-align:middle;text-align:center;margin:0px auto 20px;line-height:50px}span.icon-medium-dark-circle.blue,span.blue.icon-medium-light-circle{border:1px solid #fff}span.icon-medium-light-circle{color:#fff;border:1px solid #fff}span.large-icon-light-placeholder,span.large-icon-dark-placeholder{width:100px;height:100px;border:1px solid #fff;-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;border-radius:4px;margin-bottom:10px;display:inline-block;text-align:center}span.large-icon-dark-placeholder{border:1px solid #333}span.medium-icon-dark-placeholder,span.medium-icon-light-placeholder{width:50px !important;height:50px !important;display:block !important;text-align:center;border:1px solid #333;-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;border-radius:4px;margin:0 auto 10px}span.medium-icon-light-placeholder{border:1px solid #fff}span.medium-icon,span.large-icon{margin-bottom:20px;display:block}span.medium-icon img,span.large-icon img{display:inline-block;width:auto}span.blue-number{background:#0072bc;color:#fff;font-size:24px;font-family:"myriad_set_prothin","Lucida Grande",Helvetica,sans-serif;width:52px;height:52px;line-height:52px;display:inline-block;margin-bottom:10px;text-align:center;vertical-align:top;margin-right:10px;margin-top:10px}span.blue-number+p,span.blue-number+h5{display:inline-block}span.blue-number+h5{width:70%}span.placeholder{width:100%;margin:20px 0;height:200px;border:1px solid #999;display:inline-block}span.screenshot-light-placehoder{background:url("/assets/images/default/placeholder-screenshot-light.png") center top no-repeat;margin:35px 0;display:inline-block;width:100%;height:487px}span.screenshot-dark-placehoder{background:url("/assets/images/default/placeholder-screenshot-dark.png") center top no-repeat;margin:35px 0;display:inline-block;width:100%;height:487px}.sourcecode{background:#fff;width:100%;-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;border-radius:4px;-webkit-box-shadow:0px 4px 25px rgba(0,0,0,0.13);-moz-box-shadow:0px 4px 25px rgba(0,0,0,0.13);-o-box-shadow:0px 4px 25px rgba(0,0,0,0.13);box-shadow:0px 4px 25px rgba(0,0,0,0.13);padding:25px}.sourcecode code{font-size:.875rem;padding:0px}.sourcecode span.textblue{color:#0072bc}.sourcecode span.textgreen{color:#00a172}.sourcecode span.textred{color:#cf0000}.feature-rounded-shadow{-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;border-radius:4px;-webkit-box-shadow:0px 4px 25px rgba(0,0,0,0.13);-moz-box-shadow:0px 4px 25px rgba(0,0,0,0.13);-o-box-shadow:0px 4px 25px rgba(0,0,0,0.13);box-shadow:0px 4px 25px rgba(0,0,0,0.13)}.source-row{position:relative;z-index:1}.result-row{position:relative}.badge-feature{padding-top:70px !important}.badge-feature .columns{padding:15px 0}.badge-feature .columns:nth-child(3n){clear:both}span.footnote{font-size:14px;color-rendering:#ccc;display:block;margin:5px 0 10px}.free-flow{position:absolute;z-index:0;max-width:none}.icon-badge{text-align:center;margin:35px 0px 20px}.icon-badge div{display:inline-block;text-align:center;width:20%}.icon-badge div img.icon-medium,.icon-badge div img.icon-medium-center{margin-bottom:10px}.icon-badge div p{text-align:center;margin:0;font-size:.875rem}.icon-medium,.icon-medium-center{margin:0px auto 8px;width:50px;height:50px}.icon-medium-center{display:block}.icon-large{width:100px;height:100px;margin:0px auto 16px;display:block;font-size:90px;line-height:100px}.icon-64{width:64px;height:64px;display:inline-block;margin-bottom:8px}.icon-large-platform{display:block;padding:32px;background:transparent;border-radius:50%;margin:15px auto;width:94px;height:94px}.icon-large-platform svg{width:30px;height:30px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.icon-large-platform.ios{border:1px solid #d3d1d1;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.icon-large-platform.ios svg{fill:#d3d1d1}.icon-large-platform.ios:hover{background:#d3d1d1}.icon-large-platform.ios:hover svg{fill:#fff}.icon-large-platform.android{border:1px solid #99cc00;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.icon-large-platform.android svg{fill:#99cc00}.icon-large-platform.android:hover{background:#99cc00}.icon-large-platform.android:hover svg{fill:#fff}.icon-large-platform.winphone{border:1px solid #f00;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.icon-large-platform.winphone svg{fill:#f00}.icon-large-platform.winphone:hover{background:#f00}.icon-large-platform.winphone:hover svg{fill:#fff}.icon-large-platform.winstore{border:1px solid #24ccff;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.icon-large-platform.winstore svg{fill:#24ccff}.icon-large-platform.winstore:hover{background:#24ccff}.icon-large-platform.winstore:hover svg{fill:#fff}.icon-large-platform ~ h5{font-size:1.1rem}table.requirement{width:100%;border:0px}table.requirement thead{background:#fff}table.requirement tbody tr:nth-of-type(even){background:#fff}table.requirement tbody tr:nth-of-type(odd){background:#f2f2f2}table.requirement tbody span{color:#5ad136;display:block;margin:inherit auto;text-align:center;font-size:2rem}table.requirement tbody td{padding:10px 20px}#carousel-enterprise{width:100%;text-align:center}#carousel-enterprise .owl-item{padding:0px}#carousel-enterprise .owl-item img{display:inline-block}#testimonial .owl-item{padding:0 30px}#testimonial .owl-item img{width:auto;height:auto}#testimonial .owl-item p{height:240px;overflow:hidden;min-height:240px;padding:20px;background:url("/assets/images/home/quotes.png") left top no-repeat}#testimonial .owl-item h5,#testimonial .owl-item span.title{padding-left:20px;padding-right:20px;display:block}.owl-controls{margin-top:35px}.owl-controls .owl-dots{text-align:center}.owl-controls .owl-dots .owl-dot{display:inline-block;margin:0 5px}.owl-controls .owl-dots .owl-dot span{width:10px;height:10px;display:inline-block;border:1px solid #999}.owl-controls .owl-dots .owl-dot.active span,.owl-controls .owl-dots #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head .owl-controls .owl-dots .owl-dot.search-in.activate span{width:10px;height:10px;display:inline-block;border:1px solid #999;background-color:#999}#fsc-crsl{width:100%;position:relative}#fsc-crsl:after{content:'';border:20px solid transparent;border-top:20px solid #fff;width:0px;height:0px;position:absolute;display:block;left:50%;margin-left:-20px;top:0px;z-index:3}#fsc-crsl .fsc-list{padding:60px 0 90px;width:100%}#fsc-crsl .fsc-list.webgrid-bg{background:#37a7db}#fsc-crsl .fsc-list.webcombo-bg{background:#2ecc71}#fsc-crsl .fsc-list.webinput-bg{background:#9b59b6}#fsc-crsl .owl-item{padding:0px}#fsc-crsl .owl-item p{height:auto;overflow:visible;min-height:initial}#fsc-crsl .owl-controls{position:absolute;width:100%;bottom:37px;margin:0px}#fsc-crsl .owl-controls .owl-dot span{border:1px solid #fff}#fsc-crsl .owl-controls .owl-dot.active span,#fsc-crsl .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head #fsc-crsl .owl-controls .owl-dot.search-in.activate span{background:#fff}#showcase{width:100%;position:relative;margin-top:60px;padding-top:80px}#showcase .item{display:inline-block;width:33%}#showcase .item a{display:block;position:relative}#showcase .item a img{margin:1%;width:98%}#showcase .item a .desc{width:80%;height:auto;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;display:block;z-index:2;position:absolute;top:50%;left:50%;opacity:0;-webkit-transform:translate(-50%, 0%);-moz-transform:translate(-50%, 0%);-o-transform:translate(-50%, 0%);transform:translate(-50%, 0%)}#showcase .item a .overlay{display:block;opacity:0;visibility:visible;z-index:1;position:absolute;background:rgba(0,0,0,0.7);width:98%;margin:0px 1%;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}#showcase .item a:hover .desc{opacity:1;-webkit-transform:translate(-50%, -50%);-moz-transform:translate(-50%, -50%);-o-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}#showcase .item a:hover .overlay{opacity:1}#showcase .owl-item{padding:0px}#showcase .owl-item .item{width:100%}#showcase .owl-item .item img{width:98% !important;margin:1%}#showcase .owl-controls{position:absolute;top:0px;width:100%}.carousel-center-grid .owl-item,.carousel-center-grid-service .owl-item{line-height:42px;min-height:300px;position:relative}.carousel-center-grid .owl-item::after,.carousel-center-grid-service .owl-item::after{cursor:default;width:32px;height:32px;border-radius:16px;box-shadow:0 1px 0 0 #fff;-ms-animation:uil-ring-anim 1s linear infinite;-moz-animation:uil-ring-anim 1s linear infinite;-webkit-animation:uil-ring-anim 1s linear infinite;-o-animation:uil-ring-anim 1s linear infinite;animation:uil-ring-anim 1s linear infinite;position:absolute;content:'';top:50%;left:50%;margin-top:-16px;margin-left:-16px;z-index:-1}.carousel-center-grid .owl-item img,.carousel-center-grid-service .owl-item img{width:100%;margin-left:auto;margin-right:auto;display:block;height:auto}.carousel-center-grid .review-list img,.carousel-center-grid-service .review-list img{display:inline-block !important;margin:13px 20px 35px 0px !important;height:100px !important;vertical-align:top}.carousel-center-grid .review-list .review-title,.carousel-center-grid-service .review-list .review-title{width:85%;display:inline-block}.carousel-center-grid .review-list .review-title .review-rating p,.carousel-center-grid-service .review-list .review-title .review-rating p{display:inline-block;line-height:35px;vertical-align:top}.carousel-center-grid .review-list .review-title .review-rating p span,.carousel-center-grid-service .review-list .review-title .review-rating p span{width:25px;height:25px;margin:5px 2px;display:inline-block}.carousel-center-grid .review-list .review-title .review-rating p span:first-child,.carousel-center-grid-service .review-list .review-title .review-rating p span:first-child{margin-left:20px}.carousel-center-grid .review-list .review-title .review-rating p span.star-fill,.carousel-center-grid-service .review-list .review-title .review-rating p span.star-fill{background:url("/assets/images/corporate/awards/star-fill.png") center center no-repeat}.carousel-center-grid .review-list .review-title .review-rating p span.star-blank,.carousel-center-grid-service .review-list .review-title .review-rating p span.star-blank{background:url("/assets/images/corporate/awards/star-blank.png") center center no-repeat}.carousel-center-grid .review-list .review-meta,.carousel-center-grid-service .review-list .review-meta{border-top:1px solid #c1c1c1;padding-top:20px}.carousel-center-grid .review-list .review-meta p,.carousel-center-grid-service .review-list .review-meta p{font-style:italic}.carousel-center-grid .list,.carousel-center-grid-service .list{width:100%}.carousel-center-grid .list .content-carousel,.carousel-center-grid-service .list .content-carousel{width:600px;margin:0 auto}.carousel-center-grid .list .content-carousel img,.carousel-center-grid-service .list .content-carousel img{width:auto;max-width:none}.carousel-center-grid .owl-controls .owl-dot span,.carousel-center-grid-service .owl-controls .owl-dot span{border:1px solid #555}.carousel-center-grid .owl-controls .owl-dot.active span,.carousel-center-grid-service .owl-controls .owl-dot.active span,.carousel-center-grid .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head .carousel-center-grid .owl-controls .owl-dot.search-in.activate span,.carousel-center-grid-service .owl-controls #univ-menu .menu-head .owl-dot.search-in.activate span,#univ-menu .menu-head .carousel-center-grid-service .owl-controls .owl-dot.search-in.activate span{background:#555;border:1px solid #555}.jspTrack{background:transparent !important;-webkit-border-radius:8px;-moz-border-radius:8px;-o-border-radius:8px;border-radius:8px}.jspDrag{background:#999 !important;-webkit-border-radius:8px;-moz-border-radius:8px;-o-border-radius:8px;border-radius:8px}.jspVerticalBar{width:10px !important;background:transparent !important}.browsecontainer{width:100%;height:100%;overflow-y:hidden;position:fixed;top:0px;left:0px;bottom:0px;right:0px;z-index:-1;opacity:0;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.browsecontainer.active,#univ-menu .menu-head .browsecontainer.search-in.activate{z-index:101;opacity:1}.browse-head{position:relative;border-bottom:1px solid #a1a1a1}.browse-head select{height:42px;background-image:none;background-color:transparent;border:0;border-bottom:1px solid #333;font-family:"myriad_set_protext","Lucida Grande",Helvetica,sans-serif;font-size:1rem;width:300px;display:inline-block;margin:0;opacity:0;position:absolute;z-index:2;top:0px;left:0px;cursor:pointer}.browse-head select:focus{outline:none}.browse-head .select-wrapper{display:inline-block;position:relative;width:300px;height:42px;cursor:pointer}.browse-head .select-wrapper .holder{position:relative;z-index:-1;white-space:nowrap;cursor:pointer;line-height:42px;text-align:center}.browse-head .select-wrapper .holder .icon{margin-left:10px;color:#0072bc;vertical-align:-1px}.browse-head span.browse-close{font-size:2rem;position:absolute;top:0px;right:0px;color:#333;line-height:42px;width:42px;text-align:center;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;cursor:pointer}.browse-head span.browse-close:hover{color:#0072bc}.browse-content{overflow-y:scroll}.browse-content .element-item{position:relative;float:left;width:48%;margin:1%;padding:10px}.browse-content .element-item a{display:block}.browse-content .element-item h6{width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.result-list{padding:10px 0}.result-list h4{margin-bottom:5px}.result-list a:hover{text-decoration:underline}.searchcontainer{width:100%;height:100%;position:fixed;top:0px;left:0px;bottom:0px;right:0px;z-index:-1;opacity:0;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.searchcontainer.active,#univ-menu .menu-head .searchcontainer.search-in.activate{z-index:100}.searchcontainer.active .search-area,#univ-menu .menu-head .searchcontainer.search-in.activate .search-area{margin-top:70px}.searchcontainer span.search-close{font-size:2.625rem;position:absolute;top:10px;right:20px;color:#333;line-height:1;width:52px;text-align:center;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;cursor:pointer}.searchcontainer span.search-close:hover{color:#0072bc}.search-area{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;display:block;margin:60px 0px;left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);transform:translateX(-50%);-webkit-border-radius:4px;-moz-border-radius:4px;-o-border-radius:4px;border-radius:4px;box-shadow:0px 2px 25px rgba(0,0,0,0.2);position:relative;top:0px;width:800px;padding-bottom:0px;background:#fff}.search-area .icon{position:absolute;top:12px;left:20px;color:#999;font-size:2.1875rem;line-height:1}.search-area .pageinfo{text-align:center}.search-area .pageinfo span{display:inline-block;padding:20px;cursor:pointer;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;color:#555}.search-area .pageinfo span:hover{color:#0072bc}.search-area #nextresult,.search-area #previousresult{display:none}.search-area .search-result-global{width:100%;padding:0px;margin:0px;background:#fff;position:relative;z-index:3;color:#000;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.search-area .search-result-global span{color:#999;font-size:1.125rem}.search-area .search-result-global p.query{text-align:left;padding:10px 0px;color:#999;border-bottom:1px solid #999;margin:0px 40px}.search-area .search-result-global ul.result-glob{list-style:none;margin:20px 0 0}.search-area .search-result-global ul.result-glob li{margin-bottom:15px;padding:0px 0px 15px}.search-area .search-result-global ul.result-glob li h5{text-align:left;color:#0072bc}.search-area .search-result-global ul.result-glob li h5 a{color:#0072bc;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.search-area .search-result-global ul.result-glob li h5:hover a{text-decoration:none !important;color:#0088cc}.search-area .search-result-global ul.result-glob li p{text-align:left;color:#333;margin-bottom:0px}.searchform{margin:0px;position:relative;z-index:2}.searchform .input-field{background:#fff;border:0px;padding:7px 10px 7px 60px;color:#999;outline:none;background:transparent;line-height:1.5;font-size:1.5rem;margin:0px;margin-top:5px;margin-bottom:5px;width:100%;height:60px;box-shadow:none;font-family:"myriad_set_prothin","Lucida Grande",Helvetica,sans-serif}.searchform .input-field:focus{background:#fff}.searchform input::-webkit-input-placeholder{font-family:"myriad_set_prothin","Lucida Grande",Helvetica,sans-serif;color:#999;font-weight:normal;font-size:24px;font-style:normal}.searchform ::-webkit-input-placeholder{font-family:"myriad_set_prothin","Lucida Grande",Helvetica,sans-serif;color:#999;font-weight:normal;font-size:24px;font-style:normal}.searchform :-moz-placeholder,.searchform ::-moz-placeholder{font-family:"myriad_set_prothin","Lucida Grande",Helvetica,sans-serif;color:#999;font-weight:normal;font-size:24px;font-style:normal}.searchform :-ms-input-placeholder{font-family:"myriad_set_prothin","Lucida Grande",Helvetica,sans-serif;color:#999;font-weight:normal;font-size:24px;font-style:normal}table.compare{width:100%}table.compare thead tr th{padding:15px 30px;text-align:center}table.compare thead tr th p{margin:0px}table.compare tr td{padding:15px 30px;font-size:1.0625rem}table.compare tr td .table-icon{font-size:30px;display:block;text-align:center;vertical-align:middle}table.compare tr td .table-icon.greenicon{color:#308b04}table.compare tr td .table-icon.redicon{color:#ff0000}table.compare tr td .table-icon.yellowicon{color:#ffb900}table.compare tr td .table-icon.blueicon{color:#006ac9}table.compare tr th:nth-child(2),table.compare tr td:nth-child(2){background:rgba(219,238,239,0.3)}.columns-5{width:19.5%;display:inline-block;float:none !important;position:relative;overflow:hidden}.columns-5 img{display:block;text-align:center;margin:0px auto 24px}.columns-5 p{text-align:center;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.columns-5:hover p{color:#0088cc}.column-4{width:25%;display:block;float:left !important;position:relative;padding:20px 10px}.column-4 p{text-align:center;width:164px;height:46px}.column-4 label.select-product:before,.column-4 label.select-product:after{left:184px;top:64%}.column-5{width:19.5%;display:block;float:left !important;position:relative;padding:20px 10px 10px}.column-5 p{text-align:center;width:164px}label.select-product{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;padding:0px !important;margin:0px !important}label.select-product span{display:block}label.select-product:before,label.select-product:after{left:148px;top:70%;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;z-index:100;overflow:hidden}label.select-product:before{font-family:"Ionicons";width:40px;height:40px;background:#5ad136;position:absolute;content:'\f3fd';color:#fff;font-size:30px;display:block;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;opacity:0}label.select-product:after{font-family:"Ionicons";width:40px;height:40px;position:absolute;content:'\f3fd';color:#fff;font-size:30px;display:block;text-align:center;background:#5ad136;-webkit-border-radius:50%;-moz-border-radius:50%;border-radius:50%;opacity:0;transform:scale(2)}label.select-product:hover::before{opacity:0.5}input.checkbox-trial{display:none}input.checkbox-trial:checked+label.select-product:after{opacity:1;transform:scale(1)}a.white-link{color:white}a.white-link:hover{color:#166dba}a.light-grey-link{color:#ccc}a.light-grey-link:hover{color:#166dba}a.feature-group img,a.feature-group p{-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}a.feature-group:hover img{opacity:0.5}a.feature-group:hover p{color:#0088cc}span.icon-red{color:#dd3135}span.icon-green{color:#5ad136}.text-uppercase{text-transform:uppercase}.home-layerslider .ls-bottom-nav-wrapper .ls-nav-start,.home-layerslider .ls-bottom-nav-wrapper .ls-nav-stop{display:none}.home-layerslider .ls-bottom-nav-wrapper .ls-bottom-slidebuttons a{background-image:none;background-color:rgba(3,169,244,0.4);width:20px;height:6px;vertical-align:middle;border-radius:30px;margin:5px}.home-layerslider .ls-bottom-nav-wrapper .ls-bottom-slidebuttons a.ls-nav-active{background-color:#03a9f4}.about-bg{position:absolute;top:0;width:100%;height:100%;background-size:cover;background-position:center center;background-repeat:no-repeat}.about-bg.about-1{left:auto;right:0;background-image:url("/assets/images/corporate/corporate-about-bg-1.jpg")}.about-bg.about-2{left:0;background-image:url("/assets/images/corporate/corporate-about-bg-2.jpg")}.no-max-width{max-width:none}.font-size-0{font-size:0}@media only screen{.margin-top-35{margin-top:15px !important}.text-middle{position:static;transform:none;-webkit-transform:none;-moz-transform:none}.hamburger-icon.hide-for-medium-up{display:inline-block !important}.padding-30{padding:15px}.searchcontainer{padding:60px 0}.searchcontainer.active .search-area,#univ-menu .menu-head .searchcontainer.search-in.activate .search-area{margin:0px}.searchcontainer span.search-close{top:17px;right:0px;z-index:10}.search-area{margin:20px 0px;width:96%;padding:0px 2%;padding-bottom:0px}.search-area .icon{position:absolute;top:14px;left:10px;font-size:1.875rem;line-height:1}.search-area .pageinfo span{padding:15px 20px}.search-area .search-result-global{overflow-y:scroll}.searchform .input-field{padding:7px 40px 7px 45px;font-size:1.125rem;vertical-align:middle;height:60px}.searchform .input-field:focus{background:#fff}.columns-5{width:25%}.small-only-text-center{text-align:center}.align-center{padding-left:15px;padding-right:15px}.align-center-v{position:relative !important;transform:none;-webkit-transform:none;-moz-transform:none;top:0px}.align-center-h{position:relative}.medium-margin-top-60{margin-top:60px}#hero{width:100%;background-size:cover;background-attachment:scroll;background-repeat:no-repeat;background-position:center top;position:relative;padding:140px 0 70px}#hero .row{position:static;-webkit-transform:none;-moz-transform:none;-o-transform:none;transform:none;padding:0 20px}section.blur-bg-dark,section.blur-bg-light{background-attachment:scroll}section.blue-bg .arrow:before{display:none}.goldbg .price-table{margin-bottom:35px}section.navigation-bottom a p{text-overflow:normal;white-space:normal;overflow:visible;line-height:22px}section.navigation-bottom a.nextlink span{margin-left:15px}section.navigation-bottom a.previouslink span{margin-right:15px}img{margin:20px 0}.text-middle-left{position:static;-webkit-transform:none;transform:none}.text-middle-right{position:static;-webkit-transform:none;transform:none}.medium-text-center,.large-text-center{text-align:left !important}.free-flow-right{position:static;max-width:100%;margin:20px 0}.free-flow-left{position:static;max-width:100%;margin:20px 0}.free-flow-bottom{position:static;max-width:100%;-webkit-transform:none;transform:none;margin:0px 0 -70px;padding:0px 15px}.tabs-content{padding:0 20px}.tabs-content .content{display:block}.move-right ul{margin-top:10px}img.right-auto{position:static;left:0px;top:0px;z-index:-1;margin-top:0px;margin-left:0px}.card-view img{padding:0px;margin:0px}.icon-large{width:100px;height:auto}.grid-ms .grid-ms-item,.grid-ms .grid-ms-resizer{width:90%}.grid-ms .grid-ms-item .grid-content{width:100%}.grid-cardview-ms .grid-cardview-ms-item,.grid-cardview-ms .grid-cardview-ms-resizer{width:100%}.showcase-item{display:block;margin-bottom:35px}section.image-bg.mvvm-barcode{background-image:none;background-color:#787163}section.image-bg.best-enterprise-development{background-image:none;background-color:#323232}.column-4{width:100%}.column-5{width:100%}.block-grid-home-banner li{height:auto}.block-grid-home-banner li a{padding:30px;height:auto;display:block}.block-grid-home-banner li.technology-support{background-position:center bottom}.block-grid-home-banner li.technology-support span{display:block;text-align:left;padding-left:40px;padding-top:5px;padding-bottom:5px;width:160px;margin-left:50%;transform:translateX(-50%);padding-right:0px}.block-grid-home-banner li.premier-studio-2015 img{margin-top:25px}.block-grid-home-banner li.premier-studio-2015 a{padding:0px;display:inline-block;height:auto;margin-top:0px;margin-bottom:0px}.block-grid-home-banner li.data-visualization h5{margin-top:208px}.block-grid-images li a::before{top:0px;left:0px;opacity:1;visibility:visible;background:rgba(0,0,0,0.6)}.block-grid-images li a .content{top:50%;opacity:1;visibility:visible}.block-grid-images li a .content h3{margin-bottom:18px}.block-grid-images li a .content p{font-size:.9375rem;line-height:1.4677}.carousel-center-grid .list,.carousel-center-grid-service .list{width:100%}.carousel-center-grid .list .content-carousel,.carousel-center-grid-service .list .content-carousel{width:100%;margin:0}.carousel-center-grid .list .content-carousel img,.carousel-center-grid-service .list .content-carousel img{width:100%;max-width:none}.tabs.vertical+.tabs-content,.vertical.tabs-tryrequest+.tabs-content{width:100%;float:none;padding:0px}}@media only screen and (min-width: 40.063em){#hero.homepage-crosslight img{margin-top:-150px}.no-max-width{max-width:none !important}.large-bottom-position img{position:absolute;bottom:0px !important}.padding-30{padding:30px}.medium-up-padding-left-right-15{padding-left:15px !important;padding-right:15px !important}.medium-up-padding-left-right-30{padding-left:30px !important;padding-right:30px !important}.medium-up-margin-top-bottom-15{margin-top:15px !important;margin-bottom:15px !important}.medium-text-left{text-align:left !important}.medium-text-right{text-align:right !important}.columns-5{width:24%}.align-center{padding:0px}.medium-margin-top-30{margin-top:30px !important}.margin-top-35{margin-top:35px !important}.medium-margin-top-60{margin-top:60px}.icon-large{width:100px;height:100px}.medium-text-center,.large-text-center{text-align:center !important}.medium-no-padding-bottom{padding-bottom:0px}.products-section h5,.products-section h6,.products-section p{text-align:left}.products-section h2+h5{text-align:center}.study-case h5,.study-case p{text-align:left}.move-right ul{margin-top:0px}.badge-feature .columns:nth-child(3n){clear:none}.cross-homepage-8 .owl-nav{display:block}.cross-homepage-8 .owl-nav .owl-prev{left:0px}.cross-homepage-8 .owl-nav .owl-next{right:0px}img.right-auto{position:relative;left:0px;top:0px;z-index:0;margin-top:0px;margin-left:0px}.grid-ms .grid-ms-item,.grid-ms .grid-ms-resizer{width:50%}.grid-ms .grid-ms-item .grid-content{width:60%}.grid-cardview-ms .grid-cardview-ms-item,.grid-cardview-ms .grid-cardview-ms-resizer{width:50%}.block-grid-light .content-grid,.block-grid-white .content-grid,.block-grid-light-alternate-2column .content-grid{padding:60px}.block-grid-images li a .content{padding:60px}.block-grid-home-banner li a{padding:30px;height:340px;display:block}.block-grid-home-banner li.technology-support span{display:block;text-align:left}.block-grid-home-banner li.premier-studio-2015 img{margin-top:25px}.block-grid-home-banner li.premier-studio-2015 a{padding:0px;display:inline-block;height:auto;margin-top:0px;margin-bottom:0px}.block-grid-home-banner li.data-visualization h5{margin-top:208px}#testimonial .owl-controls{display:block}.carousel-center-grid .owl-item img,.carousel-center-grid-service .owl-item img{width:auto;margin-left:auto;margin-right:auto;display:block}section.image-bg.mvvm-barcode{background-image:url("/assets/images/crosslight/whatsnew/2015r1/whatsnew-2015r1-3-bg.jpg");background-color:#787163}section.image-bg.best-enterprise-development{background-image:url("/assets/images/crosslight/whatsnew/2015r1/whatsnew-2015r1-4-bg.jpg");background-color:#323232}.column-4{width:32%}.column-5{width:32%}#hero{padding:220px 0 70px;height:auto}#hero.home-banner .row{padding:0px}#hero.home-banner .column-5{width:20%}#hero.home-banner .cta{padding:35px 15px 15px}#hero.home-banner .cta a{font-size:1.5rem}#hero.home-banner .cta a span{font-size:1.375rem;margin-right:8px}#hero.home-banner .height-400{height:auto !important;min-height:none !important}#hero.home-banner .free-flow-left{position:static}#medium-banner{padding:200px 0 60px}.card-view-profile .head-content{position:absolute;z-index:10;top:0px;left:0px;width:100%;height:100%;padding:95px 0px 0px 20px}.card-view-profile .head-content img{max-width:none;width:auto;display:inline-block;margin:0px 15px 0px 0px}.card-view-profile .head-content h4{display:inline-block}.card-view-profile .content{padding:20px 40px}.card-view-profile .content .icon{vertical-align:0px}.browse-content .element-item{width:31%}.allproducts-link h6{font-size:1.125rem !important}#scrollableList{position:absolute;top:0px;left:15px}#scrollableList li{position:static}#scrollableContent{width:100%;padding-left:25%}.medium-up-text-left{text-align:left}section.boxed-section{height:100%}section.boxed-section .box .box-action{position:absolute;left:0;bottom:35px;width:100%}.medium-up-valign-middle{display:table}.medium-up-valign-middle>.columns{display:table-cell;vertical-align:middle;float:none !important}}@media only screen and (min-width: 64.063em){#hero.homepage-crosslight img{margin-top:-200px}.hide-for-medium-down{display:block !important}.searchcontainer{padding:60px 0}.searchcontainer.active .search-area,#univ-menu .menu-head .searchcontainer.search-in.activate .search-area{margin:0px}.searchcontainer span.search-close{top:10px;right:20px}.large-bottom-position img{position:absolute;bottom:0px !important}.search-area{margin-top:10px;height:auto;width:800px;padding:0px;padding-bottom:0px;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);transform:translateX(-50%)}.search-area .icon{position:absolute;top:12px;left:20px;font-size:2.1875rem;line-height:1}.search-area .pageinfo span{padding:20px}.search-area .search-result-global{overflow-y:scroll}.search-area .search-result-global ul.result-glob{height:auto;overflow-y:initial}.searchform .input-field{padding:7px 10px 7px 60px;font-size:1.5rem;height:60px}.searchform .input-field:focus{background:#fff}.columns-5{width:19%}.block-grid-listing li .listing>h3,.block-grid-listing li .listing .content,.block-grid-images li>a>h3,.align-center-v,.text-middle,.text-middle-right,.text-middle-left{position:absolute;top:50%;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);-o-transform:translateY(-50%);transform:translateY(-50%)}.separator-light::before,.align-center-h{position:absolute;left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);-o-transform:translateX(-50%);transform:translateX(-50%)}.block-grid-listing li .listing>img{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);-moz-transform:translate(-50%, -50%);-o-transform:translate(-50%, -50%);transform:translate(-50%, -50%)}.align-center-v{position:relative !important}.align-center-h{position:relative}.align-bottom{position:absolute;bottom:0px}.text-middle{position:absolute !important;-webkit-transform:translateY(-50%) !important;-moz-transform:translateY(-50%) !important;transform:translateY(-50%) !important}.text-middle-right{left:50%}.text-middle-left{left:0%}.small-only-text-center{text-align:left}.icon-large{margin:0px auto 35px}#hero{height:auto}#hero .row{padding-top:0px;position:static;transform:none}#hero.heading-404page .row{position:absolute;top:50%;left:50%;-webkit-transform:translate(-50%, -50%);-moz-transform:translate(-50%, -50%);transform:translate(-50%, -50%);margin:0 auto}section.light-bg.be-delighted{background:url("/assets/images/services/homepage/homepage-be-delighted.jpg") no-repeat 34% bottom #f2f2f2}section.blue-bg .arrow:before{display:block}section.modularly-delivered{background:url("/assets/images/services/homepage/homepage-modularly-delivered-img.jpg") no-repeat left top;padding:65px 0}span.icon-medium-dark-circle,span.icon-medium-light-circle{margin:0 auto 20px}#fsc-crsl:before{content:url("/assets/images/webui/homepage/shadow.png");width:510px;height:17px;position:absolute;display:block;left:50%;margin-left:-255px;top:0px;z-index:2}.free-flow-right{position:absolute;max-width:none;margin:0px 0px 0px 30px;left:0px}.free-flow-left{position:absolute;max-width:none;margin:0px 30px 0px 0px;right:0px}.free-flow-bottom{position:relative;z-index:0;max-width:none;top:0px;left:50%;-webkit-transform:translateX(-50%);-moz-transform:translateX(-50%);transform:translateX(-50%)}img{margin-top:0px;margin-bottom:0px}.height-300{height:300px;min-height:300px}.height-350{height:350px;min-height:350px}.height-400{height:400px;min-height:400px}.height-450{height:450px;min-height:450px}.height-500{height:500px;min-height:500px}.height-550{height:550px;min-height:550px}.height-600{height:600px;min-height:600px}.height-650{height:650px;min-height:650px}.height-700{height:700px;min-height:700px}.height-800{height:800px;min-height:800px}ul.tabs,ul.tabs-tryrequest,ul.tabs.vertical.light{display:inline-block !important}ul.tabs li.tab-title,ul.tabs-tryrequest li.tab-title,ul.tabs.vertical.light li.tab-title{display:inline-block;margin:0px;padding:0px;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}ul.tabs li.tab-title a,ul.tabs-tryrequest li.tab-title a,ul.tabs.vertical.light li.tab-title a{background:transparent}ul.tabs li.tab-title a:hover,ul.tabs-tryrequest li.tab-title a:hover{background:transparent}ul.tabs li.tab-title a:active,ul.tabs-tryrequest li.tab-title a:active{background:transparent}ul.tabs li.tab-title a:visited,ul.tabs-tryrequest li.tab-title a:visited{background:transparent}ul.tabs li.tab-title a h5,ul.tabs-tryrequest li.tab-title a h5,ul.tabs.vertical.light li.tab-title a h5{padding-left:15px;padding-right:15px}.tabs-content{padding:0px}.tabs-content .content{display:block;opacity:0;visibility:hidden;-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;z-index:1;margin-left:20px;height:0px;padding:0px;overflow:hidden}.tabs-content .content img{max-height:450px;display:inline-block !important}.tabs-content .content.content::before{background:#fff}.tabs-content .content.active,.tabs-content #univ-menu .menu-head .content.search-in.activate,#univ-menu .menu-head .tabs-content .content.search-in.activate{opacity:1;visibility:visible;display:block;z-index:1;margin-left:0px;height:auto}.tabs.vertical+.tabs-content,.vertical.tabs-tryrequest+.tabs-content{width:80%;float:left;padding-left:50px}.result-row:before{content:'';background:url("/assets/images/default/dashed.gif");width:735px;height:426px;position:absolute;top:-273px;left:62px}.cross-homepage-8 .owl-nav{display:block}.cross-homepage-8 .owl-nav .owl-prev{left:-34px}.cross-homepage-8 .owl-nav .owl-next{right:-34px}img.right-auto{position:absolute;left:0px;top:0px;z-index:-1;margin-top:60px;margin-left:-48px;max-width:none}.icon-large{width:100px;height:100px}.grid-cardview-ms .grid-cardview-ms-item,.grid-cardview-ms .grid-cardview-ms-resizer{width:33%}.showcase-item{display:inline-block;position:relative;margin-bottom:1.875rem}.showcase-item::before{content:'';width:100%;height:100%;position:absolute;top:-20px;left:0px;background:rgba(0,0,0,0.8);-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out;opacity:0}.showcase-item img{width:100%}.showcase-item .desc{padding:15px;width:100%;position:absolute;display:inline-block;z-index:1;top:60%;left:0px;visibility:hidden;opacity:0;-webkit-transform:translateY(-50%);-moz-transform:translateY(-50%);transform:translateY(-50%);-webkit-transition:all 0.3s ease-out;-moz-transition:all 0.3s ease-out;-o-transition:all 0.3s ease-out;-ms-transition:all 0.3s ease-out;transition:all 0.3s ease-out}.showcase-item .desc h4,.showcase-item .desc p{color:#fff}.showcase-item:hover::before{top:0px;left:0px;opacity:1}.showcase-item:hover .desc{visibility:visible;opacity:1;top:50%}.block-grid-images li a::before{top:-50px;left:0px;opacity:0;visibility:hidden;background:rgba(0,0,0,0.8)}.block-grid-images li a .content{top:55%;opacity:0;visibility:hidden;padding:60px 80px}.block-grid-images li a .content h3{margin-bottom:24px}.block-grid-images li a .content p{font-size:1.125rem;line-height:1.4444}.column-4{width:25%}.column-5{width:19.5%}.block-grid-home-banner li a{padding:30px;height:340px;display:block}.block-grid-home-banner li.technology-support span{display:inline-block;text-align:left;padding-left:35px;padding-top:5px;padding-bottom:5px;padding-right:10px;width:auto;margin-left:0px;transform:none}.block-grid-home-banner li.premier-studio-2015 img{margin-top:25px}.block-grid-home-banner li.premier-studio-2015 a{padding:0px;display:inline-block;height:auto;margin-top:0px;margin-bottom:0px}.block-grid-home-banner li.data-visualization h5{margin-top:208px}#hero.home-banner{padding-top:120px}#hero.home-banner .column-5{width:20%}#hero.home-banner .column-5 img{display:block}#hero.home-banner .cta{text-align:left}#hero.home-banner .cta a{display:inline-block}#hero.home-banner .height-400{height:400px !important;min-height:400px !important}#hero.home-banner .free-flow-left{position:absolute}.carousel-center-grid .list .content-carousel,.carousel-center-grid-service .list .content-carousel{width:600px;margin:0 auto}.carousel-center-grid .list .content-carousel img,.carousel-center-grid-service .list .content-carousel img{width:auto}section.navigation-bottom a p{text-overflow:ellipsis;white-space:nowrap;overflow:hidden;line-height:26px}section.navigation-bottom a.nextlink span{margin-left:8px}section.navigation-bottom a.previouslink span{margin-right:8px}.browse-content .element-item{width:23%}section.boxed-section .box{padding:70px 55px}section.boxed-section .box .box-background{position:absolute;left:0;top:50%;width:100%}section.boxed-section .box .box-background .background-business{transform:translateY(-10%)}section.boxed-section .box .box-background .background-tools{transform:translate(-5%, -10%)}section.boxed-section .box .box-background .background-app{transform:translateY(15%)}section.boxed-section .box .box-background .background-app img{position:relative;max-width:25%}section.boxed-section .box .box-background .background-app img:first-child{z-index:2}section.boxed-section .box .box-background .background-app img:last-child{margin-left:-5%;z-index:1}section.boxed-section .box .box-action{bottom:70px}}@media only screen and (min-width: 90.063em){#hero.homepage-crosslight img{margin-top:-170px;-webkit-transform:translateX(200px);-moz-transform:translateX(200px);transform:translateX(200px)}#hero{padding:240px 0px 70px}.icon-large{display:block}ul.block-grid-light{margin:0 auto !important;text-align:center;display:block}#showcase{display:block;margin:0 auto}.block-grid-alternate{display:block;margin:0 auto !important}.block-grid-light.xlarge-padding .content-grid{padding:60px 160px}.block-grid-white.xlarge-padding .content-grid{padding:60px 160px}.grid-cardview-ms .grid-cardview-ms-item,.grid-cardview-ms .grid-cardview-ms-resizer{width:33.3%}.block-grid-images li a .content{padding:60px 160px}}@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){.overlay-white{background:#fff !important}.transparent{background:none;background-color:transparent !important;background:transparent !important}.overlay-white.show-overlay{visibility:visible;opacity:1;z-index:100}input[type=text]::-ms-clear{display:none !important;width:0;height:0}input[type=text]::-ms-reveal{display:none !important;width:0;height:0}input[type=password]::-ms-clear{display:none !important;width:0;height:0}input[type=password]::-ms-reveal{display:none !important;width:0;height:0}}

.select2-container{box-sizing:border-box;display:inline-block;margin:0;position:relative;vertical-align:middle;}.select2-container .select2-selection--single{box-sizing:border-box;cursor:pointer;display:block;height:28px;user-select:none;-webkit-user-select:none;}.select2-container .select2-selection--single .select2-selection__rendered{display:block;padding-left:8px;padding-right:20px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;}.select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered{padding-right:8px;padding-left:20px;}.select2-container .select2-selection--multiple{box-sizing:border-box;cursor:pointer;display:block;min-height:32px;user-select:none;-webkit-user-select:none;}.select2-container .select2-selection--multiple .select2-selection__rendered{display:inline-block;overflow:hidden;padding-left:8px;text-overflow:ellipsis;white-space:nowrap;}.select2-container .select2-search--inline{float:left;}.select2-container .select2-search--inline .select2-search__field{box-sizing:border-box;border:none;font-size:100%;margin-top:5px;}.select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none;}.select2-dropdown{background-color:white;border:1px solid #aaa;border-radius:4px;box-sizing:border-box;display:block;position:absolute;left:-100000px;width:100%;z-index:1051;}.select2-results{display:block;}.select2-results__options{list-style:none;margin:0;padding:0;}.select2-results__option{padding:6px;user-select:none;-webkit-user-select:none;}.select2-results__option[aria-selected]{cursor:pointer;}.select2-container--open .select2-dropdown{left:0;}.select2-container--open .select2-dropdown--above{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;}.select2-container--open .select2-dropdown--below{border-top:none;border-top-left-radius:0;border-top-right-radius:0;}.select2-search--dropdown{display:block;padding:4px;}.select2-search--dropdown .select2-search__field{padding:4px;width:100%;box-sizing:border-box;}.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button{-webkit-appearance:none;}.select2-search--dropdown.select2-search--hide{display:none;}.select2-close-mask{border:0;margin:0;padding:0;display:block;position:fixed;left:0;top:0;min-height:100%;min-width:100%;height:auto;width:auto;opacity:0;z-index:99;background-color:#fff;filter:alpha(opacity=0);}.select2-hidden-accessible{border:0;clip:rect(0 0 0 0);height:1px;margin:-1px;overflow:hidden;padding:0;position:absolute;width:1px;}.select2-container--default .select2-selection--single{background-color:#fff;border:1px solid #aaa;border-radius:4px;}.select2-container--default .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px;}.select2-container--default .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;}.select2-container--default .select2-selection--single .select2-selection__placeholder{color:#999;}.select2-container--default .select2-selection--single .select2-selection__arrow{height:26px;position:absolute;top:1px;right:1px;width:20px;}.select2-container--default .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0;}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left;}.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow{left:1px;right:auto;}.select2-container--default.select2-container--disabled .select2-selection--single{background-color:#eee;cursor:default;}.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear{display:none;}.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px;}.select2-container--default .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;}.select2-container--default .select2-selection--multiple .select2-selection__rendered{box-sizing:border-box;list-style:none;margin:0;padding:0 5px;width:100%;}.select2-container--default .select2-selection--multiple .select2-selection__placeholder{color:#999;margin-top:5px;float:left;}.select2-container--default .select2-selection--multiple .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-top:5px;margin-right:10px;}.select2-container--default .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px;}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove{color:#999;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px;}.select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover{color:#333;}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice,.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder{float:right;}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto;}.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto;}.select2-container--default.select2-container--focus .select2-selection--multiple{border:solid black 1px;outline:0;}.select2-container--default.select2-container--disabled .select2-selection--multiple{background-color:#eee;cursor:default;}.select2-container--default.select2-container--disabled .select2-selection__choice__remove{display:none;}.select2-container--default.select2-container--open.select2-container--above .select2-selection--single,.select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple{border-top-left-radius:0;border-top-right-radius:0;}.select2-container--default.select2-container--open.select2-container--below .select2-selection--single,.select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom-left-radius:0;border-bottom-right-radius:0;}.select2-container--default .select2-search--dropdown .select2-search__field{border:1px solid #aaa;}.select2-container--default .select2-search--inline .select2-search__field{background:transparent;border:none;outline:0;}.select2-container--default .select2-results>.select2-results__options{max-height:200px;overflow-y:auto;}.select2-container--default .select2-results__option[role=group]{padding:0;}.select2-container--default .select2-results__option[aria-disabled=true]{color:#999;}.select2-container--default .select2-results__option[aria-selected=true]{background-color:#ddd;}.select2-container--default .select2-results__option .select2-results__option{padding-left:1em;}.select2-container--default .select2-results__option .select2-results__option .select2-results__group{padding-left:0;}.select2-container--default .select2-results__option .select2-results__option .select2-results__option{margin-left:-1em;padding-left:2em;}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-2em;padding-left:3em;}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-3em;padding-left:4em;}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-4em;padding-left:5em;}.select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{margin-left:-5em;padding-left:6em;}.select2-container--default .select2-results__option--highlighted[aria-selected]{background-color:#5897fb;color:white;}.select2-container--default .select2-results__group{cursor:default;display:block;padding:6px;}.select2-container--classic .select2-selection--single{background-color:#f6f6f6;border:1px solid #aaa;border-radius:4px;outline:0;background-image:-webkit-linear-gradient(top, #ffffff 50%, #eeeeee 100%);background-image:-o-linear-gradient(top, #ffffff 50%, #eeeeee 100%);background-image:linear-gradient(to bottom, #ffffff 50%, #eeeeee 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);}.select2-container--classic .select2-selection--single:focus{border:1px solid #5897fb;}.select2-container--classic .select2-selection--single .select2-selection__rendered{color:#444;line-height:28px;}.select2-container--classic .select2-selection--single .select2-selection__clear{cursor:pointer;float:right;font-weight:bold;margin-right:10px;}.select2-container--classic .select2-selection--single .select2-selection__placeholder{color:#999;}.select2-container--classic .select2-selection--single .select2-selection__arrow{background-color:#ddd;border:none;border-left:1px solid #aaa;border-top-right-radius:4px;border-bottom-right-radius:4px;height:26px;position:absolute;top:1px;right:1px;width:20px;background-image:-webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);background-image:-o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);background-image:linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#cccccc', GradientType=0);}.select2-container--classic .select2-selection--single .select2-selection__arrow b{border-color:#888 transparent transparent transparent;border-style:solid;border-width:5px 4px 0 4px;height:0;left:50%;margin-left:-4px;margin-top:-2px;position:absolute;top:50%;width:0;}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear{float:left;}.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow{border:none;border-right:1px solid #aaa;border-radius:0;border-top-left-radius:4px;border-bottom-left-radius:4px;left:1px;right:auto;}.select2-container--classic.select2-container--open .select2-selection--single{border:1px solid #5897fb;}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow{background:transparent;border:none;}.select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #888 transparent;border-width:0 4px 5px 4px;}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single{border-top:none;border-top-left-radius:0;border-top-right-radius:0;background-image:-webkit-linear-gradient(top, #ffffff 0%, #eeeeee 50%);background-image:-o-linear-gradient(top, #ffffff 0%, #eeeeee 50%);background-image:linear-gradient(to bottom, #ffffff 0%, #eeeeee 50%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;background-image:-webkit-linear-gradient(top, #eeeeee 50%, #ffffff 100%);background-image:-o-linear-gradient(top, #eeeeee 50%, #ffffff 100%);background-image:linear-gradient(to bottom, #eeeeee 50%, #ffffff 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);}.select2-container--classic .select2-selection--multiple{background-color:white;border:1px solid #aaa;border-radius:4px;cursor:text;outline:0;}.select2-container--classic .select2-selection--multiple:focus{border:1px solid #5897fb;}.select2-container--classic .select2-selection--multiple .select2-selection__rendered{list-style:none;margin:0;padding:0 5px;}.select2-container--classic .select2-selection--multiple .select2-selection__clear{display:none;}.select2-container--classic .select2-selection--multiple .select2-selection__choice{background-color:#e4e4e4;border:1px solid #aaa;border-radius:4px;cursor:default;float:left;margin-right:5px;margin-top:5px;padding:0 5px;}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove{color:#888;cursor:pointer;display:inline-block;font-weight:bold;margin-right:2px;}.select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover{color:#555;}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{float:right;}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice{margin-left:5px;margin-right:auto;}.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove{margin-left:2px;margin-right:auto;}.select2-container--classic.select2-container--open .select2-selection--multiple{border:1px solid #5897fb;}.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple{border-top:none;border-top-left-radius:0;border-top-right-radius:0;}.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple{border-bottom:none;border-bottom-left-radius:0;border-bottom-right-radius:0;}.select2-container--classic .select2-search--dropdown .select2-search__field{border:1px solid #aaa;outline:0;}.select2-container--classic .select2-search--inline .select2-search__field{outline:0;}.select2-container--classic .select2-dropdown{background-color:white;border:1px solid transparent;}.select2-container--classic .select2-dropdown--above{border-bottom:none;}.select2-container--classic .select2-dropdown--below{border-top:none;}.select2-container--classic .select2-results>.select2-results__options{max-height:200px;overflow-y:auto;}.select2-container--classic .select2-results__option[role=group]{padding:0;}.select2-container--classic .select2-results__option[aria-disabled=true]{color:grey;}.select2-container--classic .select2-results__option--highlighted[aria-selected]{background-color:#3875d7;color:white;}.select2-container--classic .select2-results__group{cursor:default;display:block;padding:6px;}.select2-container--classic.select2-container--open .select2-dropdown{border-color:#5897fb;}

/* Aditional Style */
.select2.select2-container .select2-selection__arrow, .select2.select2-container .select2-selection{
    height: 60px;
    outline: none;
}
    
.select2.select2-container .select2-selection__arrow > b{
    border-top-color: black;
}
    
.select2.select2-container.select2-container--open .select2-selection__arrow > b{
    border-bottom-color: black;
}
.select2.select2-container{
    background-image: none;
    outline: none;
    margin-bottom: 16px;
}
.select2.select2-container .select2-selection__rendered {
    margin-top: 15px;
    padding-left: 30px;
    font-family: 'myriad_set_protext', "Lucida Grande", Helvetica, sans-serif;
        font-size: 1rem;
}
.select2.select2-container, .select2.select2-container .select2-selection {
    background-color: transparent;
}
.select2.select2-container .select2-selection, .select2-container .select2-dropdown, .select2-container .select2-search__field{
    border-color: #333 !important;
}                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          
