/* Minification failed. Returning unminified contents.
(3383,1): run-time error CSS1019: Unexpected token, found '@import'
(3383,9): run-time error CSS1019: Unexpected token, found 'url("nativedroid2.color.teal.css")'
(3396,1): run-time error CSS1019: Unexpected token, found '@import'
(3396,9): run-time error CSS1019: Unexpected token, found 'url("flexboxgrid.min.css")'
(3397,1): run-time error CSS1019: Unexpected token, found '@import'
(3397,9): run-time error CSS1019: Unexpected token, found 'url("material-design-iconic-font.min.css")'
(3398,1): run-time error CSS1019: Unexpected token, found '@import'
(3398,9): run-time error CSS1019: Unexpected token, found 'url(//fonts.googleapis.com/css?family=RobotoDraft:300,400,500,700,400italic)'
(3399,1): run-time error CSS1019: Unexpected token, found '@import'
(3399,9): run-time error CSS1019: Unexpected token, found 'url(//fonts.googleapis.com/css?family=Roboto:400,300,500,400italic,700,900)'
 */
@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 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;
}

.animated.bounceIn,
.animated.bounceOut {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

.animated.flipOutX,
.animated.flipOutY {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

@-webkit-keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-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-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-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-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-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-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-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-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-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-animation-timing-function: cubic-bezier(0.755, 0.050, 0.855, 0.060);
    animation-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);
  }
}

.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
  -webkit-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);
    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);
  }
}

.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);
    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);
  }
}

.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);
    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);
  }
}

.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);
    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);
  }
}

.swing {
  -webkit-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);
    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);
  }
}

.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;
    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;
  }
}

.wobble {
  -webkit-animation-name: wobble;
  animation-name: wobble;
}

@-webkit-keyframes jello {
  11.1% {
    -webkit-transform: none;
            transform: none
  }

  22.2% {
    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg)
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg)
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg)
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg)
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg)
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
            transform: skewX(0.390625deg) skewY(0.390625deg)
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
  }
  100% {
    -webkit-transform: none;
            transform: none
  }
}

@keyframes jello {
  11.1% {
    -webkit-transform: none;
            transform: none
  }

  22.2% {

    -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
            transform: skewX(-12.5deg) skewY(-12.5deg)
  }
  33.3% {
    -webkit-transform: skewX(6.25deg) skewY(6.25deg);
            transform: skewX(6.25deg) skewY(6.25deg)
  }
  44.4% {
    -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
            transform: skewX(-3.125deg) skewY(-3.125deg)
  }
  55.5% {
    -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
            transform: skewX(1.5625deg) skewY(1.5625deg)
  }
  66.6% {
    -webkit-transform: skewX(-0.78125deg) skewY(-0.78125deg);
            transform: skewX(-0.78125deg) skewY(-0.78125deg)
  }
  77.7% {
    -webkit-transform: skewX(0.390625deg) skewY(0.390625deg);
            transform: skewX(0.390625deg) skewY(0.390625deg)
  }
  88.8% {
    -webkit-transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
            transform: skewX(-0.1953125deg) skewY(-0.1953125deg)
  }
  100% {
    -webkit-transform: none;
            transform: none
  }
}



.jello{
    -webkit-animation-name:jello;
            animation-name:jello;
    -webkit-transform-origin: center;

            transform-origin: center
}

@-webkit-keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-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-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-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);
  }
}

.bounceIn {
  -webkit-animation-name: bounceIn;
  animation-name: bounceIn;
}

@-webkit-keyframes bounceInDown {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-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-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-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;
  }
}

.bounceInDown {
  -webkit-animation-name: bounceInDown;
  animation-name: bounceInDown;
}

@-webkit-keyframes bounceInLeft {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-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-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-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;
  }
}

.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}

@-webkit-keyframes bounceInRight {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-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-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-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;
  }
}

.bounceInRight {
  -webkit-animation-name: bounceInRight;
  animation-name: bounceInRight;
}

@-webkit-keyframes bounceInUp {
  0%, 60%, 75%, 90%, 100% {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-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-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    animation-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);
  }
}

.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);
    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);
  }
}

.bounceOut {
  -webkit-animation-name: bounceOut;
  animation-name: bounceOut;
}

@-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);
    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);
  }
}

.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);
    transform: translate3d(20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-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);
    transform: translate3d(-20px, 0, 0);
  }

  100% {
    opacity: 0;
    -webkit-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);
    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);
  }
}

.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);
    transform: translate3d(0, -100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-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);
    transform: translate3d(0, -2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-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);
    transform: translate3d(-100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-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);
    transform: translate3d(-2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-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);
    transform: translate3d(100%, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-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);
    transform: translate3d(2000px, 0, 0);
  }

  100% {
    opacity: 1;
    -webkit-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);
    transform: translate3d(0, 100%, 0);
  }

  100% {
    opacity: 1;
    -webkit-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);
    transform: translate3d(0, 2000px, 0);
  }

  100% {
    opacity: 1;
    -webkit-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);
    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);
    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);
    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);
    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);
    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);
    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);
    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);
    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);
    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;
  }
}

.animated.flip {
  -webkit-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-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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);
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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);
  }
}

.flipInX {
  -webkit-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-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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);
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    -webkit-animation-timing-function: ease-in;
    animation-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-animation-timing-function: ease-in;
    animation-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);
  }
}

.flipInY {
  -webkit-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);
    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;
  }
}

.flipOutX {
  -webkit-animation-name: flipOutX;
  animation-name: flipOutX;
  -webkit-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);
    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;
  }
}

.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  animation-name: flipOutY;
}

@-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);
    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;
  }
}

.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);
    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;
    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;
  }
}

.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;
    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;
  }
}

.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;
    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;
  }
}

.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;
    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;
  }
}

.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;
    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;
  }
}

.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;
    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;
  }
}

.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: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}

@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: rotate3d(0, 0, 1, 45deg);
    transform: rotate3d(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;
    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;
  }
}

.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;
    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;
  }
}

.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;
    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;
  }
}

.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;
    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;
  }
}

.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);
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }

  100% {
    opacity: 1;
    -webkit-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);
    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);
    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);
    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);
  }
}

.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);
    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);
  }
}

.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);
    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);
  }
}

.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);
    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);
  }
}

.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);
    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);
    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);
  }
}

.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);
    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;
  }
}

.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);
    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;
  }
}

.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);
    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);
  }
}

.zoomOutUp {
  -webkit-animation-name: zoomOutUp;
  animation-name: zoomOutUp;
}

@-webkit-keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInDown {
  0% {
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  -webkit-animation-name: slideInDown;
  animation-name: slideInDown;
}

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  0% {
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  -webkit-animation-name: slideInLeft;
  animation-name: slideInLeft;
}

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  0% {
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  -webkit-animation-name: slideInRight;
  animation-name: slideInRight;
}

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInUp {
  0% {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  100% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  -webkit-animation-name: slideInUp;
  animation-name: slideInUp;
}

@-webkit-keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

@keyframes slideOutDown {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  -webkit-animation-name: slideOutDown;
  animation-name: slideOutDown;
}

@-webkit-keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

@keyframes slideOutLeft {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  -webkit-animation-name: slideOutLeft;
  animation-name: slideOutLeft;
}

@-webkit-keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

@keyframes slideOutRight {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  -webkit-animation-name: slideOutRight;
  animation-name: slideOutRight;
}

@-webkit-keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideOutUp {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  100% {
    visibility: hidden;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  -webkit-animation-name: slideOutUp;
  animation-name: slideOutUp;
}

.container-fluid{margin-right:auto;margin-left:auto;padding-right:2rem;padding-left:2rem}.row{box-sizing:border-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-flex:0 1 auto;-ms-flex:0 1 auto;flex:0 1 auto;-webkit-flex-direction:row;-ms-flex-direction:row;flex-direction:row;-webkit-flex-wrap:wrap;-ms-flex-wrap:wrap;flex-wrap:wrap;margin-right:-.5rem;margin-left:-.5rem}.row.reverse{-webkit-flex-direction:row-reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.col.reverse{-webkit-flex-direction:column-reverse;-ms-flex-direction:column-reverse;flex-direction:column-reverse}.col-xs,.col-xs-1,.col-xs-10,.col-xs-11,.col-xs-12,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-offset-1,.col-xs-offset-10,.col-xs-offset-11,.col-xs-offset-12,.col-xs-offset-2,.col-xs-offset-3,.col-xs-offset-4,.col-xs-offset-5,.col-xs-offset-6,.col-xs-offset-7,.col-xs-offset-8,.col-xs-offset-9{box-sizing:border-box;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;padding-right:.5rem;padding-left:.5rem}.col-xs{-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;max-width:100%}.col-xs-1{-webkit-flex-basis:8.333%;-ms-flex-preferred-size:8.333%;flex-basis:8.333%;max-width:8.333%}.col-xs-2{-webkit-flex-basis:16.667%;-ms-flex-preferred-size:16.667%;flex-basis:16.667%;max-width:16.667%}.col-xs-3{-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;flex-basis:25%;max-width:25%}.col-xs-4{-webkit-flex-basis:33.333%;-ms-flex-preferred-size:33.333%;flex-basis:33.333%;max-width:33.333%}.col-xs-5{-webkit-flex-basis:41.667%;-ms-flex-preferred-size:41.667%;flex-basis:41.667%;max-width:41.667%}.col-xs-6{-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;max-width:50%}.col-xs-7{-webkit-flex-basis:58.333%;-ms-flex-preferred-size:58.333%;flex-basis:58.333%;max-width:58.333%}.col-xs-8{-webkit-flex-basis:66.667%;-ms-flex-preferred-size:66.667%;flex-basis:66.667%;max-width:66.667%}.col-xs-9{-webkit-flex-basis:75%;-ms-flex-preferred-size:75%;flex-basis:75%;max-width:75%}.col-xs-10{-webkit-flex-basis:83.333%;-ms-flex-preferred-size:83.333%;flex-basis:83.333%;max-width:83.333%}.col-xs-11{-webkit-flex-basis:91.667%;-ms-flex-preferred-size:91.667%;flex-basis:91.667%;max-width:91.667%}.col-xs-12{-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%}.col-xs-offset-1{margin-left:8.333%}.col-xs-offset-2{margin-left:16.667%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-4{margin-left:33.333%}.col-xs-offset-5{margin-left:41.667%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-7{margin-left:58.333%}.col-xs-offset-8{margin-left:66.667%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-10{margin-left:83.333%}.col-xs-offset-11{margin-left:91.667%}.start-xs{-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;text-align:start}.center-xs{-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center}.end-xs{-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;text-align:end}.top-xs{-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.middle-xs{-webkit-align-items:center;-ms-flex-align:center;align-items:center}.bottom-xs{-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end}.around-xs{-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around}.between-xs{-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.first-xs{-webkit-order:-1;-ms-flex-order:-1;order:-1}.last-xs{-webkit-order:1;-ms-flex-order:1;order:1}@media only screen and (min-width:48em){.container{width:46rem}.col-sm,.col-sm-1,.col-sm-10,.col-sm-11,.col-sm-12,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-offset-1,.col-sm-offset-10,.col-sm-offset-11,.col-sm-offset-12,.col-sm-offset-2,.col-sm-offset-3,.col-sm-offset-4,.col-sm-offset-5,.col-sm-offset-6,.col-sm-offset-7,.col-sm-offset-8,.col-sm-offset-9{box-sizing:border-box;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;padding-right:.5rem;padding-left:.5rem}.col-sm{-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;max-width:100%}.col-sm-1{-webkit-flex-basis:8.333%;-ms-flex-preferred-size:8.333%;flex-basis:8.333%;max-width:8.333%}.col-sm-2{-webkit-flex-basis:16.667%;-ms-flex-preferred-size:16.667%;flex-basis:16.667%;max-width:16.667%}.col-sm-3{-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;flex-basis:25%;max-width:25%}.col-sm-4{-webkit-flex-basis:33.333%;-ms-flex-preferred-size:33.333%;flex-basis:33.333%;max-width:33.333%}.col-sm-5{-webkit-flex-basis:41.667%;-ms-flex-preferred-size:41.667%;flex-basis:41.667%;max-width:41.667%}.col-sm-6{-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;max-width:50%}.col-sm-7{-webkit-flex-basis:58.333%;-ms-flex-preferred-size:58.333%;flex-basis:58.333%;max-width:58.333%}.col-sm-8{-webkit-flex-basis:66.667%;-ms-flex-preferred-size:66.667%;flex-basis:66.667%;max-width:66.667%}.col-sm-9{-webkit-flex-basis:75%;-ms-flex-preferred-size:75%;flex-basis:75%;max-width:75%}.col-sm-10{-webkit-flex-basis:83.333%;-ms-flex-preferred-size:83.333%;flex-basis:83.333%;max-width:83.333%}.col-sm-11{-webkit-flex-basis:91.667%;-ms-flex-preferred-size:91.667%;flex-basis:91.667%;max-width:91.667%}.col-sm-12{-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%}.col-sm-offset-1{margin-left:8.333%}.col-sm-offset-2{margin-left:16.667%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-4{margin-left:33.333%}.col-sm-offset-5{margin-left:41.667%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.333%}.col-sm-offset-8{margin-left:66.667%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-10{margin-left:83.333%}.col-sm-offset-11{margin-left:91.667%}.start-sm{-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;text-align:start}.center-sm{-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center}.end-sm{-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;text-align:end}.top-sm{-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.middle-sm{-webkit-align-items:center;-ms-flex-align:center;align-items:center}.bottom-sm{-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end}.around-sm{-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around}.between-sm{-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.first-sm{-webkit-order:-1;-ms-flex-order:-1;order:-1}.last-sm{-webkit-order:1;-ms-flex-order:1;order:1}}@media only screen and (min-width:62em){.container{width:61rem}.col-md,.col-md-1,.col-md-10,.col-md-11,.col-md-12,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-offset-1,.col-md-offset-10,.col-md-offset-11,.col-md-offset-12,.col-md-offset-2,.col-md-offset-3,.col-md-offset-4,.col-md-offset-5,.col-md-offset-6,.col-md-offset-7,.col-md-offset-8,.col-md-offset-9{box-sizing:border-box;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;padding-right:.5rem;padding-left:.5rem}.col-md{-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;max-width:100%}.col-md-1{-webkit-flex-basis:8.333%;-ms-flex-preferred-size:8.333%;flex-basis:8.333%;max-width:8.333%}.col-md-2{-webkit-flex-basis:16.667%;-ms-flex-preferred-size:16.667%;flex-basis:16.667%;max-width:16.667%}.col-md-3{-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;flex-basis:25%;max-width:25%}.col-md-4{-webkit-flex-basis:33.333%;-ms-flex-preferred-size:33.333%;flex-basis:33.333%;max-width:33.333%}.col-md-5{-webkit-flex-basis:41.667%;-ms-flex-preferred-size:41.667%;flex-basis:41.667%;max-width:41.667%}.col-md-6{-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;max-width:50%}.col-md-7{-webkit-flex-basis:58.333%;-ms-flex-preferred-size:58.333%;flex-basis:58.333%;max-width:58.333%}.col-md-8{-webkit-flex-basis:66.667%;-ms-flex-preferred-size:66.667%;flex-basis:66.667%;max-width:66.667%}.col-md-9{-webkit-flex-basis:75%;-ms-flex-preferred-size:75%;flex-basis:75%;max-width:75%}.col-md-10{-webkit-flex-basis:83.333%;-ms-flex-preferred-size:83.333%;flex-basis:83.333%;max-width:83.333%}.col-md-11{-webkit-flex-basis:91.667%;-ms-flex-preferred-size:91.667%;flex-basis:91.667%;max-width:91.667%}.col-md-12{-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%}.col-md-offset-1{margin-left:8.333%}.col-md-offset-2{margin-left:16.667%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.333%}.col-md-offset-5{margin-left:41.667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.333%}.col-md-offset-8{margin-left:66.667%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.333%}.col-md-offset-11{margin-left:91.667%}.start-md{-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;text-align:start}.center-md{-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center}.end-md{-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;text-align:end}.top-md{-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.middle-md{-webkit-align-items:center;-ms-flex-align:center;align-items:center}.bottom-md{-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end}.around-md{-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around}.between-md{-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.first-md{-webkit-order:-1;-ms-flex-order:-1;order:-1}.last-md{-webkit-order:1;-ms-flex-order:1;order:1}}@media only screen and (min-width:75em){.container{width:71rem}.col-lg,.col-lg-1,.col-lg-10,.col-lg-11,.col-lg-12,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-offset-1,.col-lg-offset-10,.col-lg-offset-11,.col-lg-offset-12,.col-lg-offset-2,.col-lg-offset-3,.col-lg-offset-4,.col-lg-offset-5,.col-lg-offset-6,.col-lg-offset-7,.col-lg-offset-8,.col-lg-offset-9{box-sizing:border-box;-webkit-flex:0 0 auto;-ms-flex:0 0 auto;flex:0 0 auto;padding-right:.5rem;padding-left:.5rem}.col-lg{-webkit-flex-grow:1;-ms-flex-positive:1;flex-grow:1;-webkit-flex-basis:0;-ms-flex-preferred-size:0;flex-basis:0;max-width:100%}.col-lg-1{-webkit-flex-basis:8.333%;-ms-flex-preferred-size:8.333%;flex-basis:8.333%;max-width:8.333%}.col-lg-2{-webkit-flex-basis:16.667%;-ms-flex-preferred-size:16.667%;flex-basis:16.667%;max-width:16.667%}.col-lg-3{-webkit-flex-basis:25%;-ms-flex-preferred-size:25%;flex-basis:25%;max-width:25%}.col-lg-4{-webkit-flex-basis:33.333%;-ms-flex-preferred-size:33.333%;flex-basis:33.333%;max-width:33.333%}.col-lg-5{-webkit-flex-basis:41.667%;-ms-flex-preferred-size:41.667%;flex-basis:41.667%;max-width:41.667%}.col-lg-6{-webkit-flex-basis:50%;-ms-flex-preferred-size:50%;flex-basis:50%;max-width:50%}.col-lg-7{-webkit-flex-basis:58.333%;-ms-flex-preferred-size:58.333%;flex-basis:58.333%;max-width:58.333%}.col-lg-8{-webkit-flex-basis:66.667%;-ms-flex-preferred-size:66.667%;flex-basis:66.667%;max-width:66.667%}.col-lg-9{-webkit-flex-basis:75%;-ms-flex-preferred-size:75%;flex-basis:75%;max-width:75%}.col-lg-10{-webkit-flex-basis:83.333%;-ms-flex-preferred-size:83.333%;flex-basis:83.333%;max-width:83.333%}.col-lg-11{-webkit-flex-basis:91.667%;-ms-flex-preferred-size:91.667%;flex-basis:91.667%;max-width:91.667%}.col-lg-12{-webkit-flex-basis:100%;-ms-flex-preferred-size:100%;flex-basis:100%;max-width:100%}.col-lg-offset-1{margin-left:8.333%}.col-lg-offset-2{margin-left:16.667%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-4{margin-left:33.333%}.col-lg-offset-5{margin-left:41.667%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.333%}.col-lg-offset-8{margin-left:66.667%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-10{margin-left:83.333%}.col-lg-offset-11{margin-left:91.667%}.start-lg{-webkit-justify-content:flex-start;-ms-flex-pack:start;justify-content:flex-start;text-align:start}.center-lg{-webkit-justify-content:center;-ms-flex-pack:center;justify-content:center;text-align:center}.end-lg{-webkit-justify-content:flex-end;-ms-flex-pack:end;justify-content:flex-end;text-align:end}.top-lg{-webkit-align-items:flex-start;-ms-flex-align:start;align-items:flex-start}.middle-lg{-webkit-align-items:center;-ms-flex-align:center;align-items:center}.bottom-lg{-webkit-align-items:flex-end;-ms-flex-align:end;align-items:flex-end}.around-lg{-webkit-justify-content:space-around;-ms-flex-pack:distribute;justify-content:space-around}.between-lg{-webkit-justify-content:space-between;-ms-flex-pack:justify;justify-content:space-between}.first-lg{-webkit-order:-1;-ms-flex-order:-1;order:-1}.last-lg{-webkit-order:1;-ms-flex-order:1;order:1}}
/*!
 *  Material Design Iconic Font 2.0.2 by Sergey Kupletsky (@zavoloklom) - http://zavoloklom.github.io/material-design-iconic-font/
 *  License - https://github.com/zavoloklom/material-design-iconic-font/blob/gh-pages/License.md (Attribution-ShareAlike 4.0 International license)
 */
@font-face{font-family:Material Design Iconic Font;src:url(../fonts/Material-Design-Iconic-Font.woff?v=2.0.0) format('woff'),url(../fonts/Material-Design-Iconic-Font.ttf?v=2.0.0) format('truetype')}.zmdi{display:inline-block;font:normal normal normal 14px/1 'Material Design Iconic Font';font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.zmd-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.zmd-2x{font-size:2em}.zmd-3x{font-size:3em}.zmd-4x{font-size:4em}.zmd-5x{font-size:5em}.zmd-fw{width:1.28571429em;text-align:center}.zmd-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.zmd-ul>li{position:relative}.zmd-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.zmd-li.zmd-lg{left:-1.85714286em}.zmd-border{padding:.1em .25em;border:solid .1em #9e9e9e;border-radius:2px}.zmd-border-circle{padding:.1em .25em;border:solid .1em #9e9e9e;border-radius:50%}.zmdi.pull-left{float:left;margin-right:.15em}.zmdi.pull-right{float:right;margin-left:.15em}.zmd-spin{-webkit-animation:md-spin 1.5s infinite linear;animation:md-spin 1.5s infinite linear}.zmd-spin-reverse{-webkit-animation:md-spin-reverse 1.5s infinite linear;animation:md-spin-reverse 1.5s infinite linear}@-webkit-keyframes md-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes md-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@-webkit-keyframes md-spin-reverse{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(-359deg);transform:rotate(-359deg)}}@keyframes md-spin-reverse{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(-359deg);transform:rotate(-359deg)}}.zmd-rotate-90{-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.zmd-rotate-180{-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.zmd-rotate-270{-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.zmd-flip-horizontal{-webkit-transform:scale(-1,1);-ms-transform:scale(-1,1);transform:scale(-1,1)}.zmd-flip-vertical{-webkit-transform:scale(1,-1);-ms-transform:scale(1,-1);transform:scale(1,-1)}.zmd-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.zmd-stack-1x,.zmd-stack-2x{position:absolute;left:0;width:100%;text-align:center}.zmd-stack-1x{line-height:inherit}.zmd-stack-2x{font-size:2em}.zmd-inverse{color:#fff}.zmdi-3d-rotation:before{content:'\f101'}.zmdi-album:before{content:'\f102'}.zmdi-archive:before{content:'\f103'}.zmdi-assignment-account:before{content:'\f104'}.zmdi-assignment-alert:before{content:'\f105'}.zmdi-assignment-check:before{content:'\f106'}.zmdi-assignment-o:before{content:'\f107'}.zmdi-assignment-return:before{content:'\f108'}.zmdi-assignment-returned:before{content:'\f109'}.zmdi-assignment:before{content:'\f10a'}.zmdi-attachment-alt:before{content:'\f10b'}.zmdi-attachment:before{content:'\f10c'}.zmdi-audio:before{content:'\f10d'}.zmdi-badge-check:before{content:'\f10e'}.zmdi-balance-wallet:before{content:'\f10f'}.zmdi-balance:before{content:'\f110'}.zmdi-battery-alert:before{content:'\f111'}.zmdi-battery-charging:before{content:'\f112'}.zmdi-battery-unknown:before{content:'\f113'}.zmdi-battery:before{content:'\f114'}.zmdi-block-alt:before{content:'\f115'}.zmdi-block:before{content:'\f116'}.zmdi-book-photo:before{content:'\f117'}.zmdi-book:before{content:'\f118'}.zmdi-bookmark-outline:before{content:'\f119'}.zmdi-bookmark:before{content:'\f11a'}.zmdi-bug:before{content:'\f11b'}.zmdi-cake:before{content:'\f11c'}.zmdi-card-giftcard:before{content:'\f11d'}.zmdi-card-membership:before{content:'\f11e'}.zmdi-card-travel:before{content:'\f11f'}.zmdi-card:before{content:'\f120'}.zmdi-case-play:before{content:'\f121'}.zmdi-case:before{content:'\f122'}.zmdi-chart-donut:before{content:'\f123'}.zmdi-chart:before{content:'\f124'}.zmdi-city-alt:before{content:'\f125'}.zmdi-city:before{content:'\f126'}.zmdi-close-circle-o:before{content:'\f127'}.zmdi-close-circle:before{content:'\f128'}.zmdi-close:before{content:'\f129'}.zmdi-code-setting:before{content:'\f12a'}.zmdi-code-smartphone:before{content:'\f12b'}.zmdi-code:before{content:'\f12c'}.zmdi-collection-add:before{content:'\f12d'}.zmdi-collection-bookmark:before{content:'\f12e'}.zmdi-collection-case-play:before{content:'\f12f'}.zmdi-collection-folder-image:before{content:'\f130'}.zmdi-collection-image-o:before{content:'\f131'}.zmdi-collection-image:before{content:'\f132'}.zmdi-collection-item-1:before{content:'\f133'}.zmdi-collection-item-2:before{content:'\f134'}.zmdi-collection-item-3:before{content:'\f135'}.zmdi-collection-item-4:before{content:'\f136'}.zmdi-collection-item-5:before{content:'\f137'}.zmdi-collection-item-6:before{content:'\f138'}.zmdi-collection-item-7:before{content:'\f139'}.zmdi-collection-item-8:before{content:'\f13a'}.zmdi-collection-item-9-plus:before{content:'\f13b'}.zmdi-collection-item-9:before{content:'\f13c'}.zmdi-collection-item:before{content:'\f13d'}.zmdi-collection-music:before{content:'\f13e'}.zmdi-collection-pdf:before{content:'\f13f'}.zmdi-collection-speaker:before{content:'\f140'}.zmdi-collection-text:before{content:'\f141'}.zmdi-collection-video:before{content:'\f142'}.zmdi-compass:before{content:'\f143'}.zmdi-delete:before{content:'\f144'}.zmdi-dns:before{content:'\f145'}.zmdi-edit:before{content:'\f146'}.zmdi-email-open:before{content:'\f147'}.zmdi-email:before{content:'\f148'}.zmdi-eye-off:before{content:'\f149'}.zmdi-eye:before{content:'\f14a'}.zmdi-favorite-outline:before{content:'\f14b'}.zmdi-favorite:before{content:'\f14c'}.zmdi-fire:before{content:'\f14d'}.zmdi-flag:before{content:'\f14e'}.zmdi-flare:before{content:'\f14f'}.zmdi-flash-auto:before{content:'\f150'}.zmdi-flash-off:before{content:'\f151'}.zmdi-flash:before{content:'\f152'}.zmdi-flip:before{content:'\f153'}.zmdi-flower:before{content:'\f154'}.zmdi-font:before{content:'\f155'}.zmdi-fullscreen-alt:before{content:'\f156'}.zmdi-fullscreen-exit:before{content:'\f157'}.zmdi-fullscreen:before{content:'\f158'}.zmdi-gesture:before{content:'\f159'}.zmdi-globe-alt:before{content:'\f15a'}.zmdi-globe-lock:before{content:'\f15b'}.zmdi-globe:before{content:'\f15c'}.zmdi-graduation-cap:before{content:'\f15d'}.zmdi-home:before{content:'\f15e'}.zmdi-hourglass-outline:before{content:'\f15f'}.zmdi-hourglass:before{content:'\f160'}.zmdi-http:before{content:'\f161'}.zmdi-image-alt:before{content:'\f162'}.zmdi-image:before{content:'\f163'}.zmdi-inbox:before{content:'\f164'}.zmdi-incandescent:before{content:'\f165'}.zmdi-invert-colors-off:before{content:'\f166'}.zmdi-invert-colors:before{content:'\f167'}.zmdi-key:before{content:'\f168'}.zmdi-label-heart:before{content:'\f169'}.zmdi-label-outline:before{content:'\f16a'}.zmdi-label:before{content:'\f16b'}.zmdi-labels:before{content:'\f16c'}.zmdi-landscape:before{content:'\f16d'}.zmdi-link:before{content:'\f16e'}.zmdi-lock-open:before{content:'\f16f'}.zmdi-lock-outline:before{content:'\f170'}.zmdi-lock:before{content:'\f171'}.zmdi-mail-reply-all:before{content:'\f172'}.zmdi-mail-reply:before{content:'\f173'}.zmdi-mail-send:before{content:'\f174'}.zmdi-menu:before{content:'\f175'}.zmdi-money-off:before{content:'\f176'}.zmdi-money:before{content:'\f177'}.zmdi-more-horiz:before{content:'\f178'}.zmdi-more-vert:before{content:'\f179'}.zmdi-open-in-browser:before{content:'\f17a'}.zmdi-open-in-new:before{content:'\f17b'}.zmdi-palette:before{content:'\f17c'}.zmdi-plaster:before{content:'\f17d'}.zmdi-power-off-setting:before{content:'\f17e'}.zmdi-power-off:before{content:'\f17f'}.zmdi-puzzle-piece:before{content:'\f180'}.zmdi-receipt:before{content:'\f181'}.zmdi-refresh-alt:before{content:'\f182'}.zmdi-refresh-sync-disabled:before{content:'\f183'}.zmdi-refresh-sync-problem:before{content:'\f184'}.zmdi-refresh-sync:before{content:'\f185'}.zmdi-refresh:before{content:'\f186'}.zmdi-ruler:before{content:'\f187'}.zmdi-screen-rotation-lock:before{content:'\f188'}.zmdi-screen-rotation:before{content:'\f189'}.zmdi-search-for:before{content:'\f18a'}.zmdi-search-in-file:before{content:'\f18b'}.zmdi-search-in-page:before{content:'\f18c'}.zmdi-search-replace:before{content:'\f18d'}.zmdi-search:before{content:'\f18e'}.zmdi-seat:before{content:'\f18f'}.zmdi-settings-square:before{content:'\f190'}.zmdi-settings:before{content:'\f191'}.zmdi-shield-check:before{content:'\f192'}.zmdi-shield-security:before{content:'\f193'}.zmdi-shopping-basket:before{content:'\f194'}.zmdi-shopping-cart-add:before{content:'\f195'}.zmdi-shopping-cart:before{content:'\f196'}.zmdi-sign-in:before{content:'\f197'}.zmdi-sort-by-alpha:before{content:'\f198'}.zmdi-spellcheck:before{content:'\f199'}.zmdi-storage:before{content:'\f19a'}.zmdi-sun:before{content:'\f19b'}.zmdi-tab-unselected:before{content:'\f19c'}.zmdi-tab:before{content:'\f19d'}.zmdi-tag-backspace:before{content:'\f19e'}.zmdi-tag-more:before{content:'\f19f'}.zmdi-thumb-down:before{content:'\f1a0'}.zmdi-thumb-up-down:before{content:'\f1a1'}.zmdi-thumb-up:before{content:'\f1a2'}.zmdi-toll:before{content:'\f1a3'}.zmdi-toys:before{content:'\f1a4'}.zmdi-translate:before{content:'\f1a5'}.zmdi-triangle-down:before{content:'\f1a6'}.zmdi-triangle-up:before{content:'\f1a7'}.zmdi-wallpaper:before{content:'\f1a8'}.zmdi-wrench:before{content:'\f1a9'}.zmdi-zoom-in:before{content:'\f1aa'}.zmdi-zoom-out:before{content:'\f1ab'}.zmdi-alert-circle-o:before{content:'\f1ac'}.zmdi-alert-circle:before{content:'\f1ad'}.zmdi-alert-octagon:before{content:'\f1ae'}.zmdi-alert-polygon:before{content:'\f1af'}.zmdi-alert-triangle:before{content:'\f1b0'}.zmdi-help-outline:before{content:'\f1b1'}.zmdi-help:before{content:'\f1b2'}.zmdi-info-outline:before{content:'\f1b3'}.zmdi-info:before{content:'\f1b4'}.zmdi-account-add:before{content:'\f1b5'}.zmdi-account-box-mail:before{content:'\f1b6'}.zmdi-account-box-o:before{content:'\f1b7'}.zmdi-account-box-phone:before{content:'\f1b8'}.zmdi-account-box:before{content:'\f1b9'}.zmdi-account-calendar:before{content:'\f1ba'}.zmdi-account-circle:before{content:'\f1bb'}.zmdi-account-o:before{content:'\f1bc'}.zmdi-account:before{content:'\f1bd'}.zmdi-accounts-add:before{content:'\f1be'}.zmdi-accounts-alt:before{content:'\f1bf'}.zmdi-accounts-list-alt:before{content:'\f1c0'}.zmdi-accounts-list:before{content:'\f1c1'}.zmdi-accounts-outline:before{content:'\f1c2'}.zmdi-accounts:before{content:'\f1c3'}.zmdi-face:before{content:'\f1c4'}.zmdi-male:before{content:'\f1c5'}.zmdi-mood-bad:before{content:'\f1c6'}.zmdi-mood:before{content:'\f1c7'}.zmdi-cloud-circle:before{content:'\f1c8'}.zmdi-cloud-done:before{content:'\f1c9'}.zmdi-cloud-download:before{content:'\f1ca'}.zmdi-cloud-off:before{content:'\f1cb'}.zmdi-cloud-outline-alt:before{content:'\f1cc'}.zmdi-cloud-outline:before{content:'\f1cd'}.zmdi-cloud-upload:before{content:'\f1ce'}.zmdi-cloud:before{content:'\f1cf'}.zmdi-download:before{content:'\f1d0'}.zmdi-file-add:before{content:'\f1d1'}.zmdi-file-text:before{content:'\f1d2'}.zmdi-file:before{content:'\f1d3'}.zmdi-folder-outline:before{content:'\f1d4'}.zmdi-folder-shared:before{content:'\f1d5'}.zmdi-folder-special:before{content:'\f1d6'}.zmdi-folder:before{content:'\f1d7'}.zmdi-gif:before{content:'\f1d8'}.zmdi-upload:before{content:'\f1d9'}.zmdi-border-all:before{content:'\f1da'}.zmdi-border-bottom:before{content:'\f1db'}.zmdi-border-clear:before{content:'\f1dc'}.zmdi-border-color:before{content:'\f1dd'}.zmdi-border-horizontal:before{content:'\f1de'}.zmdi-border-inner:before{content:'\f1df'}.zmdi-border-left:before{content:'\f1e0'}.zmdi-border-outer:before{content:'\f1e1'}.zmdi-border-right:before{content:'\f1e2'}.zmdi-border-style:before{content:'\f1e3'}.zmdi-border-top:before{content:'\f1e4'}.zmdi-border-vertical:before{content:'\f1e5'}.zmdi-brush:before{content:'\f1e6'}.zmdi-colorize:before{content:'\f1e7'}.zmdi-copy:before{content:'\f1e8'}.zmdi-crop:before{content:'\f1e9'}.zmdi-cut:before{content:'\f1ea'}.zmdi-format-align-center:before{content:'\f1eb'}.zmdi-format-align-justify:before{content:'\f1ec'}.zmdi-format-align-left:before{content:'\f1ed'}.zmdi-format-align-right:before{content:'\f1ee'}.zmdi-format-bold:before{content:'\f1ef'}.zmdi-format-clear-all:before{content:'\f1f0'}.zmdi-format-clear:before{content:'\f1f1'}.zmdi-format-color-fill:before{content:'\f1f2'}.zmdi-format-color-reset:before{content:'\f1f3'}.zmdi-format-color-text:before{content:'\f1f4'}.zmdi-format-indent-decrease:before{content:'\f1f5'}.zmdi-format-indent-increase:before{content:'\f1f6'}.zmdi-format-italic:before{content:'\f1f7'}.zmdi-format-line-spacing:before{content:'\f1f8'}.zmdi-format-list-bulleted:before{content:'\f1f9'}.zmdi-format-list-numbered:before{content:'\f1fa'}.zmdi-format-paint:before{content:'\f1fb'}.zmdi-format-playlist-add:before{content:'\f1fc'}.zmdi-format-queue-music:before{content:'\f1fd'}.zmdi-format-quote:before{content:'\f1fe'}.zmdi-format-size:before{content:'\f1ff'}.zmdi-format-strikethrough-s:before{content:'\f200'}.zmdi-format-strikethrough:before{content:'\f201'}.zmdi-format-subject:before{content:'\f202'}.zmdi-format-textdirection-l-to-r:before{content:'\f203'}.zmdi-format-textdirection-r-to-l:before{content:'\f204'}.zmdi-format-underlined:before{content:'\f205'}.zmdi-format-valign-bottom:before{content:'\f206'}.zmdi-format-valign-center:before{content:'\f207'}.zmdi-format-valign-top:before{content:'\f208'}.zmdi-functions:before{content:'\f209'}.zmdi-print:before{content:'\f20a'}.zmdi-redo:before{content:'\f20b'}.zmdi-save:before{content:'\f20c'}.zmdi-select-all:before{content:'\f20d'}.zmdi-space-bar:before{content:'\f20e'}.zmdi-text-format:before{content:'\f20f'}.zmdi-undo:before{content:'\f210'}.zmdi-wrap-text:before{content:'\f211'}.zmdi-comment-alert:before{content:'\f212'}.zmdi-comment-alt-text:before{content:'\f213'}.zmdi-comment-alt:before{content:'\f214'}.zmdi-comment-dots:before{content:'\f215'}.zmdi-comment-image:before{content:'\f216'}.zmdi-comment-list:before{content:'\f217'}.zmdi-comment-outline:before{content:'\f218'}.zmdi-comment-sign:before{content:'\f219'}.zmdi-comment-text-alt:before{content:'\f21a'}.zmdi-comment-text:before{content:'\f21b'}.zmdi-comment-video:before{content:'\f21c'}.zmdi-comment:before{content:'\f21d'}.zmdi-comments:before{content:'\f21e'}.zmdi-rate-review:before{content:'\f21f'}.zmdi-check-all:before{content:'\f220'}.zmdi-check-circle-u:before{content:'\f221'}.zmdi-check-circle:before{content:'\f222'}.zmdi-check-square:before{content:'\f223'}.zmdi-check:before{content:'\f224'}.zmdi-circle-o:before{content:'\f225'}.zmdi-circle:before{content:'\f226'}.zmdi-dot-circle-alt:before{content:'\f227'}.zmdi-dot-circle:before{content:'\f228'}.zmdi-minus-circle-outline:before{content:'\f229'}.zmdi-minus-circle:before{content:'\f22a'}.zmdi-minus-square:before{content:'\f22b'}.zmdi-minus:before{content:'\f22c'}.zmdi-plus-box:before{content:'\f22d'}.zmdi-plus-circle-o-duplicate:before{content:'\f22e'}.zmdi-plus-circle-o:before{content:'\f22f'}.zmdi-plus-circle:before{content:'\f230'}.zmdi-plus:before{content:'\f231'}.zmdi-square-o:before{content:'\f232'}.zmdi-star-border:before{content:'\f233'}.zmdi-star-circle:before{content:'\f234'}.zmdi-star-half:before{content:'\f235'}.zmdi-star:before{content:'\f236'}.zmdi-camera-add:before{content:'\f237'}.zmdi-camera-alt:before{content:'\f238'}.zmdi-camera-front:before{content:'\f239'}.zmdi-camera-mic:before{content:'\f23a'}.zmdi-camera-monochrome-photos:before{content:'\f23b'}.zmdi-camera-party-mode:before{content:'\f23c'}.zmdi-camera-rear:before{content:'\f23d'}.zmdi-camera-roll:before{content:'\f23e'}.zmdi-camera-switch:before{content:'\f23f'}.zmdi-camera:before{content:'\f240'}.zmdi-card-alert:before{content:'\f241'}.zmdi-card-off:before{content:'\f242'}.zmdi-card-sd:before{content:'\f243'}.zmdi-card-sim:before{content:'\f244'}.zmdi-desktop-mac:before{content:'\f245'}.zmdi-desktop-windows:before{content:'\f246'}.zmdi-device-hub:before{content:'\f247'}.zmdi-devices-off:before{content:'\f248'}.zmdi-devices:before{content:'\f249'}.zmdi-dock:before{content:'\f24a'}.zmdi-gamepad:before{content:'\f24b'}.zmdi-headset-mic:before{content:'\f24c'}.zmdi-headset:before{content:'\f24d'}.zmdi-input-antenna:before{content:'\f24e'}.zmdi-input-composite:before{content:'\f24f'}.zmdi-input-hdmi:before{content:'\f250'}.zmdi-input-power:before{content:'\f251'}.zmdi-input-svideo:before{content:'\f252'}.zmdi-keyboard-hide:before{content:'\f253'}.zmdi-keyboard:before{content:'\f254'}.zmdi-laptop-chromebook:before{content:'\f255'}.zmdi-laptop-mac:before{content:'\f256'}.zmdi-laptop:before{content:'\f257'}.zmdi-live-tv:before{content:'\f258'}.zmdi-mic-off:before{content:'\f259'}.zmdi-mic-outline:before{content:'\f25a'}.zmdi-mic-setting:before{content:'\f25b'}.zmdi-mic:before{content:'\f25c'}.zmdi-mouse:before{content:'\f25d'}.zmdi-radio:before{content:'\f25e'}.zmdi-reader:before{content:'\f25f'}.zmdi-remote-control-alt:before{content:'\f260'}.zmdi-remote-control:before{content:'\f261'}.zmdi-router:before{content:'\f262'}.zmdi-scanner:before{content:'\f263'}.zmdi-smartphone-android:before{content:'\f264'}.zmdi-smartphone-download:before{content:'\f265'}.zmdi-smartphone-erase:before{content:'\f266'}.zmdi-smartphone-info:before{content:'\f267'}.zmdi-smartphone-iphone:before{content:'\f268'}.zmdi-smartphone-landscape-lock:before{content:'\f269'}.zmdi-smartphone-landscape:before{content:'\f26a'}.zmdi-smartphone-lock:before{content:'\f26b'}.zmdi-smartphone-portrait-lock:before{content:'\f26c'}.zmdi-smartphone-portrait:before{content:'\f26d'}.zmdi-smartphone-ring:before{content:'\f26e'}.zmdi-smartphone-setting:before{content:'\f26f'}.zmdi-smartphone-setup:before{content:'\f270'}.zmdi-smartphone:before{content:'\f271'}.zmdi-speaker:before{content:'\f272'}.zmdi-tablet-android:before{content:'\f273'}.zmdi-tablet-mac:before{content:'\f274'}.zmdi-tablet:before{content:'\f275'}.zmdi-tv-list:before{content:'\f276'}.zmdi-tv-play:before{content:'\f277'}.zmdi-tv:before{content:'\f278'}.zmdi-usb:before{content:'\f279'}.zmdi-videocam-off:before{content:'\f27a'}.zmdi-videocam-switch:before{content:'\f27b'}.zmdi-videocam:before{content:'\f27c'}.zmdi-watch:before{content:'\f27d'}.zmdi-directions-bike:before{content:'\f27e'}.zmdi-directions-boat:before{content:'\f27f'}.zmdi-directions-bus:before{content:'\f280'}.zmdi-directions-car:before{content:'\f281'}.zmdi-directions-railway:before{content:'\f282'}.zmdi-directions-run:before{content:'\f283'}.zmdi-directions-subway:before{content:'\f284'}.zmdi-directions-walk:before{content:'\f285'}.zmdi-directions:before{content:'\f286'}.zmdi-hotel:before{content:'\f287'}.zmdi-layers-clear:before{content:'\f288'}.zmdi-layers:before{content:'\f289'}.zmdi-local-activity:before{content:'\f28a'}.zmdi-local-airport:before{content:'\f28b'}.zmdi-local-atm:before{content:'\f28c'}.zmdi-local-bar:before{content:'\f28d'}.zmdi-local-cafe:before{content:'\f28e'}.zmdi-local-car-wash:before{content:'\f28f'}.zmdi-local-convenience-store:before{content:'\f290'}.zmdi-local-dining:before{content:'\f291'}.zmdi-local-drink:before{content:'\f292'}.zmdi-local-florist:before{content:'\f293'}.zmdi-local-gas-station:before{content:'\f294'}.zmdi-local-grocery-store:before{content:'\f295'}.zmdi-local-hospital:before{content:'\f296'}.zmdi-local-hotel:before{content:'\f297'}.zmdi-local-laundry-service:before{content:'\f298'}.zmdi-local-library:before{content:'\f299'}.zmdi-local-mall:before{content:'\f29a'}.zmdi-local-movies:before{content:'\f29b'}.zmdi-local-offer:before{content:'\f29c'}.zmdi-local-parking:before{content:'\f29d'}.zmdi-local-pharmacy:before{content:'\f29e'}.zmdi-local-phone:before{content:'\f29f'}.zmdi-local-pizza:before{content:'\f2a0'}.zmdi-local-play:before{content:'\f2a1'}.zmdi-local-post-office:before{content:'\f2a2'}.zmdi-local-printshop:before{content:'\f2a3'}.zmdi-local-see:before{content:'\f2a4'}.zmdi-local-shipping:before{content:'\f2a5'}.zmdi-local-store:before{content:'\f2a6'}.zmdi-local-taxi:before{content:'\f2a7'}.zmdi-local-wc:before{content:'\f2a8'}.zmdi-map:before{content:'\f2a9'}.zmdi-my-location:before{content:'\f2aa'}.zmdi-nature-people:before{content:'\f2ab'}.zmdi-nature:before{content:'\f2ac'}.zmdi-navigation:before{content:'\f2ad'}.zmdi-pin-account:before{content:'\f2ae'}.zmdi-pin-assistant:before{content:'\f2af'}.zmdi-pin-drop:before{content:'\f2b0'}.zmdi-pin-help:before{content:'\f2b1'}.zmdi-pin-off:before{content:'\f2b2'}.zmdi-pin:before{content:'\f2b3'}.zmdi-traffic:before{content:'\f2b4'}.zmdi-arrow-back:before{content:'\f2b5'}.zmdi-arrow-forward:before{content:'\f2b6'}.zmdi-arrow-in:before{content:'\f2b7'}.zmdi-arrow-merge:before{content:'\f2b8'}.zmdi-arrow-missed:before{content:'\f2b9'}.zmdi-arrow-out:before{content:'\f2ba'}.zmdi-arrow-split:before{content:'\f2bb'}.zmdi-arrows:before{content:'\f2bc'}.zmdi-caret-down-circle:before{content:'\f2bd'}.zmdi-caret-down:before{content:'\f2be'}.zmdi-caret-up:before{content:'\f2bf'}.zmdi-chevron-down:before{content:'\f2c0'}.zmdi-chevron-left:before{content:'\f2c1'}.zmdi-chevron-right:before{content:'\f2c2'}.zmdi-chevron-up:before{content:'\f2c3'}.zmdi-forward:before{content:'\f2c4'}.zmdi-import-export:before{content:'\f2c5'}.zmdi-long-arrow-left:before{content:'\f2c6'}.zmdi-long-arrow-return:before{content:'\f2c7'}.zmdi-long-arrow-tab:before{content:'\f2c8'}.zmdi-rotate-90-degrees-ccw:before{content:'\f2c9'}.zmdi-rotate-left:before{content:'\f2ca'}.zmdi-rotate-right:before{content:'\f2cb'}.zmdi-square-down:before{content:'\f2cc'}.zmdi-square-right:before{content:'\f2cd'}.zmdi-swap-alt:before{content:'\f2ce'}.zmdi-swap-vertical-:before{content:'\f2cf'}.zmdi-swap-vertical-circle:before{content:'\f2d0'}.zmdi-swap:before{content:'\f2d1'}.zmdi-trending-down:before{content:'\f2d2'}.zmdi-trending-flat:before{content:'\f2d3'}.zmdi-trending-up:before{content:'\f2d4'}.zmdi-unfold-less:before{content:'\f2d5'}.zmdi-unfold-more:before{content:'\f2d6'}.zmdi-apps:before{content:'\f2d7'}.zmdi-dehaze:before{content:'\f2d8'}.zmdi-filter-list:before{content:'\f2d9'}.zmdi-reorder:before{content:'\f2da'}.zmdi-sort:before{content:'\f2db'}.zmdi-view-agenda:before{content:'\f2dc'}.zmdi-view-array:before{content:'\f2dd'}.zmdi-view-carousel:before{content:'\f2de'}.zmdi-view-column:before{content:'\f2df'}.zmdi-view-comfy:before{content:'\f2e0'}.zmdi-view-compact:before{content:'\f2e1'}.zmdi-view-dashboard:before{content:'\f2e2'}.zmdi-view-day:before{content:'\f2e3'}.zmdi-view-headline:before{content:'\f2e4'}.zmdi-view-list-alt:before{content:'\f2e5'}.zmdi-view-list:before{content:'\f2e6'}.zmdi-view-module:before{content:'\f2e7'}.zmdi-view-quilt:before{content:'\f2e8'}.zmdi-view-stream:before{content:'\f2e9'}.zmdi-view-subtitles:before{content:'\f2ea'}.zmdi-view-toc:before{content:'\f2eb'}.zmdi-view-web:before{content:'\f2ec'}.zmdi-view-week:before{content:'\f2ed'}.zmdi-widgets:before{content:'\f2ee'}.zmdi-alarm-add:before{content:'\f2ef'}.zmdi-alarm-check:before{content:'\f2f0'}.zmdi-alarm-off:before{content:'\f2f1'}.zmdi-alarm-snooze:before{content:'\f2f2'}.zmdi-alarm:before{content:'\f2f3'}.zmdi-calendar-alt:before{content:'\f2f4'}.zmdi-calendar-check:before{content:'\f2f5'}.zmdi-calendar-note:before{content:'\f2f6'}.zmdi-calendar-remove:before{content:'\f2f7'}.zmdi-calendar:before{content:'\f2f8'}.zmdi-time-countdown:before{content:'\f2f9'}.zmdi-time-interval:before{content:'\f2fa'}.zmdi-time-restore-setting:before{content:'\f2fb'}.zmdi-time-restore:before{content:'\f2fc'}.zmdi-time:before{content:'\f2fd'}.zmdi-timer-off:before{content:'\f2fe'}.zmdi-timer:before{content:'\f2ff'}.zmdi-adb:before{content:'\f300'}.zmdi-android:before{content:'\f301'}.zmdi-polymer:before{content:'\f302'}.zmdi-share:before{content:'\f303'}.zmdi-phone-bluetooth:before{content:'\f304'}.zmdi-phone-end:before{content:'\f305'}.zmdi-phone-forwarded:before{content:'\f306'}.zmdi-phone-in-talk:before{content:'\f307'}.zmdi-phone-locked:before{content:'\f308'}.zmdi-phone-missed:before{content:'\f309'}.zmdi-phone-msg:before{content:'\f30a'}.zmdi-phone-paused:before{content:'\f30b'}.zmdi-phone-ring:before{content:'\f30c'}.zmdi-phone-setting:before{content:'\f30d'}.zmdi-phone-sip:before{content:'\f30e'}.zmdi-phone:before{content:'\f30f'}.zmdi-aspect-ratio-alt:before{content:'\f310'}.zmdi-aspect-ratio:before{content:'\f311'}.zmdi-blur-circular:before{content:'\f312'}.zmdi-blur-linear:before{content:'\f313'}.zmdi-blur-off:before{content:'\f314'}.zmdi-blur:before{content:'\f315'}.zmdi-brightness-2:before{content:'\f316'}.zmdi-brightness-3:before{content:'\f317'}.zmdi-brightness-4:before{content:'\f318'}.zmdi-brightness-5:before{content:'\f319'}.zmdi-brightness-6:before{content:'\f31a'}.zmdi-brightness-7:before{content:'\f31b'}.zmdi-brightness-auto:before{content:'\f31c'}.zmdi-brightness-high:before{content:'\f31d'}.zmdi-brightness-low:before{content:'\f31e'}.zmdi-brightness-medium:before{content:'\f31f'}.zmdi-brightness-setting:before{content:'\f320'}.zmdi-broken-image:before{content:'\f321'}.zmdi-center-focus-strong:before{content:'\f322'}.zmdi-center-focus-weak:before{content:'\f323'}.zmdi-compare:before{content:'\f324'}.zmdi-crop-16-9:before{content:'\f325'}.zmdi-crop-3-2:before{content:'\f326'}.zmdi-crop-5-4:before{content:'\f327'}.zmdi-crop-7-5:before{content:'\f328'}.zmdi-crop-din:before{content:'\f329'}.zmdi-crop-free:before{content:'\f32a'}.zmdi-crop-landscape:before{content:'\f32b'}.zmdi-crop-original:before{content:'\f32c'}.zmdi-crop-portrait:before{content:'\f32d'}.zmdi-crop-square:before{content:'\f32e'}.zmdi-crop:before{content:'\f1e9'}.zmdi-daydream-setting:before{content:'\f32f'}.zmdi-exposure-alt:before{content:'\f330'}.zmdi-exposure:before{content:'\f331'}.zmdi-filter-b-and-w:before{content:'\f332'}.zmdi-filter-center-focus:before{content:'\f333'}.zmdi-filter-frames:before{content:'\f334'}.zmdi-filter-tilt-shift:before{content:'\f335'}.zmdi-gradient:before{content:'\f336'}.zmdi-grain:before{content:'\f337'}.zmdi-graphic-eq:before{content:'\f338'}.zmdi-grid-off:before{content:'\f339'}.zmdi-grid:before{content:'\f33a'}.zmdi-hdr-off:before{content:'\f33b'}.zmdi-hdr-strong:before{content:'\f33c'}.zmdi-hdr-weak:before{content:'\f33d'}.zmdi-hdr:before{content:'\f33e'}.zmdi-leak-remove:before{content:'\f33f'}.zmdi-leak:before{content:'\f340'}.zmdi-looks:before{content:'\f341'}.zmdi-loupe:before{content:'\f342'}.zmdi-panorama-horizontal:before{content:'\f343'}.zmdi-panorama-vertical:before{content:'\f344'}.zmdi-panorama-wide-angle:before{content:'\f345'}.zmdi-photo-size-select-large:before{content:'\f346'}.zmdi-photo-size-select-small:before{content:'\f347'}.zmdi-picture-in-picture:before{content:'\f348'}.zmdi-slideshow:before{content:'\f349'}.zmdi-texture:before{content:'\f34a'}.zmdi-tonality:before{content:'\f34b'}.zmdi-vignette:before{content:'\f34c'}.zmdi-wb-auto:before{content:'\f34d'}.zmdi-wb-iridescent:before{content:'\f34e'}.zmdi-eject-alt:before{content:'\f34f'}.zmdi-eject:before{content:'\f350'}.zmdi-equalizer:before{content:'\f351'}.zmdi-fast-forward:before{content:'\f352'}.zmdi-fast-rewind:before{content:'\f353'}.zmdi-forward-10:before{content:'\f354'}.zmdi-forward-30:before{content:'\f355'}.zmdi-forward-5:before{content:'\f356'}.zmdi-hearing:before{content:'\f357'}.zmdi-movie-alt:before{content:'\f358'}.zmdi-movie:before{content:'\f359'}.zmdi-pause-circle-outline:before{content:'\f35a'}.zmdi-pause-circle:before{content:'\f35b'}.zmdi-pause:before{content:'\f35c'}.zmdi-play-circle-outline:before{content:'\f35d'}.zmdi-play-circle:before{content:'\f35e'}.zmdi-play:before{content:'\f35f'}.zmdi-repeat-one:before{content:'\f360'}.zmdi-repeat:before{content:'\f361'}.zmdi-replay-10:before{content:'\f362'}.zmdi-replay-30:before{content:'\f363'}.zmdi-replay-5:before{content:'\f364'}.zmdi-replay:before{content:'\f365'}.zmdi-shuffle:before{content:'\f366'}.zmdi-skip-next:before{content:'\f367'}.zmdi-skip-previous:before{content:'\f368'}.zmdi-stop:before{content:'\f369'}.zmdi-surround-sound:before{content:'\f36a'}.zmdi-tune:before{content:'\f36b'}.zmdi-volume-down:before{content:'\f36c'}.zmdi-volume-mute:before{content:'\f36d'}.zmdi-volume-off:before{content:'\f36e'}.zmdi-volume-up:before{content:'\f36f'}.zmdi-notifications-active:before{content:'\f370'}.zmdi-notifications-add:before{content:'\f371'}.zmdi-notifications-none:before{content:'\f372'}.zmdi-notifications-off:before{content:'\f373'}.zmdi-notifications-paused:before{content:'\f374'}.zmdi-notifications:before{content:'\f375'}.zmdi-bluetooth-connected:before{content:'\f376'}.zmdi-bluetooth-off:before{content:'\f377'}.zmdi-bluetooth-search:before{content:'\f378'}.zmdi-bluetooth-setting:before{content:'\f379'}.zmdi-bluetooth:before{content:'\f37a'}.zmdi-cast-connected:before{content:'\f37b'}.zmdi-cast:before{content:'\f37c'}.zmdi-dialpad:before{content:'\f37d'}.zmdi-gps-dot:before{content:'\f37e'}.zmdi-gps-off:before{content:'\f37f'}.zmdi-gps:before{content:'\f380'}.zmdi-network-locked:before{content:'\f381'}.zmdi-network-off:before{content:'\f382'}.zmdi-network-outline:before{content:'\f383'}.zmdi-network-setting:before{content:'\f384'}.zmdi-network-warning:before{content:'\f385'}.zmdi-network-wifi-alt:before{content:'\f386'}.zmdi-network-wifi-lock:before{content:'\f387'}.zmdi-network-wifi-off:before{content:'\f388'}.zmdi-network-wifi-scan:before{content:'\f389'}.zmdi-network-wifi:before{content:'\f38a'}.zmdi-network:before{content:'\f38b'}.zmdi-portable-wifi-changes:before{content:'\f38c'}.zmdi-portable-wifi-off:before{content:'\f38d'}.zmdi-portable-wifi:before{content:'\f38e'}.zmdi-airline-seat-flat-angled:before{content:'\f38f'}.zmdi-airline-seat-flat:before{content:'\f390'}.zmdi-airline-seat-individual-suite:before{content:'\f391'}.zmdi-airline-seat-legroom-extra:before{content:'\f392'}.zmdi-airline-seat-legroom-normal:before{content:'\f393'}.zmdi-airline-seat-legroom-reduced:before{content:'\f394'}.zmdi-airline-seat-recline-extra:before{content:'\f395'}.zmdi-airline-seat-recline-normal:before{content:'\f396'}.zmdi-airplanemode-active:before{content:'\f397'}.zmdi-airplanemode-inactive:before{content:'\f398'}.zmdi-flight-land:before{content:'\f399'}.zmdi-flight-takeoff:before{content:'\f39a'}.zmdi-n-1-square:before{content:'\f39b'}.zmdi-n-2-square:before{content:'\f39c'}.zmdi-n-3-square:before{content:'\f39d'}.zmdi-n-4-square:before{content:'\f39e'}.zmdi-n-5-square:before{content:'\f39f'}.zmdi-n-6-square:before{content:'\f3a0'}.zmdi-neg-1:before{content:'\f3a1'}.zmdi-neg-2:before{content:'\f3a2'}.zmdi-plus-1:before{content:'\f3a3'}.zmdi-plus-2:before{content:'\f3a4'}.zmdi-sec-10:before{content:'\f3a5'}.zmdi-sec-3:before{content:'\f3a6'}.zmdi-zero:before{content:'\f3a7'}.zmdi-airplay:before{content:'\f3a8'}.zmdi-closed-caption:before{content:'\f3a9'}.zmdi-confirmation-number:before{content:'\f3aa'}.zmdi-developer-board:before{content:'\f3ab'}.zmdi-disc-full:before{content:'\f3ac'}.zmdi-explicit:before{content:'\f3ad'}.zmdi-flip-to-back:before{content:'\f3ae'}.zmdi-flip-to-front:before{content:'\f3af'}.zmdi-group-work:before{content:'\f3b0'}.zmdi-hd:before{content:'\f3b1'}.zmdi-hq:before{content:'\f3b2'}.zmdi-markunread-mailbox:before{content:'\f3b3'}.zmdi-memory:before{content:'\f3b4'}.zmdi-nfc:before{content:'\f3b5'}.zmdi-pages:before{content:'\f3b6'}.zmdi-play-for-work:before{content:'\f3b7'}.zmdi-power-input:before{content:'\f3b8'}.zmdi-present-to-all:before{content:'\f3b9'}.zmdi-satellite:before{content:'\f3ba'}.zmdi-tap-and-play:before{content:'\f3bb'}.zmdi-vibration:before{content:'\f3bc'}.zmdi-voicemail:before{content:'\f3bd'}
/*
 * Color Definition Sheet
 */

.nd2-bg-500 { background-color: #009688; color: #ffffff; }

/*
 * Custom Styles
 *
 */

.ui-page-theme-a .ui-header {
	background-color: #009688;
	color: #ffffff;
}

.ui-page-theme-a .ui-footer {
	background-color: #ffffff;
	color: #323232;

	box-shadow: 0px 0px 7px rgba(0,0,0,0.1);
}

li.ui-tabs-active > .ui-link.ui-btn.ui-tabs-anchor,
.ui-page-theme-a .ui-btn.clr-primary {
	color: #009688;
}

.ui-page-theme-a a, html .ui-bar-a a, html .ui-body-a a, html body .ui-group-theme-a a,
.ui-page-theme-a a:hover, html .ui-bar-a a:hover, html .ui-body-a a:hover, html body .ui-group-theme-a a:hover,
.ui-page-theme-a a:visited, html .ui-bar-a a:visited, html .ui-body-a a:visited, html body .ui-group-theme-a a:visited  {
	color: #009688;
}

.ui-page-theme-a .ui-btn.clr-warning {
	color: rgb(244,67,54);
}

.ui-page-theme-a .ui-btn.ui-btn-raised.clr-primary {
	background-color: #009688;
	color: rgba(255,255,255,0.85);
}

.ui-page-theme-a .ui-btn.ui-btn-raised.clr-warning {
	background-color: rgb(244,67,54);
	color: rgba(255,255,255,0.85);
}

.ui-page-theme-a .ui-radio .ui-btn.ui-radio-on:before {
	background-color: #009688;
}

.ui-page-theme-a .ui-btn.ui-radio-on:after {
	border-color: #009688;
}

html .ui-page-theme-a .ui-btn.ui-checkbox-on.ui-checkbox-on:after {
	background-color: #009688;
	border-color: #009688;
}


.ui-controlgroup-horizontal .ui-controlgroup-controls .ui-btn.ui-checkbox-on,
.ui-controlgroup-horizontal .ui-controlgroup-controls .ui-btn.ui-radio-on {
	background-color: #009688;
	color: #ffffff;
}

.ui-input-text.ui-focus:after,
.ui-input-search.ui-focus:after {
	background-color: #009688;
	height: 2px;
}

textarea.ui-input-text.ui-textinput-autogrow.ui-focus {
	border-bottom: 2px solid #009688;
}

.ui-page-theme-a .ui-flipswitch-active, html .ui-bar-a .ui-flipswitch-active, html .ui-body-a .ui-flipswitch-active, html body .ui-group-theme-a .ui-flipswitch-active, html body .ui-flipswitch.ui-bar-a.ui-flipswitch-active {
  color: #ffffff !important;
  background-color: #009688 !important;
}

.ui-page-theme-a .ui-slider-track .ui-btn-active, html .ui-bar-a .ui-slider-track .ui-btn-active, html .ui-body-a .ui-slider-track .ui-btn-active, html body .ui-group-theme-a .ui-slider-track .ui-btn-active, html body div.ui-slider-track.ui-body-a .ui-btn-active,
.ui-slider-track .ui-btn.ui-slider-handle {
	background-color: #009688 !important;
}

/* Chart-Color-Palette: teal */
/* --- */

.nd2-chart .ct-series-a .ct-bar, .nd2-chart .ct-series-a .ct-line, .nd2-chart .ct-series-a .ct-point, .nd2-chart .ct-series-a .ct-slice-donut {	stroke: #009688; } .nd2-chart .ct-series-a .ct-area, .nd2-chart .ct-series-a .ct-slice-pie { fill: #009688; }  .nd2-chart .ct-series-b .ct-bar, .nd2-chart .ct-series-b .ct-line, .nd2-chart .ct-series-b .ct-point, .nd2-chart .ct-series-b .ct-slice-donut {	stroke: #4CAF50; } .nd2-chart .ct-series-b .ct-area, .nd2-chart .ct-series-b .ct-slice-pie { fill: #4CAF50; }  .nd2-chart .ct-series-c .ct-bar, .nd2-chart .ct-series-c .ct-line, .nd2-chart .ct-series-c .ct-point, .nd2-chart .ct-series-c .ct-slice-donut {	stroke: #8BC34A; } .nd2-chart .ct-series-c .ct-area, .nd2-chart .ct-series-c .ct-slice-pie { fill: #8BC34A; }  .nd2-chart .ct-series-d .ct-bar, .nd2-chart .ct-series-d .ct-line, .nd2-chart .ct-series-d .ct-point, .nd2-chart .ct-series-d .ct-slice-donut {	stroke: #CDDC39; } .nd2-chart .ct-series-d .ct-area, .nd2-chart .ct-series-d .ct-slice-pie { fill: #CDDC39; }  .nd2-chart .ct-series-e .ct-bar, .nd2-chart .ct-series-e .ct-line, .nd2-chart .ct-series-e .ct-point, .nd2-chart .ct-series-e .ct-slice-donut {	stroke: #FFEB3B; } .nd2-chart .ct-series-e .ct-area, .nd2-chart .ct-series-e .ct-slice-pie { fill: #FFEB3B; }  .nd2-chart .ct-series-f .ct-bar, .nd2-chart .ct-series-f .ct-line, .nd2-chart .ct-series-f .ct-point, .nd2-chart .ct-series-f .ct-slice-donut {	stroke: #FFC107; } .nd2-chart .ct-series-f .ct-area, .nd2-chart .ct-series-f .ct-slice-pie { fill: #FFC107; }  .nd2-chart .ct-series-g .ct-bar, .nd2-chart .ct-series-g .ct-line, .nd2-chart .ct-series-g .ct-point, .nd2-chart .ct-series-g .ct-slice-donut {	stroke: #FF9800; } .nd2-chart .ct-series-g .ct-area, .nd2-chart .ct-series-g .ct-slice-pie { fill: #FF9800; }  .nd2-chart .ct-series-h .ct-bar, .nd2-chart .ct-series-h .ct-line, .nd2-chart .ct-series-h .ct-point, .nd2-chart .ct-series-h .ct-slice-donut {	stroke: #FF5722; } .nd2-chart .ct-series-h .ct-area, .nd2-chart .ct-series-h .ct-slice-pie { fill: #FF5722; }  .nd2-chart .ct-series-i .ct-bar, .nd2-chart .ct-series-i .ct-line, .nd2-chart .ct-series-i .ct-point, .nd2-chart .ct-series-i .ct-slice-donut {	stroke: #795548; } .nd2-chart .ct-series-i .ct-area, .nd2-chart .ct-series-i .ct-slice-pie { fill: #795548; }  .nd2-chart .ct-series-j .ct-bar, .nd2-chart .ct-series-j .ct-line, .nd2-chart .ct-series-j .ct-point, .nd2-chart .ct-series-j .ct-slice-donut {	stroke: #9E9E9E; } .nd2-chart .ct-series-j .ct-area, .nd2-chart .ct-series-j .ct-slice-pie { fill: #9E9E9E; }  .nd2-chart .ct-series-k .ct-bar, .nd2-chart .ct-series-k .ct-line, .nd2-chart .ct-series-k .ct-point, .nd2-chart .ct-series-k .ct-slice-donut {	stroke: #607D8B; } .nd2-chart .ct-series-k .ct-area, .nd2-chart .ct-series-k .ct-slice-pie { fill: #607D8B; }  .nd2-chart .ct-series-l .ct-bar, .nd2-chart .ct-series-l .ct-line, .nd2-chart .ct-series-l .ct-point, .nd2-chart .ct-series-l .ct-slice-donut {	stroke: #F44336; } .nd2-chart .ct-series-l .ct-area, .nd2-chart .ct-series-l .ct-slice-pie { fill: #F44336; }  .nd2-chart .ct-series-m .ct-bar, .nd2-chart .ct-series-m .ct-line, .nd2-chart .ct-series-m .ct-point, .nd2-chart .ct-series-m .ct-slice-donut {	stroke: #E91E63; } .nd2-chart .ct-series-m .ct-area, .nd2-chart .ct-series-m .ct-slice-pie { fill: #E91E63; }  .nd2-chart .ct-series-n .ct-bar, .nd2-chart .ct-series-n .ct-line, .nd2-chart .ct-series-n .ct-point, .nd2-chart .ct-series-n .ct-slice-donut {	stroke: #9C27B0; } .nd2-chart .ct-series-n .ct-area, .nd2-chart .ct-series-n .ct-slice-pie { fill: #9C27B0; }  .nd2-chart .ct-series-o .ct-bar, .nd2-chart .ct-series-o .ct-line, .nd2-chart .ct-series-o .ct-point, .nd2-chart .ct-series-o .ct-slice-donut {	stroke: #673AB7; } .nd2-chart .ct-series-o .ct-area, .nd2-chart .ct-series-o .ct-slice-pie { fill: #673AB7; }  .nd2-chart .ct-series-p .ct-bar, .nd2-chart .ct-series-p .ct-line, .nd2-chart .ct-series-p .ct-point, .nd2-chart .ct-series-p .ct-slice-donut {	stroke: #3F51B5; } .nd2-chart .ct-series-p .ct-area, .nd2-chart .ct-series-p .ct-slice-pie { fill: #3F51B5; }  .nd2-chart .ct-series-q .ct-bar, .nd2-chart .ct-series-q .ct-line, .nd2-chart .ct-series-q .ct-point, .nd2-chart .ct-series-q .ct-slice-donut {	stroke: #2196F3; } .nd2-chart .ct-series-q .ct-area, .nd2-chart .ct-series-q .ct-slice-pie { fill: #2196F3; }  .nd2-chart .ct-series-r .ct-bar, .nd2-chart .ct-series-r .ct-line, .nd2-chart .ct-series-r .ct-point, .nd2-chart .ct-series-r .ct-slice-donut {	stroke: #03A9F4; } .nd2-chart .ct-series-r .ct-area, .nd2-chart .ct-series-r .ct-slice-pie { fill: #03A9F4; }

/* Additional resources */

/* Colors */
/*@import url("nativedroid2.color.red.css");*/
/*@import url("nativedroid2.color.pink.css");*/
/*@import url("nativedroid2.color.purple.css");*/
/*@import url("nativedroid2.color.deep-purple.css");*/
/*@import url("nativedroid2.color.indigo.css");*/
/*@import url("nativedroid2.color.light-blue.css");*/
/*@import url("nativedroid2.color.cyan.css");*/
@import url("nativedroid2.color.teal.css");
/*@import url("nativedroid2.color.green.css");*/
/*@import url("nativedroid2.color.light-green.css");*/
/*@import url("nativedroid2.color.lime.css");*/
/*@import url("nativedroid2.color.yellow.css");*/
/*@import url("nativedroid2.color.amber.css");*/
/*@import url("nativedroid2.color.orange.css");*/
/*@import url("nativedroid2.color.deep-orange.css");*/
/*@import url("nativedroid2.color.brown.css");*/
/*@import url("nativedroid2.color.grey.css");*/
/*@import url("nativedroid2.color.blue-grey.css");*/


@import url("flexboxgrid.min.css");
@import url("material-design-iconic-font.min.css");
@import url(//fonts.googleapis.com/css?family=RobotoDraft:300,400,500,700,400italic);
@import url(//fonts.googleapis.com/css?family=Roboto:400,300,500,400italic,700,900);

body {
	-webkit-transition: opacity 0.4s;
	-moz-transition: opacity 0.4s;
	-ms-transition: opacity 0.4s;
	-o-transition: opacity 0.4s;
	transition: opacity 0.4s;
	font-size: 16px;

	opacity: 1;
	text-shadow: none !important;
}

body p,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body blockquote,
body a,
body button {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
}

body.nd2-ready {
	opacity: 1;
}

body, input, select, textarea, button, .ui-btn,h1,h2,h3,h4,h5,h6 {
	font-family: "RobotoDraft","Roboto","Helvetica Neue",sans-serif;
	font-weight: 400;
}

/*
 * Typography
 */

h1 { font-size: 56px; line-height: 1.2em; font-weight: 400; }
h2 { font-size: 34px; line-height: 1.2em; font-weight: 400; }
h3 { font-size: 24px; line-height: 1.2em; font-weight: 400; }
h4 { font-size: 20px; line-height: 1.2em; font-weight: 500; }
h5 { font-size: 16px; line-height: 1.2em; font-weight: 400; }
h6 { font-size: 14px; line-height: 1.2em; font-weight: 400;}
p { font-size: 16px; line-height: 1.2em; }

.nd2-display-4 { font-size: 112px; line-height: 1.2em; font-weight: 100; display: block; }
.nd2-display-3 { font-size: 56px; line-height: 1.2em; font-weight: 400; display: block; }
.nd2-display-2 { font-size: 45px; line-height: 1.2em; font-weight: 400; display: block; }
.nd2-display-1 { font-size: 34px; line-height: 1.2em; font-weight: 400; display: block; }
.nd2-headline { font-size: 24px; line-height: 1.2em; font-weight: 400; display: block; }
.nd2-title { font-size: 20px; line-height: 1.2em; font-weight: 500; display: block; }
.nd2-subhead { font-size: 16px; line-height: 1.2em; font-weight: 400; display: block; }

blockquote {
	position: relative;
	display: block;
	background-color: #f6f6f6;
	padding: 7px 28px;
	margin-bottom: 54px;
	color: rgba(0, 0, 0, 0.87);
}

blockquote:after {
	content: "";
	position: absolute;
	width: 0px;
	height: 0px;
	left: 24px;
	bottom: -48px;
	border-style: solid;
	border-width: 48px 48px 0 0;
	border-color: #f6f6f6 transparent transparent transparent;
}

blockquote p {
	font-family: Georgia, serif;
	font-size: 26px;
	line-height: 1.4em;
	font-style: italic;
}

blockquote footer {
	display: block;
	margin: -1em 24px 1em 0px;
	font-size: 14px;
	color: #696969;
}

blockquote footer:before {
	content : "- ";
	display: inline-block;
	line-height: 1em;
	margin: 0px 7px;

}

code, pre {
	padding: 0px 7px;
	margin: 14px 0px;
	display: block;
	background-color: #f1f1f1;
	line-height: 25px;
	overflow: auto;
}

pre {
	background: linear-gradient(
	  to bottom,
	  #f1f1f1 50%,
	  #fcfcfc 50%
	);
	background-size: 100% 50px;
}

code {
	display: inline;
}

.align-right { text-align: right; }
.align-left { text-align: left; }
.align-center { text-align: center; }

/*
 * Page Default
 */

.ui-overlay-a, .ui-page-theme-a, .ui-page-theme-a .ui-panel-wrapper {
	background-color: #ffffff;
	border-color: rgba(0,0,0,.87);
	color: rgba(0, 0, 0, 0.87);
}

.ui-content.ui-content-nopadding {
	padding: 0em 0px;
}



/*
 * Panel
 */

.ui-panel.ui-panel-open {
    position:fixed;
}

.ui-panel-position-left > .ui-panel-inner {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

.ui-panel-open {
	max-width: 90%;
	width: 304px;
}

.ui-panel-display-overlay {
	box-shadow: 0px 0px 7px rgba(0,0,0,0.1);
}

.ui-panel.ui-panel-display-overlay.ui-panel-open {
	z-index: 2000;
}

.ui-page-theme-a a, html .ui-bar-a a, html .ui-body-a a, html body .ui-group-theme-a a {
	font-weight: 400;
}

.ui-collapsible-heading-toggle {
	border-bottom: 1px solid #cccccc;
}

.ui-listview>.ui-li-static, .ui-listview>.ui-li-divider, .ui-listview>li>a.ui-btn {
	border: 0px;
}

.ui-collapsible.ui-collapsible {
	background-color: #f6f6f6;
}
.ui-collapsible.ui-collapsible h3 a,
.ui-collapsible.ui-collapsible-collapsed.ui-collapsible h3 a:hover {
	font-weight: 500;
	background-color: rgba(0,0,0,0.1);
}

.ui-panel-dismiss {
	background-color: transparent;
	-webkit-transition: background 0.8s;
	-moz-transition: background 0.8s;
	-ms-transition: background 0.8s;
	-o-transition: background 0.8s;
	transition: background 0.8s;
}

.ui-btn-icon-left:after, .ui-btn-icon-right:after, .ui-btn-icon-top:after, .ui-btn-icon-bottom:after, .ui-btn-icon-notext:after {
	background-color: transparent;
	background-color: rgba(0,0,0,0);
	background-position: center center;
	background-repeat: no-repeat;
	color: #cccccc;
}

.ui-panel-dismiss.ui-panel-dismiss-open {
	background-color: rgba(0,0,0,0.1);
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
}

.ui-collapsible.ui-collapsible-collapsed,
.ui-page-theme-a .ui-body-inherit.ui-collapsible-content,
.ui-collapsible.ui-collapsible-collapsed.ui-collapsible h3 a {
	background-color: transparent;
}

.ui-page-theme-a .ui-body-inherit.ui-collapsible-content li > a {
	text-transform: none;
}

.ui-collapsible-content > .ui-listview > li > a {
	padding-left: 1.5em;
}

.ui-collapsible .ui-collapsible-heading > .ui-icon-carat-d:after {
	-webkit-transform: rotate(-180deg);
	-moz-transform: rotate(-180deg);
	-ms-transform: rotate(-180deg);
	-o-transform: rotate(-180deg);
	transform: rotate(-180deg);

	-webkit-transition: -webkit-transform 0.4s;
	-moz-transition: -moz-transform 0.4s;
	-ms-transition: -ms-transform 0.4s;
	-o-transition: -o-transform 0.4s;
	transition: transform 0.4s;
}


.ui-collapsible.ui-collapsible-collapsed .ui-collapsible-heading > .ui-icon-carat-d:after {
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
}

/*
 * Bottom Sheet Panel
 */

.ui-panel.ui-panel-position-bottom {
	position: fixed;
	top: auto;
	bottom: -100%;
	left: 0px;
	width: 100%;
	max-width: 100%;
	height: auto;
	max-height: 80%;
	overflow-y: auto;
	overflow-x: hidden;
	min-height: 75px;

	visibility: visible;
	clip: initial;

}

.ui-bottom-sheet-list .row > * {
	width: 100%;
}

.ui-bottom-sheet-list .ui-bottom-sheet-link {
	display: block;
	text-align: left;
	margin: 0px;
}

.ui-bottom-sheet-list .ui-bottom-sheet-link .zmdi {
	font-size: 1em;
	display: inline-block;
	margin-right: 7px;
	min-width: 20px;
	text-align: center;
}

.ui-bottom-sheet-list .ui-bottom-sheet-link strong {
	display: inline-block;
	font-weight: 600;
}


.ui-panel-position-bottom {

	-webkit-transition: bottom 0.4s, top 0.4s;
	-moz-transition: bottom 0.4s, top 0.4s;
	-ms-transition: bottom 0.4s, top 0.4s;
	-o-transition: bottom 0.4s, top 0.4s;
	transition: all 0.4s;

}

.ui-bottom-sheet-link {
	display: inline-block;
	padding: 14px;
	text-align: center;
	text-decoration: none;
	text-shadow: none !important;
}

.ui-bottom-sheet-link .zmdi {
	display: block;
	line-height: 1.4em;
	color: rgba(0, 0, 0, 0.87);
}

.ui-bottom-sheet-link strong {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: rgba(0, 0, 0, 0.87);
}

.ui-panel-position-bottom.ui-panel-open {
	top: auto;
	bottom: 0px;
}

.ui-panel.ui-panel-position-bottom.ui-body-inherit.ui-panel-open {
	min-height: 75px;
}

/*
 * Listview
 */

.ui-listview {
	margin: 1em 0px;
}

.ui-listview .ui-li-divider {
	padding: 7px 1em;
	background-color: transparent;
	color: rgba(0,0,0, 0.54);
	font-weight: 400;
	font-size: 1em;
	line-height: 1.4em;
}

.ui-panel-inner > .ui-listview {
	margin: 0px -1em;
}

.ui-panel-inner > .ui-listview > .ui-li-divider {
	background-color: transparent;
	color: rgba(0,0,0, 0.54);
	font-weight: 400;
	font-size: 14px;
	line-height: 1.4em;
}

.ui-listview .ui-li-has-thumb > img:first-child,
.ui-listview .ui-li-has-thumb > .ui-btn > img:first-child {
	padding: auto;
	width: 100%;
	height: auto;
	margin: auto auto;
	left: 1em;
}

.ui-listview img.ui-thumbnail.ui-thumbnail-circular,
.ui-listview img.ui-thumbnail.ui-thumbnail-circular {
	border-radius: 50% !important;
	overflow: hidden;

	-webkit-transform: scale(0.7);
	-moz-transform: scale(0.7);
	-ms-transform: scale(0.7);
	-o-transform: scale(0.7);
	transform: scale(0.7);

}

.ui-listview > li h1, .ui-listview > li h2, .ui-listview > li h3, .ui-listview > li h4, .ui-listview > li h5, .ui-listview > li h6, .ui-listview > li p {
/*	margin: 0.45em 28px;*/
	text-transform: none;
}

.ui-listview > li p {
	color: rgba(0, 0, 0, 0.54);
	font-size: 14px;
}

.ui-content .ui-listview {
	margin-bottom: 1em;
}

/*
 * Tabs
 */

.nd2Tabs {
	display: block;
	margin: 0px 0px 0px 60px;
	padding: 0px;
	list-style-type: none;
	white-space: nowrap;
	overflow-x: auto;
	height: 48px;
	overflow-y: hidden;
}

.nd2Tabs li {

	display: inline-block;

	line-height: 48px;
	text-align: center;
	padding: 0px 12px;
	font-weight: 500;
	text-transform: uppercase;
	font-size: 14px;

	cursor: pointer;
	color: rgba(255,255,255,0.6);

	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;

}

.nd2Tabs li:hover {
	color: #ffffff;
}

.nd2Tabs .nd2Tabs-active {
	color: #ffffff;
	position: relative;
}

.nd2Tabs .nd2Tabs-active:after {

		content : "";
		position: absolute;
		width: 100%;
		height: 2px;
		background-color: #323232;
		bottom: 0px;
		left: 0px;

		-webkit-animation: zoomIn 0.4s;
		-moz-animation: zoomIn 0.4s;
		-ms-animation: zoomIn 0.4s;
		-o-animation : zoomIn 0.4s;
		animation : zoomIn 0.4s;

}

.nd2Tabs-content-tab {
	display: none;

	opacity: 0;

	transform: translate(-100%,0%);

	-webkit-transition: all 0.4s;
	-moz-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;

}

.nd2Tabs-content-tab.nd2Tab-active.from-left,
.nd2Tabs-content-tab.nd2Tab-active.to-left {
	-webkit-transform: translate(-100%,0%);
	-moz-transform: translate(-100%,0%);
	-ms-transform: translate(-100%,0%);
	-o-transform: translate(-100%,0%);
	transform: translate(-100%,0%);

	position: absolute;
	width: 100%;
}

.nd2Tabs-content-tab.nd2Tab-active.from-right,
.nd2Tabs-content-tab.nd2Tab-active.to-right {
	-webkit-transform: translate(100%,0%);
	-moz-transform: translate(100%,0%);
	-ms-transform: translate(100%,0%);
	-o-transform: translate(100%,0%);
	transform: translate(100%,0%);

	position: absolute;
	width: 100%;

}



.nd2Tabs-content-tab.nd2Tab-active {
	display: block;
	opacity: 1;

	transform: translate(0%,0%);

}

/* Header */

.ui-page-theme-a .ui-header {
	box-shadow: 0 2px 2px 0 rgba(0,0,0,.14),0 3px 1px -2px rgba(0,0,0,.2),0 1px 5px 0 rgba(0,0,0,.12) !important;
	border: 0px solid transparent;
}

.ui-header .ui-title, .ui-footer .ui-title {
	text-align: left;
	margin: 0px 72px;
	font-size: 20px;
	line-height: 1.8em;
	font-weight: 400;
	letter-spacing: 0.005em;
}

.ui-page-theme-a .ui-btn, html .ui-bar-a .ui-btn, html .ui-body-a .ui-btn, html body .ui-group-theme-a .ui-btn, html head+body .ui-btn.ui-btn-a, .ui-page-theme-a .ui-btn:visited, html .ui-bar-a .ui-btn:visited, html .ui-body-a .ui-btn:visited, html body .ui-group-theme-a .ui-btn:visited, html head+body .ui-btn.ui-btn-a:visited,
.ui-page-theme-a .ui-btn.ui-btn-active, html .ui-bar-a .ui-btn.ui-btn-active, html .ui-body-a .ui-btn.ui-btn-active, html body .ui-group-theme-a .ui-btn.ui-btn-active, html head+body .ui-btn.ui-btn-a.ui-btn-active, .ui-page-theme-a .ui-checkbox-on:after, html .ui-bar-a .ui-checkbox-on:after, html .ui-body-a .ui-checkbox-on:after, html body .ui-group-theme-a .ui-checkbox-on:after, .ui-btn.ui-checkbox-on.ui-btn-a:after, .ui-page-theme-a .ui-flipswitch-active, html .ui-bar-a .ui-flipswitch-active, html .ui-body-a .ui-flipswitch-active, html body .ui-group-theme-a .ui-flipswitch-active, html body .ui-flipswitch.ui-bar-a.ui-flipswitch-active, .ui-page-theme-a .ui-slider-track .ui-btn-active, html .ui-bar-a .ui-slider-track .ui-btn-active, html .ui-body-a .ui-slider-track .ui-btn-active, html body .ui-group-theme-a .ui-slider-track .ui-btn-active, html body div.ui-slider-track.ui-body-a .ui-btn-active {
	background-color: transparent;
	color: inherit;
	border: 0px;
	text-shadow: none !important;
	border-radius: 4px;

	-webkit-transition: background 0.4s;
	-moz-transition: background 0.4s;
	-ms-transition: background 0.4s;
	-o-transition: background 0.4s;
	transition: background 0.4s;

}

.ui-page-theme-a .ui-btn.ui-btn-fab {
	/*padding: 11.2px 16px;*/
}

.ui-btn-fab-bottom {

	position: fixed;

	bottom: 26px;
	right: 26px;

	-webkit-transition: all 0.4s !important;
	-moz-transition: all 0.4s !important;
	-ms-transition: all 0.4s !important;
	-o-transition: all 0.4s !important;
	transition: all 0.4s !important;
}

.nd2-toast-open .ui-btn-fab-bottom {
	bottom: 58px;
	right: 26px;
}

.ui-page-theme-a .ui-btn:focus, html .ui-bar-a .ui-btn:focus, html .ui-body-a .ui-btn:focus, html body .ui-group-theme-a .ui-btn:focus, html head+body .ui-btn.ui-btn-a:focus, .ui-page-theme-a .ui-focus, html .ui-bar-a .ui-focus, html .ui-body-a .ui-focus, html body .ui-group-theme-a .ui-focus, html head+body .ui-btn-a.ui-focus, html head+body .ui-body-a.ui-focus,
.ui-bar-a, .ui-page-theme-a .ui-bar-inherit, html .ui-bar-a .ui-bar-inherit, html .ui-body-a .ui-bar-inherit, html body .ui-group-theme-a .ui-bar-inherit,
.ui-overlay-a, .ui-page-theme-a, .ui-page-theme-a .ui-panel-wrapper {
	box-shadow: none;
	text-shadow: none;
}

.ui-header > .ui-btn {
	background-color: transparent !important;
	color: #ffffff !important;

	font-size: 20px;
	line-height: 1.8em;
	padding: 0.5em;
	display: inline-block;
	width: 1.6em;
	height: 1.6em;

	border-radius: 50% !important;
	overflow: hidden !important;

}

.ui-page-theme-a .ui-btn.ui-btn-raised {
	box-shadow: 0 2px 5px 0 rgba(0,0,0,.26);
	background-color: rgb(250,250,250);
}

.ui-page-theme-a .ui-btn.ui-btn-raised.ui-disabled {
	box-shadow: none;
	background-color: rgba(0,0,0,0.24);
	color: rgba(0,0,0,0.85);
}

/*
 * HR
 */

hr {
	display: block;
	border: 0px;
	border-top: 1px solid #cccccc;
	padding: 0px;
	margin: 1em 0px;
}

hr.inset {
	margin: 1em 0px 1em 1em;
}

.ui-content hr, .ui-panel-inner hr { margin: 1em -1em; }

.ui-panel-inner hr.inset { margin: 1em -1em 1em 0em; }

/*
 * Sidepanel Profile
 *
 */

.nd2-sidepanel-profile {
	position: relative;
	margin: -1em -1em 1.5em -1em;
	padding: 3em 1em 2em 1em;
	overflow: hidden;
	box-shadow: 0px 0px 15px rgba(0,0,0,0.05);
}

.nd2-sidepanel-profile:after {
	position: absolute;
	content : "";
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: -1;

	background: -moz-linear-gradient(top,  rgba(255,255,255,0.01) 0%, rgba(0,0,0,0.5) 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,0.01)), color-stop(100%,rgba(0,0,0,0.5)));
	background: -webkit-linear-gradient(top,  rgba(255,255,255,0.01) 0%,rgba(0,0,0,0.5) 100%);
	background: -o-linear-gradient(top,  rgba(255,255,255,0.01) 0%,rgba(0,0,0,0.5) 100%);
	background: -ms-linear-gradient(top,  rgba(255,255,255,0.01) 0%,rgba(0,0,0,0.5) 100%);
	background: linear-gradient(to bottom,  rgba(255,255,255,0.01) 0%,rgba(0,0,0,0.5) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#03ffffff', endColorstr='#000000',GradientType=0 );

}

.nd2-sidepanel-profile .profile-background {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: auto;
	z-index: -1;
}

.nd2-sidepanel-profile .profile-thumbnail {
	width: 80%;
	height: auto;
	border-radius: 50%;
	overflow: hidden;
	margin: -0.8em auto;
	display: inline-block;

	border: 2px solid rgba(255,255,255,0.05);
}

.nd2-sidepanel-profile .profile-text {
	text-shadow: 0px 0px 1px rgba(0,0,0,0.2);
	color: #fff;
}

.nd2-sidepanel-profile .profile-text strong {
	font-size: 20px;
	line-height: 1.2em;
	display: block;
	font-weight: 400;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.nd2-sidepanel-profile .profile-text .subline {
	font-size: 12px;
	line-height: 1.2em;
	font-weight: 400;
	display: block;
}

/*
 * Banner / Advertising
 */

.nd2-banner {
	display: block;
	margin: 14px 0px;
}

.nd2-sample-ad {
	display: block;
	margin: 14px 0px;
	padding: 7px;
	font-size: 12px;
	font-style: italic;
	border-radius: 3px;
	text-align: center;
}

/*
 * Button
 *
 */

.ui-panel .ui-listview .ui-btn { font-weight: 400; }

.ui-btn,a.ui-btn { text-transform: uppercase; font-weight: 500; color: inherit; }
.ui-listview > a.ui-btn, .ui-listview a { text-transform: none; }

.ui-btn.ui-btn-icon-left > i.md,
button.ui-btn > i.md.ui-pull-left { float: left; }

a.ui-btn.ui-btn-icon-left > i.md { margin-left: -1em; }

.ui-btn.ui-btn-icon-right > i.md,
button.ui-btn > i.md.ui-pull-right { float: right; }

a.ui-btn.ui-btn-icon-right > i.md { margin-right: -1em; }

.ui-btn > i.md,
button.ui-btn > i.md { float: none; margin: 0px 7px; }

.ui-btn.ui-btn-icon-block > i.zmdi { display: block; }

.ui-btn.ui-btn-fab { border-radius: 50% !important; }
.ui-btn.ui-btn-fab > i.zmdi { margin: 0px; padding: 0px; }

.ui-btn {
	margin: 0px;
}

/*
 * Forms
 */

.ui-table-columntoggle-popup {
	box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
	border-radius: 0px;
}

.ui-controlgroup-controls, .ui-controlgroup-controls .ui-radio, .ui-controlgroup-controls .ui-checkbox, .ui-controlgroup-controls .ui-select, .ui-controlgroup-controls li {
	background-color: #ffffff;
	border-radius: 0px;
}

.ui-checkbox .ui-btn, .ui-radio .ui-btn,
.ui-checkbox .ui-btn:hover, .ui-radio .ui-btn:hover {
	background-color: #ffffff;
	font-weight: 400;
}

.ui-btn.ui-checkbox-off:after, .ui-btn.ui-checkbox-on:after, .ui-btn.ui-radio-off:after {
  content: "";
}

.ui-btn.ui-checkbox-off:after,
.ui-btn.ui-checkbox-on:after {
	content: "";
	position: absolute;
	left: 0;
	display: inline-block;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
  margin: -10px 5px;
	cursor: pointer;
	overflow: hidden;
	border-radius: 2px;
	background-color: #ffffff;
	z-index: 2;
}

.ui-btn.ui-checkbox-off:after {
	border: 2px solid rgba(0,0,0,.54);
}

.ui-icon-check:after,
html .ui-btn.ui-checkbox-on.ui-checkbox-on:after {
	content: "";
	background-color: #cccccc;
	background-image: url("data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjxzdmcKICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIgogICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIgogICB4bWxuczpyZGY9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkvMDIvMjItcmRmLXN5bnRheC1ucyMiCiAgIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciCiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIKICAgdmVyc2lvbj0iMS4xIgogICB2aWV3Qm94PSIwIDAgMSAxIgogICBwcmVzZXJ2ZUFzcGVjdFJhdGlvPSJ4TWluWU1pbiBtZWV0Ij4KICA8cGF0aAogICAgIGQ9Ik0gMC4wNDAzODA1OSwwLjYyNjc3NjcgMC4xNDY0NDY2MSwwLjUyMDcxMDY4IDAuNDI5Mjg5MzIsMC44MDM1NTMzOSAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IE0gMC4yMTcxNTcyOSwwLjgwMzU1MzM5IDAuODUzNTUzMzksMC4xNjcxNTcyOSAwLjk1OTYxOTQxLDAuMjczMjIzMyAwLjMyMzIyMzMsMC45MDk2MTk0MSB6IgogICAgIGlkPSJyZWN0Mzc4MCIKICAgICBzdHlsZT0iZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO3N0cm9rZTpub25lIiAvPgo8L3N2Zz4K") !important;
	border: 2px solid #cccccc;
	border-radius: 2px;
	overflow: hidden;
}


.ui-btn.ui-radio-off:after,
.ui-btn.ui-radio-on:after  {
	position: absolute;
	top: 6px;
	left: 5px;
	display: inline-block;
	box-sizing: border-box;
	width: 16px;
	height: 16px;
	margin: 0;
	cursor: pointer;
	border: 2px solid rgba(0,0,0,.54);
	border-radius: 50%;
	z-index: 2;
}

.ui-radio .ui-btn.ui-radio-on:after {
	width: 16px;
	height: 16px;
	background-color: #ffffff;
	border-width: 2px;
}

.ui-radio .ui-btn.ui-radio-on:before {
    position: absolute;
    content: "";
    top: 11px;
    left: 10px;
    display: inline-block;
    box-sizing: border-box;
    width: 6px;
    height: 6px;
    margin: 0;
    cursor: pointer;
    border: 0px;
    border-radius: 50%;
    z-index: 3;
    background-color: rgba(0,0,0,0.54);
}

.ui-controlgroup-horizontal .ui-radio .ui-btn.ui-radio-on:before {
	display: none;
}

.ui-controlgroup-horizontal .ui-btn.ui-first-child,
.ui-controlgroup-horizontal .ui-controlgroup-controls .ui-btn
 {
	background-color: rgb(250,250,250);
	box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
	border-radius: 0px;
}

.ui-mobile label,
.ui-controlgroup-label,
.ui-controlgroup-label legend {
	font-size: 12px;
	font-weight: 400;
	color: #696969;
	margin-bottom: 0px;
}


.ui-mobile label {
	cursor: pointer;
}

.ui-input-text input, .ui-input-search input,
textarea.ui-input-text.ui-textinput-autogrow {
	font-size: 14px;
	border-radius: 0px;
	border: 0px solid #ffffff;
	position: relative;
	margin: 0px;
	padding: 0px;
	line-height: 16px;
}

.ui-input-text, .ui-input-search,
textarea.ui-input-text.ui-textinput-autogrow {
	margin: 0px 0px 14px 0px;
	padding: 0px;
}

textarea.ui-input-text.ui-textinput-autogrow {
	margin-top: 4px;
	border-bottom: 2px solid #cccccc;
}

.ui-input-text:after,
.ui-input-search:after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background-color: #cccccc;

	-webkit-transition: width 0.4s, height 0.4s, background 0.4s;
	-moz-transition: width 0.4s, height 0.4s, background 0.4s;
	-ms-transition: width 0.4s, height 0.4s, background 0.4s;
	-o-transition: width 0.4s, height 0.4s, background 0.4s;
	transition: width 0.4s, height 0.4s, background 0.4s;

}

.ui-input-search {
	padding-left: 7px;
}

.ui-input-search:after {
	top: auto;
	bottom: 0px;
}

.ui-body-a, .ui-page-theme-a .ui-body-inherit, html .ui-bar-a .ui-body-inherit, html .ui-body-a .ui-body-inherit, html body .ui-group-theme-a .ui-body-inherit, html .ui-panel-page-container-a {
	box-shadow: none;
	border-radius: 0px;
	border: 0px solid #ffffff;
}



.ui-flipswitch {
	border-width: 0px;
	overflow: hidden;

		-webkit-transition: background 0.4s;
		-moz-transition: background 0.4s;
		-ms-transition: background 0.4s;
		-o-transition: background 0.4s;
		transition: background 0.4s;
}

.ui-flipswitch.ui-corner-all {
	border-radius: 13px;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
}

.ui-flipswitch.waves-button:hover {
	background-color: #e9e9e9;
}

.ui-flipswitch .ui-btn.ui-flipswitch-on {
	border-radius: 50%;
	border-color: transparent;
	background-color: #cccccc;
}

.ui-flipswitch .ui-btn.ui-flipswitch-on {
	background-color: rgba(255,255,255,0.5);
}

.ui-page-theme-a .ui-slider-track .ui-btn-active, html .ui-bar-a .ui-slider-track .ui-btn-active, html .ui-body-a .ui-slider-track .ui-btn-active, html body .ui-group-theme-a .ui-slider-track .ui-btn-active, html body div.ui-slider-track.ui-body-a .ui-btn-active {
	height: 2px;
	border-radius: 0px;
}

.ui-slider-track {
	height: 2px;
	border: 0px solid #ffffff;
	background-color: #cccccc;
}

html >body .ui-rangeslider .ui-rangeslider-sliders .ui-slider-track:first-child {
	height: 2px;
	border: 0px solid #ffffff;
}

.ui-slider-track .ui-btn.ui-slider-handle {
	width: 20px;
	height: 20px;
	border-radius: 50%;
	margin-top: -10px;
	margin-left: -10px;
	box-shadow: none;
}


/*
 * Popup / Dialog
 */

.ui-popup .ui-header .ui-title {
/*	margin-left: 1em;*/
}

.ui-popup {
	box-shadow: 0px 0px 5px rgba(0,0,0,0.1);
	border-radius: 0px;
}

/*
*	Toasts
*/

.nd2-toast {
	display: block;

	background-color: #323232;
	line-height: 48px;
	width: 450px;

	max-width: 100%;

	overflow: hidden;
	max-height: 48px;
	white-space: nowrap;

	position: fixed;
	bottom: 0px;
	left: 50%;

	-webkit-transform: translate(-50%,0%);
	-ms-transform: translate(-50%,0%);
	-moz-transform: translate(-50%,0%);
	-o-transform: translate(-50%,0%);
	transform: translate(-50%,0%);

	-moz-transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-ms-transition: all 0.4s;
	-o-transition: all 0.4s;
	transition: all 0.4s;

	color: #ffffff;
	font-size: 14px;

	z-index: 2001;

}

.nd2-toast-wrapper { position: relative; }

.nd2-toast.no-action {
	padding: 0px 24px 0px 0px;
}

.nd2-toast.nd2-toast-off {
	bottom: -150px;
}

.nd2-toast .nd2-toast-message {
	display: inline-block;
	max-width: 90%;
	overflow: hidden;
	text-overflow: ellipsis;
	padding: 0px 0px 0px 24px;
}

.nd2-toast .nd2-toast-action {
	display: inline-block;
	margin-left: 48px;
	position: absolute;
	right: 24px;
}

.nd2-toast .nd2-toast-action .ui-btn {
	padding: 0px;
	border: 0px solid transparent;
	background-color: #323232;
}

/*
 *	Search
 */

.nd2-search-input,
.nd2-search-back-button,
.nd2-search-active .nd2-search-button {
	display: none !important;
	visibility: hidden;
}

.nd2-search-active .nd2-search-input,
.nd2-search-active .nd2-search-back-button {
	display: block !important;
	visibility: visible;
}

.nd2-search-active .ui-title,
.nd2-search-active .ui-btn {
	display: none;
}

.nd2-search-input {
	display: block;
	position: absolute;
	top: 20px;
	left: 72px;
	background-color: transparent;
	border: 0px;
	line-height: 25px;
	font-size: 20px;
	color: #ffffff;
	outline: none;
}

.nd2-search-input::-webkit-input-placeholder { color: rgba(255,255,255,0.6); }
.nd2-search-input:-moz-placeholder { color: rgba(255,255,255,0.6); }
.nd2-search-input::-moz-placeholder { color: rgba(255,255,255,0.6); }
.nd2-search-input:-ms-input-placeholder { color: rgba(255,255,255,0.6); }

.ui-autocomplete {
	display: block;
	position: fixed;
	top: 64px !important;
	left: 0px !important;
	right: 0px;
	bottom: 0px;
	background-color: #fafafa;

	list-style-type: none;
	padding: 0px;
	margin: 0px;

	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.nd2-search-result-item {
	display: block;
	padding: 0px 10px;
	font-size: 18px;
	line-height: 2.6em;
	color: rgba(0,0,0,0.54);
	cursor: pointer;

	-webkit-transition: background 0.4s;
	-ms-transition: background 0.4s;
	-moz-transition: background 0.4s;
	-o-transition: background 0.4s;
	transition: background 0.4s;

}

.nd2-search-result-item:hover,
.nd2-search-result-item.ui-state-focus {
	background-color: rgba(0,0,0,0.05);
}

.nd2-search-result-item .icon {
	display: inline-block;
	width: 45px;
	text-align: center;
	margin-right: 17px;
}

.nd2-search-result-item .term {
	font-weight: normal;
	display: inline-block;
	color: rgba(0,0,0,0.94);
}


/*
 * Table
 */

.ui-table th {
	font-weight: 500;
}

/*
 * Colors
 */

.clr-bg-lime, .clr-accent-lime .nd2Tabs .nd2Tabs-active:after { background-color: #cddc39; }
.clr-bg-red, .clr-accent-red .nd2Tabs .nd2Tabs-active:after { background-color: #F44336; }
.clr-bg-pink, .clr-accent-pink .nd2Tabs .nd2Tabs-active:after { background-color: #E91E63; }
.clr-bg-purple, .clr-accent-purple .nd2Tabs .nd2Tabs-active:after { background-color: #9C27B0; }
.clr-bg-deep-purple, .clr-accent-deep-purple .nd2Tabs .nd2Tabs-active:after { background-color: #673AB7; }
.clr-bg-indigo, .clr-accent-indigo .nd2Tabs .nd2Tabs-active:after { background-color: #3F51B5; }
.clr-bg-blue, .clr-accent-blue .nd2Tabs .nd2Tabs-active:after { background-color: #2196F3; }
.clr-bg-light-blue, .clr-accent-light-blue .nd2Tabs .nd2Tabs-active:after { background-color: #03A9F4; }
.clr-bg-cyan, .clr-accent-cyan .nd2Tabs .nd2Tabs-active:after { background-color: #00BCD4; }
.clr-bg-teal, .clr-accent-teal .nd2Tabs .nd2Tabs-active:after { background-color: #009688; }
.clr-bg-green, .clr-accent-green .nd2Tabs .nd2Tabs-active:after { background-color: #4CAF50; }
.clr-bg-light-green, .clr-accent-light-green .nd2Tabs .nd2Tabs-active:after { background-color: #8BC34A; }
.clr-bg-yellow, .clr-accent-yellow .nd2Tabs .nd2Tabs-active:after { background-color: #FFEB3B; }
.clr-bg-amber, .clr-accent-amber .nd2Tabs .nd2Tabs-active:after { background-color: #FFC107; }
.clr-bg-orange, .clr-accent-orange .nd2Tabs .nd2Tabs-active:after { background-color: #FF9800; }
.clr-bg-deep-orange, .clr-accent-deep-orange .nd2Tabs .nd2Tabs-active:after { background-color: #FF5722; }
.clr-bg-brown, .clr-accent-brown .nd2Tabs .nd2Tabs-active:after { background-color: #795548; }
.clr-bg-grey, .clr-accent-grey .nd2Tabs .nd2Tabs-active:after { background-color: #9E9E9E; }
.clr-bg-blue-grey, .clr-accent-blue-grey .nd2Tabs .nd2Tabs-active:after { background-color: #607D8B; }
.clr-bg-white, .clr-accent-white .nd2Tabs .nd2Tabs-active:after { background-color: #FFFFFF; }

.clr-lime { color: #cddc39; }
.clr-red { color: #F44336; }
.clr-pink { color: #E91E63; }
.clr-purple { color: #9C27B0; }
.clr-deep-purple { color: #673AB7; }
.clr-indigo { color: #3F51B5; }
.clr-blue { color: #2196F3; }
.clr-light-blue { color: #03A9F4; }
.clr-cyan { color: #00BCD4; }
.clr-teal { color: #009688; }
.clr-green { color: #4CAF50; }
.clr-light-green { color: #8BC34A; }
.clr-yellow { color: #FFEB3B; }
.clr-amber { color: #FFC107; }
.clr-orange { color: #FF9800; }
.clr-deep-orange { color: #FF5722; }
.clr-brown { color: #795548; }
.clr-grey { color: #9E9E9E; }
.clr-blue-grey { color: #607D8B; }
.clr-white { color: #FFFFFF; }

.ui-btn.clr-btn-accent-lime,.ui-btn.clr-btn-accent-lime:hover { color: #cddc39; }
.ui-btn.clr-btn-accent-red,.ui-btn.clr-btn-accent-red:hover { color: #F44336; }
.ui-btn.clr-btn-accent-pink,.ui-btn.clr-btn-accent-pink:hover { color: #E91E63; }
.ui-btn.clr-btn-accent-purple,.ui-btn.clr-btn-accent-purple:hover { color: #9C27B0; }
.ui-btn.clr-btn-accent-deep-purple,.ui-btn.clr-btn-accent-deep-purple:hover { color: #673AB7; }
.ui-btn.clr-btn-accent-indigo,.ui-btn.clr-btn-accent-indigo:hover { color: #3F51B5; }
.ui-btn.clr-btn-accent-blue,.ui-btn.clr-btn-accent-blue:hover { color: #2196F3; }
.ui-btn.clr-btn-accent-light-blue,.ui-btn.clr-btn-accent-light-blue:hover { color: #03A9F4; }
.ui-btn.clr-btn-accent-cyan,.ui-btn.clr-btn-accent-cyan:hover { color: #00BCD4; }
.ui-btn.clr-btn-accent-teal,.ui-btn.clr-btn-accent-teal:hover { color: #009688; }
.ui-btn.clr-btn-accent-green,.ui-btn.clr-btn-accent-green:hover { color: #4CAF50; }
.ui-btn.clr-btn-accent-light-green,.ui-btn.clr-btn-accent-light-green:hover { color: #8BC34A; }
.ui-btn.clr-btn-accent-yellow,.ui-btn.clr-btn-accent-yellow:hover { color: #FFEB3B; }
.ui-btn.clr-btn-accent-amber,.ui-btn.clr-btn-accent-amber:hover { color: #FFC107; }
.ui-btn.clr-btn-accent-orange,.ui-btn.clr-btn-accent-orange:hover { color: #FF9800; }
.ui-btn.clr-btn-accent-deep-orange,.ui-btn.clr-btn-accent-deep-orange:hover { color: #FF5722; }
.ui-btn.clr-btn-accent-brown,.ui-btn.clr-btn-accent-brown:hover { color: #795548; }
.ui-btn.clr-btn-accent-grey,.ui-btn.clr-btn-accent-grey:hover { color: #9E9E9E; }
.ui-btn.clr-btn-accent-blue-grey,.ui-btn.clr-btn-accent-blue-grey:hover { color: #607D8B; }
.ui-btn.clr-btn-accent-white,.ui-btn.clr-btn-accent-white:hover { color: #FFFFFF; }

.ui-btn.clr-btn-lime,.ui-btn.clr-btn-lime:hover { color: rgba(0,0,0,0.8); background-color: #cddc39; }
.ui-btn.clr-btn-red,.ui-btn.clr-btn-red:hover { color: rgb(255,255,255); background-color: #F44336; }
.ui-btn.clr-btn-pink,.ui-btn.clr-btn-pink:hover { color: rgb(255,255,255); background-color: #E91E63; }
.ui-btn.clr-btn-purple,.ui-btn.clr-btn-purple:hover { color: rgb(255,255,255); background-color: #9C27B0; }
.ui-btn.clr-btn-deep-purple,.ui-btn.clr-btn-deep-purple:hover { color: rgb(255,255,255); background-color: #673AB7; }
.ui-btn.clr-btn-indigo,.ui-btn.clr-btn-indigo:hover { color: rgb(255,255,255); background-color: #3F51B5; }
.ui-btn.clr-btn-blue,.ui-btn.clr-btn-blue:hover { color: rgb(255,255,255); background-color: #2196F3; }
.ui-btn.clr-btn-light-blue,.ui-btn.clr-btn-light-blue:hover { color: rgb(255,255,255); background-color: #03A9F4; }
.ui-btn.clr-btn-cyan,.ui-btn.clr-btn-cyan:hover { color: rgb(255,255,255); background-color: #00BCD4; }
.ui-btn.clr-btn-teal,.ui-btn.clr-btn-teal:hover { color: rgb(255,255,255); background-color: #009688; }
.ui-btn.clr-btn-green,.ui-btn.clr-btn-green:hover { color: rgb(255,255,255); background-color: #4CAF50; }
.ui-btn.clr-btn-light-green,.ui-btn.clr-btn-light-green:hover { color: rgb(255,255,255); background-color: #8BC34A; }
.ui-btn.clr-btn-yellow,.ui-btn.clr-btn-yellow:hover { color: rgba(0,0,0,0.8); background-color: #FFEB3B; }
.ui-btn.clr-btn-amber,.ui-btn.clr-btn-amber:hover { color: rgba(0,0,0,0.8); background-color: #FFC107; }
.ui-btn.clr-btn-orange,.ui-btn.clr-btn-orange:hover { color: rgb(255,255,255); background-color: #FF9800; }
.ui-btn.clr-btn-deep-orange,.ui-btn.clr-btn-deep-orange:hover { color: rgb(255,255,255); background-color: #FF5722; }
.ui-btn.clr-btn-brown,.ui-btn.clr-btn-brown:hover { color: rgb(255,255,255); background-color: #795548; }
.ui-btn.clr-btn-grey,.ui-btn.clr-btn-grey:hover { color: rgb(255,255,255); background-color: #9E9E9E; }
.ui-btn.clr-btn-blue-grey,.ui-btn.clr-btn-blue-grey:hover { color: rgb(255,255,255); background-color: #607D8B; }
.ui-btn.clr-btn-white,.ui-btn.clr-btn-white:hover { color: rgba(0,0,0,0.8); background-color: #FFFFFF; }


/*
 * Cards
 */

.nd2-card {
	display: block;
	border-radius: 4px;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
	margin: 15px auto;
	max-width: 450px;
	overflow: hidden;
}

.nd2-card.card-media-right,
.nd2-card.card-media-left {
	position: relative;
}

.nd2-card.card-media-left {
	min-height: 272px;
}

.nd2-card .card-media img {
	width: 100%;
	display: block;
}

.nd2-card .card-media {
	width: 100%;
	overflow: hidden;
	position: relative;
}

.nd2-card.card-media-right .card-media {
	display: block;
	position: absolute;
	top: 12px;
	right: 12px;
}

.nd2-card.card-media-left .card-media {
	display: block;
	position: absolute;
	top: 16px;
	left: 16px;
	width: 240px;
}

.nd2-card.card-media-right.card-media-small .card-media { width: 80px; height: 80px; }
.nd2-card.card-media-right.card-media-medium .card-media { width: 112px; height: 112px; }
.nd2-card.card-media-right.card-media-large .card-media { width: 152px; height: 152px; }

.nd2-card .card-media-overlay {
	display: block;
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	overflow: hidden;

	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&amp;0+0,0.65+100 */
	background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,0.65) 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(0,0,0,0)), color-stop(100%,rgba(0,0,0,0.65))); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* IE10+ */
	background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,0.65) 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#a6000000',GradientType=0 ); /* IE6-9 */

}

.nd2-card .card-media-overlay.with-background {
	background-color: rgba(0,0,0,0.4);
}

.nd2-card .card-media-overlay .card-title .card-primary-title,
.nd2-card .card-media-overlay .card-title .card-subtitle,
.nd2-card .card-media-overlay .card-action .ui-btn {
	color: #ffffff;
	text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.nd2-card .card-media-overlay .card-action .ui-btn:hover {
	background-color: rgba(0,0,0,0.4);
}

.nd2-card .card-supporting-text {
	padding: 16px 16px 16px 16px;
	display: block;
	font-size: 16px;
	line-height: 1.6em;
	margin: 0px 0px;
}

.nd2-card .card-supporting-text.has-action { padding: 16px 16px 16px 16px; }
.nd2-card .card-supporting-text.has-title { padding-top: 0px; }

.nd2-card.card-media-right .card-supporting-text.has-title { padding-top: 16px; }


.nd2-card .card-title {
	padding: 24px 16px;
}

.nd2-card.card-media-right.card-media-small .card-title { min-height: 56px; }
.nd2-card.card-media-right.card-media-medium .card-title { min-height: 88px; }
.nd2-card.card-media-right.card-media-large .card-title {  min-height: 128px;  }

.nd2-card .card-title.has-supporting-text {
	padding: 24px 16px 16px 16px;
}

.nd2-card .card-title .card-primary-title {
	margin: 0px;
	font-weight: 500;
	font-size: 22px;
	line-height: 26px;
	max-width: 90%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.nd2-card .card-title .card-subtitle {
	font-size: 14px;
	margin: 0px;
	color: #8e8e8e;
	font-weight: 400;
	line-height: 20px;
	max-width: 90%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}

.nd2-card.card-media-right .card-title .card-primary-title,
.nd2-card.card-media-right .card-title .card-subtitle {
	margin-right: 120px;
}

.nd2-card.card-media-right.card-media-medium  .card-title .card-primary-title,
.nd2-card.card-media-right.card-media-medium  .card-title .card-subtitle {
	margin-right: 180px;
}

.nd2-card.card-media-right.card-media-large .card-title .card-primary-title,
.nd2-card.card-media-right.card-media-large .card-title .card-subtitle {
	margin-right: 220px;
}


.nd2-card .card-title.has-avatar .card-primary-title,
.nd2-card .card-title.has-avatar .card-subtitle {
	font-size: 16px;
	line-height: 20px;
}

.nd2-card .card-title .card-avatar {
	display: block;
	float: left;
	width: 40px;
	height: 40px;
	overflow: hidden;
	border-radius: 50%;
	margin-right: 16px;
	background-color: #bdbdbd;
}

.nd2-card .card-action {
	padding: 8px;
}

.nd2-card .card-action.has-separator {
	border-top: 1px solid #eee;
}


.nd2-card.card-media-left .card-action {
	position: absolute;
	top: 16px;
	right: 16px;
	text-align: right;
}

.nd2-card.card-media-left .card-action .ui-btn {
	display: block;
}

/*
* Charts
*/

.nd2-chart {
	width: 100%;
	margin: 48px auto;
	height: 250px;
}

.nd2-chart.nd2-chart-large {
	height: 500px;
}

.nd2-chart .ct-area {
	fill-opacity: 0.6;
}

.nd2-chart .ct-bar {
	stroke-width: 5px;
}

/* Chart-Color-Theme: red */
.nd2-chart.clr-theme-red .ct-series-a .ct-bar, .nd2-chart.clr-theme-red .ct-series-a .ct-line, .nd2-chart.clr-theme-red .ct-series-a .ct-point, .nd2-chart.clr-theme-red .ct-series-a .ct-slice-donut {	stroke: #F44336; } .nd2-chart.clr-theme-red .ct-series-a .ct-area, .nd2-chart.clr-theme-red .ct-series-a .ct-slice-pie { fill: #F44336; }  .nd2-chart.clr-theme-red .ct-series-b .ct-bar, .nd2-chart.clr-theme-red .ct-series-b .ct-line, .nd2-chart.clr-theme-red .ct-series-b .ct-point, .nd2-chart.clr-theme-red .ct-series-b .ct-slice-donut {	stroke: #E91E63; } .nd2-chart.clr-theme-red .ct-series-b .ct-area, .nd2-chart.clr-theme-red .ct-series-b .ct-slice-pie { fill: #E91E63; }  .nd2-chart.clr-theme-red .ct-series-c .ct-bar, .nd2-chart.clr-theme-red .ct-series-c .ct-line, .nd2-chart.clr-theme-red .ct-series-c .ct-point, .nd2-chart.clr-theme-red .ct-series-c .ct-slice-donut {	stroke: #9C27B0; } .nd2-chart.clr-theme-red .ct-series-c .ct-area, .nd2-chart.clr-theme-red .ct-series-c .ct-slice-pie { fill: #9C27B0; }  .nd2-chart.clr-theme-red .ct-series-d .ct-bar, .nd2-chart.clr-theme-red .ct-series-d .ct-line, .nd2-chart.clr-theme-red .ct-series-d .ct-point, .nd2-chart.clr-theme-red .ct-series-d .ct-slice-donut {	stroke: #673AB7; } .nd2-chart.clr-theme-red .ct-series-d .ct-area, .nd2-chart.clr-theme-red .ct-series-d .ct-slice-pie { fill: #673AB7; }  .nd2-chart.clr-theme-red .ct-series-e .ct-bar, .nd2-chart.clr-theme-red .ct-series-e .ct-line, .nd2-chart.clr-theme-red .ct-series-e .ct-point, .nd2-chart.clr-theme-red .ct-series-e .ct-slice-donut {	stroke: #3F51B5; } .nd2-chart.clr-theme-red .ct-series-e .ct-area, .nd2-chart.clr-theme-red .ct-series-e .ct-slice-pie { fill: #3F51B5; }  .nd2-chart.clr-theme-red .ct-series-f .ct-bar, .nd2-chart.clr-theme-red .ct-series-f .ct-line, .nd2-chart.clr-theme-red .ct-series-f .ct-point, .nd2-chart.clr-theme-red .ct-series-f .ct-slice-donut {	stroke: #2196F3; } .nd2-chart.clr-theme-red .ct-series-f .ct-area, .nd2-chart.clr-theme-red .ct-series-f .ct-slice-pie { fill: #2196F3; }  .nd2-chart.clr-theme-red .ct-series-g .ct-bar, .nd2-chart.clr-theme-red .ct-series-g .ct-line, .nd2-chart.clr-theme-red .ct-series-g .ct-point, .nd2-chart.clr-theme-red .ct-series-g .ct-slice-donut {	stroke: #03A9F4; } .nd2-chart.clr-theme-red .ct-series-g .ct-area, .nd2-chart.clr-theme-red .ct-series-g .ct-slice-pie { fill: #03A9F4; }  .nd2-chart.clr-theme-red .ct-series-h .ct-bar, .nd2-chart.clr-theme-red .ct-series-h .ct-line, .nd2-chart.clr-theme-red .ct-series-h .ct-point, .nd2-chart.clr-theme-red .ct-series-h .ct-slice-donut {	stroke: #00BCD4; } .nd2-chart.clr-theme-red .ct-series-h .ct-area, .nd2-chart.clr-theme-red .ct-series-h .ct-slice-pie { fill: #00BCD4; }  .nd2-chart.clr-theme-red .ct-series-i .ct-bar, .nd2-chart.clr-theme-red .ct-series-i .ct-line, .nd2-chart.clr-theme-red .ct-series-i .ct-point, .nd2-chart.clr-theme-red .ct-series-i .ct-slice-donut {	stroke: #009688; } .nd2-chart.clr-theme-red .ct-series-i .ct-area, .nd2-chart.clr-theme-red .ct-series-i .ct-slice-pie { fill: #009688; }  .nd2-chart.clr-theme-red .ct-series-j .ct-bar, .nd2-chart.clr-theme-red .ct-series-j .ct-line, .nd2-chart.clr-theme-red .ct-series-j .ct-point, .nd2-chart.clr-theme-red .ct-series-j .ct-slice-donut {	stroke: #4CAF50; } .nd2-chart.clr-theme-red .ct-series-j .ct-area, .nd2-chart.clr-theme-red .ct-series-j .ct-slice-pie { fill: #4CAF50; }  .nd2-chart.clr-theme-red .ct-series-k .ct-bar, .nd2-chart.clr-theme-red .ct-series-k .ct-line, .nd2-chart.clr-theme-red .ct-series-k .ct-point, .nd2-chart.clr-theme-red .ct-series-k .ct-slice-donut {	stroke: #8BC34A; } .nd2-chart.clr-theme-red .ct-series-k .ct-area, .nd2-chart.clr-theme-red .ct-series-k .ct-slice-pie { fill: #8BC34A; }  .nd2-chart.clr-theme-red .ct-series-l .ct-bar, .nd2-chart.clr-theme-red .ct-series-l .ct-line, .nd2-chart.clr-theme-red .ct-series-l .ct-point, .nd2-chart.clr-theme-red .ct-series-l .ct-slice-donut {	stroke: #CDDC39; } .nd2-chart.clr-theme-red .ct-series-l .ct-area, .nd2-chart.clr-theme-red .ct-series-l .ct-slice-pie { fill: #CDDC39; }  .nd2-chart.clr-theme-red .ct-series-m .ct-bar, .nd2-chart.clr-theme-red .ct-series-m .ct-line, .nd2-chart.clr-theme-red .ct-series-m .ct-point, .nd2-chart.clr-theme-red .ct-series-m .ct-slice-donut {	stroke: #FFEB3B; } .nd2-chart.clr-theme-red .ct-series-m .ct-area, .nd2-chart.clr-theme-red .ct-series-m .ct-slice-pie { fill: #FFEB3B; }  .nd2-chart.clr-theme-red .ct-series-n .ct-bar, .nd2-chart.clr-theme-red .ct-series-n .ct-line, .nd2-chart.clr-theme-red .ct-series-n .ct-point, .nd2-chart.clr-theme-red .ct-series-n .ct-slice-donut {	stroke: #FFC107; } .nd2-chart.clr-theme-red .ct-series-n .ct-area, .nd2-chart.clr-theme-red .ct-series-n .ct-slice-pie { fill: #FFC107; }  .nd2-chart.clr-theme-red .ct-series-o .ct-bar, .nd2-chart.clr-theme-red .ct-series-o .ct-line, .nd2-chart.clr-theme-red .ct-series-o .ct-point, .nd2-chart.clr-theme-red .ct-series-o .ct-slice-donut {	stroke: #FF9800; } .nd2-chart.clr-theme-red .ct-series-o .ct-area, .nd2-chart.clr-theme-red .ct-series-o .ct-slice-pie { fill: #FF9800; }  .nd2-chart.clr-theme-red .ct-series-p .ct-bar, .nd2-chart.clr-theme-red .ct-series-p .ct-line, .nd2-chart.clr-theme-red .ct-series-p .ct-point, .nd2-chart.clr-theme-red .ct-series-p .ct-slice-donut {	stroke: #FF5722; } .nd2-chart.clr-theme-red .ct-series-p .ct-area, .nd2-chart.clr-theme-red .ct-series-p .ct-slice-pie { fill: #FF5722; }  .nd2-chart.clr-theme-red .ct-series-q .ct-bar, .nd2-chart.clr-theme-red .ct-series-q .ct-line, .nd2-chart.clr-theme-red .ct-series-q .ct-point, .nd2-chart.clr-theme-red .ct-series-q .ct-slice-donut {	stroke: #795548; } .nd2-chart.clr-theme-red .ct-series-q .ct-area, .nd2-chart.clr-theme-red .ct-series-q .ct-slice-pie { fill: #795548; }  .nd2-chart.clr-theme-red .ct-series-r .ct-bar, .nd2-chart.clr-theme-red .ct-series-r .ct-line, .nd2-chart.clr-theme-red .ct-series-r .ct-point, .nd2-chart.clr-theme-red .ct-series-r .ct-slice-donut {	stroke: #9E9E9E; } .nd2-chart.clr-theme-red .ct-series-r .ct-area, .nd2-chart.clr-theme-red .ct-series-r .ct-slice-pie { fill: #9E9E9E; }


/* Chart-Color-Theme: pink */
.nd2-chart.clr-theme-pink .ct-series-a .ct-bar, .nd2-chart.clr-theme-pink .ct-series-a .ct-line, .nd2-chart.clr-theme-pink .ct-series-a .ct-point, .nd2-chart.clr-theme-pink .ct-series-a .ct-slice-donut {	stroke: #E91E63; } .nd2-chart.clr-theme-pink .ct-series-a .ct-area, .nd2-chart.clr-theme-pink .ct-series-a .ct-slice-pie { fill: #E91E63; }  .nd2-chart.clr-theme-pink .ct-series-b .ct-bar, .nd2-chart.clr-theme-pink .ct-series-b .ct-line, .nd2-chart.clr-theme-pink .ct-series-b .ct-point, .nd2-chart.clr-theme-pink .ct-series-b .ct-slice-donut {	stroke: #9C27B0; } .nd2-chart.clr-theme-pink .ct-series-b .ct-area, .nd2-chart.clr-theme-pink .ct-series-b .ct-slice-pie { fill: #9C27B0; }  .nd2-chart.clr-theme-pink .ct-series-c .ct-bar, .nd2-chart.clr-theme-pink .ct-series-c .ct-line, .nd2-chart.clr-theme-pink .ct-series-c .ct-point, .nd2-chart.clr-theme-pink .ct-series-c .ct-slice-donut {	stroke: #673AB7; } .nd2-chart.clr-theme-pink .ct-series-c .ct-area, .nd2-chart.clr-theme-pink .ct-series-c .ct-slice-pie { fill: #673AB7; }  .nd2-chart.clr-theme-pink .ct-series-d .ct-bar, .nd2-chart.clr-theme-pink .ct-series-d .ct-line, .nd2-chart.clr-theme-pink .ct-series-d .ct-point, .nd2-chart.clr-theme-pink .ct-series-d .ct-slice-donut {	stroke: #3F51B5; } .nd2-chart.clr-theme-pink .ct-series-d .ct-area, .nd2-chart.clr-theme-pink .ct-series-d .ct-slice-pie { fill: #3F51B5; }  .nd2-chart.clr-theme-pink .ct-series-e .ct-bar, .nd2-chart.clr-theme-pink .ct-series-e .ct-line, .nd2-chart.clr-theme-pink .ct-series-e .ct-point, .nd2-chart.clr-theme-pink .ct-series-e .ct-slice-donut {	stroke: #2196F3; } .nd2-chart.clr-theme-pink .ct-series-e .ct-area, .nd2-chart.clr-theme-pink .ct-series-e .ct-slice-pie { fill: #2196F3; }  .nd2-chart.clr-theme-pink .ct-series-f .ct-bar, .nd2-chart.clr-theme-pink .ct-series-f .ct-line, .nd2-chart.clr-theme-pink .ct-series-f .ct-point, .nd2-chart.clr-theme-pink .ct-series-f .ct-slice-donut {	stroke: #03A9F4; } .nd2-chart.clr-theme-pink .ct-series-f .ct-area, .nd2-chart.clr-theme-pink .ct-series-f .ct-slice-pie { fill: #03A9F4; }  .nd2-chart.clr-theme-pink .ct-series-g .ct-bar, .nd2-chart.clr-theme-pink .ct-series-g .ct-line, .nd2-chart.clr-theme-pink .ct-series-g .ct-point, .nd2-chart.clr-theme-pink .ct-series-g .ct-slice-donut {	stroke: #00BCD4; } .nd2-chart.clr-theme-pink .ct-series-g .ct-area, .nd2-chart.clr-theme-pink .ct-series-g .ct-slice-pie { fill: #00BCD4; }  .nd2-chart.clr-theme-pink .ct-series-h .ct-bar, .nd2-chart.clr-theme-pink .ct-series-h .ct-line, .nd2-chart.clr-theme-pink .ct-series-h .ct-point, .nd2-chart.clr-theme-pink .ct-series-h .ct-slice-donut {	stroke: #009688; } .nd2-chart.clr-theme-pink .ct-series-h .ct-area, .nd2-chart.clr-theme-pink .ct-series-h .ct-slice-pie { fill: #009688; }  .nd2-chart.clr-theme-pink .ct-series-i .ct-bar, .nd2-chart.clr-theme-pink .ct-series-i .ct-line, .nd2-chart.clr-theme-pink .ct-series-i .ct-point, .nd2-chart.clr-theme-pink .ct-series-i .ct-slice-donut {	stroke: #4CAF50; } .nd2-chart.clr-theme-pink .ct-series-i .ct-area, .nd2-chart.clr-theme-pink .ct-series-i .ct-slice-pie { fill: #4CAF50; }  .nd2-chart.clr-theme-pink .ct-series-j .ct-bar, .nd2-chart.clr-theme-pink .ct-series-j .ct-line, .nd2-chart.clr-theme-pink .ct-series-j .ct-point, .nd2-chart.clr-theme-pink .ct-series-j .ct-slice-donut {	stroke: #8BC34A; } .nd2-chart.clr-theme-pink .ct-series-j .ct-area, .nd2-chart.clr-theme-pink .ct-series-j .ct-slice-pie { fill: #8BC34A; }  .nd2-chart.clr-theme-pink .ct-series-k .ct-bar, .nd2-chart.clr-theme-pink .ct-series-k .ct-line, .nd2-chart.clr-theme-pink .ct-series-k .ct-point, .nd2-chart.clr-theme-pink .ct-series-k .ct-slice-donut {	stroke: #CDDC39; } .nd2-chart.clr-theme-pink .ct-series-k .ct-area, .nd2-chart.clr-theme-pink .ct-series-k .ct-slice-pie { fill: #CDDC39; }  .nd2-chart.clr-theme-pink .ct-series-l .ct-bar, .nd2-chart.clr-theme-pink .ct-series-l .ct-line, .nd2-chart.clr-theme-pink .ct-series-l .ct-point, .nd2-chart.clr-theme-pink .ct-series-l .ct-slice-donut {	stroke: #FFEB3B; } .nd2-chart.clr-theme-pink .ct-series-l .ct-area, .nd2-chart.clr-theme-pink .ct-series-l .ct-slice-pie { fill: #FFEB3B; }  .nd2-chart.clr-theme-pink .ct-series-m .ct-bar, .nd2-chart.clr-theme-pink .ct-series-m .ct-line, .nd2-chart.clr-theme-pink .ct-series-m .ct-point, .nd2-chart.clr-theme-pink .ct-series-m .ct-slice-donut {	stroke: #FFC107; } .nd2-chart.clr-theme-pink .ct-series-m .ct-area, .nd2-chart.clr-theme-pink .ct-series-m .ct-slice-pie { fill: #FFC107; }  .nd2-chart.clr-theme-pink .ct-series-n .ct-bar, .nd2-chart.clr-theme-pink .ct-series-n .ct-line, .nd2-chart.clr-theme-pink .ct-series-n .ct-point, .nd2-chart.clr-theme-pink .ct-series-n .ct-slice-donut {	stroke: #FF9800; } .nd2-chart.clr-theme-pink .ct-series-n .ct-area, .nd2-chart.clr-theme-pink .ct-series-n .ct-slice-pie { fill: #FF9800; }  .nd2-chart.clr-theme-pink .ct-series-o .ct-bar, .nd2-chart.clr-theme-pink .ct-series-o .ct-line, .nd2-chart.clr-theme-pink .ct-series-o .ct-point, .nd2-chart.clr-theme-pink .ct-series-o .ct-slice-donut {	stroke: #FF5722; } .nd2-chart.clr-theme-pink .ct-series-o .ct-area, .nd2-chart.clr-theme-pink .ct-series-o .ct-slice-pie { fill: #FF5722; }  .nd2-chart.clr-theme-pink .ct-series-p .ct-bar, .nd2-chart.clr-theme-pink .ct-series-p .ct-line, .nd2-chart.clr-theme-pink .ct-series-p .ct-point, .nd2-chart.clr-theme-pink .ct-series-p .ct-slice-donut {	stroke: #795548; } .nd2-chart.clr-theme-pink .ct-series-p .ct-area, .nd2-chart.clr-theme-pink .ct-series-p .ct-slice-pie { fill: #795548; }  .nd2-chart.clr-theme-pink .ct-series-q .ct-bar, .nd2-chart.clr-theme-pink .ct-series-q .ct-line, .nd2-chart.clr-theme-pink .ct-series-q .ct-point, .nd2-chart.clr-theme-pink .ct-series-q .ct-slice-donut {	stroke: #9E9E9E; } .nd2-chart.clr-theme-pink .ct-series-q .ct-area, .nd2-chart.clr-theme-pink .ct-series-q .ct-slice-pie { fill: #9E9E9E; }  .nd2-chart.clr-theme-pink .ct-series-r .ct-bar, .nd2-chart.clr-theme-pink .ct-series-r .ct-line, .nd2-chart.clr-theme-pink .ct-series-r .ct-point, .nd2-chart.clr-theme-pink .ct-series-r .ct-slice-donut {	stroke: #607D8B; } .nd2-chart.clr-theme-pink .ct-series-r .ct-area, .nd2-chart.clr-theme-pink .ct-series-r .ct-slice-pie { fill: #607D8B; }


/* Chart-Color-Theme: purple */
.nd2-chart.clr-theme-purple .ct-series-a .ct-bar, .nd2-chart.clr-theme-purple .ct-series-a .ct-line, .nd2-chart.clr-theme-purple .ct-series-a .ct-point, .nd2-chart.clr-theme-purple .ct-series-a .ct-slice-donut {	stroke: #9C27B0; } .nd2-chart.clr-theme-purple .ct-series-a .ct-area, .nd2-chart.clr-theme-purple .ct-series-a .ct-slice-pie { fill: #9C27B0; }  .nd2-chart.clr-theme-purple .ct-series-b .ct-bar, .nd2-chart.clr-theme-purple .ct-series-b .ct-line, .nd2-chart.clr-theme-purple .ct-series-b .ct-point, .nd2-chart.clr-theme-purple .ct-series-b .ct-slice-donut {	stroke: #673AB7; } .nd2-chart.clr-theme-purple .ct-series-b .ct-area, .nd2-chart.clr-theme-purple .ct-series-b .ct-slice-pie { fill: #673AB7; }  .nd2-chart.clr-theme-purple .ct-series-c .ct-bar, .nd2-chart.clr-theme-purple .ct-series-c .ct-line, .nd2-chart.clr-theme-purple .ct-series-c .ct-point, .nd2-chart.clr-theme-purple .ct-series-c .ct-slice-donut {	stroke: #3F51B5; } .nd2-chart.clr-theme-purple .ct-series-c .ct-area, .nd2-chart.clr-theme-purple .ct-series-c .ct-slice-pie { fill: #3F51B5; }  .nd2-chart.clr-theme-purple .ct-series-d .ct-bar, .nd2-chart.clr-theme-purple .ct-series-d .ct-line, .nd2-chart.clr-theme-purple .ct-series-d .ct-point, .nd2-chart.clr-theme-purple .ct-series-d .ct-slice-donut {	stroke: #2196F3; } .nd2-chart.clr-theme-purple .ct-series-d .ct-area, .nd2-chart.clr-theme-purple .ct-series-d .ct-slice-pie { fill: #2196F3; }  .nd2-chart.clr-theme-purple .ct-series-e .ct-bar, .nd2-chart.clr-theme-purple .ct-series-e .ct-line, .nd2-chart.clr-theme-purple .ct-series-e .ct-point, .nd2-chart.clr-theme-purple .ct-series-e .ct-slice-donut {	stroke: #03A9F4; } .nd2-chart.clr-theme-purple .ct-series-e .ct-area, .nd2-chart.clr-theme-purple .ct-series-e .ct-slice-pie { fill: #03A9F4; }  .nd2-chart.clr-theme-purple .ct-series-f .ct-bar, .nd2-chart.clr-theme-purple .ct-series-f .ct-line, .nd2-chart.clr-theme-purple .ct-series-f .ct-point, .nd2-chart.clr-theme-purple .ct-series-f .ct-slice-donut {	stroke: #00BCD4; } .nd2-chart.clr-theme-purple .ct-series-f .ct-area, .nd2-chart.clr-theme-purple .ct-series-f .ct-slice-pie { fill: #00BCD4; }  .nd2-chart.clr-theme-purple .ct-series-g .ct-bar, .nd2-chart.clr-theme-purple .ct-series-g .ct-line, .nd2-chart.clr-theme-purple .ct-series-g .ct-point, .nd2-chart.clr-theme-purple .ct-series-g .ct-slice-donut {	stroke: #009688; } .nd2-chart.clr-theme-purple .ct-series-g .ct-area, .nd2-chart.clr-theme-purple .ct-series-g .ct-slice-pie { fill: #009688; }  .nd2-chart.clr-theme-purple .ct-series-h .ct-bar, .nd2-chart.clr-theme-purple .ct-series-h .ct-line, .nd2-chart.clr-theme-purple .ct-series-h .ct-point, .nd2-chart.clr-theme-purple .ct-series-h .ct-slice-donut {	stroke: #4CAF50; } .nd2-chart.clr-theme-purple .ct-series-h .ct-area, .nd2-chart.clr-theme-purple .ct-series-h .ct-slice-pie { fill: #4CAF50; }  .nd2-chart.clr-theme-purple .ct-series-i .ct-bar, .nd2-chart.clr-theme-purple .ct-series-i .ct-line, .nd2-chart.clr-theme-purple .ct-series-i .ct-point, .nd2-chart.clr-theme-purple .ct-series-i .ct-slice-donut {	stroke: #8BC34A; } .nd2-chart.clr-theme-purple .ct-series-i .ct-area, .nd2-chart.clr-theme-purple .ct-series-i .ct-slice-pie { fill: #8BC34A; }  .nd2-chart.clr-theme-purple .ct-series-j .ct-bar, .nd2-chart.clr-theme-purple .ct-series-j .ct-line, .nd2-chart.clr-theme-purple .ct-series-j .ct-point, .nd2-chart.clr-theme-purple .ct-series-j .ct-slice-donut {	stroke: #CDDC39; } .nd2-chart.clr-theme-purple .ct-series-j .ct-area, .nd2-chart.clr-theme-purple .ct-series-j .ct-slice-pie { fill: #CDDC39; }  .nd2-chart.clr-theme-purple .ct-series-k .ct-bar, .nd2-chart.clr-theme-purple .ct-series-k .ct-line, .nd2-chart.clr-theme-purple .ct-series-k .ct-point, .nd2-chart.clr-theme-purple .ct-series-k .ct-slice-donut {	stroke: #FFEB3B; } .nd2-chart.clr-theme-purple .ct-series-k .ct-area, .nd2-chart.clr-theme-purple .ct-series-k .ct-slice-pie { fill: #FFEB3B; }  .nd2-chart.clr-theme-purple .ct-series-l .ct-bar, .nd2-chart.clr-theme-purple .ct-series-l .ct-line, .nd2-chart.clr-theme-purple .ct-series-l .ct-point, .nd2-chart.clr-theme-purple .ct-series-l .ct-slice-donut {	stroke: #FFC107; } .nd2-chart.clr-theme-purple .ct-series-l .ct-area, .nd2-chart.clr-theme-purple .ct-series-l .ct-slice-pie { fill: #FFC107; }  .nd2-chart.clr-theme-purple .ct-series-m .ct-bar, .nd2-chart.clr-theme-purple .ct-series-m .ct-line, .nd2-chart.clr-theme-purple .ct-series-m .ct-point, .nd2-chart.clr-theme-purple .ct-series-m .ct-slice-donut {	stroke: #FF9800; } .nd2-chart.clr-theme-purple .ct-series-m .ct-area, .nd2-chart.clr-theme-purple .ct-series-m .ct-slice-pie { fill: #FF9800; }  .nd2-chart.clr-theme-purple .ct-series-n .ct-bar, .nd2-chart.clr-theme-purple .ct-series-n .ct-line, .nd2-chart.clr-theme-purple .ct-series-n .ct-point, .nd2-chart.clr-theme-purple .ct-series-n .ct-slice-donut {	stroke: #FF5722; } .nd2-chart.clr-theme-purple .ct-series-n .ct-area, .nd2-chart.clr-theme-purple .ct-series-n .ct-slice-pie { fill: #FF5722; }  .nd2-chart.clr-theme-purple .ct-series-o .ct-bar, .nd2-chart.clr-theme-purple .ct-series-o .ct-line, .nd2-chart.clr-theme-purple .ct-series-o .ct-point, .nd2-chart.clr-theme-purple .ct-series-o .ct-slice-donut {	stroke: #795548; } .nd2-chart.clr-theme-purple .ct-series-o .ct-area, .nd2-chart.clr-theme-purple .ct-series-o .ct-slice-pie { fill: #795548; }  .nd2-chart.clr-theme-purple .ct-series-p .ct-bar, .nd2-chart.clr-theme-purple .ct-series-p .ct-line, .nd2-chart.clr-theme-purple .ct-series-p .ct-point, .nd2-chart.clr-theme-purple .ct-series-p .ct-slice-donut {	stroke: #9E9E9E; } .nd2-chart.clr-theme-purple .ct-series-p .ct-area, .nd2-chart.clr-theme-purple .ct-series-p .ct-slice-pie { fill: #9E9E9E; }  .nd2-chart.clr-theme-purple .ct-series-q .ct-bar, .nd2-chart.clr-theme-purple .ct-series-q .ct-line, .nd2-chart.clr-theme-purple .ct-series-q .ct-point, .nd2-chart.clr-theme-purple .ct-series-q .ct-slice-donut {	stroke: #607D8B; } .nd2-chart.clr-theme-purple .ct-series-q .ct-area, .nd2-chart.clr-theme-purple .ct-series-q .ct-slice-pie { fill: #607D8B; }  .nd2-chart.clr-theme-purple .ct-series-r .ct-bar, .nd2-chart.clr-theme-purple .ct-series-r .ct-line, .nd2-chart.clr-theme-purple .ct-series-r .ct-point, .nd2-chart.clr-theme-purple .ct-series-r .ct-slice-donut {	stroke: #F44336; } .nd2-chart.clr-theme-purple .ct-series-r .ct-area, .nd2-chart.clr-theme-purple .ct-series-r .ct-slice-pie { fill: #F44336; }


/* Chart-Color-Theme: deep-purple */
.nd2-chart.clr-theme-deep-purple .ct-series-a .ct-bar, .nd2-chart.clr-theme-deep-purple .ct-series-a .ct-line, .nd2-chart.clr-theme-deep-purple .ct-series-a .ct-point, .nd2-chart.clr-theme-deep-purple .ct-series-a .ct-slice-donut {	stroke: #673AB7; } .nd2-chart.clr-theme-deep-purple .ct-series-a .ct-area, .nd2-chart.clr-theme-deep-purple .ct-series-a .ct-slice-pie { fill: #673AB7; }  .nd2-chart.clr-theme-deep-purple .ct-series-b .ct-bar, .nd2-chart.clr-theme-deep-purple .ct-series-b .ct-line, .nd2-chart.clr-theme-deep-purple .ct-series-b .ct-point, .nd2-chart.clr-theme-deep-purple .ct-series-b .ct-slice-donut {	stroke: #3F51B5; } .nd2-chart.clr-theme-deep-purple .ct-series-b .ct-area, .nd2-chart.clr-theme-deep-purple .ct-series-b .ct-slice-pie { fill: #3F51B5; }  .nd2-chart.clr-theme-deep-purple .ct-series-c .ct-bar, .nd2-chart.clr-theme-deep-purple .ct-series-c .ct-line, .nd2-chart.clr-theme-deep-purple .ct-series-c .ct-point, .nd2-chart.clr-theme-deep-purple .ct-series-c .ct-slice-donut {	stroke: #2196F3; } .nd2-chart.clr-theme-deep-purple .ct-series-c .ct-area, .nd2-chart.clr-theme-deep-purple .ct-series-c .ct-slice-pie { fill: #2196F3; }  .nd2-chart.clr-theme-deep-purple .ct-series-d .ct-bar, .nd2-chart.clr-theme-deep-purple .ct-series-d .ct-line, .nd2-chart.clr-theme-deep-purple .ct-series-d .ct-point, .nd2-chart.clr-theme-deep-purple .ct-series-d .ct-slice-donut {	stroke: #03A9F4; } .nd2-chart.clr-theme-deep-purple .ct-series-d .ct-area, .nd2-chart.clr-theme-deep-purple .ct-series-d .ct-slice-pie { fill: #03A9F4; }  .nd2-chart.clr-theme-deep-purple .ct-series-e .ct-bar, .nd2-chart.clr-theme-deep-purple .ct-series-e .ct-line, .nd2-chart.clr-theme-deep-purple .ct-series-e .ct-point, .nd2-chart.clr-theme-deep-purple .ct-series-e .ct-slice-donut {	stroke: #00BCD4; } .nd2-chart.clr-theme-deep-purple .ct-series-e .ct-area, .nd2-chart.clr-theme-deep-purple .ct-series-e .ct-slice-pie { fill: #00BCD4; }  .nd2-chart.clr-theme-deep-purple .ct-series-f .ct-bar, .nd2-chart.clr-theme-deep-purple .ct-series-f .ct-line, .nd2-chart.clr-theme-deep-purple .ct-series-f .ct-point, .nd2-chart.clr-theme-deep-purple .ct-series-f .ct-slice-donut {	stroke: #009688; } .nd2-chart.clr-theme-deep-purple .ct-series-f .ct-area, .nd2-chart.clr-theme-deep-purple .ct-series-f .ct-slice-pie { fill: #009688; }  .nd2-chart.clr-theme-deep-purple .ct-series-g .ct-bar, .nd2-chart.clr-theme-deep-purple .ct-series-g .ct-line, .nd2-chart.clr-theme-deep-purple .ct-series-g .ct-point, .nd2-chart.clr-theme-deep-purple .ct-series-g .ct-slice-donut {	stroke: #4CAF50; } .nd2-chart.clr-theme-deep-purple .ct-series-g .ct-area, .nd2-chart.clr-theme-deep-purple .ct-series-g .ct-slice-pie { fill: #4CAF50; }  .nd2-chart.clr-theme-deep-purple .ct-series-h .ct-bar, .nd2-chart.clr-theme-deep-purple .ct-series-h .ct-line, .nd2-chart.clr-theme-deep-purple .ct-series-h .ct-point, .nd2-chart.clr-theme-deep-purple .ct-series-h .ct-slice-donut {	stroke: #8BC34A; } .nd2-chart.clr-theme-deep-purple .ct-series-h .ct-area, .nd2-chart.clr-theme-deep-purple .ct-series-h .ct-slice-pie { fill: #8BC34A; }  .nd2-chart.clr-theme-deep-purple .ct-series-i .ct-bar, .nd2-chart.clr-theme-deep-purple .ct-series-i .ct-line, .nd2-chart.clr-theme-deep-purple .ct-series-i .ct-point, .nd2-chart.clr-theme-deep-purple .ct-series-i .ct-slice-donut {	stroke: #CDDC39; } .nd2-chart.clr-theme-deep-purple .ct-series-i .ct-area, .nd2-chart.clr-theme-deep-purple .ct-series-i .ct-slice-pie { fill: #CDDC39; }  .nd2-chart.clr-theme-deep-purple .ct-series-j .ct-bar, .nd2-chart.clr-theme-deep-purple .ct-series-j .ct-line, .nd2-chart.clr-theme-deep-purple .ct-series-j .ct-point, .nd2-chart.clr-theme-deep-purple .ct-series-j .ct-slice-donut {	stroke: #FFEB3B; } .nd2-chart.clr-theme-deep-purple .ct-series-j .ct-area, .nd2-chart.clr-theme-deep-purple .ct-series-j .ct-slice-pie { fill: #FFEB3B; }  .nd2-chart.clr-theme-deep-purple .ct-series-k .ct-bar, .nd2-chart.clr-theme-deep-purple .ct-series-k .ct-line, .nd2-chart.clr-theme-deep-purple .ct-series-k .ct-point, .nd2-chart.clr-theme-deep-purple .ct-series-k .ct-slice-donut {	stroke: #FFC107; } .nd2-chart.clr-theme-deep-purple .ct-series-k .ct-area, .nd2-chart.clr-theme-deep-purple .ct-series-k .ct-slice-pie { fill: #FFC107; }  .nd2-chart.clr-theme-deep-purple .ct-series-l .ct-bar, .nd2-chart.clr-theme-deep-purple .ct-series-l .ct-line, .nd2-chart.clr-theme-deep-purple .ct-series-l .ct-point, .nd2-chart.clr-theme-deep-purple .ct-series-l .ct-slice-donut {	stroke: #FF9800; } .nd2-chart.clr-theme-deep-purple .ct-series-l .ct-area, .nd2-chart.clr-theme-deep-purple .ct-series-l .ct-slice-pie { fill: #FF9800; }  .nd2-chart.clr-theme-deep-purple .ct-series-m .ct-bar, .nd2-chart.clr-theme-deep-purple .ct-series-m .ct-line, .nd2-chart.clr-theme-deep-purple .ct-series-m .ct-point, .nd2-chart.clr-theme-deep-purple .ct-series-m .ct-slice-donut {	stroke: #FF5722; } .nd2-chart.clr-theme-deep-purple .ct-series-m .ct-area, .nd2-chart.clr-theme-deep-purple .ct-series-m .ct-slice-pie { fill: #FF5722; }  .nd2-chart.clr-theme-deep-purple .ct-series-n .ct-bar, .nd2-chart.clr-theme-deep-purple .ct-series-n .ct-line, .nd2-chart.clr-theme-deep-purple .ct-series-n .ct-point, .nd2-chart.clr-theme-deep-purple .ct-series-n .ct-slice-donut {	stroke: #795548; } .nd2-chart.clr-theme-deep-purple .ct-series-n .ct-area, .nd2-chart.clr-theme-deep-purple .ct-series-n .ct-slice-pie { fill: #795548; }  .nd2-chart.clr-theme-deep-purple .ct-series-o .ct-bar, .nd2-chart.clr-theme-deep-purple .ct-series-o .ct-line, .nd2-chart.clr-theme-deep-purple .ct-series-o .ct-point, .nd2-chart.clr-theme-deep-purple .ct-series-o .ct-slice-donut {	stroke: #9E9E9E; } .nd2-chart.clr-theme-deep-purple .ct-series-o .ct-area, .nd2-chart.clr-theme-deep-purple .ct-series-o .ct-slice-pie { fill: #9E9E9E; }  .nd2-chart.clr-theme-deep-purple .ct-series-p .ct-bar, .nd2-chart.clr-theme-deep-purple .ct-series-p .ct-line, .nd2-chart.clr-theme-deep-purple .ct-series-p .ct-point, .nd2-chart.clr-theme-deep-purple .ct-series-p .ct-slice-donut {	stroke: #607D8B; } .nd2-chart.clr-theme-deep-purple .ct-series-p .ct-area, .nd2-chart.clr-theme-deep-purple .ct-series-p .ct-slice-pie { fill: #607D8B; }  .nd2-chart.clr-theme-deep-purple .ct-series-q .ct-bar, .nd2-chart.clr-theme-deep-purple .ct-series-q .ct-line, .nd2-chart.clr-theme-deep-purple .ct-series-q .ct-point, .nd2-chart.clr-theme-deep-purple .ct-series-q .ct-slice-donut {	stroke: #F44336; } .nd2-chart.clr-theme-deep-purple .ct-series-q .ct-area, .nd2-chart.clr-theme-deep-purple .ct-series-q .ct-slice-pie { fill: #F44336; }  .nd2-chart.clr-theme-deep-purple .ct-series-r .ct-bar, .nd2-chart.clr-theme-deep-purple .ct-series-r .ct-line, .nd2-chart.clr-theme-deep-purple .ct-series-r .ct-point, .nd2-chart.clr-theme-deep-purple .ct-series-r .ct-slice-donut {	stroke: #E91E63; } .nd2-chart.clr-theme-deep-purple .ct-series-r .ct-area, .nd2-chart.clr-theme-deep-purple .ct-series-r .ct-slice-pie { fill: #E91E63; }


/* Chart-Color-Theme: indigo */
.nd2-chart.clr-theme-indigo .ct-series-a .ct-bar, .nd2-chart.clr-theme-indigo .ct-series-a .ct-line, .nd2-chart.clr-theme-indigo .ct-series-a .ct-point, .nd2-chart.clr-theme-indigo .ct-series-a .ct-slice-donut {	stroke: #3F51B5; } .nd2-chart.clr-theme-indigo .ct-series-a .ct-area, .nd2-chart.clr-theme-indigo .ct-series-a .ct-slice-pie { fill: #3F51B5; }  .nd2-chart.clr-theme-indigo .ct-series-b .ct-bar, .nd2-chart.clr-theme-indigo .ct-series-b .ct-line, .nd2-chart.clr-theme-indigo .ct-series-b .ct-point, .nd2-chart.clr-theme-indigo .ct-series-b .ct-slice-donut {	stroke: #2196F3; } .nd2-chart.clr-theme-indigo .ct-series-b .ct-area, .nd2-chart.clr-theme-indigo .ct-series-b .ct-slice-pie { fill: #2196F3; }  .nd2-chart.clr-theme-indigo .ct-series-c .ct-bar, .nd2-chart.clr-theme-indigo .ct-series-c .ct-line, .nd2-chart.clr-theme-indigo .ct-series-c .ct-point, .nd2-chart.clr-theme-indigo .ct-series-c .ct-slice-donut {	stroke: #03A9F4; } .nd2-chart.clr-theme-indigo .ct-series-c .ct-area, .nd2-chart.clr-theme-indigo .ct-series-c .ct-slice-pie { fill: #03A9F4; }  .nd2-chart.clr-theme-indigo .ct-series-d .ct-bar, .nd2-chart.clr-theme-indigo .ct-series-d .ct-line, .nd2-chart.clr-theme-indigo .ct-series-d .ct-point, .nd2-chart.clr-theme-indigo .ct-series-d .ct-slice-donut {	stroke: #00BCD4; } .nd2-chart.clr-theme-indigo .ct-series-d .ct-area, .nd2-chart.clr-theme-indigo .ct-series-d .ct-slice-pie { fill: #00BCD4; }  .nd2-chart.clr-theme-indigo .ct-series-e .ct-bar, .nd2-chart.clr-theme-indigo .ct-series-e .ct-line, .nd2-chart.clr-theme-indigo .ct-series-e .ct-point, .nd2-chart.clr-theme-indigo .ct-series-e .ct-slice-donut {	stroke: #009688; } .nd2-chart.clr-theme-indigo .ct-series-e .ct-area, .nd2-chart.clr-theme-indigo .ct-series-e .ct-slice-pie { fill: #009688; }  .nd2-chart.clr-theme-indigo .ct-series-f .ct-bar, .nd2-chart.clr-theme-indigo .ct-series-f .ct-line, .nd2-chart.clr-theme-indigo .ct-series-f .ct-point, .nd2-chart.clr-theme-indigo .ct-series-f .ct-slice-donut {	stroke: #4CAF50; } .nd2-chart.clr-theme-indigo .ct-series-f .ct-area, .nd2-chart.clr-theme-indigo .ct-series-f .ct-slice-pie { fill: #4CAF50; }  .nd2-chart.clr-theme-indigo .ct-series-g .ct-bar, .nd2-chart.clr-theme-indigo .ct-series-g .ct-line, .nd2-chart.clr-theme-indigo .ct-series-g .ct-point, .nd2-chart.clr-theme-indigo .ct-series-g .ct-slice-donut {	stroke: #8BC34A; } .nd2-chart.clr-theme-indigo .ct-series-g .ct-area, .nd2-chart.clr-theme-indigo .ct-series-g .ct-slice-pie { fill: #8BC34A; }  .nd2-chart.clr-theme-indigo .ct-series-h .ct-bar, .nd2-chart.clr-theme-indigo .ct-series-h .ct-line, .nd2-chart.clr-theme-indigo .ct-series-h .ct-point, .nd2-chart.clr-theme-indigo .ct-series-h .ct-slice-donut {	stroke: #CDDC39; } .nd2-chart.clr-theme-indigo .ct-series-h .ct-area, .nd2-chart.clr-theme-indigo .ct-series-h .ct-slice-pie { fill: #CDDC39; }  .nd2-chart.clr-theme-indigo .ct-series-i .ct-bar, .nd2-chart.clr-theme-indigo .ct-series-i .ct-line, .nd2-chart.clr-theme-indigo .ct-series-i .ct-point, .nd2-chart.clr-theme-indigo .ct-series-i .ct-slice-donut {	stroke: #FFEB3B; } .nd2-chart.clr-theme-indigo .ct-series-i .ct-area, .nd2-chart.clr-theme-indigo .ct-series-i .ct-slice-pie { fill: #FFEB3B; }  .nd2-chart.clr-theme-indigo .ct-series-j .ct-bar, .nd2-chart.clr-theme-indigo .ct-series-j .ct-line, .nd2-chart.clr-theme-indigo .ct-series-j .ct-point, .nd2-chart.clr-theme-indigo .ct-series-j .ct-slice-donut {	stroke: #FFC107; } .nd2-chart.clr-theme-indigo .ct-series-j .ct-area, .nd2-chart.clr-theme-indigo .ct-series-j .ct-slice-pie { fill: #FFC107; }  .nd2-chart.clr-theme-indigo .ct-series-k .ct-bar, .nd2-chart.clr-theme-indigo .ct-series-k .ct-line, .nd2-chart.clr-theme-indigo .ct-series-k .ct-point, .nd2-chart.clr-theme-indigo .ct-series-k .ct-slice-donut {	stroke: #FF9800; } .nd2-chart.clr-theme-indigo .ct-series-k .ct-area, .nd2-chart.clr-theme-indigo .ct-series-k .ct-slice-pie { fill: #FF9800; }  .nd2-chart.clr-theme-indigo .ct-series-l .ct-bar, .nd2-chart.clr-theme-indigo .ct-series-l .ct-line, .nd2-chart.clr-theme-indigo .ct-series-l .ct-point, .nd2-chart.clr-theme-indigo .ct-series-l .ct-slice-donut {	stroke: #FF5722; } .nd2-chart.clr-theme-indigo .ct-series-l .ct-area, .nd2-chart.clr-theme-indigo .ct-series-l .ct-slice-pie { fill: #FF5722; }  .nd2-chart.clr-theme-indigo .ct-series-m .ct-bar, .nd2-chart.clr-theme-indigo .ct-series-m .ct-line, .nd2-chart.clr-theme-indigo .ct-series-m .ct-point, .nd2-chart.clr-theme-indigo .ct-series-m .ct-slice-donut {	stroke: #795548; } .nd2-chart.clr-theme-indigo .ct-series-m .ct-area, .nd2-chart.clr-theme-indigo .ct-series-m .ct-slice-pie { fill: #795548; }  .nd2-chart.clr-theme-indigo .ct-series-n .ct-bar, .nd2-chart.clr-theme-indigo .ct-series-n .ct-line, .nd2-chart.clr-theme-indigo .ct-series-n .ct-point, .nd2-chart.clr-theme-indigo .ct-series-n .ct-slice-donut {	stroke: #9E9E9E; } .nd2-chart.clr-theme-indigo .ct-series-n .ct-area, .nd2-chart.clr-theme-indigo .ct-series-n .ct-slice-pie { fill: #9E9E9E; }  .nd2-chart.clr-theme-indigo .ct-series-o .ct-bar, .nd2-chart.clr-theme-indigo .ct-series-o .ct-line, .nd2-chart.clr-theme-indigo .ct-series-o .ct-point, .nd2-chart.clr-theme-indigo .ct-series-o .ct-slice-donut {	stroke: #607D8B; } .nd2-chart.clr-theme-indigo .ct-series-o .ct-area, .nd2-chart.clr-theme-indigo .ct-series-o .ct-slice-pie { fill: #607D8B; }  .nd2-chart.clr-theme-indigo .ct-series-p .ct-bar, .nd2-chart.clr-theme-indigo .ct-series-p .ct-line, .nd2-chart.clr-theme-indigo .ct-series-p .ct-point, .nd2-chart.clr-theme-indigo .ct-series-p .ct-slice-donut {	stroke: #F44336; } .nd2-chart.clr-theme-indigo .ct-series-p .ct-area, .nd2-chart.clr-theme-indigo .ct-series-p .ct-slice-pie { fill: #F44336; }  .nd2-chart.clr-theme-indigo .ct-series-q .ct-bar, .nd2-chart.clr-theme-indigo .ct-series-q .ct-line, .nd2-chart.clr-theme-indigo .ct-series-q .ct-point, .nd2-chart.clr-theme-indigo .ct-series-q .ct-slice-donut {	stroke: #E91E63; } .nd2-chart.clr-theme-indigo .ct-series-q .ct-area, .nd2-chart.clr-theme-indigo .ct-series-q .ct-slice-pie { fill: #E91E63; }  .nd2-chart.clr-theme-indigo .ct-series-r .ct-bar, .nd2-chart.clr-theme-indigo .ct-series-r .ct-line, .nd2-chart.clr-theme-indigo .ct-series-r .ct-point, .nd2-chart.clr-theme-indigo .ct-series-r .ct-slice-donut {	stroke: #9C27B0; } .nd2-chart.clr-theme-indigo .ct-series-r .ct-area, .nd2-chart.clr-theme-indigo .ct-series-r .ct-slice-pie { fill: #9C27B0; }


/* Chart-Color-Theme: blue */
.nd2-chart.clr-theme-blue .ct-series-a .ct-bar, .nd2-chart.clr-theme-blue .ct-series-a .ct-line, .nd2-chart.clr-theme-blue .ct-series-a .ct-point, .nd2-chart.clr-theme-blue .ct-series-a .ct-slice-donut {	stroke: #2196F3; } .nd2-chart.clr-theme-blue .ct-series-a .ct-area, .nd2-chart.clr-theme-blue .ct-series-a .ct-slice-pie { fill: #2196F3; }  .nd2-chart.clr-theme-blue .ct-series-b .ct-bar, .nd2-chart.clr-theme-blue .ct-series-b .ct-line, .nd2-chart.clr-theme-blue .ct-series-b .ct-point, .nd2-chart.clr-theme-blue .ct-series-b .ct-slice-donut {	stroke: #03A9F4; } .nd2-chart.clr-theme-blue .ct-series-b .ct-area, .nd2-chart.clr-theme-blue .ct-series-b .ct-slice-pie { fill: #03A9F4; }  .nd2-chart.clr-theme-blue .ct-series-c .ct-bar, .nd2-chart.clr-theme-blue .ct-series-c .ct-line, .nd2-chart.clr-theme-blue .ct-series-c .ct-point, .nd2-chart.clr-theme-blue .ct-series-c .ct-slice-donut {	stroke: #00BCD4; } .nd2-chart.clr-theme-blue .ct-series-c .ct-area, .nd2-chart.clr-theme-blue .ct-series-c .ct-slice-pie { fill: #00BCD4; }  .nd2-chart.clr-theme-blue .ct-series-d .ct-bar, .nd2-chart.clr-theme-blue .ct-series-d .ct-line, .nd2-chart.clr-theme-blue .ct-series-d .ct-point, .nd2-chart.clr-theme-blue .ct-series-d .ct-slice-donut {	stroke: #009688; } .nd2-chart.clr-theme-blue .ct-series-d .ct-area, .nd2-chart.clr-theme-blue .ct-series-d .ct-slice-pie { fill: #009688; }  .nd2-chart.clr-theme-blue .ct-series-e .ct-bar, .nd2-chart.clr-theme-blue .ct-series-e .ct-line, .nd2-chart.clr-theme-blue .ct-series-e .ct-point, .nd2-chart.clr-theme-blue .ct-series-e .ct-slice-donut {	stroke: #4CAF50; } .nd2-chart.clr-theme-blue .ct-series-e .ct-area, .nd2-chart.clr-theme-blue .ct-series-e .ct-slice-pie { fill: #4CAF50; }  .nd2-chart.clr-theme-blue .ct-series-f .ct-bar, .nd2-chart.clr-theme-blue .ct-series-f .ct-line, .nd2-chart.clr-theme-blue .ct-series-f .ct-point, .nd2-chart.clr-theme-blue .ct-series-f .ct-slice-donut {	stroke: #8BC34A; } .nd2-chart.clr-theme-blue .ct-series-f .ct-area, .nd2-chart.clr-theme-blue .ct-series-f .ct-slice-pie { fill: #8BC34A; }  .nd2-chart.clr-theme-blue .ct-series-g .ct-bar, .nd2-chart.clr-theme-blue .ct-series-g .ct-line, .nd2-chart.clr-theme-blue .ct-series-g .ct-point, .nd2-chart.clr-theme-blue .ct-series-g .ct-slice-donut {	stroke: #CDDC39; } .nd2-chart.clr-theme-blue .ct-series-g .ct-area, .nd2-chart.clr-theme-blue .ct-series-g .ct-slice-pie { fill: #CDDC39; }  .nd2-chart.clr-theme-blue .ct-series-h .ct-bar, .nd2-chart.clr-theme-blue .ct-series-h .ct-line, .nd2-chart.clr-theme-blue .ct-series-h .ct-point, .nd2-chart.clr-theme-blue .ct-series-h .ct-slice-donut {	stroke: #FFEB3B; } .nd2-chart.clr-theme-blue .ct-series-h .ct-area, .nd2-chart.clr-theme-blue .ct-series-h .ct-slice-pie { fill: #FFEB3B; }  .nd2-chart.clr-theme-blue .ct-series-i .ct-bar, .nd2-chart.clr-theme-blue .ct-series-i .ct-line, .nd2-chart.clr-theme-blue .ct-series-i .ct-point, .nd2-chart.clr-theme-blue .ct-series-i .ct-slice-donut {	stroke: #FFC107; } .nd2-chart.clr-theme-blue .ct-series-i .ct-area, .nd2-chart.clr-theme-blue .ct-series-i .ct-slice-pie { fill: #FFC107; }  .nd2-chart.clr-theme-blue .ct-series-j .ct-bar, .nd2-chart.clr-theme-blue .ct-series-j .ct-line, .nd2-chart.clr-theme-blue .ct-series-j .ct-point, .nd2-chart.clr-theme-blue .ct-series-j .ct-slice-donut {	stroke: #FF9800; } .nd2-chart.clr-theme-blue .ct-series-j .ct-area, .nd2-chart.clr-theme-blue .ct-series-j .ct-slice-pie { fill: #FF9800; }  .nd2-chart.clr-theme-blue .ct-series-k .ct-bar, .nd2-chart.clr-theme-blue .ct-series-k .ct-line, .nd2-chart.clr-theme-blue .ct-series-k .ct-point, .nd2-chart.clr-theme-blue .ct-series-k .ct-slice-donut {	stroke: #FF5722; } .nd2-chart.clr-theme-blue .ct-series-k .ct-area, .nd2-chart.clr-theme-blue .ct-series-k .ct-slice-pie { fill: #FF5722; }  .nd2-chart.clr-theme-blue .ct-series-l .ct-bar, .nd2-chart.clr-theme-blue .ct-series-l .ct-line, .nd2-chart.clr-theme-blue .ct-series-l .ct-point, .nd2-chart.clr-theme-blue .ct-series-l .ct-slice-donut {	stroke: #795548; } .nd2-chart.clr-theme-blue .ct-series-l .ct-area, .nd2-chart.clr-theme-blue .ct-series-l .ct-slice-pie { fill: #795548; }  .nd2-chart.clr-theme-blue .ct-series-m .ct-bar, .nd2-chart.clr-theme-blue .ct-series-m .ct-line, .nd2-chart.clr-theme-blue .ct-series-m .ct-point, .nd2-chart.clr-theme-blue .ct-series-m .ct-slice-donut {	stroke: #9E9E9E; } .nd2-chart.clr-theme-blue .ct-series-m .ct-area, .nd2-chart.clr-theme-blue .ct-series-m .ct-slice-pie { fill: #9E9E9E; }  .nd2-chart.clr-theme-blue .ct-series-n .ct-bar, .nd2-chart.clr-theme-blue .ct-series-n .ct-line, .nd2-chart.clr-theme-blue .ct-series-n .ct-point, .nd2-chart.clr-theme-blue .ct-series-n .ct-slice-donut {	stroke: #607D8B; } .nd2-chart.clr-theme-blue .ct-series-n .ct-area, .nd2-chart.clr-theme-blue .ct-series-n .ct-slice-pie { fill: #607D8B; }  .nd2-chart.clr-theme-blue .ct-series-o .ct-bar, .nd2-chart.clr-theme-blue .ct-series-o .ct-line, .nd2-chart.clr-theme-blue .ct-series-o .ct-point, .nd2-chart.clr-theme-blue .ct-series-o .ct-slice-donut {	stroke: #F44336; } .nd2-chart.clr-theme-blue .ct-series-o .ct-area, .nd2-chart.clr-theme-blue .ct-series-o .ct-slice-pie { fill: #F44336; }  .nd2-chart.clr-theme-blue .ct-series-p .ct-bar, .nd2-chart.clr-theme-blue .ct-series-p .ct-line, .nd2-chart.clr-theme-blue .ct-series-p .ct-point, .nd2-chart.clr-theme-blue .ct-series-p .ct-slice-donut {	stroke: #E91E63; } .nd2-chart.clr-theme-blue .ct-series-p .ct-area, .nd2-chart.clr-theme-blue .ct-series-p .ct-slice-pie { fill: #E91E63; }  .nd2-chart.clr-theme-blue .ct-series-q .ct-bar, .nd2-chart.clr-theme-blue .ct-series-q .ct-line, .nd2-chart.clr-theme-blue .ct-series-q .ct-point, .nd2-chart.clr-theme-blue .ct-series-q .ct-slice-donut {	stroke: #9C27B0; } .nd2-chart.clr-theme-blue .ct-series-q .ct-area, .nd2-chart.clr-theme-blue .ct-series-q .ct-slice-pie { fill: #9C27B0; }  .nd2-chart.clr-theme-blue .ct-series-r .ct-bar, .nd2-chart.clr-theme-blue .ct-series-r .ct-line, .nd2-chart.clr-theme-blue .ct-series-r .ct-point, .nd2-chart.clr-theme-blue .ct-series-r .ct-slice-donut {	stroke: #673AB7; } .nd2-chart.clr-theme-blue .ct-series-r .ct-area, .nd2-chart.clr-theme-blue .ct-series-r .ct-slice-pie { fill: #673AB7; }


/* Chart-Color-Theme: light-blue */
.nd2-chart.clr-theme-light-blue .ct-series-a .ct-bar, .nd2-chart.clr-theme-light-blue .ct-series-a .ct-line, .nd2-chart.clr-theme-light-blue .ct-series-a .ct-point, .nd2-chart.clr-theme-light-blue .ct-series-a .ct-slice-donut {	stroke: #03A9F4; } .nd2-chart.clr-theme-light-blue .ct-series-a .ct-area, .nd2-chart.clr-theme-light-blue .ct-series-a .ct-slice-pie { fill: #03A9F4; }  .nd2-chart.clr-theme-light-blue .ct-series-b .ct-bar, .nd2-chart.clr-theme-light-blue .ct-series-b .ct-line, .nd2-chart.clr-theme-light-blue .ct-series-b .ct-point, .nd2-chart.clr-theme-light-blue .ct-series-b .ct-slice-donut {	stroke: #00BCD4; } .nd2-chart.clr-theme-light-blue .ct-series-b .ct-area, .nd2-chart.clr-theme-light-blue .ct-series-b .ct-slice-pie { fill: #00BCD4; }  .nd2-chart.clr-theme-light-blue .ct-series-c .ct-bar, .nd2-chart.clr-theme-light-blue .ct-series-c .ct-line, .nd2-chart.clr-theme-light-blue .ct-series-c .ct-point, .nd2-chart.clr-theme-light-blue .ct-series-c .ct-slice-donut {	stroke: #009688; } .nd2-chart.clr-theme-light-blue .ct-series-c .ct-area, .nd2-chart.clr-theme-light-blue .ct-series-c .ct-slice-pie { fill: #009688; }  .nd2-chart.clr-theme-light-blue .ct-series-d .ct-bar, .nd2-chart.clr-theme-light-blue .ct-series-d .ct-line, .nd2-chart.clr-theme-light-blue .ct-series-d .ct-point, .nd2-chart.clr-theme-light-blue .ct-series-d .ct-slice-donut {	stroke: #4CAF50; } .nd2-chart.clr-theme-light-blue .ct-series-d .ct-area, .nd2-chart.clr-theme-light-blue .ct-series-d .ct-slice-pie { fill: #4CAF50; }  .nd2-chart.clr-theme-light-blue .ct-series-e .ct-bar, .nd2-chart.clr-theme-light-blue .ct-series-e .ct-line, .nd2-chart.clr-theme-light-blue .ct-series-e .ct-point, .nd2-chart.clr-theme-light-blue .ct-series-e .ct-slice-donut {	stroke: #8BC34A; } .nd2-chart.clr-theme-light-blue .ct-series-e .ct-area, .nd2-chart.clr-theme-light-blue .ct-series-e .ct-slice-pie { fill: #8BC34A; }  .nd2-chart.clr-theme-light-blue .ct-series-f .ct-bar, .nd2-chart.clr-theme-light-blue .ct-series-f .ct-line, .nd2-chart.clr-theme-light-blue .ct-series-f .ct-point, .nd2-chart.clr-theme-light-blue .ct-series-f .ct-slice-donut {	stroke: #CDDC39; } .nd2-chart.clr-theme-light-blue .ct-series-f .ct-area, .nd2-chart.clr-theme-light-blue .ct-series-f .ct-slice-pie { fill: #CDDC39; }  .nd2-chart.clr-theme-light-blue .ct-series-g .ct-bar, .nd2-chart.clr-theme-light-blue .ct-series-g .ct-line, .nd2-chart.clr-theme-light-blue .ct-series-g .ct-point, .nd2-chart.clr-theme-light-blue .ct-series-g .ct-slice-donut {	stroke: #FFEB3B; } .nd2-chart.clr-theme-light-blue .ct-series-g .ct-area, .nd2-chart.clr-theme-light-blue .ct-series-g .ct-slice-pie { fill: #FFEB3B; }  .nd2-chart.clr-theme-light-blue .ct-series-h .ct-bar, .nd2-chart.clr-theme-light-blue .ct-series-h .ct-line, .nd2-chart.clr-theme-light-blue .ct-series-h .ct-point, .nd2-chart.clr-theme-light-blue .ct-series-h .ct-slice-donut {	stroke: #FFC107; } .nd2-chart.clr-theme-light-blue .ct-series-h .ct-area, .nd2-chart.clr-theme-light-blue .ct-series-h .ct-slice-pie { fill: #FFC107; }  .nd2-chart.clr-theme-light-blue .ct-series-i .ct-bar, .nd2-chart.clr-theme-light-blue .ct-series-i .ct-line, .nd2-chart.clr-theme-light-blue .ct-series-i .ct-point, .nd2-chart.clr-theme-light-blue .ct-series-i .ct-slice-donut {	stroke: #FF9800; } .nd2-chart.clr-theme-light-blue .ct-series-i .ct-area, .nd2-chart.clr-theme-light-blue .ct-series-i .ct-slice-pie { fill: #FF9800; }  .nd2-chart.clr-theme-light-blue .ct-series-j .ct-bar, .nd2-chart.clr-theme-light-blue .ct-series-j .ct-line, .nd2-chart.clr-theme-light-blue .ct-series-j .ct-point, .nd2-chart.clr-theme-light-blue .ct-series-j .ct-slice-donut {	stroke: #FF5722; } .nd2-chart.clr-theme-light-blue .ct-series-j .ct-area, .nd2-chart.clr-theme-light-blue .ct-series-j .ct-slice-pie { fill: #FF5722; }  .nd2-chart.clr-theme-light-blue .ct-series-k .ct-bar, .nd2-chart.clr-theme-light-blue .ct-series-k .ct-line, .nd2-chart.clr-theme-light-blue .ct-series-k .ct-point, .nd2-chart.clr-theme-light-blue .ct-series-k .ct-slice-donut {	stroke: #795548; } .nd2-chart.clr-theme-light-blue .ct-series-k .ct-area, .nd2-chart.clr-theme-light-blue .ct-series-k .ct-slice-pie { fill: #795548; }  .nd2-chart.clr-theme-light-blue .ct-series-l .ct-bar, .nd2-chart.clr-theme-light-blue .ct-series-l .ct-line, .nd2-chart.clr-theme-light-blue .ct-series-l .ct-point, .nd2-chart.clr-theme-light-blue .ct-series-l .ct-slice-donut {	stroke: #9E9E9E; } .nd2-chart.clr-theme-light-blue .ct-series-l .ct-area, .nd2-chart.clr-theme-light-blue .ct-series-l .ct-slice-pie { fill: #9E9E9E; }  .nd2-chart.clr-theme-light-blue .ct-series-m .ct-bar, .nd2-chart.clr-theme-light-blue .ct-series-m .ct-line, .nd2-chart.clr-theme-light-blue .ct-series-m .ct-point, .nd2-chart.clr-theme-light-blue .ct-series-m .ct-slice-donut {	stroke: #607D8B; } .nd2-chart.clr-theme-light-blue .ct-series-m .ct-area, .nd2-chart.clr-theme-light-blue .ct-series-m .ct-slice-pie { fill: #607D8B; }  .nd2-chart.clr-theme-light-blue .ct-series-n .ct-bar, .nd2-chart.clr-theme-light-blue .ct-series-n .ct-line, .nd2-chart.clr-theme-light-blue .ct-series-n .ct-point, .nd2-chart.clr-theme-light-blue .ct-series-n .ct-slice-donut {	stroke: #F44336; } .nd2-chart.clr-theme-light-blue .ct-series-n .ct-area, .nd2-chart.clr-theme-light-blue .ct-series-n .ct-slice-pie { fill: #F44336; }  .nd2-chart.clr-theme-light-blue .ct-series-o .ct-bar, .nd2-chart.clr-theme-light-blue .ct-series-o .ct-line, .nd2-chart.clr-theme-light-blue .ct-series-o .ct-point, .nd2-chart.clr-theme-light-blue .ct-series-o .ct-slice-donut {	stroke: #E91E63; } .nd2-chart.clr-theme-light-blue .ct-series-o .ct-area, .nd2-chart.clr-theme-light-blue .ct-series-o .ct-slice-pie { fill: #E91E63; }  .nd2-chart.clr-theme-light-blue .ct-series-p .ct-bar, .nd2-chart.clr-theme-light-blue .ct-series-p .ct-line, .nd2-chart.clr-theme-light-blue .ct-series-p .ct-point, .nd2-chart.clr-theme-light-blue .ct-series-p .ct-slice-donut {	stroke: #9C27B0; } .nd2-chart.clr-theme-light-blue .ct-series-p .ct-area, .nd2-chart.clr-theme-light-blue .ct-series-p .ct-slice-pie { fill: #9C27B0; }  .nd2-chart.clr-theme-light-blue .ct-series-q .ct-bar, .nd2-chart.clr-theme-light-blue .ct-series-q .ct-line, .nd2-chart.clr-theme-light-blue .ct-series-q .ct-point, .nd2-chart.clr-theme-light-blue .ct-series-q .ct-slice-donut {	stroke: #673AB7; } .nd2-chart.clr-theme-light-blue .ct-series-q .ct-area, .nd2-chart.clr-theme-light-blue .ct-series-q .ct-slice-pie { fill: #673AB7; }  .nd2-chart.clr-theme-light-blue .ct-series-r .ct-bar, .nd2-chart.clr-theme-light-blue .ct-series-r .ct-line, .nd2-chart.clr-theme-light-blue .ct-series-r .ct-point, .nd2-chart.clr-theme-light-blue .ct-series-r .ct-slice-donut {	stroke: #3F51B5; } .nd2-chart.clr-theme-light-blue .ct-series-r .ct-area, .nd2-chart.clr-theme-light-blue .ct-series-r .ct-slice-pie { fill: #3F51B5; }


/* Chart-Color-Theme: cyan */
.nd2-chart.clr-theme-cyan .ct-series-a .ct-bar, .nd2-chart.clr-theme-cyan .ct-series-a .ct-line, .nd2-chart.clr-theme-cyan .ct-series-a .ct-point, .nd2-chart.clr-theme-cyan .ct-series-a .ct-slice-donut {	stroke: #00BCD4; } .nd2-chart.clr-theme-cyan .ct-series-a .ct-area, .nd2-chart.clr-theme-cyan .ct-series-a .ct-slice-pie { fill: #00BCD4; }  .nd2-chart.clr-theme-cyan .ct-series-b .ct-bar, .nd2-chart.clr-theme-cyan .ct-series-b .ct-line, .nd2-chart.clr-theme-cyan .ct-series-b .ct-point, .nd2-chart.clr-theme-cyan .ct-series-b .ct-slice-donut {	stroke: #009688; } .nd2-chart.clr-theme-cyan .ct-series-b .ct-area, .nd2-chart.clr-theme-cyan .ct-series-b .ct-slice-pie { fill: #009688; }  .nd2-chart.clr-theme-cyan .ct-series-c .ct-bar, .nd2-chart.clr-theme-cyan .ct-series-c .ct-line, .nd2-chart.clr-theme-cyan .ct-series-c .ct-point, .nd2-chart.clr-theme-cyan .ct-series-c .ct-slice-donut {	stroke: #4CAF50; } .nd2-chart.clr-theme-cyan .ct-series-c .ct-area, .nd2-chart.clr-theme-cyan .ct-series-c .ct-slice-pie { fill: #4CAF50; }  .nd2-chart.clr-theme-cyan .ct-series-d .ct-bar, .nd2-chart.clr-theme-cyan .ct-series-d .ct-line, .nd2-chart.clr-theme-cyan .ct-series-d .ct-point, .nd2-chart.clr-theme-cyan .ct-series-d .ct-slice-donut {	stroke: #8BC34A; } .nd2-chart.clr-theme-cyan .ct-series-d .ct-area, .nd2-chart.clr-theme-cyan .ct-series-d .ct-slice-pie { fill: #8BC34A; }  .nd2-chart.clr-theme-cyan .ct-series-e .ct-bar, .nd2-chart.clr-theme-cyan .ct-series-e .ct-line, .nd2-chart.clr-theme-cyan .ct-series-e .ct-point, .nd2-chart.clr-theme-cyan .ct-series-e .ct-slice-donut {	stroke: #CDDC39; } .nd2-chart.clr-theme-cyan .ct-series-e .ct-area, .nd2-chart.clr-theme-cyan .ct-series-e .ct-slice-pie { fill: #CDDC39; }  .nd2-chart.clr-theme-cyan .ct-series-f .ct-bar, .nd2-chart.clr-theme-cyan .ct-series-f .ct-line, .nd2-chart.clr-theme-cyan .ct-series-f .ct-point, .nd2-chart.clr-theme-cyan .ct-series-f .ct-slice-donut {	stroke: #FFEB3B; } .nd2-chart.clr-theme-cyan .ct-series-f .ct-area, .nd2-chart.clr-theme-cyan .ct-series-f .ct-slice-pie { fill: #FFEB3B; }  .nd2-chart.clr-theme-cyan .ct-series-g .ct-bar, .nd2-chart.clr-theme-cyan .ct-series-g .ct-line, .nd2-chart.clr-theme-cyan .ct-series-g .ct-point, .nd2-chart.clr-theme-cyan .ct-series-g .ct-slice-donut {	stroke: #FFC107; } .nd2-chart.clr-theme-cyan .ct-series-g .ct-area, .nd2-chart.clr-theme-cyan .ct-series-g .ct-slice-pie { fill: #FFC107; }  .nd2-chart.clr-theme-cyan .ct-series-h .ct-bar, .nd2-chart.clr-theme-cyan .ct-series-h .ct-line, .nd2-chart.clr-theme-cyan .ct-series-h .ct-point, .nd2-chart.clr-theme-cyan .ct-series-h .ct-slice-donut {	stroke: #FF9800; } .nd2-chart.clr-theme-cyan .ct-series-h .ct-area, .nd2-chart.clr-theme-cyan .ct-series-h .ct-slice-pie { fill: #FF9800; }  .nd2-chart.clr-theme-cyan .ct-series-i .ct-bar, .nd2-chart.clr-theme-cyan .ct-series-i .ct-line, .nd2-chart.clr-theme-cyan .ct-series-i .ct-point, .nd2-chart.clr-theme-cyan .ct-series-i .ct-slice-donut {	stroke: #FF5722; } .nd2-chart.clr-theme-cyan .ct-series-i .ct-area, .nd2-chart.clr-theme-cyan .ct-series-i .ct-slice-pie { fill: #FF5722; }  .nd2-chart.clr-theme-cyan .ct-series-j .ct-bar, .nd2-chart.clr-theme-cyan .ct-series-j .ct-line, .nd2-chart.clr-theme-cyan .ct-series-j .ct-point, .nd2-chart.clr-theme-cyan .ct-series-j .ct-slice-donut {	stroke: #795548; } .nd2-chart.clr-theme-cyan .ct-series-j .ct-area, .nd2-chart.clr-theme-cyan .ct-series-j .ct-slice-pie { fill: #795548; }  .nd2-chart.clr-theme-cyan .ct-series-k .ct-bar, .nd2-chart.clr-theme-cyan .ct-series-k .ct-line, .nd2-chart.clr-theme-cyan .ct-series-k .ct-point, .nd2-chart.clr-theme-cyan .ct-series-k .ct-slice-donut {	stroke: #9E9E9E; } .nd2-chart.clr-theme-cyan .ct-series-k .ct-area, .nd2-chart.clr-theme-cyan .ct-series-k .ct-slice-pie { fill: #9E9E9E; }  .nd2-chart.clr-theme-cyan .ct-series-l .ct-bar, .nd2-chart.clr-theme-cyan .ct-series-l .ct-line, .nd2-chart.clr-theme-cyan .ct-series-l .ct-point, .nd2-chart.clr-theme-cyan .ct-series-l .ct-slice-donut {	stroke: #607D8B; } .nd2-chart.clr-theme-cyan .ct-series-l .ct-area, .nd2-chart.clr-theme-cyan .ct-series-l .ct-slice-pie { fill: #607D8B; }  .nd2-chart.clr-theme-cyan .ct-series-m .ct-bar, .nd2-chart.clr-theme-cyan .ct-series-m .ct-line, .nd2-chart.clr-theme-cyan .ct-series-m .ct-point, .nd2-chart.clr-theme-cyan .ct-series-m .ct-slice-donut {	stroke: #F44336; } .nd2-chart.clr-theme-cyan .ct-series-m .ct-area, .nd2-chart.clr-theme-cyan .ct-series-m .ct-slice-pie { fill: #F44336; }  .nd2-chart.clr-theme-cyan .ct-series-n .ct-bar, .nd2-chart.clr-theme-cyan .ct-series-n .ct-line, .nd2-chart.clr-theme-cyan .ct-series-n .ct-point, .nd2-chart.clr-theme-cyan .ct-series-n .ct-slice-donut {	stroke: #E91E63; } .nd2-chart.clr-theme-cyan .ct-series-n .ct-area, .nd2-chart.clr-theme-cyan .ct-series-n .ct-slice-pie { fill: #E91E63; }  .nd2-chart.clr-theme-cyan .ct-series-o .ct-bar, .nd2-chart.clr-theme-cyan .ct-series-o .ct-line, .nd2-chart.clr-theme-cyan .ct-series-o .ct-point, .nd2-chart.clr-theme-cyan .ct-series-o .ct-slice-donut {	stroke: #9C27B0; } .nd2-chart.clr-theme-cyan .ct-series-o .ct-area, .nd2-chart.clr-theme-cyan .ct-series-o .ct-slice-pie { fill: #9C27B0; }  .nd2-chart.clr-theme-cyan .ct-series-p .ct-bar, .nd2-chart.clr-theme-cyan .ct-series-p .ct-line, .nd2-chart.clr-theme-cyan .ct-series-p .ct-point, .nd2-chart.clr-theme-cyan .ct-series-p .ct-slice-donut {	stroke: #673AB7; } .nd2-chart.clr-theme-cyan .ct-series-p .ct-area, .nd2-chart.clr-theme-cyan .ct-series-p .ct-slice-pie { fill: #673AB7; }  .nd2-chart.clr-theme-cyan .ct-series-q .ct-bar, .nd2-chart.clr-theme-cyan .ct-series-q .ct-line, .nd2-chart.clr-theme-cyan .ct-series-q .ct-point, .nd2-chart.clr-theme-cyan .ct-series-q .ct-slice-donut {	stroke: #3F51B5; } .nd2-chart.clr-theme-cyan .ct-series-q .ct-area, .nd2-chart.clr-theme-cyan .ct-series-q .ct-slice-pie { fill: #3F51B5; }  .nd2-chart.clr-theme-cyan .ct-series-r .ct-bar, .nd2-chart.clr-theme-cyan .ct-series-r .ct-line, .nd2-chart.clr-theme-cyan .ct-series-r .ct-point, .nd2-chart.clr-theme-cyan .ct-series-r .ct-slice-donut {	stroke: #2196F3; } .nd2-chart.clr-theme-cyan .ct-series-r .ct-area, .nd2-chart.clr-theme-cyan .ct-series-r .ct-slice-pie { fill: #2196F3; }


/* Chart-Color-Theme: teal */
.nd2-chart.clr-theme-teal .ct-series-a .ct-bar, .nd2-chart.clr-theme-teal .ct-series-a .ct-line, .nd2-chart.clr-theme-teal .ct-series-a .ct-point, .nd2-chart.clr-theme-teal .ct-series-a .ct-slice-donut {	stroke: #009688; } .nd2-chart.clr-theme-teal .ct-series-a .ct-area, .nd2-chart.clr-theme-teal .ct-series-a .ct-slice-pie { fill: #009688; }  .nd2-chart.clr-theme-teal .ct-series-b .ct-bar, .nd2-chart.clr-theme-teal .ct-series-b .ct-line, .nd2-chart.clr-theme-teal .ct-series-b .ct-point, .nd2-chart.clr-theme-teal .ct-series-b .ct-slice-donut {	stroke: #4CAF50; } .nd2-chart.clr-theme-teal .ct-series-b .ct-area, .nd2-chart.clr-theme-teal .ct-series-b .ct-slice-pie { fill: #4CAF50; }  .nd2-chart.clr-theme-teal .ct-series-c .ct-bar, .nd2-chart.clr-theme-teal .ct-series-c .ct-line, .nd2-chart.clr-theme-teal .ct-series-c .ct-point, .nd2-chart.clr-theme-teal .ct-series-c .ct-slice-donut {	stroke: #8BC34A; } .nd2-chart.clr-theme-teal .ct-series-c .ct-area, .nd2-chart.clr-theme-teal .ct-series-c .ct-slice-pie { fill: #8BC34A; }  .nd2-chart.clr-theme-teal .ct-series-d .ct-bar, .nd2-chart.clr-theme-teal .ct-series-d .ct-line, .nd2-chart.clr-theme-teal .ct-series-d .ct-point, .nd2-chart.clr-theme-teal .ct-series-d .ct-slice-donut {	stroke: #CDDC39; } .nd2-chart.clr-theme-teal .ct-series-d .ct-area, .nd2-chart.clr-theme-teal .ct-series-d .ct-slice-pie { fill: #CDDC39; }  .nd2-chart.clr-theme-teal .ct-series-e .ct-bar, .nd2-chart.clr-theme-teal .ct-series-e .ct-line, .nd2-chart.clr-theme-teal .ct-series-e .ct-point, .nd2-chart.clr-theme-teal .ct-series-e .ct-slice-donut {	stroke: #FFEB3B; } .nd2-chart.clr-theme-teal .ct-series-e .ct-area, .nd2-chart.clr-theme-teal .ct-series-e .ct-slice-pie { fill: #FFEB3B; }  .nd2-chart.clr-theme-teal .ct-series-f .ct-bar, .nd2-chart.clr-theme-teal .ct-series-f .ct-line, .nd2-chart.clr-theme-teal .ct-series-f .ct-point, .nd2-chart.clr-theme-teal .ct-series-f .ct-slice-donut {	stroke: #FFC107; } .nd2-chart.clr-theme-teal .ct-series-f .ct-area, .nd2-chart.clr-theme-teal .ct-series-f .ct-slice-pie { fill: #FFC107; }  .nd2-chart.clr-theme-teal .ct-series-g .ct-bar, .nd2-chart.clr-theme-teal .ct-series-g .ct-line, .nd2-chart.clr-theme-teal .ct-series-g .ct-point, .nd2-chart.clr-theme-teal .ct-series-g .ct-slice-donut {	stroke: #FF9800; } .nd2-chart.clr-theme-teal .ct-series-g .ct-area, .nd2-chart.clr-theme-teal .ct-series-g .ct-slice-pie { fill: #FF9800; }  .nd2-chart.clr-theme-teal .ct-series-h .ct-bar, .nd2-chart.clr-theme-teal .ct-series-h .ct-line, .nd2-chart.clr-theme-teal .ct-series-h .ct-point, .nd2-chart.clr-theme-teal .ct-series-h .ct-slice-donut {	stroke: #FF5722; } .nd2-chart.clr-theme-teal .ct-series-h .ct-area, .nd2-chart.clr-theme-teal .ct-series-h .ct-slice-pie { fill: #FF5722; }  .nd2-chart.clr-theme-teal .ct-series-i .ct-bar, .nd2-chart.clr-theme-teal .ct-series-i .ct-line, .nd2-chart.clr-theme-teal .ct-series-i .ct-point, .nd2-chart.clr-theme-teal .ct-series-i .ct-slice-donut {	stroke: #795548; } .nd2-chart.clr-theme-teal .ct-series-i .ct-area, .nd2-chart.clr-theme-teal .ct-series-i .ct-slice-pie { fill: #795548; }  .nd2-chart.clr-theme-teal .ct-series-j .ct-bar, .nd2-chart.clr-theme-teal .ct-series-j .ct-line, .nd2-chart.clr-theme-teal .ct-series-j .ct-point, .nd2-chart.clr-theme-teal .ct-series-j .ct-slice-donut {	stroke: #9E9E9E; } .nd2-chart.clr-theme-teal .ct-series-j .ct-area, .nd2-chart.clr-theme-teal .ct-series-j .ct-slice-pie { fill: #9E9E9E; }  .nd2-chart.clr-theme-teal .ct-series-k .ct-bar, .nd2-chart.clr-theme-teal .ct-series-k .ct-line, .nd2-chart.clr-theme-teal .ct-series-k .ct-point, .nd2-chart.clr-theme-teal .ct-series-k .ct-slice-donut {	stroke: #607D8B; } .nd2-chart.clr-theme-teal .ct-series-k .ct-area, .nd2-chart.clr-theme-teal .ct-series-k .ct-slice-pie { fill: #607D8B; }  .nd2-chart.clr-theme-teal .ct-series-l .ct-bar, .nd2-chart.clr-theme-teal .ct-series-l .ct-line, .nd2-chart.clr-theme-teal .ct-series-l .ct-point, .nd2-chart.clr-theme-teal .ct-series-l .ct-slice-donut {	stroke: #F44336; } .nd2-chart.clr-theme-teal .ct-series-l .ct-area, .nd2-chart.clr-theme-teal .ct-series-l .ct-slice-pie { fill: #F44336; }  .nd2-chart.clr-theme-teal .ct-series-m .ct-bar, .nd2-chart.clr-theme-teal .ct-series-m .ct-line, .nd2-chart.clr-theme-teal .ct-series-m .ct-point, .nd2-chart.clr-theme-teal .ct-series-m .ct-slice-donut {	stroke: #E91E63; } .nd2-chart.clr-theme-teal .ct-series-m .ct-area, .nd2-chart.clr-theme-teal .ct-series-m .ct-slice-pie { fill: #E91E63; }  .nd2-chart.clr-theme-teal .ct-series-n .ct-bar, .nd2-chart.clr-theme-teal .ct-series-n .ct-line, .nd2-chart.clr-theme-teal .ct-series-n .ct-point, .nd2-chart.clr-theme-teal .ct-series-n .ct-slice-donut {	stroke: #9C27B0; } .nd2-chart.clr-theme-teal .ct-series-n .ct-area, .nd2-chart.clr-theme-teal .ct-series-n .ct-slice-pie { fill: #9C27B0; }  .nd2-chart.clr-theme-teal .ct-series-o .ct-bar, .nd2-chart.clr-theme-teal .ct-series-o .ct-line, .nd2-chart.clr-theme-teal .ct-series-o .ct-point, .nd2-chart.clr-theme-teal .ct-series-o .ct-slice-donut {	stroke: #673AB7; } .nd2-chart.clr-theme-teal .ct-series-o .ct-area, .nd2-chart.clr-theme-teal .ct-series-o .ct-slice-pie { fill: #673AB7; }  .nd2-chart.clr-theme-teal .ct-series-p .ct-bar, .nd2-chart.clr-theme-teal .ct-series-p .ct-line, .nd2-chart.clr-theme-teal .ct-series-p .ct-point, .nd2-chart.clr-theme-teal .ct-series-p .ct-slice-donut {	stroke: #3F51B5; } .nd2-chart.clr-theme-teal .ct-series-p .ct-area, .nd2-chart.clr-theme-teal .ct-series-p .ct-slice-pie { fill: #3F51B5; }  .nd2-chart.clr-theme-teal .ct-series-q .ct-bar, .nd2-chart.clr-theme-teal .ct-series-q .ct-line, .nd2-chart.clr-theme-teal .ct-series-q .ct-point, .nd2-chart.clr-theme-teal .ct-series-q .ct-slice-donut {	stroke: #2196F3; } .nd2-chart.clr-theme-teal .ct-series-q .ct-area, .nd2-chart.clr-theme-teal .ct-series-q .ct-slice-pie { fill: #2196F3; }  .nd2-chart.clr-theme-teal .ct-series-r .ct-bar, .nd2-chart.clr-theme-teal .ct-series-r .ct-line, .nd2-chart.clr-theme-teal .ct-series-r .ct-point, .nd2-chart.clr-theme-teal .ct-series-r .ct-slice-donut {	stroke: #03A9F4; } .nd2-chart.clr-theme-teal .ct-series-r .ct-area, .nd2-chart.clr-theme-teal .ct-series-r .ct-slice-pie { fill: #03A9F4; }


/* Chart-Color-Theme: green */
.nd2-chart.clr-theme-green .ct-series-a .ct-bar, .nd2-chart.clr-theme-green .ct-series-a .ct-line, .nd2-chart.clr-theme-green .ct-series-a .ct-point, .nd2-chart.clr-theme-green .ct-series-a .ct-slice-donut {	stroke: #4CAF50; } .nd2-chart.clr-theme-green .ct-series-a .ct-area, .nd2-chart.clr-theme-green .ct-series-a .ct-slice-pie { fill: #4CAF50; }  .nd2-chart.clr-theme-green .ct-series-b .ct-bar, .nd2-chart.clr-theme-green .ct-series-b .ct-line, .nd2-chart.clr-theme-green .ct-series-b .ct-point, .nd2-chart.clr-theme-green .ct-series-b .ct-slice-donut {	stroke: #8BC34A; } .nd2-chart.clr-theme-green .ct-series-b .ct-area, .nd2-chart.clr-theme-green .ct-series-b .ct-slice-pie { fill: #8BC34A; }  .nd2-chart.clr-theme-green .ct-series-c .ct-bar, .nd2-chart.clr-theme-green .ct-series-c .ct-line, .nd2-chart.clr-theme-green .ct-series-c .ct-point, .nd2-chart.clr-theme-green .ct-series-c .ct-slice-donut {	stroke: #CDDC39; } .nd2-chart.clr-theme-green .ct-series-c .ct-area, .nd2-chart.clr-theme-green .ct-series-c .ct-slice-pie { fill: #CDDC39; }  .nd2-chart.clr-theme-green .ct-series-d .ct-bar, .nd2-chart.clr-theme-green .ct-series-d .ct-line, .nd2-chart.clr-theme-green .ct-series-d .ct-point, .nd2-chart.clr-theme-green .ct-series-d .ct-slice-donut {	stroke: #FFEB3B; } .nd2-chart.clr-theme-green .ct-series-d .ct-area, .nd2-chart.clr-theme-green .ct-series-d .ct-slice-pie { fill: #FFEB3B; }  .nd2-chart.clr-theme-green .ct-series-e .ct-bar, .nd2-chart.clr-theme-green .ct-series-e .ct-line, .nd2-chart.clr-theme-green .ct-series-e .ct-point, .nd2-chart.clr-theme-green .ct-series-e .ct-slice-donut {	stroke: #FFC107; } .nd2-chart.clr-theme-green .ct-series-e .ct-area, .nd2-chart.clr-theme-green .ct-series-e .ct-slice-pie { fill: #FFC107; }  .nd2-chart.clr-theme-green .ct-series-f .ct-bar, .nd2-chart.clr-theme-green .ct-series-f .ct-line, .nd2-chart.clr-theme-green .ct-series-f .ct-point, .nd2-chart.clr-theme-green .ct-series-f .ct-slice-donut {	stroke: #FF9800; } .nd2-chart.clr-theme-green .ct-series-f .ct-area, .nd2-chart.clr-theme-green .ct-series-f .ct-slice-pie { fill: #FF9800; }  .nd2-chart.clr-theme-green .ct-series-g .ct-bar, .nd2-chart.clr-theme-green .ct-series-g .ct-line, .nd2-chart.clr-theme-green .ct-series-g .ct-point, .nd2-chart.clr-theme-green .ct-series-g .ct-slice-donut {	stroke: #FF5722; } .nd2-chart.clr-theme-green .ct-series-g .ct-area, .nd2-chart.clr-theme-green .ct-series-g .ct-slice-pie { fill: #FF5722; }  .nd2-chart.clr-theme-green .ct-series-h .ct-bar, .nd2-chart.clr-theme-green .ct-series-h .ct-line, .nd2-chart.clr-theme-green .ct-series-h .ct-point, .nd2-chart.clr-theme-green .ct-series-h .ct-slice-donut {	stroke: #795548; } .nd2-chart.clr-theme-green .ct-series-h .ct-area, .nd2-chart.clr-theme-green .ct-series-h .ct-slice-pie { fill: #795548; }  .nd2-chart.clr-theme-green .ct-series-i .ct-bar, .nd2-chart.clr-theme-green .ct-series-i .ct-line, .nd2-chart.clr-theme-green .ct-series-i .ct-point, .nd2-chart.clr-theme-green .ct-series-i .ct-slice-donut {	stroke: #9E9E9E; } .nd2-chart.clr-theme-green .ct-series-i .ct-area, .nd2-chart.clr-theme-green .ct-series-i .ct-slice-pie { fill: #9E9E9E; }  .nd2-chart.clr-theme-green .ct-series-j .ct-bar, .nd2-chart.clr-theme-green .ct-series-j .ct-line, .nd2-chart.clr-theme-green .ct-series-j .ct-point, .nd2-chart.clr-theme-green .ct-series-j .ct-slice-donut {	stroke: #607D8B; } .nd2-chart.clr-theme-green .ct-series-j .ct-area, .nd2-chart.clr-theme-green .ct-series-j .ct-slice-pie { fill: #607D8B; }  .nd2-chart.clr-theme-green .ct-series-k .ct-bar, .nd2-chart.clr-theme-green .ct-series-k .ct-line, .nd2-chart.clr-theme-green .ct-series-k .ct-point, .nd2-chart.clr-theme-green .ct-series-k .ct-slice-donut {	stroke: #F44336; } .nd2-chart.clr-theme-green .ct-series-k .ct-area, .nd2-chart.clr-theme-green .ct-series-k .ct-slice-pie { fill: #F44336; }  .nd2-chart.clr-theme-green .ct-series-l .ct-bar, .nd2-chart.clr-theme-green .ct-series-l .ct-line, .nd2-chart.clr-theme-green .ct-series-l .ct-point, .nd2-chart.clr-theme-green .ct-series-l .ct-slice-donut {	stroke: #E91E63; } .nd2-chart.clr-theme-green .ct-series-l .ct-area, .nd2-chart.clr-theme-green .ct-series-l .ct-slice-pie { fill: #E91E63; }  .nd2-chart.clr-theme-green .ct-series-m .ct-bar, .nd2-chart.clr-theme-green .ct-series-m .ct-line, .nd2-chart.clr-theme-green .ct-series-m .ct-point, .nd2-chart.clr-theme-green .ct-series-m .ct-slice-donut {	stroke: #9C27B0; } .nd2-chart.clr-theme-green .ct-series-m .ct-area, .nd2-chart.clr-theme-green .ct-series-m .ct-slice-pie { fill: #9C27B0; }  .nd2-chart.clr-theme-green .ct-series-n .ct-bar, .nd2-chart.clr-theme-green .ct-series-n .ct-line, .nd2-chart.clr-theme-green .ct-series-n .ct-point, .nd2-chart.clr-theme-green .ct-series-n .ct-slice-donut {	stroke: #673AB7; } .nd2-chart.clr-theme-green .ct-series-n .ct-area, .nd2-chart.clr-theme-green .ct-series-n .ct-slice-pie { fill: #673AB7; }  .nd2-chart.clr-theme-green .ct-series-o .ct-bar, .nd2-chart.clr-theme-green .ct-series-o .ct-line, .nd2-chart.clr-theme-green .ct-series-o .ct-point, .nd2-chart.clr-theme-green .ct-series-o .ct-slice-donut {	stroke: #3F51B5; } .nd2-chart.clr-theme-green .ct-series-o .ct-area, .nd2-chart.clr-theme-green .ct-series-o .ct-slice-pie { fill: #3F51B5; }  .nd2-chart.clr-theme-green .ct-series-p .ct-bar, .nd2-chart.clr-theme-green .ct-series-p .ct-line, .nd2-chart.clr-theme-green .ct-series-p .ct-point, .nd2-chart.clr-theme-green .ct-series-p .ct-slice-donut {	stroke: #2196F3; } .nd2-chart.clr-theme-green .ct-series-p .ct-area, .nd2-chart.clr-theme-green .ct-series-p .ct-slice-pie { fill: #2196F3; }  .nd2-chart.clr-theme-green .ct-series-q .ct-bar, .nd2-chart.clr-theme-green .ct-series-q .ct-line, .nd2-chart.clr-theme-green .ct-series-q .ct-point, .nd2-chart.clr-theme-green .ct-series-q .ct-slice-donut {	stroke: #03A9F4; } .nd2-chart.clr-theme-green .ct-series-q .ct-area, .nd2-chart.clr-theme-green .ct-series-q .ct-slice-pie { fill: #03A9F4; }  .nd2-chart.clr-theme-green .ct-series-r .ct-bar, .nd2-chart.clr-theme-green .ct-series-r .ct-line, .nd2-chart.clr-theme-green .ct-series-r .ct-point, .nd2-chart.clr-theme-green .ct-series-r .ct-slice-donut {	stroke: #00BCD4; } .nd2-chart.clr-theme-green .ct-series-r .ct-area, .nd2-chart.clr-theme-green .ct-series-r .ct-slice-pie { fill: #00BCD4; }


/* Chart-Color-Theme: light-green */
.nd2-chart.clr-theme-light-green .ct-series-a .ct-bar, .nd2-chart.clr-theme-light-green .ct-series-a .ct-line, .nd2-chart.clr-theme-light-green .ct-series-a .ct-point, .nd2-chart.clr-theme-light-green .ct-series-a .ct-slice-donut {	stroke: #8BC34A; } .nd2-chart.clr-theme-light-green .ct-series-a .ct-area, .nd2-chart.clr-theme-light-green .ct-series-a .ct-slice-pie { fill: #8BC34A; }  .nd2-chart.clr-theme-light-green .ct-series-b .ct-bar, .nd2-chart.clr-theme-light-green .ct-series-b .ct-line, .nd2-chart.clr-theme-light-green .ct-series-b .ct-point, .nd2-chart.clr-theme-light-green .ct-series-b .ct-slice-donut {	stroke: #CDDC39; } .nd2-chart.clr-theme-light-green .ct-series-b .ct-area, .nd2-chart.clr-theme-light-green .ct-series-b .ct-slice-pie { fill: #CDDC39; }  .nd2-chart.clr-theme-light-green .ct-series-c .ct-bar, .nd2-chart.clr-theme-light-green .ct-series-c .ct-line, .nd2-chart.clr-theme-light-green .ct-series-c .ct-point, .nd2-chart.clr-theme-light-green .ct-series-c .ct-slice-donut {	stroke: #FFEB3B; } .nd2-chart.clr-theme-light-green .ct-series-c .ct-area, .nd2-chart.clr-theme-light-green .ct-series-c .ct-slice-pie { fill: #FFEB3B; }  .nd2-chart.clr-theme-light-green .ct-series-d .ct-bar, .nd2-chart.clr-theme-light-green .ct-series-d .ct-line, .nd2-chart.clr-theme-light-green .ct-series-d .ct-point, .nd2-chart.clr-theme-light-green .ct-series-d .ct-slice-donut {	stroke: #FFC107; } .nd2-chart.clr-theme-light-green .ct-series-d .ct-area, .nd2-chart.clr-theme-light-green .ct-series-d .ct-slice-pie { fill: #FFC107; }  .nd2-chart.clr-theme-light-green .ct-series-e .ct-bar, .nd2-chart.clr-theme-light-green .ct-series-e .ct-line, .nd2-chart.clr-theme-light-green .ct-series-e .ct-point, .nd2-chart.clr-theme-light-green .ct-series-e .ct-slice-donut {	stroke: #FF9800; } .nd2-chart.clr-theme-light-green .ct-series-e .ct-area, .nd2-chart.clr-theme-light-green .ct-series-e .ct-slice-pie { fill: #FF9800; }  .nd2-chart.clr-theme-light-green .ct-series-f .ct-bar, .nd2-chart.clr-theme-light-green .ct-series-f .ct-line, .nd2-chart.clr-theme-light-green .ct-series-f .ct-point, .nd2-chart.clr-theme-light-green .ct-series-f .ct-slice-donut {	stroke: #FF5722; } .nd2-chart.clr-theme-light-green .ct-series-f .ct-area, .nd2-chart.clr-theme-light-green .ct-series-f .ct-slice-pie { fill: #FF5722; }  .nd2-chart.clr-theme-light-green .ct-series-g .ct-bar, .nd2-chart.clr-theme-light-green .ct-series-g .ct-line, .nd2-chart.clr-theme-light-green .ct-series-g .ct-point, .nd2-chart.clr-theme-light-green .ct-series-g .ct-slice-donut {	stroke: #795548; } .nd2-chart.clr-theme-light-green .ct-series-g .ct-area, .nd2-chart.clr-theme-light-green .ct-series-g .ct-slice-pie { fill: #795548; }  .nd2-chart.clr-theme-light-green .ct-series-h .ct-bar, .nd2-chart.clr-theme-light-green .ct-series-h .ct-line, .nd2-chart.clr-theme-light-green .ct-series-h .ct-point, .nd2-chart.clr-theme-light-green .ct-series-h .ct-slice-donut {	stroke: #9E9E9E; } .nd2-chart.clr-theme-light-green .ct-series-h .ct-area, .nd2-chart.clr-theme-light-green .ct-series-h .ct-slice-pie { fill: #9E9E9E; }  .nd2-chart.clr-theme-light-green .ct-series-i .ct-bar, .nd2-chart.clr-theme-light-green .ct-series-i .ct-line, .nd2-chart.clr-theme-light-green .ct-series-i .ct-point, .nd2-chart.clr-theme-light-green .ct-series-i .ct-slice-donut {	stroke: #607D8B; } .nd2-chart.clr-theme-light-green .ct-series-i .ct-area, .nd2-chart.clr-theme-light-green .ct-series-i .ct-slice-pie { fill: #607D8B; }  .nd2-chart.clr-theme-light-green .ct-series-j .ct-bar, .nd2-chart.clr-theme-light-green .ct-series-j .ct-line, .nd2-chart.clr-theme-light-green .ct-series-j .ct-point, .nd2-chart.clr-theme-light-green .ct-series-j .ct-slice-donut {	stroke: #F44336; } .nd2-chart.clr-theme-light-green .ct-series-j .ct-area, .nd2-chart.clr-theme-light-green .ct-series-j .ct-slice-pie { fill: #F44336; }  .nd2-chart.clr-theme-light-green .ct-series-k .ct-bar, .nd2-chart.clr-theme-light-green .ct-series-k .ct-line, .nd2-chart.clr-theme-light-green .ct-series-k .ct-point, .nd2-chart.clr-theme-light-green .ct-series-k .ct-slice-donut {	stroke: #E91E63; } .nd2-chart.clr-theme-light-green .ct-series-k .ct-area, .nd2-chart.clr-theme-light-green .ct-series-k .ct-slice-pie { fill: #E91E63; }  .nd2-chart.clr-theme-light-green .ct-series-l .ct-bar, .nd2-chart.clr-theme-light-green .ct-series-l .ct-line, .nd2-chart.clr-theme-light-green .ct-series-l .ct-point, .nd2-chart.clr-theme-light-green .ct-series-l .ct-slice-donut {	stroke: #9C27B0; } .nd2-chart.clr-theme-light-green .ct-series-l .ct-area, .nd2-chart.clr-theme-light-green .ct-series-l .ct-slice-pie { fill: #9C27B0; }  .nd2-chart.clr-theme-light-green .ct-series-m .ct-bar, .nd2-chart.clr-theme-light-green .ct-series-m .ct-line, .nd2-chart.clr-theme-light-green .ct-series-m .ct-point, .nd2-chart.clr-theme-light-green .ct-series-m .ct-slice-donut {	stroke: #673AB7; } .nd2-chart.clr-theme-light-green .ct-series-m .ct-area, .nd2-chart.clr-theme-light-green .ct-series-m .ct-slice-pie { fill: #673AB7; }  .nd2-chart.clr-theme-light-green .ct-series-n .ct-bar, .nd2-chart.clr-theme-light-green .ct-series-n .ct-line, .nd2-chart.clr-theme-light-green .ct-series-n .ct-point, .nd2-chart.clr-theme-light-green .ct-series-n .ct-slice-donut {	stroke: #3F51B5; } .nd2-chart.clr-theme-light-green .ct-series-n .ct-area, .nd2-chart.clr-theme-light-green .ct-series-n .ct-slice-pie { fill: #3F51B5; }  .nd2-chart.clr-theme-light-green .ct-series-o .ct-bar, .nd2-chart.clr-theme-light-green .ct-series-o .ct-line, .nd2-chart.clr-theme-light-green .ct-series-o .ct-point, .nd2-chart.clr-theme-light-green .ct-series-o .ct-slice-donut {	stroke: #2196F3; } .nd2-chart.clr-theme-light-green .ct-series-o .ct-area, .nd2-chart.clr-theme-light-green .ct-series-o .ct-slice-pie { fill: #2196F3; }  .nd2-chart.clr-theme-light-green .ct-series-p .ct-bar, .nd2-chart.clr-theme-light-green .ct-series-p .ct-line, .nd2-chart.clr-theme-light-green .ct-series-p .ct-point, .nd2-chart.clr-theme-light-green .ct-series-p .ct-slice-donut {	stroke: #03A9F4; } .nd2-chart.clr-theme-light-green .ct-series-p .ct-area, .nd2-chart.clr-theme-light-green .ct-series-p .ct-slice-pie { fill: #03A9F4; }  .nd2-chart.clr-theme-light-green .ct-series-q .ct-bar, .nd2-chart.clr-theme-light-green .ct-series-q .ct-line, .nd2-chart.clr-theme-light-green .ct-series-q .ct-point, .nd2-chart.clr-theme-light-green .ct-series-q .ct-slice-donut {	stroke: #00BCD4; } .nd2-chart.clr-theme-light-green .ct-series-q .ct-area, .nd2-chart.clr-theme-light-green .ct-series-q .ct-slice-pie { fill: #00BCD4; }  .nd2-chart.clr-theme-light-green .ct-series-r .ct-bar, .nd2-chart.clr-theme-light-green .ct-series-r .ct-line, .nd2-chart.clr-theme-light-green .ct-series-r .ct-point, .nd2-chart.clr-theme-light-green .ct-series-r .ct-slice-donut {	stroke: #009688; } .nd2-chart.clr-theme-light-green .ct-series-r .ct-area, .nd2-chart.clr-theme-light-green .ct-series-r .ct-slice-pie { fill: #009688; }


/* Chart-Color-Theme: lime */
.nd2-chart.clr-theme-lime .ct-series-a .ct-bar, .nd2-chart.clr-theme-lime .ct-series-a .ct-line, .nd2-chart.clr-theme-lime .ct-series-a .ct-point, .nd2-chart.clr-theme-lime .ct-series-a .ct-slice-donut {	stroke: #CDDC39; } .nd2-chart.clr-theme-lime .ct-series-a .ct-area, .nd2-chart.clr-theme-lime .ct-series-a .ct-slice-pie { fill: #CDDC39; }  .nd2-chart.clr-theme-lime .ct-series-b .ct-bar, .nd2-chart.clr-theme-lime .ct-series-b .ct-line, .nd2-chart.clr-theme-lime .ct-series-b .ct-point, .nd2-chart.clr-theme-lime .ct-series-b .ct-slice-donut {	stroke: #FFEB3B; } .nd2-chart.clr-theme-lime .ct-series-b .ct-area, .nd2-chart.clr-theme-lime .ct-series-b .ct-slice-pie { fill: #FFEB3B; }  .nd2-chart.clr-theme-lime .ct-series-c .ct-bar, .nd2-chart.clr-theme-lime .ct-series-c .ct-line, .nd2-chart.clr-theme-lime .ct-series-c .ct-point, .nd2-chart.clr-theme-lime .ct-series-c .ct-slice-donut {	stroke: #FFC107; } .nd2-chart.clr-theme-lime .ct-series-c .ct-area, .nd2-chart.clr-theme-lime .ct-series-c .ct-slice-pie { fill: #FFC107; }  .nd2-chart.clr-theme-lime .ct-series-d .ct-bar, .nd2-chart.clr-theme-lime .ct-series-d .ct-line, .nd2-chart.clr-theme-lime .ct-series-d .ct-point, .nd2-chart.clr-theme-lime .ct-series-d .ct-slice-donut {	stroke: #FF9800; } .nd2-chart.clr-theme-lime .ct-series-d .ct-area, .nd2-chart.clr-theme-lime .ct-series-d .ct-slice-pie { fill: #FF9800; }  .nd2-chart.clr-theme-lime .ct-series-e .ct-bar, .nd2-chart.clr-theme-lime .ct-series-e .ct-line, .nd2-chart.clr-theme-lime .ct-series-e .ct-point, .nd2-chart.clr-theme-lime .ct-series-e .ct-slice-donut {	stroke: #FF5722; } .nd2-chart.clr-theme-lime .ct-series-e .ct-area, .nd2-chart.clr-theme-lime .ct-series-e .ct-slice-pie { fill: #FF5722; }  .nd2-chart.clr-theme-lime .ct-series-f .ct-bar, .nd2-chart.clr-theme-lime .ct-series-f .ct-line, .nd2-chart.clr-theme-lime .ct-series-f .ct-point, .nd2-chart.clr-theme-lime .ct-series-f .ct-slice-donut {	stroke: #795548; } .nd2-chart.clr-theme-lime .ct-series-f .ct-area, .nd2-chart.clr-theme-lime .ct-series-f .ct-slice-pie { fill: #795548; }  .nd2-chart.clr-theme-lime .ct-series-g .ct-bar, .nd2-chart.clr-theme-lime .ct-series-g .ct-line, .nd2-chart.clr-theme-lime .ct-series-g .ct-point, .nd2-chart.clr-theme-lime .ct-series-g .ct-slice-donut {	stroke: #9E9E9E; } .nd2-chart.clr-theme-lime .ct-series-g .ct-area, .nd2-chart.clr-theme-lime .ct-series-g .ct-slice-pie { fill: #9E9E9E; }  .nd2-chart.clr-theme-lime .ct-series-h .ct-bar, .nd2-chart.clr-theme-lime .ct-series-h .ct-line, .nd2-chart.clr-theme-lime .ct-series-h .ct-point, .nd2-chart.clr-theme-lime .ct-series-h .ct-slice-donut {	stroke: #607D8B; } .nd2-chart.clr-theme-lime .ct-series-h .ct-area, .nd2-chart.clr-theme-lime .ct-series-h .ct-slice-pie { fill: #607D8B; }  .nd2-chart.clr-theme-lime .ct-series-i .ct-bar, .nd2-chart.clr-theme-lime .ct-series-i .ct-line, .nd2-chart.clr-theme-lime .ct-series-i .ct-point, .nd2-chart.clr-theme-lime .ct-series-i .ct-slice-donut {	stroke: #F44336; } .nd2-chart.clr-theme-lime .ct-series-i .ct-area, .nd2-chart.clr-theme-lime .ct-series-i .ct-slice-pie { fill: #F44336; }  .nd2-chart.clr-theme-lime .ct-series-j .ct-bar, .nd2-chart.clr-theme-lime .ct-series-j .ct-line, .nd2-chart.clr-theme-lime .ct-series-j .ct-point, .nd2-chart.clr-theme-lime .ct-series-j .ct-slice-donut {	stroke: #E91E63; } .nd2-chart.clr-theme-lime .ct-series-j .ct-area, .nd2-chart.clr-theme-lime .ct-series-j .ct-slice-pie { fill: #E91E63; }  .nd2-chart.clr-theme-lime .ct-series-k .ct-bar, .nd2-chart.clr-theme-lime .ct-series-k .ct-line, .nd2-chart.clr-theme-lime .ct-series-k .ct-point, .nd2-chart.clr-theme-lime .ct-series-k .ct-slice-donut {	stroke: #9C27B0; } .nd2-chart.clr-theme-lime .ct-series-k .ct-area, .nd2-chart.clr-theme-lime .ct-series-k .ct-slice-pie { fill: #9C27B0; }  .nd2-chart.clr-theme-lime .ct-series-l .ct-bar, .nd2-chart.clr-theme-lime .ct-series-l .ct-line, .nd2-chart.clr-theme-lime .ct-series-l .ct-point, .nd2-chart.clr-theme-lime .ct-series-l .ct-slice-donut {	stroke: #673AB7; } .nd2-chart.clr-theme-lime .ct-series-l .ct-area, .nd2-chart.clr-theme-lime .ct-series-l .ct-slice-pie { fill: #673AB7; }  .nd2-chart.clr-theme-lime .ct-series-m .ct-bar, .nd2-chart.clr-theme-lime .ct-series-m .ct-line, .nd2-chart.clr-theme-lime .ct-series-m .ct-point, .nd2-chart.clr-theme-lime .ct-series-m .ct-slice-donut {	stroke: #3F51B5; } .nd2-chart.clr-theme-lime .ct-series-m .ct-area, .nd2-chart.clr-theme-lime .ct-series-m .ct-slice-pie { fill: #3F51B5; }  .nd2-chart.clr-theme-lime .ct-series-n .ct-bar, .nd2-chart.clr-theme-lime .ct-series-n .ct-line, .nd2-chart.clr-theme-lime .ct-series-n .ct-point, .nd2-chart.clr-theme-lime .ct-series-n .ct-slice-donut {	stroke: #2196F3; } .nd2-chart.clr-theme-lime .ct-series-n .ct-area, .nd2-chart.clr-theme-lime .ct-series-n .ct-slice-pie { fill: #2196F3; }  .nd2-chart.clr-theme-lime .ct-series-o .ct-bar, .nd2-chart.clr-theme-lime .ct-series-o .ct-line, .nd2-chart.clr-theme-lime .ct-series-o .ct-point, .nd2-chart.clr-theme-lime .ct-series-o .ct-slice-donut {	stroke: #03A9F4; } .nd2-chart.clr-theme-lime .ct-series-o .ct-area, .nd2-chart.clr-theme-lime .ct-series-o .ct-slice-pie { fill: #03A9F4; }  .nd2-chart.clr-theme-lime .ct-series-p .ct-bar, .nd2-chart.clr-theme-lime .ct-series-p .ct-line, .nd2-chart.clr-theme-lime .ct-series-p .ct-point, .nd2-chart.clr-theme-lime .ct-series-p .ct-slice-donut {	stroke: #00BCD4; } .nd2-chart.clr-theme-lime .ct-series-p .ct-area, .nd2-chart.clr-theme-lime .ct-series-p .ct-slice-pie { fill: #00BCD4; }  .nd2-chart.clr-theme-lime .ct-series-q .ct-bar, .nd2-chart.clr-theme-lime .ct-series-q .ct-line, .nd2-chart.clr-theme-lime .ct-series-q .ct-point, .nd2-chart.clr-theme-lime .ct-series-q .ct-slice-donut {	stroke: #009688; } .nd2-chart.clr-theme-lime .ct-series-q .ct-area, .nd2-chart.clr-theme-lime .ct-series-q .ct-slice-pie { fill: #009688; }  .nd2-chart.clr-theme-lime .ct-series-r .ct-bar, .nd2-chart.clr-theme-lime .ct-series-r .ct-line, .nd2-chart.clr-theme-lime .ct-series-r .ct-point, .nd2-chart.clr-theme-lime .ct-series-r .ct-slice-donut {	stroke: #4CAF50; } .nd2-chart.clr-theme-lime .ct-series-r .ct-area, .nd2-chart.clr-theme-lime .ct-series-r .ct-slice-pie { fill: #4CAF50; }


/* Chart-Color-Theme: yellow */
.nd2-chart.clr-theme-yellow .ct-series-a .ct-bar, .nd2-chart.clr-theme-yellow .ct-series-a .ct-line, .nd2-chart.clr-theme-yellow .ct-series-a .ct-point, .nd2-chart.clr-theme-yellow .ct-series-a .ct-slice-donut {	stroke: #FFEB3B; } .nd2-chart.clr-theme-yellow .ct-series-a .ct-area, .nd2-chart.clr-theme-yellow .ct-series-a .ct-slice-pie { fill: #FFEB3B; }  .nd2-chart.clr-theme-yellow .ct-series-b .ct-bar, .nd2-chart.clr-theme-yellow .ct-series-b .ct-line, .nd2-chart.clr-theme-yellow .ct-series-b .ct-point, .nd2-chart.clr-theme-yellow .ct-series-b .ct-slice-donut {	stroke: #FFC107; } .nd2-chart.clr-theme-yellow .ct-series-b .ct-area, .nd2-chart.clr-theme-yellow .ct-series-b .ct-slice-pie { fill: #FFC107; }  .nd2-chart.clr-theme-yellow .ct-series-c .ct-bar, .nd2-chart.clr-theme-yellow .ct-series-c .ct-line, .nd2-chart.clr-theme-yellow .ct-series-c .ct-point, .nd2-chart.clr-theme-yellow .ct-series-c .ct-slice-donut {	stroke: #FF9800; } .nd2-chart.clr-theme-yellow .ct-series-c .ct-area, .nd2-chart.clr-theme-yellow .ct-series-c .ct-slice-pie { fill: #FF9800; }  .nd2-chart.clr-theme-yellow .ct-series-d .ct-bar, .nd2-chart.clr-theme-yellow .ct-series-d .ct-line, .nd2-chart.clr-theme-yellow .ct-series-d .ct-point, .nd2-chart.clr-theme-yellow .ct-series-d .ct-slice-donut {	stroke: #FF5722; } .nd2-chart.clr-theme-yellow .ct-series-d .ct-area, .nd2-chart.clr-theme-yellow .ct-series-d .ct-slice-pie { fill: #FF5722; }  .nd2-chart.clr-theme-yellow .ct-series-e .ct-bar, .nd2-chart.clr-theme-yellow .ct-series-e .ct-line, .nd2-chart.clr-theme-yellow .ct-series-e .ct-point, .nd2-chart.clr-theme-yellow .ct-series-e .ct-slice-donut {	stroke: #795548; } .nd2-chart.clr-theme-yellow .ct-series-e .ct-area, .nd2-chart.clr-theme-yellow .ct-series-e .ct-slice-pie { fill: #795548; }  .nd2-chart.clr-theme-yellow .ct-series-f .ct-bar, .nd2-chart.clr-theme-yellow .ct-series-f .ct-line, .nd2-chart.clr-theme-yellow .ct-series-f .ct-point, .nd2-chart.clr-theme-yellow .ct-series-f .ct-slice-donut {	stroke: #9E9E9E; } .nd2-chart.clr-theme-yellow .ct-series-f .ct-area, .nd2-chart.clr-theme-yellow .ct-series-f .ct-slice-pie { fill: #9E9E9E; }  .nd2-chart.clr-theme-yellow .ct-series-g .ct-bar, .nd2-chart.clr-theme-yellow .ct-series-g .ct-line, .nd2-chart.clr-theme-yellow .ct-series-g .ct-point, .nd2-chart.clr-theme-yellow .ct-series-g .ct-slice-donut {	stroke: #607D8B; } .nd2-chart.clr-theme-yellow .ct-series-g .ct-area, .nd2-chart.clr-theme-yellow .ct-series-g .ct-slice-pie { fill: #607D8B; }  .nd2-chart.clr-theme-yellow .ct-series-h .ct-bar, .nd2-chart.clr-theme-yellow .ct-series-h .ct-line, .nd2-chart.clr-theme-yellow .ct-series-h .ct-point, .nd2-chart.clr-theme-yellow .ct-series-h .ct-slice-donut {	stroke: #F44336; } .nd2-chart.clr-theme-yellow .ct-series-h .ct-area, .nd2-chart.clr-theme-yellow .ct-series-h .ct-slice-pie { fill: #F44336; }  .nd2-chart.clr-theme-yellow .ct-series-i .ct-bar, .nd2-chart.clr-theme-yellow .ct-series-i .ct-line, .nd2-chart.clr-theme-yellow .ct-series-i .ct-point, .nd2-chart.clr-theme-yellow .ct-series-i .ct-slice-donut {	stroke: #E91E63; } .nd2-chart.clr-theme-yellow .ct-series-i .ct-area, .nd2-chart.clr-theme-yellow .ct-series-i .ct-slice-pie { fill: #E91E63; }  .nd2-chart.clr-theme-yellow .ct-series-j .ct-bar, .nd2-chart.clr-theme-yellow .ct-series-j .ct-line, .nd2-chart.clr-theme-yellow .ct-series-j .ct-point, .nd2-chart.clr-theme-yellow .ct-series-j .ct-slice-donut {	stroke: #9C27B0; } .nd2-chart.clr-theme-yellow .ct-series-j .ct-area, .nd2-chart.clr-theme-yellow .ct-series-j .ct-slice-pie { fill: #9C27B0; }  .nd2-chart.clr-theme-yellow .ct-series-k .ct-bar, .nd2-chart.clr-theme-yellow .ct-series-k .ct-line, .nd2-chart.clr-theme-yellow .ct-series-k .ct-point, .nd2-chart.clr-theme-yellow .ct-series-k .ct-slice-donut {	stroke: #673AB7; } .nd2-chart.clr-theme-yellow .ct-series-k .ct-area, .nd2-chart.clr-theme-yellow .ct-series-k .ct-slice-pie { fill: #673AB7; }  .nd2-chart.clr-theme-yellow .ct-series-l .ct-bar, .nd2-chart.clr-theme-yellow .ct-series-l .ct-line, .nd2-chart.clr-theme-yellow .ct-series-l .ct-point, .nd2-chart.clr-theme-yellow .ct-series-l .ct-slice-donut {	stroke: #3F51B5; } .nd2-chart.clr-theme-yellow .ct-series-l .ct-area, .nd2-chart.clr-theme-yellow .ct-series-l .ct-slice-pie { fill: #3F51B5; }  .nd2-chart.clr-theme-yellow .ct-series-m .ct-bar, .nd2-chart.clr-theme-yellow .ct-series-m .ct-line, .nd2-chart.clr-theme-yellow .ct-series-m .ct-point, .nd2-chart.clr-theme-yellow .ct-series-m .ct-slice-donut {	stroke: #2196F3; } .nd2-chart.clr-theme-yellow .ct-series-m .ct-area, .nd2-chart.clr-theme-yellow .ct-series-m .ct-slice-pie { fill: #2196F3; }  .nd2-chart.clr-theme-yellow .ct-series-n .ct-bar, .nd2-chart.clr-theme-yellow .ct-series-n .ct-line, .nd2-chart.clr-theme-yellow .ct-series-n .ct-point, .nd2-chart.clr-theme-yellow .ct-series-n .ct-slice-donut {	stroke: #03A9F4; } .nd2-chart.clr-theme-yellow .ct-series-n .ct-area, .nd2-chart.clr-theme-yellow .ct-series-n .ct-slice-pie { fill: #03A9F4; }  .nd2-chart.clr-theme-yellow .ct-series-o .ct-bar, .nd2-chart.clr-theme-yellow .ct-series-o .ct-line, .nd2-chart.clr-theme-yellow .ct-series-o .ct-point, .nd2-chart.clr-theme-yellow .ct-series-o .ct-slice-donut {	stroke: #00BCD4; } .nd2-chart.clr-theme-yellow .ct-series-o .ct-area, .nd2-chart.clr-theme-yellow .ct-series-o .ct-slice-pie { fill: #00BCD4; }  .nd2-chart.clr-theme-yellow .ct-series-p .ct-bar, .nd2-chart.clr-theme-yellow .ct-series-p .ct-line, .nd2-chart.clr-theme-yellow .ct-series-p .ct-point, .nd2-chart.clr-theme-yellow .ct-series-p .ct-slice-donut {	stroke: #009688; } .nd2-chart.clr-theme-yellow .ct-series-p .ct-area, .nd2-chart.clr-theme-yellow .ct-series-p .ct-slice-pie { fill: #009688; }  .nd2-chart.clr-theme-yellow .ct-series-q .ct-bar, .nd2-chart.clr-theme-yellow .ct-series-q .ct-line, .nd2-chart.clr-theme-yellow .ct-series-q .ct-point, .nd2-chart.clr-theme-yellow .ct-series-q .ct-slice-donut {	stroke: #4CAF50; } .nd2-chart.clr-theme-yellow .ct-series-q .ct-area, .nd2-chart.clr-theme-yellow .ct-series-q .ct-slice-pie { fill: #4CAF50; }  .nd2-chart.clr-theme-yellow .ct-series-r .ct-bar, .nd2-chart.clr-theme-yellow .ct-series-r .ct-line, .nd2-chart.clr-theme-yellow .ct-series-r .ct-point, .nd2-chart.clr-theme-yellow .ct-series-r .ct-slice-donut {	stroke: #8BC34A; } .nd2-chart.clr-theme-yellow .ct-series-r .ct-area, .nd2-chart.clr-theme-yellow .ct-series-r .ct-slice-pie { fill: #8BC34A; }


/* Chart-Color-Theme: amber */
.nd2-chart.clr-theme-amber .ct-series-a .ct-bar, .nd2-chart.clr-theme-amber .ct-series-a .ct-line, .nd2-chart.clr-theme-amber .ct-series-a .ct-point, .nd2-chart.clr-theme-amber .ct-series-a .ct-slice-donut {	stroke: #FFC107; } .nd2-chart.clr-theme-amber .ct-series-a .ct-area, .nd2-chart.clr-theme-amber .ct-series-a .ct-slice-pie { fill: #FFC107; }  .nd2-chart.clr-theme-amber .ct-series-b .ct-bar, .nd2-chart.clr-theme-amber .ct-series-b .ct-line, .nd2-chart.clr-theme-amber .ct-series-b .ct-point, .nd2-chart.clr-theme-amber .ct-series-b .ct-slice-donut {	stroke: #FF9800; } .nd2-chart.clr-theme-amber .ct-series-b .ct-area, .nd2-chart.clr-theme-amber .ct-series-b .ct-slice-pie { fill: #FF9800; }  .nd2-chart.clr-theme-amber .ct-series-c .ct-bar, .nd2-chart.clr-theme-amber .ct-series-c .ct-line, .nd2-chart.clr-theme-amber .ct-series-c .ct-point, .nd2-chart.clr-theme-amber .ct-series-c .ct-slice-donut {	stroke: #FF5722; } .nd2-chart.clr-theme-amber .ct-series-c .ct-area, .nd2-chart.clr-theme-amber .ct-series-c .ct-slice-pie { fill: #FF5722; }  .nd2-chart.clr-theme-amber .ct-series-d .ct-bar, .nd2-chart.clr-theme-amber .ct-series-d .ct-line, .nd2-chart.clr-theme-amber .ct-series-d .ct-point, .nd2-chart.clr-theme-amber .ct-series-d .ct-slice-donut {	stroke: #795548; } .nd2-chart.clr-theme-amber .ct-series-d .ct-area, .nd2-chart.clr-theme-amber .ct-series-d .ct-slice-pie { fill: #795548; }  .nd2-chart.clr-theme-amber .ct-series-e .ct-bar, .nd2-chart.clr-theme-amber .ct-series-e .ct-line, .nd2-chart.clr-theme-amber .ct-series-e .ct-point, .nd2-chart.clr-theme-amber .ct-series-e .ct-slice-donut {	stroke: #9E9E9E; } .nd2-chart.clr-theme-amber .ct-series-e .ct-area, .nd2-chart.clr-theme-amber .ct-series-e .ct-slice-pie { fill: #9E9E9E; }  .nd2-chart.clr-theme-amber .ct-series-f .ct-bar, .nd2-chart.clr-theme-amber .ct-series-f .ct-line, .nd2-chart.clr-theme-amber .ct-series-f .ct-point, .nd2-chart.clr-theme-amber .ct-series-f .ct-slice-donut {	stroke: #607D8B; } .nd2-chart.clr-theme-amber .ct-series-f .ct-area, .nd2-chart.clr-theme-amber .ct-series-f .ct-slice-pie { fill: #607D8B; }  .nd2-chart.clr-theme-amber .ct-series-g .ct-bar, .nd2-chart.clr-theme-amber .ct-series-g .ct-line, .nd2-chart.clr-theme-amber .ct-series-g .ct-point, .nd2-chart.clr-theme-amber .ct-series-g .ct-slice-donut {	stroke: #F44336; } .nd2-chart.clr-theme-amber .ct-series-g .ct-area, .nd2-chart.clr-theme-amber .ct-series-g .ct-slice-pie { fill: #F44336; }  .nd2-chart.clr-theme-amber .ct-series-h .ct-bar, .nd2-chart.clr-theme-amber .ct-series-h .ct-line, .nd2-chart.clr-theme-amber .ct-series-h .ct-point, .nd2-chart.clr-theme-amber .ct-series-h .ct-slice-donut {	stroke: #E91E63; } .nd2-chart.clr-theme-amber .ct-series-h .ct-area, .nd2-chart.clr-theme-amber .ct-series-h .ct-slice-pie { fill: #E91E63; }  .nd2-chart.clr-theme-amber .ct-series-i .ct-bar, .nd2-chart.clr-theme-amber .ct-series-i .ct-line, .nd2-chart.clr-theme-amber .ct-series-i .ct-point, .nd2-chart.clr-theme-amber .ct-series-i .ct-slice-donut {	stroke: #9C27B0; } .nd2-chart.clr-theme-amber .ct-series-i .ct-area, .nd2-chart.clr-theme-amber .ct-series-i .ct-slice-pie { fill: #9C27B0; }  .nd2-chart.clr-theme-amber .ct-series-j .ct-bar, .nd2-chart.clr-theme-amber .ct-series-j .ct-line, .nd2-chart.clr-theme-amber .ct-series-j .ct-point, .nd2-chart.clr-theme-amber .ct-series-j .ct-slice-donut {	stroke: #673AB7; } .nd2-chart.clr-theme-amber .ct-series-j .ct-area, .nd2-chart.clr-theme-amber .ct-series-j .ct-slice-pie { fill: #673AB7; }  .nd2-chart.clr-theme-amber .ct-series-k .ct-bar, .nd2-chart.clr-theme-amber .ct-series-k .ct-line, .nd2-chart.clr-theme-amber .ct-series-k .ct-point, .nd2-chart.clr-theme-amber .ct-series-k .ct-slice-donut {	stroke: #3F51B5; } .nd2-chart.clr-theme-amber .ct-series-k .ct-area, .nd2-chart.clr-theme-amber .ct-series-k .ct-slice-pie { fill: #3F51B5; }  .nd2-chart.clr-theme-amber .ct-series-l .ct-bar, .nd2-chart.clr-theme-amber .ct-series-l .ct-line, .nd2-chart.clr-theme-amber .ct-series-l .ct-point, .nd2-chart.clr-theme-amber .ct-series-l .ct-slice-donut {	stroke: #2196F3; } .nd2-chart.clr-theme-amber .ct-series-l .ct-area, .nd2-chart.clr-theme-amber .ct-series-l .ct-slice-pie { fill: #2196F3; }  .nd2-chart.clr-theme-amber .ct-series-m .ct-bar, .nd2-chart.clr-theme-amber .ct-series-m .ct-line, .nd2-chart.clr-theme-amber .ct-series-m .ct-point, .nd2-chart.clr-theme-amber .ct-series-m .ct-slice-donut {	stroke: #03A9F4; } .nd2-chart.clr-theme-amber .ct-series-m .ct-area, .nd2-chart.clr-theme-amber .ct-series-m .ct-slice-pie { fill: #03A9F4; }  .nd2-chart.clr-theme-amber .ct-series-n .ct-bar, .nd2-chart.clr-theme-amber .ct-series-n .ct-line, .nd2-chart.clr-theme-amber .ct-series-n .ct-point, .nd2-chart.clr-theme-amber .ct-series-n .ct-slice-donut {	stroke: #00BCD4; } .nd2-chart.clr-theme-amber .ct-series-n .ct-area, .nd2-chart.clr-theme-amber .ct-series-n .ct-slice-pie { fill: #00BCD4; }  .nd2-chart.clr-theme-amber .ct-series-o .ct-bar, .nd2-chart.clr-theme-amber .ct-series-o .ct-line, .nd2-chart.clr-theme-amber .ct-series-o .ct-point, .nd2-chart.clr-theme-amber .ct-series-o .ct-slice-donut {	stroke: #009688; } .nd2-chart.clr-theme-amber .ct-series-o .ct-area, .nd2-chart.clr-theme-amber .ct-series-o .ct-slice-pie { fill: #009688; }  .nd2-chart.clr-theme-amber .ct-series-p .ct-bar, .nd2-chart.clr-theme-amber .ct-series-p .ct-line, .nd2-chart.clr-theme-amber .ct-series-p .ct-point, .nd2-chart.clr-theme-amber .ct-series-p .ct-slice-donut {	stroke: #4CAF50; } .nd2-chart.clr-theme-amber .ct-series-p .ct-area, .nd2-chart.clr-theme-amber .ct-series-p .ct-slice-pie { fill: #4CAF50; }  .nd2-chart.clr-theme-amber .ct-series-q .ct-bar, .nd2-chart.clr-theme-amber .ct-series-q .ct-line, .nd2-chart.clr-theme-amber .ct-series-q .ct-point, .nd2-chart.clr-theme-amber .ct-series-q .ct-slice-donut {	stroke: #8BC34A; } .nd2-chart.clr-theme-amber .ct-series-q .ct-area, .nd2-chart.clr-theme-amber .ct-series-q .ct-slice-pie { fill: #8BC34A; }  .nd2-chart.clr-theme-amber .ct-series-r .ct-bar, .nd2-chart.clr-theme-amber .ct-series-r .ct-line, .nd2-chart.clr-theme-amber .ct-series-r .ct-point, .nd2-chart.clr-theme-amber .ct-series-r .ct-slice-donut {	stroke: #CDDC39; } .nd2-chart.clr-theme-amber .ct-series-r .ct-area, .nd2-chart.clr-theme-amber .ct-series-r .ct-slice-pie { fill: #CDDC39; }


/* Chart-Color-Theme: orange */
.nd2-chart.clr-theme-orange .ct-series-a .ct-bar, .nd2-chart.clr-theme-orange .ct-series-a .ct-line, .nd2-chart.clr-theme-orange .ct-series-a .ct-point, .nd2-chart.clr-theme-orange .ct-series-a .ct-slice-donut {	stroke: #FF9800; } .nd2-chart.clr-theme-orange .ct-series-a .ct-area, .nd2-chart.clr-theme-orange .ct-series-a .ct-slice-pie { fill: #FF9800; }  .nd2-chart.clr-theme-orange .ct-series-b .ct-bar, .nd2-chart.clr-theme-orange .ct-series-b .ct-line, .nd2-chart.clr-theme-orange .ct-series-b .ct-point, .nd2-chart.clr-theme-orange .ct-series-b .ct-slice-donut {	stroke: #FF5722; } .nd2-chart.clr-theme-orange .ct-series-b .ct-area, .nd2-chart.clr-theme-orange .ct-series-b .ct-slice-pie { fill: #FF5722; }  .nd2-chart.clr-theme-orange .ct-series-c .ct-bar, .nd2-chart.clr-theme-orange .ct-series-c .ct-line, .nd2-chart.clr-theme-orange .ct-series-c .ct-point, .nd2-chart.clr-theme-orange .ct-series-c .ct-slice-donut {	stroke: #795548; } .nd2-chart.clr-theme-orange .ct-series-c .ct-area, .nd2-chart.clr-theme-orange .ct-series-c .ct-slice-pie { fill: #795548; }  .nd2-chart.clr-theme-orange .ct-series-d .ct-bar, .nd2-chart.clr-theme-orange .ct-series-d .ct-line, .nd2-chart.clr-theme-orange .ct-series-d .ct-point, .nd2-chart.clr-theme-orange .ct-series-d .ct-slice-donut {	stroke: #9E9E9E; } .nd2-chart.clr-theme-orange .ct-series-d .ct-area, .nd2-chart.clr-theme-orange .ct-series-d .ct-slice-pie { fill: #9E9E9E; }  .nd2-chart.clr-theme-orange .ct-series-e .ct-bar, .nd2-chart.clr-theme-orange .ct-series-e .ct-line, .nd2-chart.clr-theme-orange .ct-series-e .ct-point, .nd2-chart.clr-theme-orange .ct-series-e .ct-slice-donut {	stroke: #607D8B; } .nd2-chart.clr-theme-orange .ct-series-e .ct-area, .nd2-chart.clr-theme-orange .ct-series-e .ct-slice-pie { fill: #607D8B; }  .nd2-chart.clr-theme-orange .ct-series-f .ct-bar, .nd2-chart.clr-theme-orange .ct-series-f .ct-line, .nd2-chart.clr-theme-orange .ct-series-f .ct-point, .nd2-chart.clr-theme-orange .ct-series-f .ct-slice-donut {	stroke: #F44336; } .nd2-chart.clr-theme-orange .ct-series-f .ct-area, .nd2-chart.clr-theme-orange .ct-series-f .ct-slice-pie { fill: #F44336; }  .nd2-chart.clr-theme-orange .ct-series-g .ct-bar, .nd2-chart.clr-theme-orange .ct-series-g .ct-line, .nd2-chart.clr-theme-orange .ct-series-g .ct-point, .nd2-chart.clr-theme-orange .ct-series-g .ct-slice-donut {	stroke: #E91E63; } .nd2-chart.clr-theme-orange .ct-series-g .ct-area, .nd2-chart.clr-theme-orange .ct-series-g .ct-slice-pie { fill: #E91E63; }  .nd2-chart.clr-theme-orange .ct-series-h .ct-bar, .nd2-chart.clr-theme-orange .ct-series-h .ct-line, .nd2-chart.clr-theme-orange .ct-series-h .ct-point, .nd2-chart.clr-theme-orange .ct-series-h .ct-slice-donut {	stroke: #9C27B0; } .nd2-chart.clr-theme-orange .ct-series-h .ct-area, .nd2-chart.clr-theme-orange .ct-series-h .ct-slice-pie { fill: #9C27B0; }  .nd2-chart.clr-theme-orange .ct-series-i .ct-bar, .nd2-chart.clr-theme-orange .ct-series-i .ct-line, .nd2-chart.clr-theme-orange .ct-series-i .ct-point, .nd2-chart.clr-theme-orange .ct-series-i .ct-slice-donut {	stroke: #673AB7; } .nd2-chart.clr-theme-orange .ct-series-i .ct-area, .nd2-chart.clr-theme-orange .ct-series-i .ct-slice-pie { fill: #673AB7; }  .nd2-chart.clr-theme-orange .ct-series-j .ct-bar, .nd2-chart.clr-theme-orange .ct-series-j .ct-line, .nd2-chart.clr-theme-orange .ct-series-j .ct-point, .nd2-chart.clr-theme-orange .ct-series-j .ct-slice-donut {	stroke: #3F51B5; } .nd2-chart.clr-theme-orange .ct-series-j .ct-area, .nd2-chart.clr-theme-orange .ct-series-j .ct-slice-pie { fill: #3F51B5; }  .nd2-chart.clr-theme-orange .ct-series-k .ct-bar, .nd2-chart.clr-theme-orange .ct-series-k .ct-line, .nd2-chart.clr-theme-orange .ct-series-k .ct-point, .nd2-chart.clr-theme-orange .ct-series-k .ct-slice-donut {	stroke: #2196F3; } .nd2-chart.clr-theme-orange .ct-series-k .ct-area, .nd2-chart.clr-theme-orange .ct-series-k .ct-slice-pie { fill: #2196F3; }  .nd2-chart.clr-theme-orange .ct-series-l .ct-bar, .nd2-chart.clr-theme-orange .ct-series-l .ct-line, .nd2-chart.clr-theme-orange .ct-series-l .ct-point, .nd2-chart.clr-theme-orange .ct-series-l .ct-slice-donut {	stroke: #03A9F4; } .nd2-chart.clr-theme-orange .ct-series-l .ct-area, .nd2-chart.clr-theme-orange .ct-series-l .ct-slice-pie { fill: #03A9F4; }  .nd2-chart.clr-theme-orange .ct-series-m .ct-bar, .nd2-chart.clr-theme-orange .ct-series-m .ct-line, .nd2-chart.clr-theme-orange .ct-series-m .ct-point, .nd2-chart.clr-theme-orange .ct-series-m .ct-slice-donut {	stroke: #00BCD4; } .nd2-chart.clr-theme-orange .ct-series-m .ct-area, .nd2-chart.clr-theme-orange .ct-series-m .ct-slice-pie { fill: #00BCD4; }  .nd2-chart.clr-theme-orange .ct-series-n .ct-bar, .nd2-chart.clr-theme-orange .ct-series-n .ct-line, .nd2-chart.clr-theme-orange .ct-series-n .ct-point, .nd2-chart.clr-theme-orange .ct-series-n .ct-slice-donut {	stroke: #009688; } .nd2-chart.clr-theme-orange .ct-series-n .ct-area, .nd2-chart.clr-theme-orange .ct-series-n .ct-slice-pie { fill: #009688; }  .nd2-chart.clr-theme-orange .ct-series-o .ct-bar, .nd2-chart.clr-theme-orange .ct-series-o .ct-line, .nd2-chart.clr-theme-orange .ct-series-o .ct-point, .nd2-chart.clr-theme-orange .ct-series-o .ct-slice-donut {	stroke: #4CAF50; } .nd2-chart.clr-theme-orange .ct-series-o .ct-area, .nd2-chart.clr-theme-orange .ct-series-o .ct-slice-pie { fill: #4CAF50; }  .nd2-chart.clr-theme-orange .ct-series-p .ct-bar, .nd2-chart.clr-theme-orange .ct-series-p .ct-line, .nd2-chart.clr-theme-orange .ct-series-p .ct-point, .nd2-chart.clr-theme-orange .ct-series-p .ct-slice-donut {	stroke: #8BC34A; } .nd2-chart.clr-theme-orange .ct-series-p .ct-area, .nd2-chart.clr-theme-orange .ct-series-p .ct-slice-pie { fill: #8BC34A; }  .nd2-chart.clr-theme-orange .ct-series-q .ct-bar, .nd2-chart.clr-theme-orange .ct-series-q .ct-line, .nd2-chart.clr-theme-orange .ct-series-q .ct-point, .nd2-chart.clr-theme-orange .ct-series-q .ct-slice-donut {	stroke: #CDDC39; } .nd2-chart.clr-theme-orange .ct-series-q .ct-area, .nd2-chart.clr-theme-orange .ct-series-q .ct-slice-pie { fill: #CDDC39; }  .nd2-chart.clr-theme-orange .ct-series-r .ct-bar, .nd2-chart.clr-theme-orange .ct-series-r .ct-line, .nd2-chart.clr-theme-orange .ct-series-r .ct-point, .nd2-chart.clr-theme-orange .ct-series-r .ct-slice-donut {	stroke: #FFEB3B; } .nd2-chart.clr-theme-orange .ct-series-r .ct-area, .nd2-chart.clr-theme-orange .ct-series-r .ct-slice-pie { fill: #FFEB3B; }


/* Chart-Color-Theme: deep-orange */
.nd2-chart.clr-theme-deep-orange .ct-series-a .ct-bar, .nd2-chart.clr-theme-deep-orange .ct-series-a .ct-line, .nd2-chart.clr-theme-deep-orange .ct-series-a .ct-point, .nd2-chart.clr-theme-deep-orange .ct-series-a .ct-slice-donut {	stroke: #FF5722; } .nd2-chart.clr-theme-deep-orange .ct-series-a .ct-area, .nd2-chart.clr-theme-deep-orange .ct-series-a .ct-slice-pie { fill: #FF5722; }  .nd2-chart.clr-theme-deep-orange .ct-series-b .ct-bar, .nd2-chart.clr-theme-deep-orange .ct-series-b .ct-line, .nd2-chart.clr-theme-deep-orange .ct-series-b .ct-point, .nd2-chart.clr-theme-deep-orange .ct-series-b .ct-slice-donut {	stroke: #795548; } .nd2-chart.clr-theme-deep-orange .ct-series-b .ct-area, .nd2-chart.clr-theme-deep-orange .ct-series-b .ct-slice-pie { fill: #795548; }  .nd2-chart.clr-theme-deep-orange .ct-series-c .ct-bar, .nd2-chart.clr-theme-deep-orange .ct-series-c .ct-line, .nd2-chart.clr-theme-deep-orange .ct-series-c .ct-point, .nd2-chart.clr-theme-deep-orange .ct-series-c .ct-slice-donut {	stroke: #9E9E9E; } .nd2-chart.clr-theme-deep-orange .ct-series-c .ct-area, .nd2-chart.clr-theme-deep-orange .ct-series-c .ct-slice-pie { fill: #9E9E9E; }  .nd2-chart.clr-theme-deep-orange .ct-series-d .ct-bar, .nd2-chart.clr-theme-deep-orange .ct-series-d .ct-line, .nd2-chart.clr-theme-deep-orange .ct-series-d .ct-point, .nd2-chart.clr-theme-deep-orange .ct-series-d .ct-slice-donut {	stroke: #607D8B; } .nd2-chart.clr-theme-deep-orange .ct-series-d .ct-area, .nd2-chart.clr-theme-deep-orange .ct-series-d .ct-slice-pie { fill: #607D8B; }  .nd2-chart.clr-theme-deep-orange .ct-series-e .ct-bar, .nd2-chart.clr-theme-deep-orange .ct-series-e .ct-line, .nd2-chart.clr-theme-deep-orange .ct-series-e .ct-point, .nd2-chart.clr-theme-deep-orange .ct-series-e .ct-slice-donut {	stroke: #F44336; } .nd2-chart.clr-theme-deep-orange .ct-series-e .ct-area, .nd2-chart.clr-theme-deep-orange .ct-series-e .ct-slice-pie { fill: #F44336; }  .nd2-chart.clr-theme-deep-orange .ct-series-f .ct-bar, .nd2-chart.clr-theme-deep-orange .ct-series-f .ct-line, .nd2-chart.clr-theme-deep-orange .ct-series-f .ct-point, .nd2-chart.clr-theme-deep-orange .ct-series-f .ct-slice-donut {	stroke: #E91E63; } .nd2-chart.clr-theme-deep-orange .ct-series-f .ct-area, .nd2-chart.clr-theme-deep-orange .ct-series-f .ct-slice-pie { fill: #E91E63; }  .nd2-chart.clr-theme-deep-orange .ct-series-g .ct-bar, .nd2-chart.clr-theme-deep-orange .ct-series-g .ct-line, .nd2-chart.clr-theme-deep-orange .ct-series-g .ct-point, .nd2-chart.clr-theme-deep-orange .ct-series-g .ct-slice-donut {	stroke: #9C27B0; } .nd2-chart.clr-theme-deep-orange .ct-series-g .ct-area, .nd2-chart.clr-theme-deep-orange .ct-series-g .ct-slice-pie { fill: #9C27B0; }  .nd2-chart.clr-theme-deep-orange .ct-series-h .ct-bar, .nd2-chart.clr-theme-deep-orange .ct-series-h .ct-line, .nd2-chart.clr-theme-deep-orange .ct-series-h .ct-point, .nd2-chart.clr-theme-deep-orange .ct-series-h .ct-slice-donut {	stroke: #673AB7; } .nd2-chart.clr-theme-deep-orange .ct-series-h .ct-area, .nd2-chart.clr-theme-deep-orange .ct-series-h .ct-slice-pie { fill: #673AB7; }  .nd2-chart.clr-theme-deep-orange .ct-series-i .ct-bar, .nd2-chart.clr-theme-deep-orange .ct-series-i .ct-line, .nd2-chart.clr-theme-deep-orange .ct-series-i .ct-point, .nd2-chart.clr-theme-deep-orange .ct-series-i .ct-slice-donut {	stroke: #3F51B5; } .nd2-chart.clr-theme-deep-orange .ct-series-i .ct-area, .nd2-chart.clr-theme-deep-orange .ct-series-i .ct-slice-pie { fill: #3F51B5; }  .nd2-chart.clr-theme-deep-orange .ct-series-j .ct-bar, .nd2-chart.clr-theme-deep-orange .ct-series-j .ct-line, .nd2-chart.clr-theme-deep-orange .ct-series-j .ct-point, .nd2-chart.clr-theme-deep-orange .ct-series-j .ct-slice-donut {	stroke: #2196F3; } .nd2-chart.clr-theme-deep-orange .ct-series-j .ct-area, .nd2-chart.clr-theme-deep-orange .ct-series-j .ct-slice-pie { fill: #2196F3; }  .nd2-chart.clr-theme-deep-orange .ct-series-k .ct-bar, .nd2-chart.clr-theme-deep-orange .ct-series-k .ct-line, .nd2-chart.clr-theme-deep-orange .ct-series-k .ct-point, .nd2-chart.clr-theme-deep-orange .ct-series-k .ct-slice-donut {	stroke: #03A9F4; } .nd2-chart.clr-theme-deep-orange .ct-series-k .ct-area, .nd2-chart.clr-theme-deep-orange .ct-series-k .ct-slice-pie { fill: #03A9F4; }  .nd2-chart.clr-theme-deep-orange .ct-series-l .ct-bar, .nd2-chart.clr-theme-deep-orange .ct-series-l .ct-line, .nd2-chart.clr-theme-deep-orange .ct-series-l .ct-point, .nd2-chart.clr-theme-deep-orange .ct-series-l .ct-slice-donut {	stroke: #00BCD4; } .nd2-chart.clr-theme-deep-orange .ct-series-l .ct-area, .nd2-chart.clr-theme-deep-orange .ct-series-l .ct-slice-pie { fill: #00BCD4; }  .nd2-chart.clr-theme-deep-orange .ct-series-m .ct-bar, .nd2-chart.clr-theme-deep-orange .ct-series-m .ct-line, .nd2-chart.clr-theme-deep-orange .ct-series-m .ct-point, .nd2-chart.clr-theme-deep-orange .ct-series-m .ct-slice-donut {	stroke: #009688; } .nd2-chart.clr-theme-deep-orange .ct-series-m .ct-area, .nd2-chart.clr-theme-deep-orange .ct-series-m .ct-slice-pie { fill: #009688; }  .nd2-chart.clr-theme-deep-orange .ct-series-n .ct-bar, .nd2-chart.clr-theme-deep-orange .ct-series-n .ct-line, .nd2-chart.clr-theme-deep-orange .ct-series-n .ct-point, .nd2-chart.clr-theme-deep-orange .ct-series-n .ct-slice-donut {	stroke: #4CAF50; } .nd2-chart.clr-theme-deep-orange .ct-series-n .ct-area, .nd2-chart.clr-theme-deep-orange .ct-series-n .ct-slice-pie { fill: #4CAF50; }  .nd2-chart.clr-theme-deep-orange .ct-series-o .ct-bar, .nd2-chart.clr-theme-deep-orange .ct-series-o .ct-line, .nd2-chart.clr-theme-deep-orange .ct-series-o .ct-point, .nd2-chart.clr-theme-deep-orange .ct-series-o .ct-slice-donut {	stroke: #8BC34A; } .nd2-chart.clr-theme-deep-orange .ct-series-o .ct-area, .nd2-chart.clr-theme-deep-orange .ct-series-o .ct-slice-pie { fill: #8BC34A; }  .nd2-chart.clr-theme-deep-orange .ct-series-p .ct-bar, .nd2-chart.clr-theme-deep-orange .ct-series-p .ct-line, .nd2-chart.clr-theme-deep-orange .ct-series-p .ct-point, .nd2-chart.clr-theme-deep-orange .ct-series-p .ct-slice-donut {	stroke: #CDDC39; } .nd2-chart.clr-theme-deep-orange .ct-series-p .ct-area, .nd2-chart.clr-theme-deep-orange .ct-series-p .ct-slice-pie { fill: #CDDC39; }  .nd2-chart.clr-theme-deep-orange .ct-series-q .ct-bar, .nd2-chart.clr-theme-deep-orange .ct-series-q .ct-line, .nd2-chart.clr-theme-deep-orange .ct-series-q .ct-point, .nd2-chart.clr-theme-deep-orange .ct-series-q .ct-slice-donut {	stroke: #FFEB3B; } .nd2-chart.clr-theme-deep-orange .ct-series-q .ct-area, .nd2-chart.clr-theme-deep-orange .ct-series-q .ct-slice-pie { fill: #FFEB3B; }  .nd2-chart.clr-theme-deep-orange .ct-series-r .ct-bar, .nd2-chart.clr-theme-deep-orange .ct-series-r .ct-line, .nd2-chart.clr-theme-deep-orange .ct-series-r .ct-point, .nd2-chart.clr-theme-deep-orange .ct-series-r .ct-slice-donut {	stroke: #FFC107; } .nd2-chart.clr-theme-deep-orange .ct-series-r .ct-area, .nd2-chart.clr-theme-deep-orange .ct-series-r .ct-slice-pie { fill: #FFC107; }


/* Chart-Color-Theme: brown */
.nd2-chart.clr-theme-brown .ct-series-a .ct-bar, .nd2-chart.clr-theme-brown .ct-series-a .ct-line, .nd2-chart.clr-theme-brown .ct-series-a .ct-point, .nd2-chart.clr-theme-brown .ct-series-a .ct-slice-donut {	stroke: #795548; } .nd2-chart.clr-theme-brown .ct-series-a .ct-area, .nd2-chart.clr-theme-brown .ct-series-a .ct-slice-pie { fill: #795548; }  .nd2-chart.clr-theme-brown .ct-series-b .ct-bar, .nd2-chart.clr-theme-brown .ct-series-b .ct-line, .nd2-chart.clr-theme-brown .ct-series-b .ct-point, .nd2-chart.clr-theme-brown .ct-series-b .ct-slice-donut {	stroke: #9E9E9E; } .nd2-chart.clr-theme-brown .ct-series-b .ct-area, .nd2-chart.clr-theme-brown .ct-series-b .ct-slice-pie { fill: #9E9E9E; }  .nd2-chart.clr-theme-brown .ct-series-c .ct-bar, .nd2-chart.clr-theme-brown .ct-series-c .ct-line, .nd2-chart.clr-theme-brown .ct-series-c .ct-point, .nd2-chart.clr-theme-brown .ct-series-c .ct-slice-donut {	stroke: #607D8B; } .nd2-chart.clr-theme-brown .ct-series-c .ct-area, .nd2-chart.clr-theme-brown .ct-series-c .ct-slice-pie { fill: #607D8B; }  .nd2-chart.clr-theme-brown .ct-series-d .ct-bar, .nd2-chart.clr-theme-brown .ct-series-d .ct-line, .nd2-chart.clr-theme-brown .ct-series-d .ct-point, .nd2-chart.clr-theme-brown .ct-series-d .ct-slice-donut {	stroke: #F44336; } .nd2-chart.clr-theme-brown .ct-series-d .ct-area, .nd2-chart.clr-theme-brown .ct-series-d .ct-slice-pie { fill: #F44336; }  .nd2-chart.clr-theme-brown .ct-series-e .ct-bar, .nd2-chart.clr-theme-brown .ct-series-e .ct-line, .nd2-chart.clr-theme-brown .ct-series-e .ct-point, .nd2-chart.clr-theme-brown .ct-series-e .ct-slice-donut {	stroke: #E91E63; } .nd2-chart.clr-theme-brown .ct-series-e .ct-area, .nd2-chart.clr-theme-brown .ct-series-e .ct-slice-pie { fill: #E91E63; }  .nd2-chart.clr-theme-brown .ct-series-f .ct-bar, .nd2-chart.clr-theme-brown .ct-series-f .ct-line, .nd2-chart.clr-theme-brown .ct-series-f .ct-point, .nd2-chart.clr-theme-brown .ct-series-f .ct-slice-donut {	stroke: #9C27B0; } .nd2-chart.clr-theme-brown .ct-series-f .ct-area, .nd2-chart.clr-theme-brown .ct-series-f .ct-slice-pie { fill: #9C27B0; }  .nd2-chart.clr-theme-brown .ct-series-g .ct-bar, .nd2-chart.clr-theme-brown .ct-series-g .ct-line, .nd2-chart.clr-theme-brown .ct-series-g .ct-point, .nd2-chart.clr-theme-brown .ct-series-g .ct-slice-donut {	stroke: #673AB7; } .nd2-chart.clr-theme-brown .ct-series-g .ct-area, .nd2-chart.clr-theme-brown .ct-series-g .ct-slice-pie { fill: #673AB7; }  .nd2-chart.clr-theme-brown .ct-series-h .ct-bar, .nd2-chart.clr-theme-brown .ct-series-h .ct-line, .nd2-chart.clr-theme-brown .ct-series-h .ct-point, .nd2-chart.clr-theme-brown .ct-series-h .ct-slice-donut {	stroke: #3F51B5; } .nd2-chart.clr-theme-brown .ct-series-h .ct-area, .nd2-chart.clr-theme-brown .ct-series-h .ct-slice-pie { fill: #3F51B5; }  .nd2-chart.clr-theme-brown .ct-series-i .ct-bar, .nd2-chart.clr-theme-brown .ct-series-i .ct-line, .nd2-chart.clr-theme-brown .ct-series-i .ct-point, .nd2-chart.clr-theme-brown .ct-series-i .ct-slice-donut {	stroke: #2196F3; } .nd2-chart.clr-theme-brown .ct-series-i .ct-area, .nd2-chart.clr-theme-brown .ct-series-i .ct-slice-pie { fill: #2196F3; }  .nd2-chart.clr-theme-brown .ct-series-j .ct-bar, .nd2-chart.clr-theme-brown .ct-series-j .ct-line, .nd2-chart.clr-theme-brown .ct-series-j .ct-point, .nd2-chart.clr-theme-brown .ct-series-j .ct-slice-donut {	stroke: #03A9F4; } .nd2-chart.clr-theme-brown .ct-series-j .ct-area, .nd2-chart.clr-theme-brown .ct-series-j .ct-slice-pie { fill: #03A9F4; }  .nd2-chart.clr-theme-brown .ct-series-k .ct-bar, .nd2-chart.clr-theme-brown .ct-series-k .ct-line, .nd2-chart.clr-theme-brown .ct-series-k .ct-point, .nd2-chart.clr-theme-brown .ct-series-k .ct-slice-donut {	stroke: #00BCD4; } .nd2-chart.clr-theme-brown .ct-series-k .ct-area, .nd2-chart.clr-theme-brown .ct-series-k .ct-slice-pie { fill: #00BCD4; }  .nd2-chart.clr-theme-brown .ct-series-l .ct-bar, .nd2-chart.clr-theme-brown .ct-series-l .ct-line, .nd2-chart.clr-theme-brown .ct-series-l .ct-point, .nd2-chart.clr-theme-brown .ct-series-l .ct-slice-donut {	stroke: #009688; } .nd2-chart.clr-theme-brown .ct-series-l .ct-area, .nd2-chart.clr-theme-brown .ct-series-l .ct-slice-pie { fill: #009688; }  .nd2-chart.clr-theme-brown .ct-series-m .ct-bar, .nd2-chart.clr-theme-brown .ct-series-m .ct-line, .nd2-chart.clr-theme-brown .ct-series-m .ct-point, .nd2-chart.clr-theme-brown .ct-series-m .ct-slice-donut {	stroke: #4CAF50; } .nd2-chart.clr-theme-brown .ct-series-m .ct-area, .nd2-chart.clr-theme-brown .ct-series-m .ct-slice-pie { fill: #4CAF50; }  .nd2-chart.clr-theme-brown .ct-series-n .ct-bar, .nd2-chart.clr-theme-brown .ct-series-n .ct-line, .nd2-chart.clr-theme-brown .ct-series-n .ct-point, .nd2-chart.clr-theme-brown .ct-series-n .ct-slice-donut {	stroke: #8BC34A; } .nd2-chart.clr-theme-brown .ct-series-n .ct-area, .nd2-chart.clr-theme-brown .ct-series-n .ct-slice-pie { fill: #8BC34A; }  .nd2-chart.clr-theme-brown .ct-series-o .ct-bar, .nd2-chart.clr-theme-brown .ct-series-o .ct-line, .nd2-chart.clr-theme-brown .ct-series-o .ct-point, .nd2-chart.clr-theme-brown .ct-series-o .ct-slice-donut {	stroke: #CDDC39; } .nd2-chart.clr-theme-brown .ct-series-o .ct-area, .nd2-chart.clr-theme-brown .ct-series-o .ct-slice-pie { fill: #CDDC39; }  .nd2-chart.clr-theme-brown .ct-series-p .ct-bar, .nd2-chart.clr-theme-brown .ct-series-p .ct-line, .nd2-chart.clr-theme-brown .ct-series-p .ct-point, .nd2-chart.clr-theme-brown .ct-series-p .ct-slice-donut {	stroke: #FFEB3B; } .nd2-chart.clr-theme-brown .ct-series-p .ct-area, .nd2-chart.clr-theme-brown .ct-series-p .ct-slice-pie { fill: #FFEB3B; }  .nd2-chart.clr-theme-brown .ct-series-q .ct-bar, .nd2-chart.clr-theme-brown .ct-series-q .ct-line, .nd2-chart.clr-theme-brown .ct-series-q .ct-point, .nd2-chart.clr-theme-brown .ct-series-q .ct-slice-donut {	stroke: #FFC107; } .nd2-chart.clr-theme-brown .ct-series-q .ct-area, .nd2-chart.clr-theme-brown .ct-series-q .ct-slice-pie { fill: #FFC107; }  .nd2-chart.clr-theme-brown .ct-series-r .ct-bar, .nd2-chart.clr-theme-brown .ct-series-r .ct-line, .nd2-chart.clr-theme-brown .ct-series-r .ct-point, .nd2-chart.clr-theme-brown .ct-series-r .ct-slice-donut {	stroke: #FF9800; } .nd2-chart.clr-theme-brown .ct-series-r .ct-area, .nd2-chart.clr-theme-brown .ct-series-r .ct-slice-pie { fill: #FF9800; }


/* Chart-Color-Theme: grey */
.nd2-chart.clr-theme-grey .ct-series-a .ct-bar, .nd2-chart.clr-theme-grey .ct-series-a .ct-line, .nd2-chart.clr-theme-grey .ct-series-a .ct-point, .nd2-chart.clr-theme-grey .ct-series-a .ct-slice-donut {	stroke: #9E9E9E; } .nd2-chart.clr-theme-grey .ct-series-a .ct-area, .nd2-chart.clr-theme-grey .ct-series-a .ct-slice-pie { fill: #9E9E9E; }  .nd2-chart.clr-theme-grey .ct-series-b .ct-bar, .nd2-chart.clr-theme-grey .ct-series-b .ct-line, .nd2-chart.clr-theme-grey .ct-series-b .ct-point, .nd2-chart.clr-theme-grey .ct-series-b .ct-slice-donut {	stroke: #607D8B; } .nd2-chart.clr-theme-grey .ct-series-b .ct-area, .nd2-chart.clr-theme-grey .ct-series-b .ct-slice-pie { fill: #607D8B; }  .nd2-chart.clr-theme-grey .ct-series-c .ct-bar, .nd2-chart.clr-theme-grey .ct-series-c .ct-line, .nd2-chart.clr-theme-grey .ct-series-c .ct-point, .nd2-chart.clr-theme-grey .ct-series-c .ct-slice-donut {	stroke: #F44336; } .nd2-chart.clr-theme-grey .ct-series-c .ct-area, .nd2-chart.clr-theme-grey .ct-series-c .ct-slice-pie { fill: #F44336; }  .nd2-chart.clr-theme-grey .ct-series-d .ct-bar, .nd2-chart.clr-theme-grey .ct-series-d .ct-line, .nd2-chart.clr-theme-grey .ct-series-d .ct-point, .nd2-chart.clr-theme-grey .ct-series-d .ct-slice-donut {	stroke: #E91E63; } .nd2-chart.clr-theme-grey .ct-series-d .ct-area, .nd2-chart.clr-theme-grey .ct-series-d .ct-slice-pie { fill: #E91E63; }  .nd2-chart.clr-theme-grey .ct-series-e .ct-bar, .nd2-chart.clr-theme-grey .ct-series-e .ct-line, .nd2-chart.clr-theme-grey .ct-series-e .ct-point, .nd2-chart.clr-theme-grey .ct-series-e .ct-slice-donut {	stroke: #9C27B0; } .nd2-chart.clr-theme-grey .ct-series-e .ct-area, .nd2-chart.clr-theme-grey .ct-series-e .ct-slice-pie { fill: #9C27B0; }  .nd2-chart.clr-theme-grey .ct-series-f .ct-bar, .nd2-chart.clr-theme-grey .ct-series-f .ct-line, .nd2-chart.clr-theme-grey .ct-series-f .ct-point, .nd2-chart.clr-theme-grey .ct-series-f .ct-slice-donut {	stroke: #673AB7; } .nd2-chart.clr-theme-grey .ct-series-f .ct-area, .nd2-chart.clr-theme-grey .ct-series-f .ct-slice-pie { fill: #673AB7; }  .nd2-chart.clr-theme-grey .ct-series-g .ct-bar, .nd2-chart.clr-theme-grey .ct-series-g .ct-line, .nd2-chart.clr-theme-grey .ct-series-g .ct-point, .nd2-chart.clr-theme-grey .ct-series-g .ct-slice-donut {	stroke: #3F51B5; } .nd2-chart.clr-theme-grey .ct-series-g .ct-area, .nd2-chart.clr-theme-grey .ct-series-g .ct-slice-pie { fill: #3F51B5; }  .nd2-chart.clr-theme-grey .ct-series-h .ct-bar, .nd2-chart.clr-theme-grey .ct-series-h .ct-line, .nd2-chart.clr-theme-grey .ct-series-h .ct-point, .nd2-chart.clr-theme-grey .ct-series-h .ct-slice-donut {	stroke: #2196F3; } .nd2-chart.clr-theme-grey .ct-series-h .ct-area, .nd2-chart.clr-theme-grey .ct-series-h .ct-slice-pie { fill: #2196F3; }  .nd2-chart.clr-theme-grey .ct-series-i .ct-bar, .nd2-chart.clr-theme-grey .ct-series-i .ct-line, .nd2-chart.clr-theme-grey .ct-series-i .ct-point, .nd2-chart.clr-theme-grey .ct-series-i .ct-slice-donut {	stroke: #03A9F4; } .nd2-chart.clr-theme-grey .ct-series-i .ct-area, .nd2-chart.clr-theme-grey .ct-series-i .ct-slice-pie { fill: #03A9F4; }  .nd2-chart.clr-theme-grey .ct-series-j .ct-bar, .nd2-chart.clr-theme-grey .ct-series-j .ct-line, .nd2-chart.clr-theme-grey .ct-series-j .ct-point, .nd2-chart.clr-theme-grey .ct-series-j .ct-slice-donut {	stroke: #00BCD4; } .nd2-chart.clr-theme-grey .ct-series-j .ct-area, .nd2-chart.clr-theme-grey .ct-series-j .ct-slice-pie { fill: #00BCD4; }  .nd2-chart.clr-theme-grey .ct-series-k .ct-bar, .nd2-chart.clr-theme-grey .ct-series-k .ct-line, .nd2-chart.clr-theme-grey .ct-series-k .ct-point, .nd2-chart.clr-theme-grey .ct-series-k .ct-slice-donut {	stroke: #009688; } .nd2-chart.clr-theme-grey .ct-series-k .ct-area, .nd2-chart.clr-theme-grey .ct-series-k .ct-slice-pie { fill: #009688; }  .nd2-chart.clr-theme-grey .ct-series-l .ct-bar, .nd2-chart.clr-theme-grey .ct-series-l .ct-line, .nd2-chart.clr-theme-grey .ct-series-l .ct-point, .nd2-chart.clr-theme-grey .ct-series-l .ct-slice-donut {	stroke: #4CAF50; } .nd2-chart.clr-theme-grey .ct-series-l .ct-area, .nd2-chart.clr-theme-grey .ct-series-l .ct-slice-pie { fill: #4CAF50; }  .nd2-chart.clr-theme-grey .ct-series-m .ct-bar, .nd2-chart.clr-theme-grey .ct-series-m .ct-line, .nd2-chart.clr-theme-grey .ct-series-m .ct-point, .nd2-chart.clr-theme-grey .ct-series-m .ct-slice-donut {	stroke: #8BC34A; } .nd2-chart.clr-theme-grey .ct-series-m .ct-area, .nd2-chart.clr-theme-grey .ct-series-m .ct-slice-pie { fill: #8BC34A; }  .nd2-chart.clr-theme-grey .ct-series-n .ct-bar, .nd2-chart.clr-theme-grey .ct-series-n .ct-line, .nd2-chart.clr-theme-grey .ct-series-n .ct-point, .nd2-chart.clr-theme-grey .ct-series-n .ct-slice-donut {	stroke: #CDDC39; } .nd2-chart.clr-theme-grey .ct-series-n .ct-area, .nd2-chart.clr-theme-grey .ct-series-n .ct-slice-pie { fill: #CDDC39; }  .nd2-chart.clr-theme-grey .ct-series-o .ct-bar, .nd2-chart.clr-theme-grey .ct-series-o .ct-line, .nd2-chart.clr-theme-grey .ct-series-o .ct-point, .nd2-chart.clr-theme-grey .ct-series-o .ct-slice-donut {	stroke: #FFEB3B; } .nd2-chart.clr-theme-grey .ct-series-o .ct-area, .nd2-chart.clr-theme-grey .ct-series-o .ct-slice-pie { fill: #FFEB3B; }  .nd2-chart.clr-theme-grey .ct-series-p .ct-bar, .nd2-chart.clr-theme-grey .ct-series-p .ct-line, .nd2-chart.clr-theme-grey .ct-series-p .ct-point, .nd2-chart.clr-theme-grey .ct-series-p .ct-slice-donut {	stroke: #FFC107; } .nd2-chart.clr-theme-grey .ct-series-p .ct-area, .nd2-chart.clr-theme-grey .ct-series-p .ct-slice-pie { fill: #FFC107; }  .nd2-chart.clr-theme-grey .ct-series-q .ct-bar, .nd2-chart.clr-theme-grey .ct-series-q .ct-line, .nd2-chart.clr-theme-grey .ct-series-q .ct-point, .nd2-chart.clr-theme-grey .ct-series-q .ct-slice-donut {	stroke: #FF9800; } .nd2-chart.clr-theme-grey .ct-series-q .ct-area, .nd2-chart.clr-theme-grey .ct-series-q .ct-slice-pie { fill: #FF9800; }  .nd2-chart.clr-theme-grey .ct-series-r .ct-bar, .nd2-chart.clr-theme-grey .ct-series-r .ct-line, .nd2-chart.clr-theme-grey .ct-series-r .ct-point, .nd2-chart.clr-theme-grey .ct-series-r .ct-slice-donut {	stroke: #FF5722; } .nd2-chart.clr-theme-grey .ct-series-r .ct-area, .nd2-chart.clr-theme-grey .ct-series-r .ct-slice-pie { fill: #FF5722; }


/* Chart-Color-Theme: blue-grey */
.nd2-chart.clr-theme-blue-grey .ct-series-a .ct-bar, .nd2-chart.clr-theme-blue-grey .ct-series-a .ct-line, .nd2-chart.clr-theme-blue-grey .ct-series-a .ct-point, .nd2-chart.clr-theme-blue-grey .ct-series-a .ct-slice-donut {	stroke: #607D8B; } .nd2-chart.clr-theme-blue-grey .ct-series-a .ct-area, .nd2-chart.clr-theme-blue-grey .ct-series-a .ct-slice-pie { fill: #607D8B; }  .nd2-chart.clr-theme-blue-grey .ct-series-b .ct-bar, .nd2-chart.clr-theme-blue-grey .ct-series-b .ct-line, .nd2-chart.clr-theme-blue-grey .ct-series-b .ct-point, .nd2-chart.clr-theme-blue-grey .ct-series-b .ct-slice-donut {	stroke: #F44336; } .nd2-chart.clr-theme-blue-grey .ct-series-b .ct-area, .nd2-chart.clr-theme-blue-grey .ct-series-b .ct-slice-pie { fill: #F44336; }  .nd2-chart.clr-theme-blue-grey .ct-series-c .ct-bar, .nd2-chart.clr-theme-blue-grey .ct-series-c .ct-line, .nd2-chart.clr-theme-blue-grey .ct-series-c .ct-point, .nd2-chart.clr-theme-blue-grey .ct-series-c .ct-slice-donut {	stroke: #E91E63; } .nd2-chart.clr-theme-blue-grey .ct-series-c .ct-area, .nd2-chart.clr-theme-blue-grey .ct-series-c .ct-slice-pie { fill: #E91E63; }  .nd2-chart.clr-theme-blue-grey .ct-series-d .ct-bar, .nd2-chart.clr-theme-blue-grey .ct-series-d .ct-line, .nd2-chart.clr-theme-blue-grey .ct-series-d .ct-point, .nd2-chart.clr-theme-blue-grey .ct-series-d .ct-slice-donut {	stroke: #9C27B0; } .nd2-chart.clr-theme-blue-grey .ct-series-d .ct-area, .nd2-chart.clr-theme-blue-grey .ct-series-d .ct-slice-pie { fill: #9C27B0; }  .nd2-chart.clr-theme-blue-grey .ct-series-e .ct-bar, .nd2-chart.clr-theme-blue-grey .ct-series-e .ct-line, .nd2-chart.clr-theme-blue-grey .ct-series-e .ct-point, .nd2-chart.clr-theme-blue-grey .ct-series-e .ct-slice-donut {	stroke: #673AB7; } .nd2-chart.clr-theme-blue-grey .ct-series-e .ct-area, .nd2-chart.clr-theme-blue-grey .ct-series-e .ct-slice-pie { fill: #673AB7; }  .nd2-chart.clr-theme-blue-grey .ct-series-f .ct-bar, .nd2-chart.clr-theme-blue-grey .ct-series-f .ct-line, .nd2-chart.clr-theme-blue-grey .ct-series-f .ct-point, .nd2-chart.clr-theme-blue-grey .ct-series-f .ct-slice-donut {	stroke: #3F51B5; } .nd2-chart.clr-theme-blue-grey .ct-series-f .ct-area, .nd2-chart.clr-theme-blue-grey .ct-series-f .ct-slice-pie { fill: #3F51B5; }  .nd2-chart.clr-theme-blue-grey .ct-series-g .ct-bar, .nd2-chart.clr-theme-blue-grey .ct-series-g .ct-line, .nd2-chart.clr-theme-blue-grey .ct-series-g .ct-point, .nd2-chart.clr-theme-blue-grey .ct-series-g .ct-slice-donut {	stroke: #2196F3; } .nd2-chart.clr-theme-blue-grey .ct-series-g .ct-area, .nd2-chart.clr-theme-blue-grey .ct-series-g .ct-slice-pie { fill: #2196F3; }  .nd2-chart.clr-theme-blue-grey .ct-series-h .ct-bar, .nd2-chart.clr-theme-blue-grey .ct-series-h .ct-line, .nd2-chart.clr-theme-blue-grey .ct-series-h .ct-point, .nd2-chart.clr-theme-blue-grey .ct-series-h .ct-slice-donut {	stroke: #03A9F4; } .nd2-chart.clr-theme-blue-grey .ct-series-h .ct-area, .nd2-chart.clr-theme-blue-grey .ct-series-h .ct-slice-pie { fill: #03A9F4; }  .nd2-chart.clr-theme-blue-grey .ct-series-i .ct-bar, .nd2-chart.clr-theme-blue-grey .ct-series-i .ct-line, .nd2-chart.clr-theme-blue-grey .ct-series-i .ct-point, .nd2-chart.clr-theme-blue-grey .ct-series-i .ct-slice-donut {	stroke: #00BCD4; } .nd2-chart.clr-theme-blue-grey .ct-series-i .ct-area, .nd2-chart.clr-theme-blue-grey .ct-series-i .ct-slice-pie { fill: #00BCD4; }  .nd2-chart.clr-theme-blue-grey .ct-series-j .ct-bar, .nd2-chart.clr-theme-blue-grey .ct-series-j .ct-line, .nd2-chart.clr-theme-blue-grey .ct-series-j .ct-point, .nd2-chart.clr-theme-blue-grey .ct-series-j .ct-slice-donut {	stroke: #009688; } .nd2-chart.clr-theme-blue-grey .ct-series-j .ct-area, .nd2-chart.clr-theme-blue-grey .ct-series-j .ct-slice-pie { fill: #009688; }  .nd2-chart.clr-theme-blue-grey .ct-series-k .ct-bar, .nd2-chart.clr-theme-blue-grey .ct-series-k .ct-line, .nd2-chart.clr-theme-blue-grey .ct-series-k .ct-point, .nd2-chart.clr-theme-blue-grey .ct-series-k .ct-slice-donut {	stroke: #4CAF50; } .nd2-chart.clr-theme-blue-grey .ct-series-k .ct-area, .nd2-chart.clr-theme-blue-grey .ct-series-k .ct-slice-pie { fill: #4CAF50; }  .nd2-chart.clr-theme-blue-grey .ct-series-l .ct-bar, .nd2-chart.clr-theme-blue-grey .ct-series-l .ct-line, .nd2-chart.clr-theme-blue-grey .ct-series-l .ct-point, .nd2-chart.clr-theme-blue-grey .ct-series-l .ct-slice-donut {	stroke: #8BC34A; } .nd2-chart.clr-theme-blue-grey .ct-series-l .ct-area, .nd2-chart.clr-theme-blue-grey .ct-series-l .ct-slice-pie { fill: #8BC34A; }  .nd2-chart.clr-theme-blue-grey .ct-series-m .ct-bar, .nd2-chart.clr-theme-blue-grey .ct-series-m .ct-line, .nd2-chart.clr-theme-blue-grey .ct-series-m .ct-point, .nd2-chart.clr-theme-blue-grey .ct-series-m .ct-slice-donut {	stroke: #CDDC39; } .nd2-chart.clr-theme-blue-grey .ct-series-m .ct-area, .nd2-chart.clr-theme-blue-grey .ct-series-m .ct-slice-pie { fill: #CDDC39; }  .nd2-chart.clr-theme-blue-grey .ct-series-n .ct-bar, .nd2-chart.clr-theme-blue-grey .ct-series-n .ct-line, .nd2-chart.clr-theme-blue-grey .ct-series-n .ct-point, .nd2-chart.clr-theme-blue-grey .ct-series-n .ct-slice-donut {	stroke: #FFEB3B; } .nd2-chart.clr-theme-blue-grey .ct-series-n .ct-area, .nd2-chart.clr-theme-blue-grey .ct-series-n .ct-slice-pie { fill: #FFEB3B; }  .nd2-chart.clr-theme-blue-grey .ct-series-o .ct-bar, .nd2-chart.clr-theme-blue-grey .ct-series-o .ct-line, .nd2-chart.clr-theme-blue-grey .ct-series-o .ct-point, .nd2-chart.clr-theme-blue-grey .ct-series-o .ct-slice-donut {	stroke: #FFC107; } .nd2-chart.clr-theme-blue-grey .ct-series-o .ct-area, .nd2-chart.clr-theme-blue-grey .ct-series-o .ct-slice-pie { fill: #FFC107; }  .nd2-chart.clr-theme-blue-grey .ct-series-p .ct-bar, .nd2-chart.clr-theme-blue-grey .ct-series-p .ct-line, .nd2-chart.clr-theme-blue-grey .ct-series-p .ct-point, .nd2-chart.clr-theme-blue-grey .ct-series-p .ct-slice-donut {	stroke: #FF9800; } .nd2-chart.clr-theme-blue-grey .ct-series-p .ct-area, .nd2-chart.clr-theme-blue-grey .ct-series-p .ct-slice-pie { fill: #FF9800; }  .nd2-chart.clr-theme-blue-grey .ct-series-q .ct-bar, .nd2-chart.clr-theme-blue-grey .ct-series-q .ct-line, .nd2-chart.clr-theme-blue-grey .ct-series-q .ct-point, .nd2-chart.clr-theme-blue-grey .ct-series-q .ct-slice-donut {	stroke: #FF5722; } .nd2-chart.clr-theme-blue-grey .ct-series-q .ct-area, .nd2-chart.clr-theme-blue-grey .ct-series-q .ct-slice-pie { fill: #FF5722; }  .nd2-chart.clr-theme-blue-grey .ct-series-r .ct-bar, .nd2-chart.clr-theme-blue-grey .ct-series-r .ct-line, .nd2-chart.clr-theme-blue-grey .ct-series-r .ct-point, .nd2-chart.clr-theme-blue-grey .ct-series-r .ct-slice-donut {	stroke: #795548; } .nd2-chart.clr-theme-blue-grey .ct-series-r .ct-area, .nd2-chart.clr-theme-blue-grey .ct-series-r .ct-slice-pie { fill: #795548; }


/*
 * Overlay
 */

.ui-popup-screen {
	background-color: rgba(0,0,0,0.5);
}

/*
 * Icons
 */

/*.ui-icon-action:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23575757%3B%22%20d%3D%22M9%2C5v3l5-4L9%2C0v3c0%2C0-5%2C0-5%2C7C6%2C5%2C9%2C5%2C9%2C5z%20M11%2C12H2V5h1l2-2H0v11h13V7l-2%2C2V12z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-alert:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23575757%3B%22%20d%3D%22M7%2C0L0%2C12h14L7%2C0z%20M7%2C11c-0.553%2C0-1-0.447-1-1s0.447-1%2C1-1c0.553%2C0%2C1%2C0.447%2C1%2C1S7.553%2C11%2C7%2C11z%20M7%2C8%20C6.447%2C8%2C6%2C7.553%2C6%2C7V5c0-0.553%2C0.447-1%2C1-1c0.553%2C0%2C1%2C0.447%2C1%2C1v2C8%2C7.553%2C7.553%2C8%2C7%2C8z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-arrow-d-l:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%2214%2C3%2011%2C0%203.5%2C7.5%200%2C4%200%2C14%2010%2C14%206.5%2C10.5%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-arrow-d-r:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%2210.5%2C7.5%203%2C0%200%2C3%207.5%2C10.5%204%2C14%2014%2C14%2014%2C4%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-arrow-d:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%229%2C7%209%2C0%205%2C0%205%2C7%200%2C7%207%2C14%2014%2C7%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-arrow-l:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%227%2C5%207%2C0%200%2C7%207%2C14%207%2C9%2014%2C9%2014%2C5%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-arrow-r:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%2214%2C7%207%2C0%207%2C5%200%2C5%200%2C9%207%2C9%207%2C14%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-arrow-u-l:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%2214%2C11%206.5%2C3.5%2010%2C0%200%2C0%200%2C10%203.5%2C6.5%2011%2C14%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-arrow-u-r:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%2214%2C0%204%2C0%207.5%2C3.5%200%2C11%203%2C14%2010.5%2C6.5%2014%2C10%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-arrow-u:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%227%2C0%200%2C7%205%2C7%205%2C14%209%2C14%209%2C7%2014%2C7%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-audio:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214.018px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014.018%2014%22%20style%3D%22enable-background%3Anew%200%200%2014.018%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M1%2C4C0.447%2C4%2C0%2C4.447%2C0%2C5v4c0%2C0.553%2C0.447%2C1%2C1%2C1h1l4%2C4V0L2%2C4H1z%20M10.346%2C7c0-1.699-1.042-3.154-2.546-3.867L6.982%2C4.68%20C7.885%2C5.107%2C8.51%2C5.98%2C8.51%2C7S7.885%2C8.893%2C6.982%2C9.32L7.8%2C10.867C9.304%2C10.154%2C10.346%2C8.699%2C10.346%2C7z%20M9.447%2C0.017L8.618%2C1.586%20C10.723%2C2.584%2C12.182%2C4.621%2C12.182%2C7s-1.459%2C4.416-3.563%2C5.414l0.829%2C1.569c2.707-1.283%2C4.57-3.925%2C4.57-6.983%20S12.154%2C1.3%2C9.447%2C0.017z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-back:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23575757%3B%22%20d%3D%22M5%2C3V0L1%2C4l4%2C4V5c0%2C0%2C6%2C0%2C6%2C3s-5%2C4-5%2C4v2c0%2C0%2C7-1%2C7-6C13%2C4%2C8%2C3%2C5%2C3z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-bars:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23575757%3B%22%20d%3D%22M1%2C4h12c0.553%2C0%2C1-0.447%2C1-1s-0.447-1-1-1H1C0.447%2C2%2C0%2C2.447%2C0%2C3S0.447%2C4%2C1%2C4z%20M13%2C6H1%20C0.447%2C6%2C0%2C6.447%2C0%2C7c0%2C0.553%2C0.447%2C1%2C1%2C1h12c0.553%2C0%2C1-0.447%2C1-1C14%2C6.447%2C13.553%2C6%2C13%2C6z%20M13%2C10H1c-0.553%2C0-1%2C0.447-1%2C1%20s0.447%2C1%2C1%2C1h12c0.553%2C0%2C1-0.447%2C1-1S13.553%2C10%2C13%2C10z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-bullets:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23575757%3B%22%20d%3D%22M5%2C4h8c0.553%2C0%2C1-0.447%2C1-1s-0.447-1-1-1H5C4.447%2C2%2C4%2C2.447%2C4%2C3S4.447%2C4%2C5%2C4z%20M13%2C6H5%20C4.447%2C6%2C4%2C6.447%2C4%2C7c0%2C0.553%2C0.447%2C1%2C1%2C1h8c0.553%2C0%2C1-0.447%2C1-1C14%2C6.447%2C13.553%2C6%2C13%2C6z%20M13%2C10H5c-0.553%2C0-1%2C0.447-1%2C1%20s0.447%2C1%2C1%2C1h8c0.553%2C0%2C1-0.447%2C1-1S13.553%2C10%2C13%2C10z%20M1%2C2C0.447%2C2%2C0%2C2.447%2C0%2C3s0.447%2C1%2C1%2C1s1-0.447%2C1-1S1.553%2C2%2C1%2C2z%20M1%2C6%20C0.447%2C6%2C0%2C6.447%2C0%2C7c0%2C0.553%2C0.447%2C1%2C1%2C1s1-0.447%2C1-1C2%2C6.447%2C1.553%2C6%2C1%2C6z%20M1%2C10c-0.553%2C0-1%2C0.447-1%2C1s0.447%2C1%2C1%2C1s1-0.447%2C1-1%20S1.553%2C10%2C1%2C10z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-calendar:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M0%2C8h2V6H0V8z%20M3%2C8h2V6H3V8z%20M6%2C8h2V6H6V8z%20M9%2C8h2V6H9V8z%20M12%2C8h2V6h-2V8z%20M0%2C11h2V9H0V11z%20M3%2C11h2V9H3V11z%20M6%2C11h2V9H6V11z%20%20M9%2C11h2V9H9V11z%20M12%2C11h2V9h-2V11z%20M0%2C14h2v-2H0V14z%20M3%2C14h2v-2H3V14z%20M6%2C14h2v-2H6V14z%20M9%2C14h2v-2H9V14z%20M12%2C1%20c0-0.553-0.447-1-1-1s-1%2C0.447-1%2C1H4c0-0.553-0.447-1-1-1S2%2C0.447%2C2%2C1H0v4h14V1H12z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-camera:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23575757%3B%22%20d%3D%22M12%2C2.5H9.908c-0.206-0.581-0.756-1-1.408-1h-3c-0.652%2C0-1.202%2C0.419-1.408%2C1H2c-1.104%2C0-2%2C0.896-2%2C2%20v6c0%2C1.104%2C0.896%2C2%2C2%2C2h10c1.104%2C0%2C2-0.896%2C2-2v-6C14%2C3.396%2C13.104%2C2.5%2C12%2C2.5z%20M7%2C10.5c-1.657%2C0-3-1.344-3-3c0-1.657%2C1.343-3%2C3-3%20s3%2C1.343%2C3%2C3C10%2C9.156%2C8.657%2C10.5%2C7%2C10.5z%20M7%2C5.5c-1.104%2C0-2%2C0.896-2%2C2c0%2C1.104%2C0.896%2C2%2C2%2C2c1.104%2C0%2C2-0.896%2C2-2%20C9%2C6.396%2C8.104%2C5.5%2C7%2C5.5z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-carat-d:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20style%3D%22fill%3A%23575757%3B%22%20points%3D%2211.949%2C3.404%207%2C8.354%202.05%2C3.404%20-0.071%2C5.525%207%2C12.596%2014.07%2C5.525%20%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-carat-l:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20style%3D%22fill%3A%23575757%3B%22%20points%3D%2210.596%2C11.949%205.646%2C7%2010.596%2C2.05%208.475%2C-0.071%201.404%2C7%208.475%2C14.07%20%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-carat-r:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20style%3D%22fill%3A%23575757%3B%22%20points%3D%223.404%2C2.051%208.354%2C7%203.404%2C11.95%205.525%2C14.07%2012.596%2C7%205.525%2C-0.071%20%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-carat-u:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20style%3D%22fill%3A%23575757%3B%22%20points%3D%222.051%2C10.596%207%2C5.646%2011.95%2C10.596%2014.07%2C8.475%207%2C1.404%20-0.071%2C8.475%20%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-check:after,

html .ui-btn.ui-checkbox-on.ui-checkbox-on:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20style%3D%22fill%3A%23575757%3B%22%20points%3D%2214%2C4%2011%2C1%205.003%2C6.997%203%2C5%200%2C8%204.966%2C13%204.983%2C12.982%205%2C13%20%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-clock:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M7%2C0C3.134%2C0%2C0%2C3.134%2C0%2C7s3.134%2C7%2C7%2C7s7-3.134%2C7-7S10.866%2C0%2C7%2C0z%20M7%2C12c-2.762%2C0-5-2.238-5-5s2.238-5%2C5-5s5%2C2.238%2C5%2C5%20S9.762%2C12%2C7%2C12z%20M9%2C6H8V4c0-0.553-0.447-1-1-1S6%2C3.447%2C6%2C4v3c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1S9.553%2C6%2C9%2C6z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-cloud:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23575757%3B%22%20d%3D%22M14%2C9.5c0-0.793-0.465-1.473-1.134-1.795C12.949%2C7.484%2C13%2C7.249%2C13%2C7c0-1.104-0.896-2-2-2%20c-0.158%2C0-0.311%2C0.023-0.457%2C0.058C9.816%2C3.549%2C8.286%2C2.5%2C6.5%2C2.5c-2.33%2C0-4.224%2C1.777-4.454%2C4.046C0.883%2C6.76%2C0%2C7.773%2C0%2C9%20c0%2C1.381%2C1.119%2C2.5%2C2.5%2C2.5h10v-0.07C13.361%2C11.206%2C14%2C10.432%2C14%2C9.5z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-comment:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M12%2C0H2C0.896%2C0%2C0%2C0.896%2C0%2C2v7c0%2C1.104%2C0.896%2C2%2C2%2C2h1v3l3-3h6c1.104%2C0%2C2-0.896%2C2-2V2C14%2C0.896%2C13.104%2C0%2C12%2C0z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-delete:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%2214%2C3%2011%2C0%207%2C4%203%2C0%200%2C3%204%2C7%200%2C11%203%2C14%207%2C10%2011%2C14%2014%2C11%2010%2C7%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-edit:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M1%2C10l-1%2C4l4-1l7-7L8%2C3L1%2C10z%20M11%2C0L9%2C2l3%2C3l2-2L11%2C0z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-eye:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23575757%3B%22%20d%3D%22M7%2C2C3%2C2%2C0%2C7%2C0%2C7s3%2C5%2C7%2C5s7-5%2C7-5S11%2C2%2C7%2C2z%20M7%2C10c-1.657%2C0-3-1.344-3-3c0-1.657%2C1.343-3%2C3-3%20s3%2C1.343%2C3%2C3C10%2C8.656%2C8.657%2C10%2C7%2C10z%20M7%2C6C6.448%2C6%2C6%2C6.447%2C6%2C7c0%2C0.553%2C0.448%2C1%2C1%2C1s1-0.447%2C1-1C8%2C6.447%2C7.552%2C6%2C7%2C6z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-forbidden:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M12.601%2C11.187C13.476%2C10.018%2C14%2C8.572%2C14%2C7c0-3.866-3.134-7-7-7C5.428%2C0%2C3.982%2C0.524%2C2.813%2C1.399L2.757%2C1.343L2.053%2C2.048%20L2.048%2C2.053L1.343%2C2.758l0.056%2C0.056C0.524%2C3.982%2C0%2C5.428%2C0%2C7c0%2C3.866%2C3.134%2C7%2C7%2C7c1.572%2C0%2C3.018-0.524%2C4.187-1.399l0.056%2C0.057%20l0.705-0.705l0.005-0.005l0.705-0.705L12.601%2C11.187z%20M7%2C2c2.761%2C0%2C5%2C2.238%2C5%2C5c0%2C1.019-0.308%2C1.964-0.832%2C2.754L4.246%2C2.832%20C5.036%2C2.308%2C5.981%2C2%2C7%2C2z%20M7%2C12c-2.761%2C0-5-2.238-5-5c0-1.019%2C0.308-1.964%2C0.832-2.754l6.922%2C6.922C8.964%2C11.692%2C8.019%2C12%2C7%2C12z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-forward:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23575757%3B%22%20d%3D%22M13%2C4L9%2C0v3C6%2C3%2C1%2C4%2C1%2C8c0%2C5%2C7%2C6%2C7%2C6v-2c0%2C0-5-1-5-4s6-3%2C6-3v3L13%2C4z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-gear:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M13.621%2C5.904l-1.036-0.259c-0.168-0.042-0.303-0.168-0.355-0.332c-0.092-0.284-0.205-0.559-0.339-0.82%20c-0.079-0.153-0.073-0.337%2C0.017-0.486l0.549-0.915c0.118-0.196%2C0.088-0.448-0.075-0.61l-0.862-0.863%20c-0.162-0.163-0.414-0.193-0.611-0.075l-0.916%2C0.55C9.844%2C2.182%2C9.659%2C2.188%2C9.506%2C2.109C9.244%2C1.975%2C8.97%2C1.861%2C8.686%2C1.77%20c-0.165-0.052-0.29-0.187-0.332-0.354L8.095%2C0.379C8.039%2C0.156%2C7.839%2C0%2C7.609%2C0H6.391c-0.229%2C0-0.43%2C0.156-0.485%2C0.379L5.646%2C1.415%20C5.604%2C1.582%2C5.479%2C1.718%2C5.313%2C1.77c-0.284%2C0.092-0.559%2C0.206-0.82%2C0.34C4.339%2C2.188%2C4.155%2C2.182%2C4.007%2C2.093L3.092%2C1.544%20c-0.196-0.118-0.448-0.087-0.61%2C0.075L1.619%2C2.481C1.457%2C2.644%2C1.426%2C2.896%2C1.544%2C3.093l0.549%2C0.914%20c0.089%2C0.148%2C0.095%2C0.332%2C0.017%2C0.486C1.975%2C4.755%2C1.861%2C5.029%2C1.77%2C5.314c-0.053%2C0.164-0.188%2C0.29-0.354%2C0.332L0.379%2C5.905%20C0.156%2C5.961%2C0%2C6.161%2C0%2C6.391v1.219c0%2C0.229%2C0.156%2C0.43%2C0.379%2C0.485l1.036%2C0.26C1.582%2C8.396%2C1.717%2C8.521%2C1.77%2C8.687%20c0.092%2C0.284%2C0.205%2C0.559%2C0.34%2C0.82C2.188%2C9.66%2C2.182%2C9.844%2C2.093%2C9.993l-0.549%2C0.915c-0.118%2C0.195-0.087%2C0.448%2C0.075%2C0.61%20l0.862%2C0.862c0.162%2C0.163%2C0.414%2C0.193%2C0.61%2C0.075l0.915-0.549c0.148-0.089%2C0.332-0.095%2C0.486-0.017%20c0.262%2C0.135%2C0.536%2C0.248%2C0.82%2C0.34c0.165%2C0.053%2C0.291%2C0.187%2C0.332%2C0.354l0.259%2C1.036C5.96%2C13.844%2C6.16%2C14%2C6.39%2C14h1.22%20c0.229%2C0%2C0.43-0.156%2C0.485-0.379l0.259-1.036c0.042-0.167%2C0.168-0.302%2C0.333-0.354c0.284-0.092%2C0.559-0.205%2C0.82-0.34%20c0.154-0.078%2C0.338-0.072%2C0.486%2C0.017l0.914%2C0.549c0.197%2C0.118%2C0.449%2C0.088%2C0.611-0.074l0.862-0.863%20c0.163-0.162%2C0.193-0.415%2C0.075-0.611l-0.549-0.915c-0.089-0.148-0.096-0.332-0.017-0.485c0.134-0.263%2C0.248-0.536%2C0.339-0.82%20c0.053-0.165%2C0.188-0.291%2C0.355-0.333l1.036-0.259C13.844%2C8.039%2C14%2C7.839%2C14%2C7.609V6.39C14%2C6.16%2C13.844%2C5.96%2C13.621%2C5.904z%20M7%2C10%20c-1.657%2C0-3-1.343-3-3s1.343-3%2C3-3s3%2C1.343%2C3%2C3S8.657%2C10%2C7%2C10z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-grid:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M3%2C0H1C0.447%2C0%2C0%2C0.447%2C0%2C1v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1V1C4%2C0.447%2C3.553%2C0%2C3%2C0z%20M8%2C0H6%20C5.447%2C0%2C5%2C0.447%2C5%2C1v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1V1C9%2C0.447%2C8.553%2C0%2C8%2C0z%20M13%2C0h-2c-0.553%2C0-1%2C0.447-1%2C1v2%20c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1V1C14%2C0.447%2C13.553%2C0%2C13%2C0z%20M3%2C5H1C0.447%2C5%2C0%2C5.447%2C0%2C6v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2%20c0.553%2C0%2C1-0.447%2C1-1V6C4%2C5.447%2C3.553%2C5%2C3%2C5z%20M8%2C5H6C5.447%2C5%2C5%2C5.447%2C5%2C6v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1V6%20C9%2C5.447%2C8.553%2C5%2C8%2C5z%20M13%2C5h-2c-0.553%2C0-1%2C0.447-1%2C1v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1V6C14%2C5.447%2C13.553%2C5%2C13%2C5z%20M3%2C10%20H1c-0.553%2C0-1%2C0.447-1%2C1v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1v-2C4%2C10.447%2C3.553%2C10%2C3%2C10z%20M8%2C10H6c-0.553%2C0-1%2C0.447-1%2C1v2%20c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1v-2C9%2C10.447%2C8.553%2C10%2C8%2C10z%20M13%2C10h-2c-0.553%2C0-1%2C0.447-1%2C1v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2%20c0.553%2C0%2C1-0.447%2C1-1v-2C14%2C10.447%2C13.553%2C10%2C13%2C10z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-heart:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23575757%3B%22%20d%3D%22M7%2C1.872c-2-3-7-2-7%2C2c0%2C3%2C4%2C7%2C4%2C7s2.417%2C2.479%2C3%2C3c0.583-0.521%2C3-3%2C3-3s4-4%2C4-7%20C14-0.128%2C9-1.128%2C7%2C1.872z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-home:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23FFF%22%20points%3D%227%2C0%200%2C7%202%2C7%202%2C14%205%2C14%205%2C9%209%2C9%209%2C14%2012%2C14%2012%2C7%2014%2C7%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-info:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23FFF%22%20d%3D%22M7%2C0C3.134%2C0%2C0%2C3.134%2C0%2C7s3.134%2C7%2C7%2C7s7-3.134%2C7-7S10.866%2C0%2C7%2C0z%20M7%2C2c0.552%2C0%2C1%2C0.447%2C1%2C1S7.552%2C4%2C7%2C4S6%2C3.553%2C6%2C3%20S6.448%2C2%2C7%2C2z%20M9%2C11H5v-1h1V6H5V5h3v5h1V11z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-location:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23575757%3B%22%20d%3D%22M7%2C0C4.791%2C0%2C3%2C1.791%2C3%2C4c0%2C2%2C4%2C10%2C4%2C10s4-8%2C4-10C11%2C1.791%2C9.209%2C0%2C7%2C0z%20M7%2C6C5.896%2C6%2C5%2C5.104%2C5%2C4%20s0.896-2%2C2-2c1.104%2C0%2C2%2C0.896%2C2%2C2S8.104%2C6%2C7%2C6z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-lock:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23575757%3B%22%20d%3D%22M12%2C6V5c0-2.762-2.238-5-5-5C4.239%2C0%2C2%2C2.238%2C2%2C5v1H1v8h12V6H12z%20M7.5%2C9.848V12h-1V9.848%20C6.207%2C9.673%2C6%2C9.366%2C6%2C9c0-0.553%2C0.448-1%2C1-1s1%2C0.447%2C1%2C1C8%2C9.366%2C7.793%2C9.673%2C7.5%2C9.848z%20M10%2C6H4V5c0-1.657%2C1.343-3%2C3-3%20s3%2C1.343%2C3%2C3V6z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-mail:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23575757%3B%22%20d%3D%22M0%2C3.75V12h14V3.75L7%2C9L0%2C3.75z%20M14%2C2H0l7%2C5L14%2C2z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-minus:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Crect%20y%3D%225%22%20style%3D%22fill%3A%23575757%3B%22%20width%3D%2214%22%20height%3D%224%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-navigation:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20style%3D%22fill%3A%23575757%3B%22%20points%3D%2213%2C1%200%2C6%207%2C7%208%2C14%20%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-phone:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%22-0.01%200.008%2014%2014%22%20style%3D%22enable-background%3Anew%20-0.01%200.008%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23575757%3B%22%20d%3D%22M6.939%2C9.189C6.165%2C8.557%2C5.271%2C7.705%2C4.497%2C6.744C3.953%2C6.071%2C3.473%2C5.363%2C3.969%2C4.866l-3.482-3.48%20C-0.021%2C2.02-1.146%2C5.04%2C3.675%2C9.984c5.08%2C5.211%2C8.356%2C4.097%2C8.92%2C3.511l-3.396-3.4C8.725%2C10.568%2C8.113%2C10.146%2C6.939%2C9.189z%20%20M13.82%2C11.519v-0.004c0%2C0-2.648-2.646-2.649-2.647c-0.21-0.211-0.546-0.205-0.754%2C0.002L9.455%2C9.831l3.403%2C3.407%20c0%2C0%2C0.962-0.96%2C0.961-0.961l0.002-0.001C14.043%2C12.056%2C14.021%2C11.721%2C13.82%2C11.519z%20M5.192%2C3.644V3.642%20c0.222-0.222%2C0.2-0.557%2C0-0.758V2.881c0%2C0-2.726-2.725-2.727-2.726C2.255-0.055%2C1.92-0.05%2C1.712%2C0.156L0.751%2C1.121l3.479%2C3.482%20C4.231%2C4.604%2C5.192%2C3.645%2C5.192%2C3.644z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-plus:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20fill%3D%22%23575757%22%20points%3D%2214%2C5%209%2C5%209%2C0%205%2C0%205%2C5%200%2C5%200%2C9%205%2C9%205%2C14%209%2C14%209%2C9%2014%2C9%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-power:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23575757%3B%22%20d%3D%22M11.243%2C2.408c-0.392-0.401-1.024-0.401-1.415%2C0c-0.391%2C0.401-0.391%2C1.054%2C0%2C1.455%20C10.584%2C4.642%2C11%2C5.675%2C11%2C6.773s-0.416%2C2.133-1.172%2C2.91c-1.512%2C1.558-4.145%2C1.558-5.656%2C0C3.416%2C8.904%2C3%2C7.872%2C3%2C6.773%20C3%2C5.673%2C3.416%2C4.64%2C4.172%2C3.863c0.39-0.401%2C0.39-1.054%2C0-1.455c-0.391-0.401-1.024-0.401-1.415%2C0C1.624%2C3.574%2C1%2C5.125%2C1%2C6.773%20c0%2C1.647%2C0.624%2C3.199%2C1.757%2C4.365c1.134%2C1.166%2C2.64%2C1.809%2C4.243%2C1.809c1.604%2C0%2C3.109-0.645%2C4.243-1.811%20C12.376%2C9.975%2C13%2C8.423%2C13%2C6.773C13%2C5.125%2C12.376%2C3.574%2C11.243%2C2.408z%20M7%2C8.053c0.553%2C0%2C1-0.445%2C1-1v-6c0-0.553-0.447-1-1-1%20c-0.553%2C0-1%2C0.447-1%2C1v6C6%2C7.604%2C6.447%2C8.053%2C7%2C8.053z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-recycle:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23575757%3B%22%20d%3D%22M3%2C7h1L2%2C4L0%2C7h1c0%2C3.313%2C2.687%2C6%2C6%2C6c0.702%2C0%2C1.374-0.127%2C2-0.35v-2.205C8.41%2C10.789%2C7.732%2C11%2C7%2C11%20C4.791%2C11%2C3%2C9.209%2C3%2C7z%20M13%2C7c0-3.313-2.688-6-6-6C6.298%2C1%2C5.626%2C1.127%2C5%2C1.349v2.206C5.59%2C3.211%2C6.268%2C3%2C7%2C3c2.209%2C0%2C4%2C1.791%2C4%2C4%20h-1l2%2C3l2-3H13z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-refresh:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214.001px%22%20height%3D%2214.002px%22%20viewBox%3D%220%200%2014.001%2014.002%22%20style%3D%22enable-background%3Anew%200%200%2014.001%2014.002%3B%22%20%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23575757%22%20d%3D%22M14.001%2C6.001v-6l-2.06%2C2.06c-0.423-0.424-0.897-0.809-1.44-1.122C7.153-0.994%2C2.872%2C0.153%2C0.939%2C3.501%20c-1.933%2C3.348-0.786%2C7.629%2C2.562%2C9.562c3.348%2C1.933%2C7.629%2C0.785%2C9.562-2.562l-1.732-1c-1.381%2C2.392-4.438%2C3.211-6.83%2C1.83%20s-3.211-4.438-1.83-6.83s4.438-3.211%2C6.83-1.83c0.389%2C0.225%2C0.718%2C0.506%2C1.02%2C0.81l-2.52%2C2.52H14.001z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-search:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23575757%3B%22%20d%3D%22M10.171%2C8.766c0.617-0.888%2C0.979-1.964%2C0.979-3.126c0-3.037-2.463-5.5-5.5-5.5s-5.5%2C2.463-5.5%2C5.5%20s2.463%2C5.5%2C5.5%2C5.5c1.152%2C0%2C2.223-0.355%2C3.104-0.962l3.684%2C3.683l1.414-1.414L10.171%2C8.766z%20M5.649%2C9.14c-1.933%2C0-3.5-1.567-3.5-3.5%20c0-1.933%2C1.567-3.5%2C3.5-3.5c1.933%2C0%2C3.5%2C1.567%2C3.5%2C3.5C9.149%2C7.572%2C7.582%2C9.14%2C5.649%2C9.14z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-shop:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23575757%3B%22%20d%3D%22M10%2C4V3c0-1.657-1.343-3-3-3S4%2C1.343%2C4%2C3v1H1v10h12V4H10z%20M4.5%2C6C4.224%2C6%2C4%2C5.776%2C4%2C5.5%20S4.224%2C5%2C4.5%2C5S5%2C5.224%2C5%2C5.5S4.776%2C6%2C4.5%2C6z%20M5%2C3c0-1.104%2C0.896-2%2C2-2c1.104%2C0%2C2%2C0.896%2C2%2C2v1H5V3z%20M9.5%2C6C9.225%2C6%2C9%2C5.776%2C9%2C5.5%20S9.225%2C5%2C9.5%2C5S10%2C5.224%2C10%2C5.5S9.775%2C6%2C9.5%2C6z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-star:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20style%3D%22fill%3A%23575757%3B%22%20points%3D%2214%2C5%209%2C5%207%2C0%205%2C5%200%2C5%204%2C8%202.625%2C13%207%2C10%2011.375%2C13%2010%2C8%20%22%2F%3E%3C%2Fsvg%3E");
}
.ui-icon-tag:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23575757%22%20d%3D%22M5%2C0H0v5l9%2C9l5-5L5%2C0z%20M3%2C4C2.447%2C4%2C2%2C3.553%2C2%2C3s0.447-1%2C1-1s1%2C0.447%2C1%2C1S3.553%2C4%2C3%2C4z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-user:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20fill%3D%22%23575757%22%20d%3D%22M8.851%2C10.101c-0.18-0.399-0.2-0.763-0.153-1.104C9.383%2C8.49%2C9.738%2C7.621%2C9.891%2C6.465C10.493%2C6.355%2C10.5%2C5.967%2C10.5%2C5.5%20c0-0.437-0.008-0.804-0.502-0.94C9.999%2C4.539%2C10%2C4.521%2C10%2C4.5c0-2.103-1-4-2-4C8%2C0.5%2C7.5%2C0%2C6.5%2C0C5%2C0%2C4%2C1.877%2C4%2C4.5%20c0%2C0.021%2C0.001%2C0.039%2C0.002%2C0.06C3.508%2C4.696%2C3.5%2C5.063%2C3.5%2C5.5c0%2C0.467%2C0.007%2C0.855%2C0.609%2C0.965%20C4.262%2C7.621%2C4.617%2C8.49%2C5.303%2C8.997c0.047%2C0.341%2C0.026%2C0.704-0.153%2C1.104C1.503%2C10.503%2C0%2C12%2C0%2C12v2h14v-2%20C14%2C12%2C12.497%2C10.503%2C8.851%2C10.101z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-icon-video:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%20-2%2014%2014%22%20style%3D%22enable-background%3Anew%200%20-2%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20style%3D%22fill%3A%23575757%3B%22%20d%3D%22M8%2C0H2C0.896%2C0%2C0%2C0.896%2C0%2C2v6c0%2C1.104%2C0.896%2C2%2C2%2C2h6c1.104%2C0%2C2-0.896%2C2-2V5V2C10%2C0.896%2C9.104%2C0%2C8%2C0z%20%20M10%2C5l4%2C4V1L10%2C5z%22%2F%3E%3C%2Fsvg%3E");
}*/

/* Alt icons */
.ui-alt-icon.ui-icon-action:after,
.ui-alt-icon .ui-icon-action:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M9%2C5v3l5-4L9%2C0v3c0%2C0-5%2C0-5%2C7C6%2C5%2C9%2C5%2C9%2C5z%20M11%2C12H2V5h1l2-2H0v11h13V7l-2%2C2V12z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-alert:after,
.ui-alt-icon .ui-icon-alert:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M7%2C0L0%2C12h14L7%2C0z%20M7%2C11c-0.553%2C0-1-0.447-1-1s0.447-1%2C1-1c0.553%2C0%2C1%2C0.447%2C1%2C1S7.553%2C11%2C7%2C11z%20M7%2C8C6.447%2C8%2C6%2C7.553%2C6%2C7V5%20c0-0.553%2C0.447-1%2C1-1c0.553%2C0%2C1%2C0.447%2C1%2C1v2C8%2C7.553%2C7.553%2C8%2C7%2C8z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-arrow-d:after,
.ui-alt-icon .ui-icon-arrow-d:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%229%2C7%209%2C0%205%2C0%205%2C7%200%2C7%207%2C14%2014%2C7%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-arrow-d-l:after,
.ui-alt-icon .ui-icon-arrow-d-l:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2214%2C3%2011%2C0%203.5%2C7.5%200%2C4%200%2C14%2010%2C14%206.5%2C10.5%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-arrow-d-r:after,
.ui-alt-icon .ui-icon-arrow-d-r:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2210.5%2C7.5%203%2C0%200%2C3%207.5%2C10.5%204%2C14%2014%2C14%2014%2C4%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-arrow-l:after,
.ui-alt-icon .ui-icon-arrow-l:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%227%2C5%207%2C0%200%2C7%207%2C14%207%2C9%2014%2C9%2014%2C5%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-arrow-r:after,
.ui-alt-icon .ui-icon-arrow-r:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2214%2C7%207%2C0%207%2C5%200%2C5%200%2C9%207%2C9%207%2C14%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-arrow-u:after,
.ui-alt-icon .ui-icon-arrow-u:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%227%2C0%200%2C7%205%2C7%205%2C14%209%2C14%209%2C7%2014%2C7%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-arrow-u-l:after,
.ui-alt-icon .ui-icon-arrow-u-l:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2214%2C11%206.5%2C3.5%2010%2C0%200%2C0%200%2C10%203.5%2C6.5%2011%2C14%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-arrow-u-r:after,
.ui-alt-icon .ui-icon-arrow-u-r:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2214%2C0%204%2C0%207.5%2C3.5%200%2C11%203%2C14%2010.5%2C6.5%2014%2C10%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-audio:after,
.ui-alt-icon .ui-icon-audio:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214.018px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014.018%2014%22%20style%3D%22enable-background%3Anew%200%200%2014.018%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M1%2C4C0.447%2C4%2C0%2C4.447%2C0%2C5v4c0%2C0.553%2C0.447%2C1%2C1%2C1h1l4%2C4V0L2%2C4H1z%20M10.346%2C7c0-1.699-1.042-3.154-2.546-3.867L6.982%2C4.68%20C7.885%2C5.107%2C8.51%2C5.98%2C8.51%2C7S7.885%2C8.893%2C6.982%2C9.32L7.8%2C10.867C9.304%2C10.154%2C10.346%2C8.699%2C10.346%2C7z%20M9.447%2C0.017L8.618%2C1.586%20C10.723%2C2.584%2C12.182%2C4.621%2C12.182%2C7s-1.459%2C4.416-3.563%2C5.414l0.829%2C1.569c2.707-1.283%2C4.57-3.925%2C4.57-6.983%20S12.154%2C1.3%2C9.447%2C0.017z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-back:after,
.ui-alt-icon .ui-icon-back:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M5%2C3V0L1%2C4l4%2C4V5c0%2C0%2C6%2C0%2C6%2C3s-5%2C4-5%2C4v2c0%2C0%2C7-1%2C7-6C13%2C4%2C8%2C3%2C5%2C3z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-bars:after,
.ui-alt-icon .ui-icon-bars:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M1%2C4h12c0.553%2C0%2C1-0.447%2C1-1s-0.447-1-1-1H1C0.447%2C2%2C0%2C2.447%2C0%2C3S0.447%2C4%2C1%2C4z%20M13%2C6H1C0.447%2C6%2C0%2C6.447%2C0%2C7%20c0%2C0.553%2C0.447%2C1%2C1%2C1h12c0.553%2C0%2C1-0.447%2C1-1C14%2C6.447%2C13.553%2C6%2C13%2C6z%20M13%2C10H1c-0.553%2C0-1%2C0.447-1%2C1s0.447%2C1%2C1%2C1h12%20c0.553%2C0%2C1-0.447%2C1-1S13.553%2C10%2C13%2C10z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-bullets:after,
.ui-alt-icon .ui-icon-bullets:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M5%2C4h8c0.553%2C0%2C1-0.447%2C1-1s-0.447-1-1-1H5C4.447%2C2%2C4%2C2.447%2C4%2C3S4.447%2C4%2C5%2C4z%20M13%2C6H5C4.447%2C6%2C4%2C6.447%2C4%2C7%20c0%2C0.553%2C0.447%2C1%2C1%2C1h8c0.553%2C0%2C1-0.447%2C1-1C14%2C6.447%2C13.553%2C6%2C13%2C6z%20M13%2C10H5c-0.553%2C0-1%2C0.447-1%2C1s0.447%2C1%2C1%2C1h8%20c0.553%2C0%2C1-0.447%2C1-1S13.553%2C10%2C13%2C10z%20M1%2C2C0.447%2C2%2C0%2C2.447%2C0%2C3s0.447%2C1%2C1%2C1s1-0.447%2C1-1S1.553%2C2%2C1%2C2z%20M1%2C6C0.447%2C6%2C0%2C6.447%2C0%2C7%20c0%2C0.553%2C0.447%2C1%2C1%2C1s1-0.447%2C1-1C2%2C6.447%2C1.553%2C6%2C1%2C6z%20M1%2C10c-0.553%2C0-1%2C0.447-1%2C1s0.447%2C1%2C1%2C1s1-0.447%2C1-1S1.553%2C10%2C1%2C10z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-calendar:after,
.ui-alt-icon .ui-icon-calendar:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M0%2C8h2V6H0V8z%20M3%2C8h2V6H3V8z%20M6%2C8h2V6H6V8z%20M9%2C8h2V6H9V8z%20M12%2C8h2V6h-2V8z%20M0%2C11h2V9H0V11z%20M3%2C11h2V9H3V11z%20M6%2C11h2V9H6V11z%20%20M9%2C11h2V9H9V11z%20M12%2C11h2V9h-2V11z%20M0%2C14h2v-2H0V14z%20M3%2C14h2v-2H3V14z%20M6%2C14h2v-2H6V14z%20M9%2C14h2v-2H9V14z%20M12%2C1%20c0-0.553-0.447-1-1-1s-1%2C0.447-1%2C1H4c0-0.553-0.447-1-1-1S2%2C0.447%2C2%2C1H0v4h14V1H12z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-camera:after,
.ui-alt-icon .ui-icon-camera:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M12%2C2.5H9.908c-0.206-0.581-0.756-1-1.408-1h-3c-0.652%2C0-1.202%2C0.419-1.408%2C1H2c-1.104%2C0-2%2C0.896-2%2C2v6c0%2C1.104%2C0.896%2C2%2C2%2C2%20h10c1.104%2C0%2C2-0.896%2C2-2v-6C14%2C3.396%2C13.104%2C2.5%2C12%2C2.5z%20M7%2C10.5c-1.657%2C0-3-1.344-3-3c0-1.657%2C1.343-3%2C3-3s3%2C1.343%2C3%2C3%20C10%2C9.156%2C8.657%2C10.5%2C7%2C10.5z%20M7%2C5.5c-1.104%2C0-2%2C0.896-2%2C2c0%2C1.104%2C0.896%2C2%2C2%2C2c1.104%2C0%2C2-0.896%2C2-2C9%2C6.396%2C8.104%2C5.5%2C7%2C5.5z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-carat-d:after,
.ui-alt-icon .ui-icon-carat-d:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2211.949%2C3.404%207%2C8.354%202.05%2C3.404%20-0.071%2C5.525%207%2C12.596%2014.07%2C5.525%20%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-carat-l:after,
.ui-alt-icon .ui-icon-carat-l:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2210.596%2C11.949%205.646%2C7%2010.596%2C2.05%208.475%2C-0.071%201.404%2C7%208.475%2C14.07%20%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-carat-r:after,
.ui-alt-icon .ui-icon-carat-r:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%223.404%2C2.051%208.354%2C7%203.404%2C11.95%205.525%2C14.07%2012.596%2C7%205.525%2C-0.071%20%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-carat-u:after,
.ui-alt-icon .ui-icon-carat-u:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%222.051%2C10.596%207%2C5.646%2011.95%2C10.596%2014.07%2C8.475%207%2C1.404%20-0.071%2C8.475%20%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-check:after,
.ui-alt-icon .ui-icon-check:after,
html .ui-alt-icon.ui-btn.ui-checkbox-on:after,
html .ui-alt-icon .ui-btn.ui-checkbox-on:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2214%2C4%2011%2C1%205.003%2C6.997%203%2C5%200%2C8%204.966%2C13%204.983%2C12.982%205%2C13%20%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-clock:after,
.ui-alt-icon .ui-icon-clock:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M7%2C0C3.134%2C0%2C0%2C3.134%2C0%2C7s3.134%2C7%2C7%2C7s7-3.134%2C7-7S10.866%2C0%2C7%2C0z%20M7%2C12c-2.762%2C0-5-2.238-5-5s2.238-5%2C5-5s5%2C2.238%2C5%2C5%20S9.762%2C12%2C7%2C12z%20M9%2C6H8V4c0-0.553-0.447-1-1-1S6%2C3.447%2C6%2C4v3c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1S9.553%2C6%2C9%2C6z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-cloud:after,
.ui-alt-icon .ui-icon-cloud:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M14%2C9.5c0-0.793-0.465-1.473-1.134-1.795C12.949%2C7.484%2C13%2C7.249%2C13%2C7c0-1.104-0.896-2-2-2c-0.158%2C0-0.311%2C0.023-0.457%2C0.058%20C9.816%2C3.549%2C8.286%2C2.5%2C6.5%2C2.5c-2.33%2C0-4.224%2C1.777-4.454%2C4.046C0.883%2C6.76%2C0%2C7.773%2C0%2C9c0%2C1.381%2C1.119%2C2.5%2C2.5%2C2.5h10v-0.07%20C13.361%2C11.206%2C14%2C10.432%2C14%2C9.5z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-comment:after,
.ui-alt-icon .ui-icon-comment:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M12%2C0H2C0.896%2C0%2C0%2C0.896%2C0%2C2v7c0%2C1.104%2C0.896%2C2%2C2%2C2h1v3l3-3h6c1.104%2C0%2C2-0.896%2C2-2V2C14%2C0.896%2C13.104%2C0%2C12%2C0z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-delete:after,
.ui-alt-icon .ui-icon-delete:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2214%2C3%2011%2C0%207%2C4%203%2C0%200%2C3%204%2C7%200%2C11%203%2C14%207%2C10%2011%2C14%2014%2C11%2010%2C7%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-edit:after,
.ui-alt-icon .ui-icon-edit:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M1%2C10l-1%2C4l4-1l7-7L8%2C3L1%2C10z%20M11%2C0L9%2C2l3%2C3l2-2L11%2C0z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-eye:after,
.ui-alt-icon .ui-icon-eye:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M7%2C2C3%2C2%2C0%2C7%2C0%2C7s3%2C5%2C7%2C5s7-5%2C7-5S11%2C2%2C7%2C2z%20M7%2C10c-1.657%2C0-3-1.344-3-3c0-1.657%2C1.343-3%2C3-3s3%2C1.343%2C3%2C3%20C10%2C8.656%2C8.657%2C10%2C7%2C10z%20M7%2C6C6.448%2C6%2C6%2C6.447%2C6%2C7c0%2C0.553%2C0.448%2C1%2C1%2C1s1-0.447%2C1-1C8%2C6.447%2C7.552%2C6%2C7%2C6z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-forbidden:after,
.ui-alt-icon .ui-icon-forbidden:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M12.601%2C11.187C13.476%2C10.018%2C14%2C8.572%2C14%2C7c0-3.866-3.134-7-7-7C5.428%2C0%2C3.982%2C0.524%2C2.813%2C1.399L2.757%2C1.343L2.053%2C2.048%20L2.048%2C2.053L1.343%2C2.758l0.056%2C0.056C0.524%2C3.982%2C0%2C5.428%2C0%2C7c0%2C3.866%2C3.134%2C7%2C7%2C7c1.572%2C0%2C3.018-0.524%2C4.187-1.399l0.056%2C0.057%20l0.705-0.705l0.005-0.005l0.705-0.705L12.601%2C11.187z%20M7%2C2c2.761%2C0%2C5%2C2.238%2C5%2C5c0%2C1.019-0.308%2C1.964-0.832%2C2.754L4.246%2C2.832%20C5.036%2C2.308%2C5.981%2C2%2C7%2C2z%20M7%2C12c-2.761%2C0-5-2.238-5-5c0-1.019%2C0.308-1.964%2C0.832-2.754l6.922%2C6.922C8.964%2C11.692%2C8.019%2C12%2C7%2C12z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-forward:after,
.ui-alt-icon .ui-icon-forward:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M13%2C4L9%2C0v3C6%2C3%2C1%2C4%2C1%2C8c0%2C5%2C7%2C6%2C7%2C6v-2c0%2C0-5-1-5-4s6-3%2C6-3v3L13%2C4z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-gear:after,
.ui-alt-icon .ui-icon-gear:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M13.621%2C5.904l-1.036-0.259c-0.168-0.042-0.303-0.168-0.355-0.332c-0.092-0.284-0.205-0.559-0.339-0.82%20c-0.079-0.153-0.073-0.337%2C0.017-0.486l0.549-0.915c0.118-0.196%2C0.088-0.448-0.075-0.61l-0.862-0.863%20c-0.162-0.163-0.414-0.193-0.611-0.075l-0.916%2C0.55C9.844%2C2.182%2C9.659%2C2.188%2C9.506%2C2.109C9.244%2C1.975%2C8.97%2C1.861%2C8.686%2C1.77%20c-0.165-0.052-0.29-0.187-0.332-0.354L8.095%2C0.379C8.039%2C0.156%2C7.839%2C0%2C7.609%2C0H6.391c-0.229%2C0-0.43%2C0.156-0.485%2C0.379L5.646%2C1.415%20C5.604%2C1.582%2C5.479%2C1.718%2C5.313%2C1.77c-0.284%2C0.092-0.559%2C0.206-0.82%2C0.34C4.339%2C2.188%2C4.155%2C2.182%2C4.007%2C2.093L3.092%2C1.544%20c-0.196-0.118-0.448-0.087-0.61%2C0.075L1.619%2C2.481C1.457%2C2.644%2C1.426%2C2.896%2C1.544%2C3.093l0.549%2C0.914%20c0.089%2C0.148%2C0.095%2C0.332%2C0.017%2C0.486C1.975%2C4.755%2C1.861%2C5.029%2C1.77%2C5.314c-0.053%2C0.164-0.188%2C0.29-0.354%2C0.332L0.379%2C5.905%20C0.156%2C5.961%2C0%2C6.161%2C0%2C6.391v1.219c0%2C0.229%2C0.156%2C0.43%2C0.379%2C0.485l1.036%2C0.26C1.582%2C8.396%2C1.717%2C8.521%2C1.77%2C8.687%20c0.092%2C0.284%2C0.205%2C0.559%2C0.34%2C0.82C2.188%2C9.66%2C2.182%2C9.844%2C2.093%2C9.993l-0.549%2C0.915c-0.118%2C0.195-0.087%2C0.448%2C0.075%2C0.61%20l0.862%2C0.862c0.162%2C0.163%2C0.414%2C0.193%2C0.61%2C0.075l0.915-0.549c0.148-0.089%2C0.332-0.095%2C0.486-0.017%20c0.262%2C0.135%2C0.536%2C0.248%2C0.82%2C0.34c0.165%2C0.053%2C0.291%2C0.187%2C0.332%2C0.354l0.259%2C1.036C5.96%2C13.844%2C6.16%2C14%2C6.39%2C14h1.22%20c0.229%2C0%2C0.43-0.156%2C0.485-0.379l0.259-1.036c0.042-0.167%2C0.168-0.302%2C0.333-0.354c0.284-0.092%2C0.559-0.205%2C0.82-0.34%20c0.154-0.078%2C0.338-0.072%2C0.486%2C0.017l0.914%2C0.549c0.197%2C0.118%2C0.449%2C0.088%2C0.611-0.074l0.862-0.863%20c0.163-0.162%2C0.193-0.415%2C0.075-0.611l-0.549-0.915c-0.089-0.148-0.096-0.332-0.017-0.485c0.134-0.263%2C0.248-0.536%2C0.339-0.82%20c0.053-0.165%2C0.188-0.291%2C0.355-0.333l1.036-0.259C13.844%2C8.039%2C14%2C7.839%2C14%2C7.609V6.39C14%2C6.16%2C13.844%2C5.96%2C13.621%2C5.904z%20M7%2C10%20c-1.657%2C0-3-1.343-3-3s1.343-3%2C3-3s3%2C1.343%2C3%2C3S8.657%2C10%2C7%2C10z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-grid:after,
.ui-alt-icon .ui-icon-grid:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M3%2C0H1C0.447%2C0%2C0%2C0.447%2C0%2C1v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1V1C4%2C0.447%2C3.553%2C0%2C3%2C0z%20M8%2C0H6%20C5.447%2C0%2C5%2C0.447%2C5%2C1v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1V1C9%2C0.447%2C8.553%2C0%2C8%2C0z%20M13%2C0h-2c-0.553%2C0-1%2C0.447-1%2C1v2%20c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1V1C14%2C0.447%2C13.553%2C0%2C13%2C0z%20M3%2C5H1C0.447%2C5%2C0%2C5.447%2C0%2C6v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2%20c0.553%2C0%2C1-0.447%2C1-1V6C4%2C5.447%2C3.553%2C5%2C3%2C5z%20M8%2C5H6C5.447%2C5%2C5%2C5.447%2C5%2C6v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1V6%20C9%2C5.447%2C8.553%2C5%2C8%2C5z%20M13%2C5h-2c-0.553%2C0-1%2C0.447-1%2C1v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1V6C14%2C5.447%2C13.553%2C5%2C13%2C5z%20M3%2C10%20H1c-0.553%2C0-1%2C0.447-1%2C1v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1v-2C4%2C10.447%2C3.553%2C10%2C3%2C10z%20M8%2C10H6c-0.553%2C0-1%2C0.447-1%2C1v2%20c0%2C0.553%2C0.447%2C1%2C1%2C1h2c0.553%2C0%2C1-0.447%2C1-1v-2C9%2C10.447%2C8.553%2C10%2C8%2C10z%20M13%2C10h-2c-0.553%2C0-1%2C0.447-1%2C1v2c0%2C0.553%2C0.447%2C1%2C1%2C1h2%20c0.553%2C0%2C1-0.447%2C1-1v-2C14%2C10.447%2C13.553%2C10%2C13%2C10z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-heart:after,
.ui-alt-icon .ui-icon-heart:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M7%2C1.958c-2-3-7-2.128-7%2C1.872c0%2C3%2C4%2C7%2C4%2C7s2.417%2C2.48%2C3%2C3c0.583-0.52%2C3-3%2C3-3s4-4%2C4-7C14-0.169%2C9-1.042%2C7%2C1.958z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-home:after,
.ui-alt-icon .ui-icon-home:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%227%2C0%200%2C7%202%2C7%202%2C14%205%2C14%205%2C9%209%2C9%209%2C14%2012%2C14%2012%2C7%2014%2C7%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-info:after,
.ui-alt-icon .ui-icon-info:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M7%2C0C3.134%2C0%2C0%2C3.134%2C0%2C7s3.134%2C7%2C7%2C7s7-3.134%2C7-7S10.866%2C0%2C7%2C0z%20M7%2C2c0.552%2C0%2C1%2C0.447%2C1%2C1S7.552%2C4%2C7%2C4S6%2C3.553%2C6%2C3%20S6.448%2C2%2C7%2C2z%20M9%2C11H5v-1h1V6H5V5h3v5h1V11z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-location:after,
.ui-alt-icon .ui-icon-location:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M7%2C0C4.791%2C0%2C3%2C1.791%2C3%2C4c0%2C2%2C4%2C10%2C4%2C10s4-8%2C4-10C11%2C1.791%2C9.209%2C0%2C7%2C0z%20M7%2C6C5.896%2C6%2C5%2C5.104%2C5%2C4s0.896-2%2C2-2%20c1.104%2C0%2C2%2C0.896%2C2%2C2S8.104%2C6%2C7%2C6z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-lock:after,
.ui-alt-icon .ui-icon-lock:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M12%2C6V5c0-2.762-2.238-5-5-5C4.239%2C0%2C2%2C2.238%2C2%2C5v1H1v8h12V6H12z%20M7.5%2C9.848V12h-1V9.848C6.207%2C9.673%2C6%2C9.366%2C6%2C9%20c0-0.553%2C0.448-1%2C1-1s1%2C0.447%2C1%2C1C8%2C9.366%2C7.793%2C9.673%2C7.5%2C9.848z%20M10%2C6H4V5c0-1.657%2C1.343-3%2C3-3s3%2C1.343%2C3%2C3V6z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-mail:after,
.ui-alt-icon .ui-icon-mail:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M0%2C3.75V12h14V3.75L7%2C9L0%2C3.75z%20M14%2C2H0l7%2C5L14%2C2z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-minus:after,
.ui-alt-icon .ui-icon-minus:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Crect%20y%3D%225%22%20width%3D%2214%22%20height%3D%224%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-navigation:after,
.ui-alt-icon .ui-icon-navigation:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2213%2C1%200%2C6%207%2C7%208%2C14%20%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-phone:after,
.ui-alt-icon .ui-icon-phone:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M6.949%2C9.182C6.175%2C8.549%2C5.281%2C7.697%2C4.507%2C6.736C3.963%2C6.063%2C3.483%2C5.355%2C3.979%2C4.858l-3.482-3.48%20c-0.508%2C0.634-1.633%2C3.654%2C3.188%2C8.598c5.08%2C5.211%2C8.356%2C4.097%2C8.92%2C3.511l-3.396-3.399C8.734%2C10.561%2C8.123%2C10.139%2C6.949%2C9.182z%20%20M13.83%2C11.512v-0.004c0%2C0-2.648-2.646-2.649-2.647c-0.21-0.212-0.546-0.205-0.754%2C0.002L9.465%2C9.823l3.402%2C3.407%20c0%2C0%2C0.963-0.961%2C0.961-0.961l0.002-0.002C14.053%2C12.049%2C14.031%2C11.713%2C13.83%2C11.512z%20M5.202%2C3.636V3.634%20c0.222-0.222%2C0.2-0.557%2C0-0.758V2.873c0%2C0-2.726-2.725-2.727-2.726c-0.21-0.21-0.545-0.205-0.753%2C0.001L0.761%2C1.113L4.24%2C4.595%20C4.241%2C4.596%2C5.202%2C3.637%2C5.202%2C3.636z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-plus:after,
.ui-alt-icon .ui-icon-plus:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2214%2C5%209%2C5%209%2C0%205%2C0%205%2C5%200%2C5%200%2C9%205%2C9%205%2C14%209%2C14%209%2C9%2014%2C9%20%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-power:after,
.ui-alt-icon .ui-icon-power:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M11.243%2C2.408c-0.392-0.401-1.024-0.401-1.415%2C0c-0.391%2C0.401-0.391%2C1.054%2C0%2C1.455C10.584%2C4.642%2C11%2C5.675%2C11%2C6.773%20s-0.416%2C2.133-1.172%2C2.91c-1.512%2C1.558-4.145%2C1.558-5.656%2C0C3.416%2C8.904%2C3%2C7.872%2C3%2C6.773C3%2C5.673%2C3.416%2C4.64%2C4.172%2C3.863%20c0.39-0.401%2C0.39-1.054%2C0-1.455c-0.391-0.401-1.024-0.401-1.415%2C0C1.624%2C3.574%2C1%2C5.125%2C1%2C6.773c0%2C1.647%2C0.624%2C3.199%2C1.757%2C4.365%20c1.134%2C1.166%2C2.64%2C1.809%2C4.243%2C1.809c1.604%2C0%2C3.109-0.645%2C4.243-1.811C12.376%2C9.975%2C13%2C8.423%2C13%2C6.773%20C13%2C5.125%2C12.376%2C3.574%2C11.243%2C2.408z%20M7%2C8.053c0.553%2C0%2C1-0.445%2C1-1v-6c0-0.553-0.447-1-1-1c-0.553%2C0-1%2C0.447-1%2C1v6%20C6%2C7.604%2C6.447%2C8.053%2C7%2C8.053z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-recycle:after,
.ui-alt-icon .ui-icon-recycle:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M3%2C7h1L2%2C4L0%2C7h1c0%2C3.313%2C2.687%2C6%2C6%2C6c0.702%2C0%2C1.374-0.127%2C2-0.35v-2.205C8.41%2C10.789%2C7.732%2C11%2C7%2C11C4.791%2C11%2C3%2C9.209%2C3%2C7z%20%20M13%2C7c0-3.313-2.688-6-6-6C6.298%2C1%2C5.626%2C1.127%2C5%2C1.349v2.206C5.59%2C3.211%2C6.268%2C3%2C7%2C3c2.209%2C0%2C4%2C1.791%2C4%2C4h-1l2%2C3l2-3H13z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-refresh:after,
.ui-alt-icon .ui-icon-refresh:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214.001px%22%20height%3D%2214.002px%22%20viewBox%3D%220%200%2014.001%2014.002%22%20style%3D%22enable-background%3Anew%200%200%2014.001%2014.002%3B%22%20%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M14.001%2C6.001v-6l-2.06%2C2.06c-0.423-0.424-0.897-0.809-1.44-1.122C7.153-0.994%2C2.872%2C0.153%2C0.939%2C3.501%20c-1.933%2C3.348-0.786%2C7.629%2C2.562%2C9.562c3.348%2C1.933%2C7.629%2C0.785%2C9.562-2.562l-1.732-1c-1.381%2C2.392-4.438%2C3.211-6.83%2C1.83%20s-3.211-4.438-1.83-6.83s4.438-3.211%2C6.83-1.83c0.389%2C0.225%2C0.718%2C0.506%2C1.02%2C0.81l-2.52%2C2.52H14.001z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-search:after,
.ui-alt-icon .ui-icon-search:after,
.ui-input-search:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M10.171%2C8.766c0.617-0.888%2C0.979-1.964%2C0.979-3.126c0-3.037-2.463-5.5-5.5-5.5s-5.5%2C2.463-5.5%2C5.5s2.463%2C5.5%2C5.5%2C5.5%20c1.152%2C0%2C2.223-0.355%2C3.104-0.962l3.684%2C3.683l1.414-1.414L10.171%2C8.766z%20M5.649%2C9.14c-1.933%2C0-3.5-1.567-3.5-3.5%20c0-1.933%2C1.567-3.5%2C3.5-3.5c1.933%2C0%2C3.5%2C1.567%2C3.5%2C3.5C9.149%2C7.572%2C7.582%2C9.14%2C5.649%2C9.14z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-shop:after,
.ui-alt-icon .ui-icon-shop:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M10%2C4V3c0-1.657-1.343-3-3-3S4%2C1.343%2C4%2C3v1H1v10h12V4H10z%20M4.5%2C6C4.224%2C6%2C4%2C5.776%2C4%2C5.5S4.224%2C5%2C4.5%2C5S5%2C5.224%2C5%2C5.5%20S4.776%2C6%2C4.5%2C6z%20M5%2C3c0-1.104%2C0.896-2%2C2-2c1.104%2C0%2C2%2C0.896%2C2%2C2v1H5V3z%20M9.5%2C6C9.225%2C6%2C9%2C5.776%2C9%2C5.5S9.225%2C5%2C9.5%2C5S10%2C5.224%2C10%2C5.5%20S9.775%2C6%2C9.5%2C6z%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-star:after,
.ui-alt-icon .ui-icon-star:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpolygon%20points%3D%2214%2C5%209%2C5%207%2C0%205%2C5%200%2C5%204%2C8%202.625%2C13%207%2C10%2011.375%2C13%2010%2C8%20%22%2F%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-tag:after,
.ui-alt-icon .ui-icon-tag:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M5%2C0H0v5l9%2C9l5-5L5%2C0z%20M3%2C4C2.447%2C4%2C2%2C3.553%2C2%2C3s0.447-1%2C1-1s1%2C0.447%2C1%2C1S3.553%2C4%2C3%2C4z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-user:after,
.ui-alt-icon .ui-icon-user:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%200%2014%2014%22%20style%3D%22enable-background%3Anew%200%200%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M8.851%2C10.101c-0.18-0.399-0.2-0.763-0.153-1.104C9.383%2C8.49%2C9.738%2C7.621%2C9.891%2C6.465C10.493%2C6.355%2C10.5%2C5.967%2C10.5%2C5.5%20c0-0.437-0.008-0.804-0.502-0.94C9.999%2C4.539%2C10%2C4.521%2C10%2C4.5c0-2.103-1-4-2-4C8%2C0.5%2C7.5%2C0%2C6.5%2C0C5%2C0%2C4%2C1.877%2C4%2C4.5%20c0%2C0.021%2C0.001%2C0.039%2C0.002%2C0.06C3.508%2C4.696%2C3.5%2C5.063%2C3.5%2C5.5c0%2C0.467%2C0.007%2C0.855%2C0.609%2C0.965%20C4.262%2C7.621%2C4.617%2C8.49%2C5.303%2C8.997c0.047%2C0.341%2C0.026%2C0.704-0.153%2C1.104C1.503%2C10.503%2C0%2C12%2C0%2C12v2h14v-2%20C14%2C12%2C12.497%2C10.503%2C8.851%2C10.101z%22%2F%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3Cg%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
.ui-alt-icon.ui-icon-video:after,
.ui-alt-icon .ui-icon-video:after {
	background-image: url("data:image/svg+xml;charset=US-ASCII,%3C%3Fxml%20version%3D%221.0%22%20encoding%3D%22iso-8859-1%22%3F%3E%3C!DOCTYPE%20svg%20PUBLIC%20%22-%2F%2FW3C%2F%2FDTD%20SVG%201.1%2F%2FEN%22%20%22http%3A%2F%2Fwww.w3.org%2FGraphics%2FSVG%2F1.1%2FDTD%2Fsvg11.dtd%22%3E%3Csvg%20version%3D%221.1%22%20id%3D%22Layer_1%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20xmlns%3Axlink%3D%22http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink%22%20x%3D%220px%22%20y%3D%220px%22%20%20width%3D%2214px%22%20height%3D%2214px%22%20viewBox%3D%220%20-2%2014%2014%22%20style%3D%22enable-background%3Anew%200%20-2%2014%2014%3B%22%20xml%3Aspace%3D%22preserve%22%3E%3Cpath%20d%3D%22M8%2C0H2C0.896%2C0%2C0%2C0.896%2C0%2C2v6c0%2C1.104%2C0.896%2C2%2C2%2C2h6c1.104%2C0%2C2-0.896%2C2-2V5V2C10%2C0.896%2C9.104%2C0%2C8%2C0z%20M10%2C5l4%2C4V1L10%2C5z%22%2F%3E%3C%2Fsvg%3E");
}

/*!
 * Waves v0.7.2
 * http://fian.my.id/Waves 
 * 
 * Copyright 2014 Alfiana E. Sibuea and other contributors 
 * Released under the MIT license 
 * https://github.com/fians/Waves/blob/master/LICENSE 
 */

.waves-effect {
/*	position: relative;*/
	cursor: pointer;
/*	display: inline-block;*/
	overflow: hidden;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	-webkit-tap-highlight-color: transparent
}
.waves-effect .waves-ripple {
	position: absolute;
	border-radius: 50%;
	width: 100px;
	height: 100px;
	margin-top: -50px;
	margin-left: -50px;
	opacity: 0;
	background: rgba(0,0,0,.2);
	background: -webkit-radial-gradient(rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,rgba(255,255,255,0) 70%);
	background: -o-radial-gradient(rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,rgba(255,255,255,0) 70%);
	background: -moz-radial-gradient(rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,rgba(255,255,255,0) 70%);
	background: radial-gradient(rgba(0,0,0,.2) 0,rgba(0,0,0,.3) 40%,rgba(0,0,0,.4) 50%,rgba(0,0,0,.5) 60%,rgba(255,255,255,0) 70%);
	-webkit-transition: all .5s ease-out;
	-moz-transition: all .5s ease-out;
	-o-transition: all .5s ease-out;
	transition: all .5s ease-out;
	-webkit-transition-property: -webkit-transform, opacity;
	-moz-transition-property: -moz-transform, opacity;
	-o-transition-property: -o-transform, opacity;
	transition-property: transform, opacity;
	-webkit-transform: scale(0) translate(0,0);
	-moz-transform: scale(0) translate(0,0);
	-ms-transform: scale(0) translate(0,0);
	-o-transform: scale(0) translate(0,0);
	transform: scale(0) translate(0,0);
	pointer-events: none
}
.waves-effect.waves-light .waves-ripple {
	background: rgba(255,255,255,.4);
	background: -webkit-radial-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.3) 40%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0) 70%);
	background: -o-radial-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.3) 40%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0) 70%);
	background: -moz-radial-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.3) 40%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0) 70%);
	background: radial-gradient(rgba(255,255,255,.2) 0,rgba(255,255,255,.3) 40%,rgba(255,255,255,.4) 50%,rgba(255,255,255,.5) 60%,rgba(255,255,255,0) 70%)
}
.waves-effect.waves-classic .waves-ripple {
	background: rgba(0,0,0,.2)
}
.waves-effect.waves-classic.waves-light .waves-ripple {
	background: rgba(255,255,255,.4)
}
.waves-notransition {
	-webkit-transition: none !important;
	-moz-transition: none !important;
	-o-transition: none !important;
	transition: none !important
}
.waves-button, .waves-circle {
	-webkit-transform: translateZ(0);
	-moz-transform: translateZ(0);
	-ms-transform: translateZ(0);
	-o-transform: translateZ(0);
	transform: translateZ(0);
	/*-webkit-mask-image: -webkit-radial-gradient(circle,#fff 100%,#000 100%)*/
}
.waves-button, .waves-button:hover, .waves-button:visited, .waves-button-input {
	white-space: nowrap;
/*	vertical-align: middle;*/
	cursor: pointer;
/*	border: none;*/
	outline: 0;
	color: inherit;
	background-color: transparent;
/*	font-size: 1em;
	line-height: 1em;
	text-align: center;
	text-decoration: none;*/
	z-index: 1
}
.waves-button {
/*	padding: .85em 1.1em;
	border-radius: .2em*/
}
.waves-button-input {
/*	margin: 0;
	padding: .85em 1.1em*/
}
.waves-input-wrapper {
/*	border-radius: .2em;*/
	vertical-align: bottom
}
.waves-input-wrapper.waves-button {
	padding: 0;
}
.waves-input-wrapper .waves-button-input {
	position: relative;
	top: 0;
	left: 0;
	z-index: 1
}
.waves-circle {
	text-align: center;
	width: 2.5em;
	height: 2.5em;
	line-height: 2.5em;
	border-radius: 50%
}
.waves-float {
	-webkit-mask-image: none;
	/*box-shadow: 0 1px 1.5px 1px rgba(0,0,0,.12);*/
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms
}
.waves-float:active {
	/*box-shadow: 0 8px 20px 1px rgba(0,0,0,.3)*/
}
.waves-block {
	display: block
}
a.waves-effect .waves-ripple {
	z-index: -1
}

