@charset "UTF-8";

@import url(https://fonts.googleapis.com/css?family=Oswald:400,700|Open+Sans:400,600,700);

div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: top;
	background: transparent;
}
a{vertical-align: baseline;}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

:focus {
	outline: 0;
}

ins {
	text-decoration: none;
}
del {
	text-decoration: line-through;
}

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

html, body {
	display: block;
	height: 100%;
	min-height: 100%;
}

h1, h2, h3, h4, h5, h6, span, p, input {
	margin: 0;
	padding: 0;
}

table, tr, td {
	margin: 0;
	padding: 0;
	border-collapse: collapse;
}

ul, li, ol {
	margin: 0;
	padding: 0;
}

img {
	border: none;
}



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

Copyright (c) 2014 Daniel Eden
*/

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@keyframes pulse {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            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;
      -ms-transform-origin: top center;
          transform-origin: top center;
  -webkit-animation-name: swing;
          animation-name: swing;
}

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

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

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

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

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

@keyframes tada {
  0% {
    -webkit-transform: scale3d(1, 1, 1);
            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 bounceIn {
  0%, 20%, 40%, 60%, 80%, 100% {
    -webkit-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

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

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

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

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

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

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

  0% {
    opacity: 0;
    -webkit-transform: scale3d(.3, .3, .3);
            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-animation-duration: .75s;
          animation-duration: .75s;
}

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

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

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

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

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

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

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

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -3000px, 0);
            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-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

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

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

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

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

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

  0% {
    opacity: 0;
    -webkit-transform: translate3d(-3000px, 0, 0);
            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-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

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

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

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

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

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

  0% {
    opacity: 0;
    -webkit-transform: translate3d(3000px, 0, 0);
            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-transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
            transition-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

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

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

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

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

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

  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 3000px, 0);
            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-animation-duration: .75s;
          animation-duration: .75s;
}

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

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

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

@keyframes bounceOutDown {
  20% {
    -webkit-transform: translate3d(0, 10px, 0);
            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-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
    opacity: 0;
  }

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

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

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

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

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

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

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

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

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

.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-transition-timing-function: ease-in;
            transition-timing-function: ease-in;
    opacity: 0;
  }

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

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

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

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

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

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

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

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

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

.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-animation-duration: .75s;
          animation-duration: .75s;
  -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-animation-duration: .75s;
          animation-duration: .75s;
}

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

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

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

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

@keyframes lightSpeedIn {
  0% {
    -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
            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: translateY(-100%);
            transform: translateY(-100%);
    visibility: visible;
  }

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

@keyframes slideInDown {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    visibility: visible;
  }

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

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

@-webkit-keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    visibility: visible;
  }

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

@keyframes slideInLeft {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    visibility: visible;
  }

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

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

@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    visibility: visible;
  }

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

@keyframes slideInRight {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    visibility: visible;
  }

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

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

@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    visibility: visible;
  }

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

@keyframes slideInUp {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    visibility: visible;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/*!
 *  Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */@font-face{font-family:'FontAwesome';src:url("../../files/NZM3/fonts/fontawesome-webfont.eot?v=4.3.0");src:url("../../files/NZM3/fonts/fontawesome-webfont.eot?#iefix&v=4.3.0") format('embedded-opentype'),url("../../files/NZM3/fonts/fontawesome-webfont.woff2?v=4.3.0") format('woff2'),url("../../files/NZM3/fonts/fontawesome-webfont.woff?v=4.3.0") format('woff'),url("../../files/NZM3/fonts/fontawesome-webfont.ttf?v=4.3.0") format('truetype'),url("../../files/NZM3/fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular") format('svg');font-weight:normal;font-style:normal}.fa{display:inline-block;font:normal normal normal 14px/1 FontAwesome;font-size:inherit;text-rendering:auto;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;transform:translate(0, 0)}.fa-lg{font-size:1.33333333em;line-height:.75em;vertical-align:-15%}.fa-2x{font-size:2em}.fa-3x{font-size:3em}.fa-4x{font-size:4em}.fa-5x{font-size:5em}.fa-fw{width:1.28571429em;text-align:center}.fa-ul{padding-left:0;margin-left:2.14285714em;list-style-type:none}.fa-ul>li{position:relative}.fa-li{position:absolute;left:-2.14285714em;width:2.14285714em;top:.14285714em;text-align:center}.fa-li.fa-lg{left:-1.85714286em}.fa-border{padding:.2em .25em .15em;border:solid .08em #eee;border-radius:.1em}.pull-right{float:right}.pull-left{float:left}.fa.pull-left{margin-right:.3em}.fa.pull-right{margin-left:.3em}.fa-spin{-webkit-animation:fa-spin 2s infinite linear;animation:fa-spin 2s infinite linear}.fa-pulse{-webkit-animation:fa-spin 1s infinite steps(8);animation:fa-spin 1s infinite steps(8)}@-webkit-keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}@keyframes fa-spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.fa-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.fa-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.fa-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.fa-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.fa-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}:root .fa-rotate-90,:root .fa-rotate-180,:root .fa-rotate-270,:root .fa-flip-horizontal,:root .fa-flip-vertical{filter:none}.fa-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.fa-stack-1x,.fa-stack-2x{position:absolute;left:0;width:100%;text-align:center}.fa-stack-1x{line-height:inherit}.fa-stack-2x{font-size:2em}.fa-inverse{color:#fff}.fa-glass:before{content:"\f000"}.fa-music:before{content:"\f001"}.fa-search:before{content:"\f002"}.fa-envelope-o:before{content:"\f003"}.fa-heart:before{content:"\f004"}.fa-star:before{content:"\f005"}.fa-star-o:before{content:"\f006"}.fa-user:before{content:"\f007"}.fa-film:before{content:"\f008"}.fa-th-large:before{content:"\f009"}.fa-th:before{content:"\f00a"}.fa-th-list:before{content:"\f00b"}.fa-check:before{content:"\f00c"}.fa-remove:before,.fa-close:before,.fa-times:before{content:"\f00d"}.fa-search-plus:before{content:"\f00e"}.fa-search-minus:before{content:"\f010"}.fa-power-off:before{content:"\f011"}.fa-signal:before{content:"\f012"}.fa-gear:before,.fa-cog:before{content:"\f013"}.fa-trash-o:before{content:"\f014"}.fa-home:before{content:"\f015"}.fa-file-o:before{content:"\f016"}.fa-clock-o:before{content:"\f017"}.fa-road:before{content:"\f018"}.fa-download:before{content:"\f019"}.fa-arrow-circle-o-down:before{content:"\f01a"}.fa-arrow-circle-o-up:before{content:"\f01b"}.fa-inbox:before{content:"\f01c"}.fa-play-circle-o:before{content:"\f01d"}.fa-rotate-right:before,.fa-repeat:before{content:"\f01e"}.fa-refresh:before{content:"\f021"}.fa-list-alt:before{content:"\f022"}.fa-lock:before{content:"\f023"}.fa-flag:before{content:"\f024"}.fa-headphones:before{content:"\f025"}.fa-volume-off:before{content:"\f026"}.fa-volume-down:before{content:"\f027"}.fa-volume-up:before{content:"\f028"}.fa-qrcode:before{content:"\f029"}.fa-barcode:before{content:"\f02a"}.fa-tag:before{content:"\f02b"}.fa-tags:before{content:"\f02c"}.fa-book:before{content:"\f02d"}.fa-bookmark:before{content:"\f02e"}.fa-print:before{content:"\f02f"}.fa-camera:before{content:"\f030"}.fa-font:before{content:"\f031"}.fa-bold:before{content:"\f032"}.fa-italic:before{content:"\f033"}.fa-text-height:before{content:"\f034"}.fa-text-width:before{content:"\f035"}.fa-align-left:before{content:"\f036"}.fa-align-center:before{content:"\f037"}.fa-align-right:before{content:"\f038"}.fa-align-justify:before{content:"\f039"}.fa-list:before{content:"\f03a"}.fa-dedent:before,.fa-outdent:before{content:"\f03b"}.fa-indent:before{content:"\f03c"}.fa-video-camera:before{content:"\f03d"}.fa-photo:before,.fa-image:before,.fa-picture-o:before{content:"\f03e"}.fa-pencil:before{content:"\f040"}.fa-map-marker:before{content:"\f041"}.fa-adjust:before{content:"\f042"}.fa-tint:before{content:"\f043"}.fa-edit:before,.fa-pencil-square-o:before{content:"\f044"}.fa-share-square-o:before{content:"\f045"}.fa-check-square-o:before{content:"\f046"}.fa-arrows:before{content:"\f047"}.fa-step-backward:before{content:"\f048"}.fa-fast-backward:before{content:"\f049"}.fa-backward:before{content:"\f04a"}.fa-play:before{content:"\f04b"}.fa-pause:before{content:"\f04c"}.fa-stop:before{content:"\f04d"}.fa-forward:before{content:"\f04e"}.fa-fast-forward:before{content:"\f050"}.fa-step-forward:before{content:"\f051"}.fa-eject:before{content:"\f052"}.fa-chevron-left:before{content:"\f053"}.fa-chevron-right:before{content:"\f054"}.fa-plus-circle:before{content:"\f055"}.fa-minus-circle:before{content:"\f056"}.fa-times-circle:before{content:"\f057"}.fa-check-circle:before{content:"\f058"}.fa-question-circle:before{content:"\f059"}.fa-info-circle:before{content:"\f05a"}.fa-crosshairs:before{content:"\f05b"}.fa-times-circle-o:before{content:"\f05c"}.fa-check-circle-o:before{content:"\f05d"}.fa-ban:before{content:"\f05e"}.fa-arrow-left:before{content:"\f060"}.fa-arrow-right:before{content:"\f061"}.fa-arrow-up:before{content:"\f062"}.fa-arrow-down:before{content:"\f063"}.fa-mail-forward:before,.fa-share:before{content:"\f064"}.fa-expand:before{content:"\f065"}.fa-compress:before{content:"\f066"}.fa-plus:before{content:"\f067"}.fa-minus:before{content:"\f068"}.fa-asterisk:before{content:"\f069"}.fa-exclamation-circle:before{content:"\f06a"}.fa-gift:before{content:"\f06b"}.fa-leaf:before{content:"\f06c"}.fa-fire:before{content:"\f06d"}.fa-eye:before{content:"\f06e"}.fa-eye-slash:before{content:"\f070"}.fa-warning:before,.fa-exclamation-triangle:before{content:"\f071"}.fa-plane:before{content:"\f072"}.fa-calendar:before{content:"\f073"}.fa-random:before{content:"\f074"}.fa-comment:before{content:"\f075"}.fa-magnet:before{content:"\f076"}.fa-chevron-up:before{content:"\f077"}.fa-chevron-down:before{content:"\f078"}.fa-retweet:before{content:"\f079"}.fa-shopping-cart:before{content:"\f07a"}.fa-folder:before{content:"\f07b"}.fa-folder-open:before{content:"\f07c"}.fa-arrows-v:before{content:"\f07d"}.fa-arrows-h:before{content:"\f07e"}.fa-bar-chart-o:before,.fa-bar-chart:before{content:"\f080"}.fa-twitter-square:before{content:"\f081"}.fa-facebook-square:before{content:"\f082"}.fa-camera-retro:before{content:"\f083"}.fa-key:before{content:"\f084"}.fa-gears:before,.fa-cogs:before{content:"\f085"}.fa-comments:before{content:"\f086"}.fa-thumbs-o-up:before{content:"\f087"}.fa-thumbs-o-down:before{content:"\f088"}.fa-star-half:before{content:"\f089"}.fa-heart-o:before{content:"\f08a"}.fa-sign-out:before{content:"\f08b"}.fa-linkedin-square:before{content:"\f08c"}.fa-thumb-tack:before{content:"\f08d"}.fa-external-link:before{content:"\f08e"}.fa-sign-in:before{content:"\f090"}.fa-trophy:before{content:"\f091"}.fa-github-square:before{content:"\f092"}.fa-upload:before{content:"\f093"}.fa-lemon-o:before{content:"\f094"}.fa-phone:before{content:"\f095"}.fa-square-o:before{content:"\f096"}.fa-bookmark-o:before{content:"\f097"}.fa-phone-square:before{content:"\f098"}.fa-twitter:before{content:"\f099"}.fa-facebook-f:before,.fa-facebook:before{content:"\f09a"}.fa-github:before{content:"\f09b"}.fa-unlock:before{content:"\f09c"}.fa-credit-card:before{content:"\f09d"}.fa-rss:before{content:"\f09e"}.fa-hdd-o:before{content:"\f0a0"}.fa-bullhorn:before{content:"\f0a1"}.fa-bell:before{content:"\f0f3"}.fa-certificate:before{content:"\f0a3"}.fa-hand-o-right:before{content:"\f0a4"}.fa-hand-o-left:before{content:"\f0a5"}.fa-hand-o-up:before{content:"\f0a6"}.fa-hand-o-down:before{content:"\f0a7"}.fa-arrow-circle-left:before{content:"\f0a8"}.fa-arrow-circle-right:before{content:"\f0a9"}.fa-arrow-circle-up:before{content:"\f0aa"}.fa-arrow-circle-down:before{content:"\f0ab"}.fa-globe:before{content:"\f0ac"}.fa-wrench:before{content:"\f0ad"}.fa-tasks:before{content:"\f0ae"}.fa-filter:before{content:"\f0b0"}.fa-briefcase:before{content:"\f0b1"}.fa-arrows-alt:before{content:"\f0b2"}.fa-group:before,.fa-users:before{content:"\f0c0"}.fa-chain:before,.fa-link:before{content:"\f0c1"}.fa-cloud:before{content:"\f0c2"}.fa-flask:before{content:"\f0c3"}.fa-cut:before,.fa-scissors:before{content:"\f0c4"}.fa-copy:before,.fa-files-o:before{content:"\f0c5"}.fa-paperclip:before{content:"\f0c6"}.fa-save:before,.fa-floppy-o:before{content:"\f0c7"}.fa-square:before{content:"\f0c8"}.fa-navicon:before,.fa-reorder:before,.fa-bars:before{content:"\f0c9"}.fa-list-ul:before{content:"\f0ca"}.fa-list-ol:before{content:"\f0cb"}.fa-strikethrough:before{content:"\f0cc"}.fa-underline:before{content:"\f0cd"}.fa-table:before{content:"\f0ce"}.fa-magic:before{content:"\f0d0"}.fa-truck:before{content:"\f0d1"}.fa-pinterest:before{content:"\f0d2"}.fa-pinterest-square:before{content:"\f0d3"}.fa-google-plus-square:before{content:"\f0d4"}.fa-google-plus:before{content:"\f0d5"}.fa-money:before{content:"\f0d6"}.fa-caret-down:before{content:"\f0d7"}.fa-caret-up:before{content:"\f0d8"}.fa-caret-left:before{content:"\f0d9"}.fa-caret-right:before{content:"\f0da"}.fa-columns:before{content:"\f0db"}.fa-unsorted:before,.fa-sort:before{content:"\f0dc"}.fa-sort-down:before,.fa-sort-desc:before{content:"\f0dd"}.fa-sort-up:before,.fa-sort-asc:before{content:"\f0de"}.fa-envelope:before{content:"\f0e0"}.fa-linkedin:before{content:"\f0e1"}.fa-rotate-left:before,.fa-undo:before{content:"\f0e2"}.fa-legal:before,.fa-gavel:before{content:"\f0e3"}.fa-dashboard:before,.fa-tachometer:before{content:"\f0e4"}.fa-comment-o:before{content:"\f0e5"}.fa-comments-o:before{content:"\f0e6"}.fa-flash:before,.fa-bolt:before{content:"\f0e7"}.fa-sitemap:before{content:"\f0e8"}.fa-umbrella:before{content:"\f0e9"}.fa-paste:before,.fa-clipboard:before{content:"\f0ea"}.fa-lightbulb-o:before{content:"\f0eb"}.fa-exchange:before{content:"\f0ec"}.fa-cloud-download:before{content:"\f0ed"}.fa-cloud-upload:before{content:"\f0ee"}.fa-user-md:before{content:"\f0f0"}.fa-stethoscope:before{content:"\f0f1"}.fa-suitcase:before{content:"\f0f2"}.fa-bell-o:before{content:"\f0a2"}.fa-coffee:before{content:"\f0f4"}.fa-cutlery:before{content:"\f0f5"}.fa-file-text-o:before{content:"\f0f6"}.fa-building-o:before{content:"\f0f7"}.fa-hospital-o:before{content:"\f0f8"}.fa-ambulance:before{content:"\f0f9"}.fa-medkit:before{content:"\f0fa"}.fa-fighter-jet:before{content:"\f0fb"}.fa-beer:before{content:"\f0fc"}.fa-h-square:before{content:"\f0fd"}.fa-plus-square:before{content:"\f0fe"}.fa-angle-double-left:before{content:"\f100"}.fa-angle-double-right:before{content:"\f101"}.fa-angle-double-up:before{content:"\f102"}.fa-angle-double-down:before{content:"\f103"}.fa-angle-left:before{content:"\f104"}.fa-angle-right:before{content:"\f105"}.fa-angle-up:before{content:"\f106"}.fa-angle-down:before{content:"\f107"}.fa-desktop:before{content:"\f108"}.fa-laptop:before{content:"\f109"}.fa-tablet:before{content:"\f10a"}.fa-mobile-phone:before,.fa-mobile:before{content:"\f10b"}.fa-circle-o:before{content:"\f10c"}.fa-quote-left:before{content:"\f10d"}.fa-quote-right:before{content:"\f10e"}.fa-spinner:before{content:"\f110"}.fa-circle:before{content:"\f111"}.fa-mail-reply:before,.fa-reply:before{content:"\f112"}.fa-github-alt:before{content:"\f113"}.fa-folder-o:before{content:"\f114"}.fa-folder-open-o:before{content:"\f115"}.fa-smile-o:before{content:"\f118"}.fa-frown-o:before{content:"\f119"}.fa-meh-o:before{content:"\f11a"}.fa-gamepad:before{content:"\f11b"}.fa-keyboard-o:before{content:"\f11c"}.fa-flag-o:before{content:"\f11d"}.fa-flag-checkered:before{content:"\f11e"}.fa-terminal:before{content:"\f120"}.fa-code:before{content:"\f121"}.fa-mail-reply-all:before,.fa-reply-all:before{content:"\f122"}.fa-star-half-empty:before,.fa-star-half-full:before,.fa-star-half-o:before{content:"\f123"}.fa-location-arrow:before{content:"\f124"}.fa-crop:before{content:"\f125"}.fa-code-fork:before{content:"\f126"}.fa-unlink:before,.fa-chain-broken:before{content:"\f127"}.fa-question:before{content:"\f128"}.fa-info:before{content:"\f129"}.fa-exclamation:before{content:"\f12a"}.fa-superscript:before{content:"\f12b"}.fa-subscript:before{content:"\f12c"}.fa-eraser:before{content:"\f12d"}.fa-puzzle-piece:before{content:"\f12e"}.fa-microphone:before{content:"\f130"}.fa-microphone-slash:before{content:"\f131"}.fa-shield:before{content:"\f132"}.fa-calendar-o:before{content:"\f133"}.fa-fire-extinguisher:before{content:"\f134"}.fa-rocket:before{content:"\f135"}.fa-maxcdn:before{content:"\f136"}.fa-chevron-circle-left:before{content:"\f137"}.fa-chevron-circle-right:before{content:"\f138"}.fa-chevron-circle-up:before{content:"\f139"}.fa-chevron-circle-down:before{content:"\f13a"}.fa-html5:before{content:"\f13b"}.fa-css3:before{content:"\f13c"}.fa-anchor:before{content:"\f13d"}.fa-unlock-alt:before{content:"\f13e"}.fa-bullseye:before{content:"\f140"}.fa-ellipsis-h:before{content:"\f141"}.fa-ellipsis-v:before{content:"\f142"}.fa-rss-square:before{content:"\f143"}.fa-play-circle:before{content:"\f144"}.fa-ticket:before{content:"\f145"}.fa-minus-square:before{content:"\f146"}.fa-minus-square-o:before{content:"\f147"}.fa-level-up:before{content:"\f148"}.fa-level-down:before{content:"\f149"}.fa-check-square:before{content:"\f14a"}.fa-pencil-square:before{content:"\f14b"}.fa-external-link-square:before{content:"\f14c"}.fa-share-square:before{content:"\f14d"}.fa-compass:before{content:"\f14e"}.fa-toggle-down:before,.fa-caret-square-o-down:before{content:"\f150"}.fa-toggle-up:before,.fa-caret-square-o-up:before{content:"\f151"}.fa-toggle-right:before,.fa-caret-square-o-right:before{content:"\f152"}.fa-euro:before,.fa-eur:before{content:"\f153"}.fa-gbp:before{content:"\f154"}.fa-dollar:before,.fa-usd:before{content:"\f155"}.fa-rupee:before,.fa-inr:before{content:"\f156"}.fa-cny:before,.fa-rmb:before,.fa-yen:before,.fa-jpy:before{content:"\f157"}.fa-ruble:before,.fa-rouble:before,.fa-rub:before{content:"\f158"}.fa-won:before,.fa-krw:before{content:"\f159"}.fa-bitcoin:before,.fa-btc:before{content:"\f15a"}.fa-file:before{content:"\f15b"}.fa-file-text:before{content:"\f15c"}.fa-sort-alpha-asc:before{content:"\f15d"}.fa-sort-alpha-desc:before{content:"\f15e"}.fa-sort-amount-asc:before{content:"\f160"}.fa-sort-amount-desc:before{content:"\f161"}.fa-sort-numeric-asc:before{content:"\f162"}.fa-sort-numeric-desc:before{content:"\f163"}.fa-thumbs-up:before{content:"\f164"}.fa-thumbs-down:before{content:"\f165"}.fa-youtube-square:before{content:"\f166"}.fa-youtube:before{content:"\f167"}.fa-xing:before{content:"\f168"}.fa-xing-square:before{content:"\f169"}.fa-youtube-play:before{content:"\f16a"}.fa-dropbox:before{content:"\f16b"}.fa-stack-overflow:before{content:"\f16c"}.fa-instagram:before{content:"\f16d"}.fa-flickr:before{content:"\f16e"}.fa-adn:before{content:"\f170"}.fa-bitbucket:before{content:"\f171"}.fa-bitbucket-square:before{content:"\f172"}.fa-tumblr:before{content:"\f173"}.fa-tumblr-square:before{content:"\f174"}.fa-long-arrow-down:before{content:"\f175"}.fa-long-arrow-up:before{content:"\f176"}.fa-long-arrow-left:before{content:"\f177"}.fa-long-arrow-right:before{content:"\f178"}.fa-apple:before{content:"\f179"}.fa-windows:before{content:"\f17a"}.fa-android:before{content:"\f17b"}.fa-linux:before{content:"\f17c"}.fa-dribbble:before{content:"\f17d"}.fa-skype:before{content:"\f17e"}.fa-foursquare:before{content:"\f180"}.fa-trello:before{content:"\f181"}.fa-female:before{content:"\f182"}.fa-male:before{content:"\f183"}.fa-gittip:before,.fa-gratipay:before{content:"\f184"}.fa-sun-o:before{content:"\f185"}.fa-moon-o:before{content:"\f186"}.fa-archive:before{content:"\f187"}.fa-bug:before{content:"\f188"}.fa-vk:before{content:"\f189"}.fa-weibo:before{content:"\f18a"}.fa-renren:before{content:"\f18b"}.fa-pagelines:before{content:"\f18c"}.fa-stack-exchange:before{content:"\f18d"}.fa-arrow-circle-o-right:before{content:"\f18e"}.fa-arrow-circle-o-left:before{content:"\f190"}.fa-toggle-left:before,.fa-caret-square-o-left:before{content:"\f191"}.fa-dot-circle-o:before{content:"\f192"}.fa-wheelchair:before{content:"\f193"}.fa-vimeo-square:before{content:"\f194"}.fa-turkish-lira:before,.fa-try:before{content:"\f195"}.fa-plus-square-o:before{content:"\f196"}.fa-space-shuttle:before{content:"\f197"}.fa-slack:before{content:"\f198"}.fa-envelope-square:before{content:"\f199"}.fa-wordpress:before{content:"\f19a"}.fa-openid:before{content:"\f19b"}.fa-institution:before,.fa-bank:before,.fa-university:before{content:"\f19c"}.fa-mortar-board:before,.fa-graduation-cap:before{content:"\f19d"}.fa-yahoo:before{content:"\f19e"}.fa-google:before{content:"\f1a0"}.fa-reddit:before{content:"\f1a1"}.fa-reddit-square:before{content:"\f1a2"}.fa-stumbleupon-circle:before{content:"\f1a3"}.fa-stumbleupon:before{content:"\f1a4"}.fa-delicious:before{content:"\f1a5"}.fa-digg:before{content:"\f1a6"}.fa-pied-piper:before{content:"\f1a7"}.fa-pied-piper-alt:before{content:"\f1a8"}.fa-drupal:before{content:"\f1a9"}.fa-joomla:before{content:"\f1aa"}.fa-language:before{content:"\f1ab"}.fa-fax:before{content:"\f1ac"}.fa-building:before{content:"\f1ad"}.fa-child:before{content:"\f1ae"}.fa-paw:before{content:"\f1b0"}.fa-spoon:before{content:"\f1b1"}.fa-cube:before{content:"\f1b2"}.fa-cubes:before{content:"\f1b3"}.fa-behance:before{content:"\f1b4"}.fa-behance-square:before{content:"\f1b5"}.fa-steam:before{content:"\f1b6"}.fa-steam-square:before{content:"\f1b7"}.fa-recycle:before{content:"\f1b8"}.fa-automobile:before,.fa-car:before{content:"\f1b9"}.fa-cab:before,.fa-taxi:before{content:"\f1ba"}.fa-tree:before{content:"\f1bb"}.fa-spotify:before{content:"\f1bc"}.fa-deviantart:before{content:"\f1bd"}.fa-soundcloud:before{content:"\f1be"}.fa-database:before{content:"\f1c0"}.fa-file-pdf-o:before{content:"\f1c1"}.fa-file-word-o:before{content:"\f1c2"}.fa-file-excel-o:before{content:"\f1c3"}.fa-file-powerpoint-o:before{content:"\f1c4"}.fa-file-photo-o:before,.fa-file-picture-o:before,.fa-file-image-o:before{content:"\f1c5"}.fa-file-zip-o:before,.fa-file-archive-o:before{content:"\f1c6"}.fa-file-sound-o:before,.fa-file-audio-o:before{content:"\f1c7"}.fa-file-movie-o:before,.fa-file-video-o:before{content:"\f1c8"}.fa-file-code-o:before{content:"\f1c9"}.fa-vine:before{content:"\f1ca"}.fa-codepen:before{content:"\f1cb"}.fa-jsfiddle:before{content:"\f1cc"}.fa-life-bouy:before,.fa-life-buoy:before,.fa-life-saver:before,.fa-support:before,.fa-life-ring:before{content:"\f1cd"}.fa-circle-o-notch:before{content:"\f1ce"}.fa-ra:before,.fa-rebel:before{content:"\f1d0"}.fa-ge:before,.fa-empire:before{content:"\f1d1"}.fa-git-square:before{content:"\f1d2"}.fa-git:before{content:"\f1d3"}.fa-hacker-news:before{content:"\f1d4"}.fa-tencent-weibo:before{content:"\f1d5"}.fa-qq:before{content:"\f1d6"}.fa-wechat:before,.fa-weixin:before{content:"\f1d7"}.fa-send:before,.fa-paper-plane:before{content:"\f1d8"}.fa-send-o:before,.fa-paper-plane-o:before{content:"\f1d9"}.fa-history:before{content:"\f1da"}.fa-genderless:before,.fa-circle-thin:before{content:"\f1db"}.fa-header:before{content:"\f1dc"}.fa-paragraph:before{content:"\f1dd"}.fa-sliders:before{content:"\f1de"}.fa-share-alt:before{content:"\f1e0"}.fa-share-alt-square:before{content:"\f1e1"}.fa-bomb:before{content:"\f1e2"}.fa-soccer-ball-o:before,.fa-futbol-o:before{content:"\f1e3"}.fa-tty:before{content:"\f1e4"}.fa-binoculars:before{content:"\f1e5"}.fa-plug:before{content:"\f1e6"}.fa-slideshare:before{content:"\f1e7"}.fa-twitch:before{content:"\f1e8"}.fa-yelp:before{content:"\f1e9"}.fa-newspaper-o:before{content:"\f1ea"}.fa-wifi:before{content:"\f1eb"}.fa-calculator:before{content:"\f1ec"}.fa-paypal:before{content:"\f1ed"}.fa-google-wallet:before{content:"\f1ee"}.fa-cc-visa:before{content:"\f1f0"}.fa-cc-mastercard:before{content:"\f1f1"}.fa-cc-discover:before{content:"\f1f2"}.fa-cc-amex:before{content:"\f1f3"}.fa-cc-paypal:before{content:"\f1f4"}.fa-cc-stripe:before{content:"\f1f5"}.fa-bell-slash:before{content:"\f1f6"}.fa-bell-slash-o:before{content:"\f1f7"}.fa-trash:before{content:"\f1f8"}.fa-copyright:before{content:"\f1f9"}.fa-at:before{content:"\f1fa"}.fa-eyedropper:before{content:"\f1fb"}.fa-paint-brush:before{content:"\f1fc"}.fa-birthday-cake:before{content:"\f1fd"}.fa-area-chart:before{content:"\f1fe"}.fa-pie-chart:before{content:"\f200"}.fa-line-chart:before{content:"\f201"}.fa-lastfm:before{content:"\f202"}.fa-lastfm-square:before{content:"\f203"}.fa-toggle-off:before{content:"\f204"}.fa-toggle-on:before{content:"\f205"}.fa-bicycle:before{content:"\f206"}.fa-bus:before{content:"\f207"}.fa-ioxhost:before{content:"\f208"}.fa-angellist:before{content:"\f209"}.fa-cc:before{content:"\f20a"}.fa-shekel:before,.fa-sheqel:before,.fa-ils:before{content:"\f20b"}.fa-meanpath:before{content:"\f20c"}.fa-buysellads:before{content:"\f20d"}.fa-connectdevelop:before{content:"\f20e"}.fa-dashcube:before{content:"\f210"}.fa-forumbee:before{content:"\f211"}.fa-leanpub:before{content:"\f212"}.fa-sellsy:before{content:"\f213"}.fa-shirtsinbulk:before{content:"\f214"}.fa-simplybuilt:before{content:"\f215"}.fa-skyatlas:before{content:"\f216"}.fa-cart-plus:before{content:"\f217"}.fa-cart-arrow-down:before{content:"\f218"}.fa-diamond:before{content:"\f219"}.fa-ship:before{content:"\f21a"}.fa-user-secret:before{content:"\f21b"}.fa-motorcycle:before{content:"\f21c"}.fa-street-view:before{content:"\f21d"}.fa-heartbeat:before{content:"\f21e"}.fa-venus:before{content:"\f221"}.fa-mars:before{content:"\f222"}.fa-mercury:before{content:"\f223"}.fa-transgender:before{content:"\f224"}.fa-transgender-alt:before{content:"\f225"}.fa-venus-double:before{content:"\f226"}.fa-mars-double:before{content:"\f227"}.fa-venus-mars:before{content:"\f228"}.fa-mars-stroke:before{content:"\f229"}.fa-mars-stroke-v:before{content:"\f22a"}.fa-mars-stroke-h:before{content:"\f22b"}.fa-neuter:before{content:"\f22c"}.fa-facebook-official:before{content:"\f230"}.fa-pinterest-p:before{content:"\f231"}.fa-whatsapp:before{content:"\f232"}.fa-server:before{content:"\f233"}.fa-user-plus:before{content:"\f234"}.fa-user-times:before{content:"\f235"}.fa-hotel:before,.fa-bed:before{content:"\f236"}.fa-viacoin:before{content:"\f237"}.fa-train:before{content:"\f238"}.fa-subway:before{content:"\f239"}.fa-medium:before{content:"\f23a"}
/*!
 *  Weather Icons 1.3
 *  Updated November 30th, 2014
 *  Weather themed icons for Bootstrap
 *  ------------------------------------------------------------------------------
* Maintained at http://erikflowers.github.io/weather-icons
 *  http://twitter.com/Erik_UX
 *
 *  License
 *  ------------------------------------------------------------------------------
 *  - Fpmt licensed under SIL OFL 1.1 -
 *    http://scripts.sil.org/OFL
 *  - CSS and LESS are licensed under MIT License -
 *    http://opensource.org/licenses/mit-license.html
 *  - Documentation licensed under CC BY 3.0 -
 *    http://creativecommons.org/licenses/by/3.0/
 *  - Inspired by and works great as a companion with Font Awesome
 *    "Font Awesome by Dave Gandy - http://fontawesome.io"
 *
 *  Weather Icons Bootstrap Package Author - Erik Flowers - erik@helloerik.com
 *  ------------------------------------------------------------------------------
 *  Email: erik@helloerik.com
 *  Twitter: http://twitter.com/Erik_UX
 */@font-face{font-family:weathericons;src:url(../fonts/weathericons-regular-webfont.eot);src:url(../fonts/weathericons-regular-webfont.eot?#iefix) format('embedded-opentype'),url(../fonts/weathericons-regular-webfont.woff) format('woff'),url(../fonts/weathericons-regular-webfont.ttf) format('truetype'),url(../fonts/weathericons-regular-webfont.svg#weathericons-regular-webfontRg) format('svg');font-weight:400;font-style:normal}.wi{display:inline-block;font-family:weathericons;font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wi-day-cloudy-gusts:before{content:"\f000"}.wi-day-cloudy-windy:before{content:"\f001"}.wi-day-cloudy:before{content:"\f002"}.wi-day-fog:before{content:"\f003"}.wi-day-hail:before{content:"\f004"}.wi-day-lightning:before{content:"\f005"}.wi-day-rain-mix:before{content:"\f006"}.wi-day-rain-wind:before{content:"\f007"}.wi-day-rain:before{content:"\f008"}.wi-day-showers:before{content:"\f009"}.wi-day-snow:before{content:"\f00a"}.wi-day-sprinkle:before{content:"\f00b"}.wi-day-sunny-overcast:before{content:"\f00c"}.wi-day-sunny:before{content:"\f00d"}.wi-day-storm-showers:before{content:"\f00e"}.wi-day-thunderstorm:before{content:"\f010"}.wi-cloudy-gusts:before{content:"\f011"}.wi-cloudy-windy:before{content:"\f012"}.wi-cloudy:before{content:"\f013"}.wi-fog:before{content:"\f014"}.wi-hail:before{content:"\f015"}.wi-lightning:before{content:"\f016"}.wi-rain-mix:before{content:"\f017"}.wi-rain-wind:before{content:"\f018"}.wi-rain:before{content:"\f019"}.wi-showers:before{content:"\f01a"}.wi-snow:before{content:"\f01b"}.wi-sprinkle:before{content:"\f01c"}.wi-storm-showers:before{content:"\f01d"}.wi-thunderstorm:before{content:"\f01e"}.wi-windy:before{content:"\f021"}.wi-night-alt-cloudy-gusts:before{content:"\f022"}.wi-night-alt-cloudy-windy:before{content:"\f023"}.wi-night-alt-hail:before{content:"\f024"}.wi-night-alt-lightning:before{content:"\f025"}.wi-night-alt-rain-mix:before{content:"\f026"}.wi-night-alt-rain-wind:before{content:"\f027"}.wi-night-alt-rain:before{content:"\f028"}.wi-night-alt-showers:before{content:"\f029"}.wi-night-alt-snow:before{content:"\f02a"}.wi-night-alt-sprinkle:before{content:"\f02b"}.wi-night-alt-storm-showers:before{content:"\f02c"}.wi-night-alt-thunderstorm:before{content:"\f02d"}.wi-night-clear:before{content:"\f02e"}.wi-night-cloudy-gusts:before{content:"\f02f"}.wi-night-cloudy-windy:before{content:"\f030"}.wi-night-cloudy:before{content:"\f031"}.wi-night-hail:before{content:"\f032"}.wi-night-lightning:before{content:"\f033"}.wi-night-rain-mix:before{content:"\f034"}.wi-night-rain-wind:before{content:"\f035"}.wi-night-rain:before{content:"\f036"}.wi-night-showers:before{content:"\f037"}.wi-night-snow:before{content:"\f038"}.wi-night-sprinkle:before{content:"\f039"}.wi-night-storm-showers:before{content:"\f03a"}.wi-night-thunderstorm:before{content:"\f03b"}.wi-celsius:before{content:"\f03c"}.wi-cloud-down:before{content:"\f03d"}.wi-cloud-refresh:before{content:"\f03e"}.wi-cloud-up:before{content:"\f040"}.wi-cloud:before{content:"\f041"}.wi-degrees:before{content:"\f042"}.wi-down-left:before{content:"\f043"}.wi-down:before{content:"\f044"}.wi-fahrenheit:before{content:"\f045"}.wi-horizon-alt:before{content:"\f046"}.wi-horizon:before{content:"\f047"}.wi-left:before{content:"\f048"}.wi-lightning:before{content:"\f016"}.wi-night-fog:before{content:"\f04a"}.wi-refresh-alt:before{content:"\f04b"}.wi-refresh:before{content:"\f04c"}.wi-right:before{content:"\f04d"}.wi-sprinkles:before{content:"\f04e"}.wi-strong-wind:before{content:"\f050"}.wi-sunrise:before{content:"\f051"}.wi-sunset:before{content:"\f052"}.wi-thermometer-exterior:before{content:"\f053"}.wi-thermometer-internal:before{content:"\f054"}.wi-thermometer:before{content:"\f055"}.wi-tornado:before{content:"\f056"}.wi-up-right:before{content:"\f057"}.wi-up:before{content:"\f058"}.wi-wind-west:before{content:"\f059"}.wi-wind-south-west:before{content:"\f05a"}.wi-wind-south-east:before{content:"\f05b"}.wi-wind-south:before{content:"\f05c"}.wi-wind-north-west:before{content:"\f05d"}.wi-wind-north-east:before{content:"\f05e"}.wi-wind-north:before{content:"\f060"}.wi-wind-east:before{content:"\f061"}.wi-smoke:before{content:"\f062"}.wi-dust:before{content:"\f063"}.wi-snow-wind:before{content:"\f064"}.wi-day-snow-wind:before{content:"\f065"}.wi-night-snow-wind:before{content:"\f066"}.wi-night-alt-snow-wind:before{content:"\f067"}.wi-day-sleet-storm:before{content:"\f068"}.wi-night-sleet-storm:before{content:"\f069"}.wi-night-alt-sleet-storm:before{content:"\f06a"}.wi-day-snow-thunderstorm:before{content:"\f06b"}.wi-night-snow-thunderstorm:before{content:"\f06c"}.wi-night-alt-snow-thunderstorm:before{content:"\f06d"}.wi-solar-eclipse:before{content:"\f06e"}.wi-lunar-eclipse:before{content:"\f070"}.wi-meteor:before{content:"\f071"}.wi-hot:before{content:"\f072"}.wi-hurricane:before{content:"\f073"}.wi-smog:before{content:"\f074"}.wi-alien:before{content:"\f075"}.wi-snowflake-cold:before{content:"\f076"}.wi-stars:before{content:"\f077"}.wi-night-partly-cloudy:before{content:"\f083"}.wi-umbrella:before{content:"\f084"}.wi-day-windy:before{content:"\f085"}.wi-night-alt-cloudy:before{content:"\f086"}.wi-up-left:before{content:"\f087"}.wi-down-right:before{content:"\f088"}.wi-time-12:before{content:"\f089"}.wi-time-1:before{content:"\f08a"}.wi-time-2:before{content:"\f08b"}.wi-time-3:before{content:"\f08c"}.wi-time-4:before{content:"\f08d"}.wi-time-5:before{content:"\f08e"}.wi-time-6:before{content:"\f08f"}.wi-time-7:before{content:"\f090"}.wi-time-8:before{content:"\f091"}.wi-time-9:before{content:"\f092"}.wi-time-10:before{content:"\f093"}.wi-time-11:before{content:"\f094"}.wi-day-sleet:before{content:"\f0b2"}.wi-night-sleet:before{content:"\f0b3"}.wi-night-alt-sleet:before{content:"\f0b4"}.wi-sleet:before{content:"\f0b5"}.wi-day-haze:before{content:"\f0b6"}.wi-beafort-0:before{content:"\f0b7"}.wi-beafort-1:before{content:"\f0b8"}.wi-beafort-2:before{content:"\f0b9"}.wi-beafort-3:before{content:"\f0ba"}.wi-beafort-4:before{content:"\f0bb"}.wi-beafort-5:before{content:"\f0bc"}.wi-beafort-6:before{content:"\f0bd"}.wi-beafort-7:before{content:"\f0be"}.wi-beafort-8:before{content:"\f0bf"}.wi-beafort-9:before{content:"\f0c0"}.wi-beafort-10:before{content:"\f0c1"}.wi-beafort-11:before{content:"\f0c2"}.wi-beafort-12:before{content:"\f0c3"}.wi-wind-default:before{content:"\f0b1"}.wi-wind-default._0-deg{-webkit-transform:rotate(0deg);-moz-transform:rotate(0deg);-ms-transform:rotate(0deg);-o-transform:rotate(0deg);transform:rotate(0deg)}.wi-wind-default._15-deg{-webkit-transform:rotate(15deg);-moz-transform:rotate(15deg);-ms-transform:rotate(15deg);-o-transform:rotate(15deg);transform:rotate(15deg)}.wi-wind-default._30-deg{-webkit-transform:rotate(30deg);-moz-transform:rotate(30deg);-ms-transform:rotate(30deg);-o-transform:rotate(30deg);transform:rotate(30deg)}.wi-wind-default._45-deg{-webkit-transform:rotate(45deg);-moz-transform:rotate(45deg);-ms-transform:rotate(45deg);-o-transform:rotate(45deg);transform:rotate(45deg)}.wi-wind-default._60-deg{-webkit-transform:rotate(60deg);-moz-transform:rotate(60deg);-ms-transform:rotate(60deg);-o-transform:rotate(60deg);transform:rotate(60deg)}.wi-wind-default._75-deg{-webkit-transform:rotate(75deg);-moz-transform:rotate(75deg);-ms-transform:rotate(75deg);-o-transform:rotate(75deg);transform:rotate(75deg)}.wi-wind-default._90-deg{-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.wi-wind-default._105-deg{-webkit-transform:rotate(105deg);-moz-transform:rotate(105deg);-ms-transform:rotate(105deg);-o-transform:rotate(105deg);transform:rotate(105deg)}.wi-wind-default._120-deg{-webkit-transform:rotate(120deg);-moz-transform:rotate(120deg);-ms-transform:rotate(120deg);-o-transform:rotate(120deg);transform:rotate(120deg)}.wi-wind-default._135-deg{-webkit-transform:rotate(135deg);-moz-transform:rotate(135deg);-ms-transform:rotate(135deg);-o-transform:rotate(135deg);transform:rotate(135deg)}.wi-wind-default._150-deg{-webkit-transform:rotate(150deg);-moz-transform:rotate(150deg);-ms-transform:rotate(150deg);-o-transform:rotate(150deg);transform:rotate(150deg)}.wi-wind-default._165-deg{-webkit-transform:rotate(165deg);-moz-transform:rotate(165deg);-ms-transform:rotate(165deg);-o-transform:rotate(165deg);transform:rotate(165deg)}.wi-wind-default._180-deg{-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.wi-wind-default._195-deg{-webkit-transform:rotate(195deg);-moz-transform:rotate(195deg);-ms-transform:rotate(195deg);-o-transform:rotate(195deg);transform:rotate(195deg)}.wi-wind-default._210-deg{-webkit-transform:rotate(210deg);-moz-transform:rotate(210deg);-ms-transform:rotate(210deg);-o-transform:rotate(210deg);transform:rotate(210deg)}.wi-wind-default._225-deg{-webkit-transform:rotate(225deg);-moz-transform:rotate(225deg);-ms-transform:rotate(225deg);-o-transform:rotate(225deg);transform:rotate(225deg)}.wi-wind-default._240-deg{-webkit-transform:rotate(240deg);-moz-transform:rotate(240deg);-ms-transform:rotate(240deg);-o-transform:rotate(240deg);transform:rotate(240deg)}.wi-wind-default._255-deg{-webkit-transform:rotate(255deg);-moz-transform:rotate(255deg);-ms-transform:rotate(255deg);-o-transform:rotate(255deg);transform:rotate(255deg)}.wi-wind-default._270-deg{-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.wi-wind-default._285-deg{-webkit-transform:rotate(295deg);-moz-transform:rotate(295deg);-ms-transform:rotate(295deg);-o-transform:rotate(295deg);transform:rotate(295deg)}.wi-wind-default._300-deg{-webkit-transform:rotate(300deg);-moz-transform:rotate(300deg);-ms-transform:rotate(300deg);-o-transform:rotate(300deg);transform:rotate(300deg)}.wi-wind-default._315-deg{-webkit-transform:rotate(315deg);-moz-transform:rotate(315deg);-ms-transform:rotate(315deg);-o-transform:rotate(315deg);transform:rotate(315deg)}.wi-wind-default._330-deg{-webkit-transform:rotate(330deg);-moz-transform:rotate(330deg);-ms-transform:rotate(330deg);-o-transform:rotate(330deg);transform:rotate(330deg)}.wi-wind-default._345-deg{-webkit-transform:rotate(345deg);-moz-transform:rotate(345deg);-ms-transform:rotate(345deg);-o-transform:rotate(345deg);transform:rotate(345deg)}.wi-moon-new:before{content:"\f095"}.wi-moon-waxing-cresent-1:before{content:"\f096"}.wi-moon-waxing-cresent-2:before{content:"\f097"}.wi-moon-waxing-cresent-3:before{content:"\f098"}.wi-moon-waxing-cresent-4:before{content:"\f099"}.wi-moon-waxing-cresent-5:before{content:"\f09a"}.wi-moon-waxing-cresent-6:before{content:"\f09b"}.wi-moon-first-quarter:before{content:"\f09c"}.wi-moon-waxing-gibbous-1:before{content:"\f09d"}.wi-moon-waxing-gibbous-2:before{content:"\f09e"}.wi-moon-waxing-gibbous-3:before{content:"\f09f"}.wi-moon-waxing-gibbous-4:before{content:"\f0a0"}.wi-moon-waxing-gibbous-5:before{content:"\f0a1"}.wi-moon-waxing-gibbous-6:before{content:"\f0a2"}.wi-moon-full:before{content:"\f0a3"}.wi-moon-waning-gibbous-1:before{content:"\f0a4"}.wi-moon-waning-gibbous-2:before{content:"\f0a5"}.wi-moon-waning-gibbous-3:before{content:"\f0a6"}.wi-moon-waning-gibbous-4:before{content:"\f0a7"}.wi-moon-waning-gibbous-5:before{content:"\f0a8"}.wi-moon-waning-gibbous-6:before{content:"\f0a9"}.wi-moon-3rd-quarter:before{content:"\f0aa"}.wi-moon-waning-crescent-1:before{content:"\f0ab"}.wi-moon-waning-crescent-2:before{content:"\f0ac"}.wi-moon-waning-crescent-3:before{content:"\f0ad"}.wi-moon-waning-crescent-4:before{content:"\f0ae"}.wi-moon-waning-crescent-5:before{content:"\f0af"}.wi-moon-waning-crescent-6:before{content:"\f0b0"}

html, body, #dat-menu {
	width: 100%;
	height: 100%;
}

body.datnomargin {
	margin-top: 0px!important;
	/*overflow: hidden;*/
}

.dat-menu-setup {
	position: relative;
	background-color: #665140;
	background-repeat: repeat;
	background-position: center center;
	background-size: cover;
}

.dat-menu-setup .dat-menu-container {
	min-height: 100%;
	position: relative;
	outline: 1px solid rgba(0,0,0,0);
	z-index: 10;
	-webkit-transform: translateZ(0) translateX(0) rotateY(0deg); /* reset transforms (Chrome bug) */
	transform: translateZ(0) translateX(0) rotateY(0deg);
}

.dat-menu-setup .dat-menu-container::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 0px;
	opacity: 0;
	background: rgba(0,0,0,0.2);
	-webkit-transition: opacity 0.4s, height 0s 0.4s;
	transition: opacity 0.4s, height 0s 0.4s;
}

.dat-menu-setup .dat-menu-wrapper {
	position: relative;
}

.dat-menu-wrapper.dat-menu-padding {
	padding-top: 0px;
}

.component {
	margin: 0 auto;
	width: 60%;
}

.dat-menu-setup.dat-menu-load {
	position: fixed;
	-webkit-perspective: 1500px;
	perspective: 1500px;
}

.dat-menu-load .dat-menu-container {
	position: absolute;
	overflow: hidden;
	width: 100%;
	height: 100%;
	cursor: pointer;
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
}

.dat-menu-load .dat-menu-wrapper {
	-webkit-transform: translateZ(-1px);
}

.dat-menu-animate .dat-menu-container::after {
	opacity: 1;
	height: 101%;
	-webkit-transition: opacity 0.3s;
	transition: opacity 0.3s;
}

.dat-menu-list {
	display: none;
	position: absolute;
	height: auto;
	font-size: 26px;
	line-height: 130%;
	max-height: 90%;
	overflow-x: hidden;
	overflow-y: hidden;
	padding-right: 10%;
}

.datnomargin .dat-menu-list {
	display: block;
}

.dat-menu-list {
	top: 50%;
	-webkit-transform: translateY(-50%);
	transform: translateY(-50%);
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.dat-menu-list {
	width: 0px;
	padding-left: 0px;
	z-index: -1;
}

.dat-menu-load .dat-menu-list {
	left: 0%;
	width: auto;
	padding-left: 15%;
	z-index: 1;
	overflow: hidden;
}

.dat-menu-list a {
	display: inline-block;
	font-weight: 300;
	margin: 0 0 30px 0;
	color: rgba(255,255,255,0.6);
	text-decoration: none;
	border: 0px!important;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
	-webkit-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.dat-menu-list a:hover {
	color: #fff;
}

.dat-menu-list a {
	display: block;
}

.datnomargin .dat-menu-container {
	-webkit-transition: -webkit-transform 0.4s;
	transition: transform 0.4s;
	-webkit-transform-origin: 50% 50%;
	transform-origin: 50% 50%;
}

.effect-1.dat-menu-animate .dat-menu-container {
	-webkit-transform: translateZ(-1500px) translateX(100%) rotateY(-45deg);
	transform: translateZ(-1500px) translateX(100%) rotateY(-45deg);
}

.effect-2.dat-menu-animate .dat-menu-container {
	-webkit-transform: translateZ(-1500px) translateX(100%) rotateY(0deg);
	transform: translateZ(-1500px) translateX(100%) rotateY(0deg);
}

.effect-3.dat-menu-animate .dat-menu-container {
	-webkit-transform: translateZ(0px) translateX(80%) rotateY(0deg);
	transform: translateZ(0px) translateX(80%) rotateY(0deg);
}

.no-csstransforms3d .dat-menu-animate .dat-menu-container {
	left: 75%;
}

.dat-menu-list > ul {
	margin: 0px!important
}

li.dat-menu-header span {
	font-weight: 700;
	display: block;
	padding-bottom: 20px;
	color: #fff;
	padding-top: 40px;
	text-transform: uppercase;
}

ul:first-child li.dat-menu-header:first-child span {
	padding-top: 0px;
}

.dat-menu-list > ul > li > ul {
	margin-left: 0px;
	padding-left: 0px;
}

.dat-menu-list li {
	opacity: 0;
	list-style: none;
	padding-left: 0px;
	margin-left: 0px;
	-webkit-transform: translateX(-150px);
	transform: translateX(-150px);
	-webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
	transition: transform 0.4s, opacity 0.4s;
}

.dat-menu-animate .dat-menu-list li {
	opacity: 1;
	-webkit-transform: translateX(0);
	transform: translateX(0);
}

.dat-menu-animate .dat-menu-list li:nth-child(2) {
	-webkit-transition-delay: 0.04s;
	transition-delay: 0.04s;
}

.dat-menu-animate .dat-menu-list li:nth-child(3) {
	-webkit-transition-delay: 0.08s;
	transition-delay: 0.08s;
}

.dat-menu-animate .dat-menu-list li:nth-child(4) {
	-webkit-transition-delay: 0.12s;
	transition-delay: 0.12s;
}

.dat-menu-animate .dat-menu-list li:nth-child(5) {
	-webkit-transition-delay: 0.16s;
	transition-delay: 0.16s;
}

.dat-menu-animate .dat-menu-list li:nth-child(6) {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.dat-menu-animate .dat-menu-list li:nth-child(7) {
	-webkit-transition-delay: 0.24s;
	transition-delay: 0.24s;
}

.dat-menu-animate .dat-menu-list li:nth-child(8) {
	-webkit-transition-delay: 0.28s;
	transition-delay: 0.28s;
}

.dat-menu-animate .dat-menu-list li:nth-child(9) {
	-webkit-transition-delay: 0.32s;
	transition-delay: 0.32s;
}

.dat-menu-animate .dat-menu-list li:nth-child(10) {
	-webkit-transition-delay: 0.36s;
	transition-delay: 0.36s;
}

.dat-menu-animate .dat-menu-list li:nth-child(11) {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.dat-menu-animate .dat-menu-list li:nth-child(12) {
	-webkit-transition-delay: 0.44s;
	transition-delay: 0.44s;
}

.dat-menu-animate .dat-menu-list li:nth-child(13) {
	-webkit-transition-delay: 0.48s;
	transition-delay: 0.48s;
}

.dat-menu-animate .dat-menu-list li:nth-child(14) {
	-webkit-transition-delay: 0.52s;
	transition-delay: 0.52s;
}

.dat-menu-animate .dat-menu-list li:nth-child(15) {
	-webkit-transition-delay: 0.56s;
	transition-delay: 0.56s;
}

.dat-menu-list {
	-moz-user-select: none;
	-webkit-user-select: none;
	-ms-user-select: none;
}

.dat-menu-list.dat-submenu > ul > li > ul {
	margin-left: 15%!important;
	opacity: 0.7;
}

.dat-menu-list.dat-submenu > ul > li > ul ul {
	padding-left: 0px!important;
}

.dat-menu-list.dat-submenu > ul li.has-ot-mega-menu,
.dat-menu-list.dat-submenu div {
	display: none!important;
}

.dat-menu-list.dat-submenu > ul li.dat-has-sub > ul > li {
	display: none;
}

.dat-menu-list.dat-submenu > ul li.dat-has-sub {
	position: relative;
	display: block;
}

.dat-menu-list.dat-submenu > ul li.dat-has-sub > a {
	display: block;
	padding-right: 50px;
	border: 0px!important;
}

.dat-menu-list ul li > a i {
	display: none;
}

.dat-menu-list.dat-submenu > ul li.dat-has-sub:after {
	position: absolute;
	display: block;
	content: '+';
	top: 0px;
	right: 0px;
	color: #fff;
}

.dat-menu-list.dat-submenu > ul li.dat-has-sub.dat-sub-active:after {
	content: '-';
}



.dat-menu-top-header {
	display: none;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 60px;
	font-size: 20px;
	font-weight: 700;
	line-height: 40px;
	padding: 10px;
	text-align: center;
	color: #fff;
	background: #232323;
	box-shadow: inset 0 30px 0 rgba(255,255,255,0.01), inset 0 -1px 0 rgba(255,255,255,0.05), 0 2px 5px rgba(0,0,0,0.2);
	z-index: 100000;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.dat-menu-top-header a,
.dat-menu-top-header a:hover,
.dat-menu-top-header a:active {
	color: #fff;
}

.dat-menu-list input[type='submit'],
.dat-menu-top-header input[type='submit'] {
	display: none!important;
}

.dat-menu-top-header input[type='text'] {
	display: block;
	position: absolute;
	height: 40px;
	top: 10px;
	padding: 0 15px;
	line-height: 40px;
	border: 0px;
	background: #fff;
	border-radius: 40px;
	outline: none;
	opacity: 0;
	box-shadow: none;
	width: 0px;

	right: 60px;
	padding: 0 15px;
	width: 0px;
	z-index: 100;

	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;

	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;font-size:16px;
}

.dat-menu-top-header input[type='text']:focus {
	right: 60px;
	width: 62%;
	opacity: 1;
}

.dat-menu-top-header a.dat-menu-menu {
	display: block;
	float: left;
	width: 40px;
	height: 40px;
	/*background: url(../images/dat-header-icon-menu@2x.png) no-repeat center;*/
	background-size: 40px 40px;
	text-decoration: none;
}

.dat-menu-top-header a.dat-menu-search {
	display: block;
	float: right;
	width: 40px;
	height: 40px;
	/*background: url(../images/dat-header-icon-search@2x.png) no-repeat center;*/
	background-size: 40px 40px;
	text-decoration: none;
}

.dat-menu-list .dat-menu-search-block input[type='text'] {
	display: block;
	height: 40px;
	padding: 0 15px;
	line-height: 40px;
	width: 100%;
	border: 0px;
	border-radius: 40px;
	color: #fff;
	outline: none;
	background: transparent;
	position: relative;
	z-index: 10;
	border: 1px solid rgba(255,255,255,0.5);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.dat-menu-list .dat-menu-search-block input[type='text']:focus {
	color: #232323;
	background: #fff;
	border: 1px solid #fff;
}


ul#dat-menu-list-inner {
	padding-left: 0px!important;
}

.dat-menu-temp {
	display: none!important;
}

.admin-bar:not(.datnomargin) .dat-menu-top-header {
	margin-top: 32px;
}

.dat-menu-top-header > img {
	display: inline-block;
	max-width: 70%;
	max-height: 35px;
}

@media screen and (max-width: 782px) {

	.admin-bar:not(.datnomargin) .dat-menu-top-header {
		margin-top: 46px;
	}

}


@media screen and (max-width: 77em) {
	
	.dat-menu-list.top {
		top: 15%;
	}

	.dat-menu-list.bottom {
		bottom: 15%;
	}
}

@media screen and (max-width: 36.625em), screen and (max-height: 41.75em) {

	.dat-menu-load .dat-menu-list {
		padding-left: 15%;
	}

}

@media screen and (max-width: 31em), screen and (max-height: 36.2em) {
	.dat-menu-list {
		font-size: 17px;
		width: 6.8em;
	}
}

@media screen and (max-height: 31.6em) {
	.dat-menu-list a {
		margin-bottom: 20px;
	}
}


/*------------------------------------------------------------------
[Google Fonts]
-------------------------------------------------------------------*/





/*------------------------------------------------------------------
[Style Index]

0. Reset
1. Main header
2. Main menu
3. Content styling
4. Comments
5. Photo gallery
6. Sidebar styling
7. Footer
-------------------------------------------------------------------*/



/*------------------------------------------------------------------
[0. Reset]

Reseting styles for individual theme
-------------------------------------------------------------------*/

body {
	font-size: 16px;
	font-family: "Open Sans", sans-serif;
	margin: 0;
	padding: 0;
	color: #8d9092;
	background: #e8edf0;
}

a {
	color: #4b95d4;
	text-decoration: none;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

a:hover {
	color: #232323;
	text-decoration: none;
}

a:focus {
	outline: 0;
}

.clear-float {
	clear: both;
}

.wrapper {
	width: 1230px;
	margin: 0px auto;
	position: relative;
}

.boxed:not(.active) {
	background: #E8EDF0;
}

.active.boxed {
	width: 1290px;
	margin: 0px auto;
	background: #E8EDF0;
	box-shadow: 0 0px 10px rgba(0,0,0,0.2);
	padding: 0px;
	min-height: 100%;
}

.left {
	float: left;
}

.right {
	float: right;
}

i.fa {
	line-height: inherit;
	font-weight: normal;
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'Oswald', sans-serif;
}

img {
	max-width: 100%;
	height: auto;
	width: auto;
}

input {
	-webkit-appearance: none;
}




/*------------------------------------------------------------------
[1. Main header]

+ .header
	+ .top-menu
		+ .wrapper
			+ ul

	+ .top-banner
		+ .wrapper

	+ .header-blocks
		+ .wrapper

	+ .main-menu
		+ .wrapper
			+ ul

-------------------------------------------------------------------*/

.header {
	position: relative;
	z-index: 100;
}

.header .top-menu {
	display: block;
	position: relative;
	z-index: 101;
}

.header .top-menu .wrapper:after {
	display: block;
	content: '';
	clear: both;
}

.header .top-menu ul {
	display: block;
}

.header .top-menu ul:after {
	display: block;
	clear: both;
	content: '';
}

.header .top-menu ul li {
	display: block;
	float: left;
	font-size: 14px;
	position: relative;
}

.header .top-menu ul li a {
	display: block;
	color: #7a7a7a;
	padding: 14px 10px;
	box-shadow: 0 1px 0 rgba(0,0,0,0.04);
	white-space: nowrap;
}

.header .top-menu ul li a span:after {
	display: inline-block;
	font-family: "FontAwesome";
	content: '\f107';
	padding-left: 6px;
}

.header .top-menu .sub-menu a span:before {
	content: '\f105';
}

.header .top-menu ul li:hover > a {
	background: rgba(255,255,255,0.5);
}

.header .top-menu li .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	width: 250px;
	z-index: 10;
	background: #F3F5F7;
}

.header .top-menu li:hover > .sub-menu {
	display: block;
}

.header .top-menu li .sub-menu li,
.header .top-menu li .sub-menu a {
	display: block;
	float: none;
}

.header .top-menu .sub-menu li {
	position: relative;
}

.header .top-menu .sub-menu li .sub-menu {
	left: 100%;
	top: 0px;
	position: absolute;
}



.header .top-banner {
	/*display: block;*/
	display: none;
	background: #dfe3e6;
	box-shadow: inset 0 -1px 0 0 rgba(0,0,0,0.09), inset 0 1px 0 0 rgba(0,0,0,0.09);
	text-align: center;
}


.header .header-blocks {
	display: block;
}

.header .header-blocks .wrapper {
	display: table;
}

.header .header-blocks .wrapper .header-block {
	display: table-cell;
	vertical-align: middle;
	padding: 48px 30px 48px 0;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.header .header-blocks .wrapper .header-block:last-child {
	padding-right: 0px;
}

.header .header-block h1 {
	display: block;
	color: #848893;
	text-transform: uppercase;
	font-size: 54px;
	letter-spacing: 1px;
	line-height: 100%;
}

.header .header-block h1 a {
	color: inherit;
	line-height: 100%;
}

.header .header-search {
	width: 400px;
}

.header .header-search form {
	position: relative;
}

.header .header-search input[type=text],
.header .header-search input[type=search] {
	width: 100%;
	border: 0px;
	background: #f4f6f8;
	color: #232323;
	font-size: 16px;
	padding: 15px 48px 15px 16px;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-shadow: 0 1px 1px 0 rgba(0,0,0,0.1);
}

.header .header-search input[type=text]:focus,
.header .header-search input[type=search]:focus {
	background: #fff;
}

.header .header-search form:after {
	display: block;
	position: absolute;
	height: 48px;
	width: 48px;
	text-align: center;
	line-height: 48px;
	top: 0px;
	right: 0px;
	font-family: "FontAwesome";
	content: '\f002';
}

.header .header-search input[type=submit] {
	position: absolute;
	z-index: 2;
	top: 0px;
	right: 0px;
	color: transparent;
	height: 48px;
	width: 48px;
	border: 0px;
	background: transparent;
	cursor: pointer;
}

.header .header-weather:after {
	display: block;
	clear: both;
	content: '';
}

/*.header .header-weather .weather-icon {
	display: block;
	float: left;
	width: 65px;
	height: 65px;
	margin-top: -10px;
	margin-bottom: -10px;
	margin-right: 10px;
}*/

.header .header-weather i.wi {
	display: block;
	float: left;
	width: 65px;
	height: 65px;
	margin-top: -10px;
	margin-bottom: -10px;
	font-size: 41px;
	line-height: 65px;
	color: #B7BBC3;
}

.header .header-weather > span {
	display: block;
	margin-left: 75px;
	border-left: 1px solid #DDD;
	padding-left: 19px;
	height: 41px;
	font-weight: bold;
	color: #B7BBBD;
	padding-top: 10px;
	padding-bottom: 6px;
	margin-top: -8px;
	margin-bottom: -6px;
	font-size: 16px;
}

.header .header-weather > span span {
	display: block;
	font-weight: normal;
	font-size: 14px;
	margin-top: 6px;
}





/*------------------------------------------------------------------
[2. Main Menu]

+ .main-menu
	+ .wrapper
		+ ul

-------------------------------------------------------------------*/

.header .main-menu {
	background-color: #252629;
}

.main-menu-wrapper {
	display: block;
	position: relative;
	z-index: 100;
}

.ot-menu-will-follow .main-menu-wrapper.is-now-following .main-menu {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	box-shadow: 0 6px 0 rgba(0,0,0,0.1);
}

.header .main-menu ul {
	display: block;
	color: #fff;
}

.header .main-menu ul a {
	color: #fff;
}

.header .w-articles img {
	width: 60px;
}

.header .main-menu ul:after {
	display: block;
	clear: both;
	content: '';
}

.header .main-menu .wrapper > ul > li {
	display: block;
	float: left;
	background: transparent;
	position: relative;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.header .main-menu .wrapper > ul > li.has-ot-mega-menu {
	position: static!important;
}

.header .main-menu .wrapper > ul > li:hover {
	background: rgba(240, 240, 240, 0.1);
}

.header .main-menu .wrapper > ul > li > a {
	color: #e8edf0;
	display: block;
	font-size: 16px;
	padding: 25px 16px;
	box-shadow: inset 0 63px 0 #252629;
	white-space: nowrap;
}

.header .main-menu .wrapper > ul > li > a span {
	display: block;
}

.header .main-menu .wrapper > ul > li > a span:after {
	display: inline-block;
	font-family: "FontAwesome";
	content: '\f107';
	padding-left: 8px;
	font-size: 14px;
	line-height: 11px;
}

.header .main-menu .wrapper > ul > li:hover > a {
	box-shadow: inset 0 0 40px -40px #252629!important;
}

.header .main-menu .wrapper > ul > li > ul.sub-menu {
	display: none;
	position: absolute;
	z-index: 10;
	top: 100%;
	background: #252629;
	width: 320px;
}

.header .main-menu ul.sub-menu {
	box-shadow: 0 4px 0 rgba(0,0,0,0.1);
}

.header .main-menu ul.sub-menu > li > a {
	display: block;
	font-size: 16px;
	padding: 18px 16px;
	border-bottom: 1px solid rgba(255,255,255,0.05);
}

.header .main-menu ul.sub-menu > li:hover > a {
	background: rgba(255,255,255,0.05);
}

.header .main-menu .wrapper > ul > li:hover > ul {
	display: block;
}

.header .main-menu ul.sub-menu li {
	position: relative;
	background: inherit;
}

.header .main-menu ul.sub-menu li a span:before {
	display: block;
	float: right;
	font-family: "FontAwesome";
	content: '\f105';
	padding-left: 8px;
	font-size: 14px;
	line-height: 16px;
}

.header .main-menu ul.sub-menu ul {
	display: none;
	position: absolute;
	left: 100%;
	top: 0px;
	background: inherit;
	width: 320px;
}

.header .main-menu ul.sub-menu li:hover > ul {
	display: block;
}


.header .main-menu .wrapper > ul > li > ul.ot-mega-menu {
	display: none;
	position: absolute;
	z-index: 10;
	top: 100%;
	left: 0px;
	right: 0px;
	background: inherit;
}

.header .main-menu .wrapper > ul > li:hover > ul.ot-mega-menu {
	display: block;
}

.ot-mega-menu {
	display: block;
	box-shadow: 0 4px 0 rgba(0,0,0,0.1);
}

.ot-mega-menu > li {
	display: table;
	background: #252629;
	margin-top: 4px;
	width: 100%;
}

.ot-mega-menu > li .widget {
	display: table-cell;
	width: 33%;
	min-height: 0px;
	padding: 30px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.ot-mega-menu {
	color: #8e8f91!important;
}

.ot-mega-menu p {
	color: inherit;
}




/*------------------------------------------------------------------
[3. Content styling]

+ .content
	+ .breadcrumbs
		+ ul.right
		+ h2
	+ .head-slider


-------------------------------------------------------------------*/

.content {

}

.content > .wrapper {
	padding: 40px 0;
}

.breadcrumbs {
	background-image: url(../../files/NZM3/images/breadcrumb-bg.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-color: #2e2f33;
	color: #e8edf0;
	padding: 40px 0;
	box-shadow: inset 0 8px 0 rgba(0,0,0,0.04), inset 0 -8px 0 rgba(0,0,0,0.04);
	z-index: 1;
	position: relative;
}

.breadcrumbs h2 {
	font-size: 38px;
	text-transform: uppercase;
}

.breadcrumbs ul {
	display: block;
	padding: 10px 0;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	font-weight: 500;
}

.breadcrumbs ul li {
	display: inline-block;
	position: relative;
	padding-left: 15px;
	margin-left: 15px;
	color: rgba(255,255,255,0.5);
}

.breadcrumbs ul li:before {
	display: block;
	position: absolute;
	left: -5px;
	top: 0px;
	content: '/';
	font-family: "FontAwesome";
}

.breadcrumbs ul li:first-child:before {
	display: none;
}

.breadcrumbs a {
	color: rgba(255,255,255,0.5);
}

.breadcrumbs a:hover {
	color: #fff;
}



.header-photo {
	background-repeat: no-repeat;
	background-position: center;
	background-size: 100% auto;
	background-color: #2e2f33;
	color: #e8edf0;
	padding: 120px 0;
	box-shadow: inset 0 8px 0 rgba(0,0,0,0.1), inset 0 -8px 0 rgba(0,0,0,0.1);
	position: relative;
	background-size: cover;
}

.header-photo:before {
	display: block;
	position: absolute;
	z-index: 0;
	content: '';
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background-color: inherit;
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.article-header h2,
.header-photo h2 {
	font-size: 38px;
	text-transform: uppercase;
}

.header-photo a {
	color: rgba(255,255,255,0.5);
}

.header-photo a:hover {
	color: #fff;
}

.header-photo .header-photo-inner {
	display: block;
	width: 62%;
}

.article-header h2,
.header-photo .header-photo-inner h2 {
	display: block;
	font-size: 46px;
	line-height: 120%;
	margin-bottom: 20px;
}

.article-header .comments-tag,
.header-photo .comments-tag {
	color: #fff;
	background: #f39c12;
	display: inline-block;
	margin-bottom: 20px;
	padding: 10px 15px;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	position: relative;
}

.article-header .comments-tag:before,
.header-photo .comments-tag:before {
	display: block;
	position: absolute;
	z-index: 0;
	background: inherit;
	content: '';
	width: 10px;
	height: 10px;
	left: 15px;
	bottom: -4px;
	-ms-transform: skew(0deg,-35deg);
	-webkit-transform: skew(0deg,-35deg);
	transform: skew(0deg,-35deg);
}

.article-header .header-photo-meta,
.header-photo .header-photo-meta {
	display: block;
	font-size: 20px;
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	color: rgba(255,255,255,0.5);
}

.article-header .header-photo-meta .meta-p,
.header-photo .header-photo-meta .meta-p {
	display: inline-block;
	position: relative;
	margin-right: 26px;
}

.article-header .header-photo-meta .meta-p:after,
.header-photo .header-photo-meta .meta-p:after {
	display: block;
	position: absolute;
	content: '\f111';
	font-family: "FontAwesome";
	line-height: inherit;
	font-size: 6px;
	color: rgba(255,255,255,0.3);
	top: 0px;
	right: -18px;
	line-height: 20px;
}

.article-header .header-photo-meta .meta-p:last-child:after,
.header-photo .header-photo-meta .meta-p:last-child:after {
	display: none;
}



.head-slider {
	background-image: url(../../files/NZM3/images/breadcrumb-bg.png);
	background-repeat: no-repeat;
	background-position: center top;
	background-color: #2e2f33;
	color: #e8edf0;
	padding: 40px 0;
	box-shadow: inset 0 8px 0 rgba(0,0,0,0.04), inset 0 -8px 0 rgba(0,0,0,0.04);
	overflow: hidden;
	z-index: 1;
	position: relative;
}

.head-slider-wrap {
	display: block;
}

.head-slider-wrap .head-slider-slide {
	display: block;
}

.head-slider-wrap .head-slider-slide:after {
	display: block;
	clear: both;
	content: '';
}

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

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

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

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


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

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

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

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



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

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

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

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


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

	70% {
		opacity: 0;
	}

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

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

	70% {
		opacity: 0;
	}

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

.head-slider-wrap {
	position: relative;
}

.head-slider-wrap .head-slider-slide > div:before {
	display: block;
	position: absolute;
	content: '';
	z-index: 10;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
}

.head-slider-wrap .head-slider-slide.active > div:before {
	display: none;
}

.head-slider-wrap .head-slider-slide {
	position: absolute;
	top: 0px;
	left: 0px;
	z-index: 0;
}

.head-slider-wrap .head-slider-slide > div {
	display: none;
	position: relative;
}

.head-slider-wrap .head-slider-slide > div a {
	display: block;
	box-shadow: 0 3px 4px 0 rgba(0,0,0,0.2);
	color: #fff;
	background: url(../../files/NZM3/images/slider-hover-bg.jpg) repeat center top;
}

.head-slider-wrap .head-slider-slide > div .sl-title {
	display: block;
	position: absolute;
	z-index: 2;
	left: 45px;
	bottom: 35px;
	font-size: 22px;
	font-weight: 600;
	padding-right: 150px;
	line-height: 110%;
	color: #fff;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.head-slider-wrap .head-slider-slide > div a {
	color: #84B929;
	text-shadow: 0 1px 0 rgba(0,0,0,0.2);
}

.head-slider-wrap .head-slider-slide > div a img {
	backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translateX(0);
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
}

.head-slider-wrap .head-slider-slide > div:hover a .sl-title {
	/* color: inherit; */
	color: #fff;
}

.head-slider-wrap .head-slider-slide > div a .sl-icon-l {
	display: block;
	position: absolute;
	z-index: 10;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.head-slider-wrap .head-slider-slide > div a .sl-icon-l span {
	display: block;
	content: '';
	width: 200px;
	height: 200px;
	position: absolute;
	z-index: 1;
	-ms-transform: rotate(45deg);
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	right: -110px;
	bottom: -110px;
}

.head-slider-wrap .head-slider-slide > div a .sl-icon-l span:before {
	display: block;
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 1;
	filter: alpha(opacity=100);
}

.head-slider-wrap .head-slider-slide > div:hover a .sl-icon-l span:before {
	opacity: 0;
	filter: alpha(opacity=0);
}

.head-slider-wrap .head-slider-slide > div a .sl-icon-l i.fa {
	position: absolute;
	right: 20px;
	bottom: 20px;
	z-index: 2;
	font-size: 30px;
	color: #252629;
}

.head-slider-wrap .head-slider-slide > div a .sl-icon-s {
	display: block;
	position: absolute;
	z-index: 10;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.head-slider-wrap .head-slider-slide > div a .sl-icon-s span {
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	z-index: 1;
	left: 50%;
	top: 50%;
	background: #ADBA22;
	backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translateX(0);
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
}

.head-slider-wrap .head-slider-slide > div a .sl-icon-s .span-1 {
	-ms-transform: rotate(72deg);
	-webkit-transform: rotate(72deg);
	transform: rotate(72deg);
	margin-left: -28px;
	margin-top: -22px;
}

.head-slider-wrap .head-slider-slide > div a .sl-icon-s .span-2 {
	-ms-transform: rotate(144deg);
	-webkit-transform: rotate(144deg);
	transform: rotate(144deg);
	margin-left: -25px;
	margin-top: -31px;
}

.head-slider-wrap .head-slider-slide > div a .sl-icon-s .span-3 {
	-ms-transform: rotate(216deg);
	-webkit-transform: rotate(216deg);
	transform: rotate(216deg);
	margin-left: -15px;
	margin-top: -31px;
}

.head-slider-wrap .head-slider-slide > div a .sl-icon-s .span-4 {
	-ms-transform: rotate(288deg);
	-webkit-transform: rotate(288deg);
	transform: rotate(288deg);
	margin-left: -12px;
	margin-top: -22px;
}

.head-slider-wrap .head-slider-slide > div a .sl-icon-s .span-5 {
	margin-left: -20px;
	margin-top: -17px;
}

.head-slider-wrap .head-slider-slide > div a .sl-icon-s span:before {
	display: block;
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: #fff;
	opacity: 1;
	filter: alpha(opacity=100);
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.head-slider-wrap .head-slider-slide > div:hover a .sl-icon-s span:before {
	opacity: 0;
	filter: alpha(opacity=0);
}

.head-slider-wrap .head-slider-slide > div a .sl-icon-s i.fa {
	position: absolute;
	left: 50%;
	top: 50%;
	z-index: 2;
	margin-left: -10px;
	margin-top: -18px;
	font-size: 28px;
	color: #252629;
}

.head-slider-wrap .head-slider-slide > div .sl-date {
	display: block;
	position: absolute;
	z-index: 2;
	left: 45px;
	bottom: 45px;
	font-size: 18px;
	text-transform: uppercase;
	line-height: 100%;
	font-weight: normal;
	color: #fff;
	opacity: 0.5;
	filter: alpha(opacity=50);
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	overflow: hidden;
	padding-bottom: 7px;
}

.head-slider-wrap .head-slider-slide > div .sl-date:after {
	display: block;
	position: absolute;
	left: 0px;
	bottom: 0px;
	letter-spacing: 1px;
	font-weight: normal;
	content: '....................................................';
}

.head-slider-wrap .head-slider-slide > div:hover a .sl-date {
	opacity: 1;
	filter: alpha(opacity=100);
}

.head-slider-wrap .head-slider-slide > div .sl-category {
	display: block;
	position: absolute;
	z-index: 11;
	left: 45px;
	top: 25px;
	font-size: 17px;
	text-transform: uppercase;
	line-height: 100%;
	font-weight: 600;
	color: inherit;
	border: 1px solid #adba22;
	/* border-color: inherit; */
	padding: 8px 12px;
	box-shadow: 0 1px 0 rgba(0,0,0,0.1), inset 0 1px 0 rgba(0,0,0,0.1);
	-moz-box-shadow: 0 1px 0 rgba(0,0,0,0.1), inset 0 1px 0 rgba(0,0,0,0.1);
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.head-slider-wrap .head-slider-slide > div:hover  .sl-category {
	border: 1px solid transparent !important;
	background: #000;
}

.head-slider-wrap .head-slider-slide > div:nth-child(n+2) {
	text-align: center;
}

.head-slider-wrap .head-slider-slide > div:nth-child(n+2) .sl-title {
	left: 0px;
	bottom: 0px;
	width: 100%;
	padding: 15px;
	font-size: 15px;
	text-align: center;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	line-height: 120%;
}

.head-slider-wrap .head-slider-slide > div:nth-child(n+2) .sl-centered {
	display: block;
	position: absolute;
	z-index: 2;
	left: 0px;
	top: 10px;
	text-align: center;
	width: 100%;
}

.head-slider-wrap .head-slider-slide > div:nth-child(n+2) .sl-category {
	position: static;
	left: auto;
	top: auto;
	display: inline-block;
	padding: 7px 12px;
	font-size: 13px;
}

/*.head-slider-wrap .head-slider-slide > div:nth-child(n+2) i.fa {
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 3;
}*/

.head-slider-wrap .head-slider-slide > div img {
	opacity: 0.4;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.head-slider-wrap .head-slider-slide > div:hover img {
	opacity: 0.7;
}

.head-slider-wrap .head-slider-slide.active {
	position: relative;
	z-index: 2;
}

.head-slider-wrap .head-slider-slide > div {
	-webkit-animation-duration: 0s;
	animation-duration: 0s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}

.head-slider-wrap .head-slider-slide.diss.active > div,
.head-slider-wrap .head-slider-slide.active > div {
	display: block;
	-webkit-animation-name: fadeInRight;
	animation-name: fadeInRight;
}

.head-slider-wrap .head-slider-slide.diss.ot-go-left.active > div {
	-webkit-animation-name: fadeInLeft;
	animation-name: fadeInLeft;
}

.head-slider-wrap .head-slider-slide.diss > div {
	display: block;
	-webkit-animation-name: fadeOutLeft;
	animation-name: fadeOutLeft;
}

.head-slider-wrap .head-slider-slide.diss.ot-go-left > div {
	-webkit-animation-name: fadeOutRight;
	animation-name: fadeOutRight;
}



.head-slider-wrap .head-slider-slide.ot-go-left > div:nth-child(1) {
	-webkit-animation-delay: 0.4s;
	-moz-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

.head-slider-wrap .head-slider-slide.ot-go-left > div:nth-child(2) {
	-webkit-animation-delay: 0.1s;
	-moz-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

.head-slider-wrap .head-slider-slide.ot-go-left > div:nth-child(3) {
	-webkit-animation-delay: 0s;
	-moz-animation-delay: 0s;
	animation-delay: 0s;
}

.head-slider-wrap .head-slider-slide.ot-go-left > div:nth-child(4) {
	-webkit-animation-delay: 0.3s;
	-moz-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.head-slider-wrap .head-slider-slide.ot-go-left > div:nth-child(5) {
	-webkit-animation-delay: 0.2s;
	-moz-animation-delay: 0.2s;
	animation-delay: 0.2s;
}



.head-slider-wrap .head-slider-slide > div:nth-child(2) {
	-webkit-animation-delay: 0.1s;
	-moz-animation-delay: 0.1s;
	animation-delay: 0.1s;
}

.head-slider-wrap .head-slider-slide > div:nth-child(3) {
	-webkit-animation-delay: 0.2s;
	-moz-animation-delay: 0.2s;
	animation-delay: 0.2s;
}

.head-slider-wrap .head-slider-slide > div:nth-child(4) {
	-webkit-animation-delay: 0.3s;
	-moz-animation-delay: 0.3s;
	animation-delay: 0.3s;
}

.head-slider-wrap .head-slider-slide > div:nth-child(5) {
	-webkit-animation-delay: 0.4s;
	-moz-animation-delay: 0.4s;
	animation-delay: 0.4s;
}

.head-slider .head-slide-1 {
	display: block;
	float: left;
	width: 49.5%;
}

.head-slider .head-slide-2 {
	display: block;
	float: left;
	margin-left: 0.834%;
	margin-bottom: 0.88%;
	width: 24.416%;
}

.head-slider .head-slide-2:nth-child(n+4) {
	margin-bottom: 0px;
}

.head-slider-nav {
	display: block;
	text-align: center;
	padding-top: 33px;
	text-transform: uppercase;
	font-size: 15px;
	cursor: default;
}

.head-slider-nav a {
	color: rgba(255,255,255,0.3);
	display: inline-block;
	line-height: 150%;
}

.head-slider-nav a:hover {
	color: #fff;
}

.head-slider-nav .prev i.fa {
	padding-right: 10px;
}

.head-slider-nav .next i.fa {
	padding-left: 10px;
}

.head-slider-nav .next {
	margin-left: 15px;
}

.head-slider-nav .prev {
	margin-right: 15px;
}

.head-slider-nav .slider-blob {
	background: url(../../files/NZM3/images/slider-blob-inactive.png) no-repeat center top;
	width: 21px;
	height: 21px;
	line-height: 21px;
	color: transparent;
	text-align: center;
	font-size: 0;
	vertical-align: bottom;
	opacity: 0.3;
	padding: 0 4px;
}

.head-slider-nav .slider-blob:hover {
	background: url(../../files/NZM3/images/slider-blob-active.png) no-repeat center top;
	color: transparent;
	opacity: 0.7;
}

.head-slider-nav .slider-blob.active {
	background: url(../../files/NZM3/images/slider-blob-active.png) no-repeat center top;
	color: transparent;
	opacity: 1;
}

.head-slider-nav .slider-blob.go-retina {
	background: url(../../files/NZM3/images/slider-blob-inactive@2x.png) no-repeat center top;
	background-size: auto 100%;
}

.head-slider-nav .slider-blob.go-retina:hover,
.head-slider-nav .slider-blob.go-retina.active {
	background: url(../../files/NZM3/images/slider-blob-active@2x.png) no-repeat center top;
	background-size: auto 100%;
}

.head-slider.reverse-show {
	display: none;
}

.head-slider.reverse-show .head-slider-slide {
	display: inline-block;
	position: relative;
	top: auto;
	left: auto;
	white-space: normal;
	margin-right: 10px;
	margin-left: 10px;
}

.head-slider.reverse-show .head-slider-wrap .head-slider-slide > div {
	display: block;
	width: 100%;
}

.head-slider.reverse-show .head-slider-wrap .head-slider-slide > div img {
	width: 100%;
}

.head-slider.reverse-show .head-slider-wrap .head-slider-slide > div .sl-title {
	left: 30px;
	bottom: 20px;
	font-size: 14px;
}

.head-slider.reverse-show .head-slider-wrap .head-slider-slide > div .sl-date {
	left: 30px;
	bottom: 30px;
	font-size: 13px;
}

.head-slider.reverse-show .head-slider-wrap .head-slider-slide > div .sl-category {
	right: 30px;
	left: auto;
	top: 20px;
	font-size: 12px;
	padding: 6px 8px;
}

.head-slider.reverse-show .head-slider-wrap .head-slider-slide > div a .sl-icon-l span {
	right: -155px;
}

.head-slider.reverse-show .head-slider-wrap .head-slider-slide > div a .sl-icon-l i.fa {
	right: 12px;
	bottom: 12px;
	font-size: 20px;
}

.head-slider.reverse-show .head-slider-wrap {
	display: block;
	white-space: nowrap;
	overflow-x: auto;
}

.head-slider.reverse-show .head-slider-wrap .head-slider-slide > div .sl-date,
.head-slider.reverse-show .head-slider-wrap .head-slider-slide > div a:hover,
.head-slider.reverse-show .head-slider-wrap .head-slider-slide > div a {
	color: #fff!important;
	opacity: 1;
	filter: alpha(opacity=100);
}

.head-slider.reverse-show .head-slider-wrap .head-slider-slide > div a .sl-icon-l span {
	background: #fff!important;
}

.head-slider.reverse-show .head-slider-wrap .head-slider-slide > div:hover a .sl-category {
	border-color: inherit;
	background: transparent;
}

.head-slider.reverse-show .head-slider-wrap .head-slider-slide > div:hover img {
	opacity: 0.4;
	filter: alpha(opacity=40);
}




.main-block {
	display: block;
	margin-bottom: 40px;
}

.paragraph-row:last-child .main-block {
	margin-bottom: 0px;
}

.main-block .main-title {
	background: #f0f4f6 url(../../files/NZM3/images/title-lines.png) repeat-y left top;
	padding: 17px 20px 17px 30px;
	text-transform: uppercase;
	margin-bottom: 20px;
}

.main-block .main-title h3 {
	color: #2D2E32;
	font-size: 22px;
	line-height: 145%;
}

.main-block .main-title h3 .title-category {
	color: #e86802;
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding-bottom: 5px;
	margin-bottom: -5px;
}

.main-block .main-title h3 .title-category:after {
	display: block;
	position: absolute;
	bottom: 10px;
	left: 0px;
	font-size: 18px;
	content: '..........................................................';
	line-height: 0px;
	cursor: text;
}

.main-block .main-title h3 a.title-category:hover {
	color: inherit!important;
}

.main-block .main-title h3 a.title-category:after {
	cursor: pointer;
}

.main-block .main-title .right {
	line-height: 100%;
	padding: 4px 0;
	display: block;
	font-size: 14px;
	color: #a2a5a7;
	text-transform: none;
}

.main-block .main-title a.right:hover {
	color: #232323;
}

.main-block .main-title > div {
	display: block;
}


.main-block .article-layout-default {
	display: block;
}

.main-block .article-layout-default .item {
	display: block;
	margin-bottom: 35px;
}

.post.sticky {
	padding: 20px!important;
	background-color: #F1F3F4!important;
}

.main-block .article-layout-default .item:after {
	display: block;
	clear: both;
	content: '';
}

.main-block .article-layout-default .item .item-image {
	display: block;
	float: left;
	width: 32%;
}

.main-block .article-layout-default .item .item-image img {
	width: 100%;
	height: auto;
}

.main-block .article-layout-default .item .item-content {
	display: block;
	margin-left: 35%;
}

.main-block .article-layout-default .item .item-content > h3 {
	display: block;
	margin-bottom: 18px;
	font-size: 24px;
	color: #232323;
	text-transform: uppercase;
	line-height: 130%;
}

.main-block .article-layout-default .item .item-content > h3 a {
	color: inherit;
}

.main-block .article-layout-default .item .item-content > .item-meta a:hover,
.main-block .article-layout-default .item .item-content > h3 a:hover {
	color: #4b95d4;
}

.main-block .article-layout-default .item .item-content > .item-meta {
	display: block;
	margin-bottom: 15px;
	font-size: 16px;
	font-weight: bold;
	color: #737679;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
}

.main-block .article-layout-default .item .item-content > .item-meta > span:after,
.main-block .article-layout-default .item .item-content > .item-meta > a:after {
	display: block;
	position: absolute;
	background: #B2B2B2;
	width: 4px;
	height: 4px;
	top: 6px;
	right: -12px;
	border-radius: 50%;
	-moz-border-radius: 50%;
	content: '';
}

.main-block .article-layout-default .item .item-content > .item-meta > span:last-child:after,
.main-block .article-layout-default .item .item-content > .item-meta > a:last-child:after {
	display: none;
}


.main-block .article-layout-default .item .item-content > .item-meta > span {
	display: inline-block;
	margin-right: 16px;
	position: relative;
}

.main-block .article-layout-default .item .item-content > .item-meta > a {
	display: inline-block;
	color: inherit;
	margin-right: 16px;
	position: relative;
}

.main-block .article-layout-default .item .item-content > .item-text {
	display: block;
	margin-bottom: 15px;
	font-size: 15px;
	line-height: 150%;
}

.main-block .article-layout-default .item-footer-more {
	display: inline-block;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	color: #58595d;
	text-shadow: 0 1px 0 rgba(255,255,255,0.8);
	background: #f2f5f7;
	padding: 12px 15px;
	box-shadow: 0 3px 0 rgba(0,0,0,0.03);
	margin-bottom: 3px;
	position: relative;
	z-index: 2;
	margin: 0 1px;
}

.main-block .article-layout-default .item-footer-more i.fa {
	padding-left: 8px;
	font-size: 10px;
}

.main-block .article-layout-default .item-footer-more:hover {
	background: #fff;
}



.main-block .article-layout-1 {
	display: block;
}

.main-block .article-layout-1 a {
	display: block;
	position: relative;
	color: #fff;
	overflow: hidden;
}

.main-block .article-layout-1 img {
	display: block;
	width: 100%;
	height: auto;
}

.main-block .article-layout-1 .item {
	display: block;
	float: left;
	width: 18.561%;
	margin-left: 1.8%;
}

.main-block .article-layout-1:after {
	display: block;
	clear: both;
	content: '';
}

.main-block .article-layout-1 .item-header {
	display: block;
	position: absolute;
	z-index: 1;
	background: #e0582f;
	font-weight: bold;
	font-size: 11px;
	text-transform: uppercase;
	padding: 18px 8px 8px 8px;
	line-height: 100%;
	left: 10px;
	top: 0px;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.main-block .article-layout-1 .item-image {
	display: block;
	background: -webkit-linear-gradient(bottom right, #c55f1e 0%, #66d6ff 100%);
	background: -o-linear-gradient(bottom right, #c55f1e 0%, #66d6ff 100%);
	background: linear-gradient(to top left, #c55f1e 0%, #66d6ff 100%);
}

.main-block .article-layout-1 .item a .item-image img {
	backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translateX(0);
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	filter: alpha(opacity=70);
	opacity: 0.7;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.main-block .article-layout-1 .item-content {
	display: block;
	position: absolute;
	z-index: 1;
	left: 0px;
	bottom: 0px;
	background: rgba(37,38,41,0.7);
	padding: 18px 15px;
	box-shadow: 0 -10px 20px rgba(0,0,0,0.2);
	width: 100%;
	filter: alpha(opacity=100);
	opacity: 1;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.main-block .article-layout-1 .item-content .meta-cat {
	display: block;
	padding-bottom: 10px;
	font-size: 11px;
	text-transform: uppercase;
	color: #f16c00;
}

.main-block .article-layout-1 .item-content strong {
	display: block;
	line-height: 120%;
	font-size: 15px;
}

.main-block .article-layout-1 .item-content .meta-items {
	display: block;
	padding-top: 10px;
	font-size: 11px;
	opacity: 0.5;
	font-weight: bold;
}






.main-block .article-layout-2 .item {
	display: block;
	float: left;
	position: relative;
}

.main-block .article-layout-2:after {
	display: block;
	clear: both;
	content: '';
}

.main-block .article-layout-2 .item .item-image {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
	background: -webkit-linear-gradient(bottom right, #c55f1e 0%, #66d6ff 100%);
	background: -o-linear-gradient(bottom right, #c55f1e 0%, #66d6ff 100%);
	background: linear-gradient(to top left, #c55f1e 0%, #66d6ff 100%);
}

.main-block .article-layout-2 .item .item-image:after {
	display: block;
	content: '';
	position: absolute;
	z-index: 1;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	box-shadow: inset 0 -80px 40px -40px rgba(0,0,0,0.7);
	opacity: 1;
	filter: alpha(opacity=100);
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.main-block .article-layout-2 .item .item-image img {
	display: block;
	width: 100%;
	height: auto;
	opacity: 0.7;
	filter: alpha(opacity=70);
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.main-block .article-layout-2 .item .item-header {
	display: block;
	position: absolute;
	bottom: 0px;
	left: 0px;
	z-index: 2;
	width: 100%;
	text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}

.main-block .article-layout-2 .item .item-header .item-meta {
	display: block;
	color: #fff;
	padding: 10px 0 17px 0;
	font-size: 11px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: -40px;
	border-top: 1px solid rgba(255,255,255,0.3);
	opacity: 0;
	filter: alpha(opacity=0);
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.main-block .article-layout-2 .item .item-header .item-meta i.fa {
	padding-right: 7px;
}

.main-block .article-layout-2 .item .item-header .item-meta span {
	display: block;
	color: #fff;
}

.main-block .article-layout-2 .item .item-header strong {
	display: block;
	color: #fff;
	padding: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	left: 0px;
	bottom: 0px;
	font-size: 16px;
	line-height: 130%;
	font-weight: 500;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.main-block .article-layout-2 .item .item-content {
	display: block;
	padding: 15px;
	color: #232323;
	background: #fff;
	width: 100%;
	font-size: 13px;
	line-height: 140%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.main-block .article-layout-2 .item .item-footer {
	display: block;
	background: #2C2C30;
	color: #fff;
	padding: 17px 15px;
	font-size: 12px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	overflow: hidden;
	position: relative;
	text-shadow: 0 1px 0 rgba(0,0,0,0.4);
}

.main-block .article-layout-2 .item .item-footer > i.set-blur {
	display: block;
	position: absolute;
	z-index: 0;
	width: 120%;
	left: -10%;
	top: -65%;
	background-size: 100% 100%;
	padding-bottom: 50%;
	overflow: hidden;
	-webkit-filter: blur(15px);
	-moz-filter: blur(15px);
	-o-filter: blur(15px);
	-ms-filter: blur(15px);
	filter: blur(15px);
	backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translateX(0);
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
}

.main-block .article-layout-2 .item .item-footer > i.set-blur:before {
	display: block;
	content: '';
	position: absolute;
	width: 100%;
	left: 0px;
	top: 0px;
	height: 100%;
	background: #2E2F32;
	opacity: 0.8;
	filter: alpha(opacity=80);
}

.main-block .article-layout-2 .item .item-footer > span {
	display: block;
	position: relative;
	z-index: 1;
}

.main-block .article-layout-2 .item .item-footer > span i.fa {
	padding-right: 8px;
}

.main-block .article-layout-2 .item .item-footer > span strong {
	position: relative;
	display: block;
	overflow: hidden;
	padding-bottom: 4px;
	margin-bottom: -4px;
}

.main-block .article-layout-2 .item .item-footer > span strong:after {
	display: block;
	content: '.....................................................';
	position: absolute;
	bottom: 0px;
	left: 0px;
	font-size: 10px;
	font-weight: normal;
	letter-spacing: 1px;
}






.main-block .article-layout-3 .item {
	display: block;
	float: left;
	position: relative;
}

.main-block .article-layout-3:after {
	display: block;
	clear: both;
	content: '';
}

.main-block .article-layout-3 .item .item-image {
	display: block;
	position: relative;
	width: 100%;
	overflow: hidden;
	background: -webkit-linear-gradient(bottom right, #c55f1e 0%, #66d6ff 100%);
	background: -o-linear-gradient(bottom right, #c55f1e 0%, #66d6ff 100%);
	background: linear-gradient(to top left, #c55f1e 0%, #66d6ff 100%);
}

.main-block .article-layout-3 .item .item-image img {
	max-width: 100%;
	width: 100%;
	/* height: auto; */
	min-height:250px;
	opacity: 0.7;
	filter: alpha(opacity=70);
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translateX(0);
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
}

.main-block .article-layout-3 .item .item-content {
	display: block;
	background: #f0f4f6;
	color: #232323;
	width: 100%;
	font-size: 14px;
	line-height: 150%;
	color: #737373;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.main-block .article-layout-3 .item .item-content .item-text {
	/* display: block;
	padding: 15px; */
	height:202px;
	overflow-x:hidden !important;
	
}

.main-block .article-layout-3 .item .item-content .item-text2 {
	display:block;
	padding: 15px;
	line-height:140%;
}

.main-block .article-layout-3 .item .item-content .item-footer-more {
	display: block;
	padding: 15px 0;
	margin: 0 15px;
	text-align: center;
	font-size: 14px;
	text-transform: uppercase;
	border-top: 1px solid rgba(0,0,0,0.06);
	letter-spacing: 0.3px;
	color: #737373;
}

.main-block .article-layout-3 .item .item-image .item-header {
	display: block;
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 2;
	color: #fff;
	background: rgba(0,0,0,0.3);
	text-shadow: 0 1px 0 rgba(0,0,0,0.4);
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.main-block .article-layout-3 .item .item-image .item-header strong {
	display: block;
	position: absolute;
	bottom: 15px;
	left: 15px;
	right: 15px;
	font-size: 15px;
	line-height: 120%;
	font-weight: 500;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.main-block .article-layout-3 .item .item-header .item-meta {
	display: block;
	color: #fff;
	padding: 10px 0 17px 0;
	font-size: 11px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: -40px;
	border-top: 1px solid rgba(255,255,255,0.3);
	opacity: 0;
	filter: alpha(opacity=0);
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.main-block .article-layout-3 .item .item-header .item-meta i.fa {
	padding-right: 7px;
}

.main-block .article-layout-3 .item .item-header .item-meta span {
	display: block;
	color: #fff;
}

.main-block .article-layout-3 .item .item-header .item-category {
	display: block;
	position: absolute;
	top: 15px;
	left: 15px;
	right: 15px;
	font-size: 12px;
	text-transform: uppercase;
	z-index:2;
}

.main-block .article-layout-3 .item .item-header .item-category span {
	display: inline-block;
	border: 1px solid #f39c12;
	color: #f39c12;
	padding: 6px 10px 5px 10px;
	line-height: 100%;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}



.article-videos {
	display: block;
}

.article-videos:after {
	display: block;
	clear: both;
	content: '';
}

.article-videos .item {
	display: block;
	float: left;
}

.article-videos .item .item-image-inner {
	display: block;
	width: 100%;
	position: relative;
	padding-bottom: 55%;
	z-index: 0;
	background-size: 100% auto;
	background-position: center;
	filter: alpha(opacity=70);
	opacity: 0.7;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.article-videos .item .item-image-inner:before {
	display: block;
	position: absolute;
	z-index: 1;
	content: '';
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.4);
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.article-videos .item .item-image {
	display: block;
	width: 100%;
	position: relative;
	background: -webkit-linear-gradient(bottom right, #c55f1e 0%, #66d6ff 100%);
	background: -o-linear-gradient(bottom right, #c55f1e 0%, #66d6ff 100%);
	background: linear-gradient(to top left, #c55f1e 0%, #66d6ff 100%);
}

.article-videos .item .item-content {
	display: block;
	width: 100%;
	top: 20%;
	text-align: center;
	position: absolute;
	padding: 0 20px;
	color: #fff;
	z-index: 1;
	text-shadow: 0 1px 0 rgba(0,0,0,0.5);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.article-videos .item .item-content strong {
	display: block;
	font-size: 15px;
	font-weight: 500;
	line-height: 130%;
}

.article-videos .item .item-content .item-button {
	display: inline-block;
	background: rgba(0,0,0,0.4);
	border-radius: 2px;
	-moz-border-radius: 2px;
	line-height: 100%;
	padding: 9px 13px;
	margin-top: 13px;
	font-size: 12px;
	font-weight: bold;
	text-shadow: none;
	text-transform: uppercase;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}







/* .lets-do-5 */
.main-block > div.lets-do-5 > .item {
	width: 18.561%;
	margin-left: 1.8%;
}

.main-block > div.lets-do-5 > .item:nth-child(5n+1) {
	clear: both;
	margin-left: 0px;
}

.main-block > div.lets-do-5 > .item:nth-child(n+6) {
	margin-top: 28px;
}


/* .lets-do-4 */
.main-block > div.lets-do-4 > .item {
	width: 23.2%;
	margin-left: 2.4%;
}

.main-block > div.lets-do-4 > .item:nth-child(4n+1) {
	clear: both;
	margin-left: 0px;
}

.main-block > div.lets-do-4 > .item:nth-child(n+5) {
	margin-top: 28px;
}


/* .lets-do-3 */
.main-block > div.lets-do-3 > .item {
	width: 31.33%;
	margin-left: 3%;
}

.main-block > div.lets-do-3 > .item:nth-child(3n+1) {
	clear: both;
	margin-left: 0px;
}

.main-block > div.lets-do-3 > .item:nth-child(n+4) {
	margin-top: 28px;
}


/* .lets-do-2 */
.main-block > div.lets-do-2 > .item {
	width: 48.8%;
	margin-left: 2.4%;
}

.main-block > div.lets-do-2 > .item:nth-child(2n+1) {
	clear: both;
	margin-left: 0px;
}

.main-block > div.lets-do-2 > .item:nth-child(n+3) {
	margin-top: 20px;
}


/* .lets-do-1 */
.main-block > div.lets-do-1 > .item {
	width: 100%;
	margin-top: 28px;
	margin-left: 0px;
}


.main-content.more-button {
	display: block;
	margin-top: 40px;
	margin-bottom: 50px;
	position: relative;
	overflow: hidden;
	text-align: center;
}

.main-content.more-button a {
	display: inline-block;
	font-size: 14px;
	font-weight: bold;
	text-transform: uppercase;
	color: #58595d;
	text-shadow: 0 1px 0 rgba(255,255,255,0.8);
	background: #f2f5f7;
	padding: 16px 22px;
	box-shadow: 0 3px 0 rgba(0,0,0,0.03);
	margin-bottom: 3px;
}

.main-content.more-button a:hover {
	background: #fff;
}

.main-content.more-button a:active {
	background: #f2f5f7;
}

.main-content.more-button:before {
	display: block;
	content: '';
	clear: both;
	position: absolute;
	height: 1px;
	width: 50%;
	right: 50%;
	margin-right: 120px;
	top: 46%;
	background: #d7dee2;
}

.main-content.more-button:after {
	display: block;
	content: '';
	clear: both;
	position: absolute;
	height: 1px;
	width: 50%;
	left: 50%;
	margin-left: 120px;
	top: 46%;
	background: #d7dee2;
}


.main-content.big-message {
	display: block;
	padding: 100px 0;
}

.big-message-inner {
	display: block;
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	color: #252629;
}

.big-message-inner > i.fa {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	font-size: 150px;
}

.big-message-inner {
	padding-left: 170px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.big-message-inner h1 {
	font-size: 50px;
	text-transform: uppercase;
	margin-bottom: 15px;
}

.big-message-inner h2 {
	font-size: 32px;
	text-transform: uppercase;
	margin-bottom: 25px;
	color: #c0c2c9;
	font-weight: 500;
}

.big-message-inner p {
	font-size: 18px;
	margin-bottom: 25px;
	line-height: 150%;
	color: #78797f;
}

.big-message-inner .back-button {
	font-size: 18px;
	display: inline-block;
	font-weight: bold;
}

.big-message-inner .back-button i.fa {
	padding-right: 10px;
}




.main-block .article-featured .item a {
	position: relative;
	display: block;
	color: #fff;
	padding-bottom: 25%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.main-block .article-featured .item:nth-child(n+2) {
	display: block;
	margin-top: 25px;
}

.main-block .article-featured .item-content {
	display: block;
	position: absolute;
	z-index: 1;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(37,38,41,0.7);
	text-shadow: 0 1px 0 rgba(0,0,0,0.4);
	padding: 4% 10% 0 10%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.main-block .article-featured .item a:hover .item-content {
	background: rgba(37,38,41,0.8);
}

.main-block .article-featured .item-content .meta-cat {
	display: block;
	color: #f16c00;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 15px;
	margin-bottom: 10px;
}

.main-block .article-featured .item-content strong {
	display: block;
	color: #fff;
	font-weight: bold;
	font-size: 28px;
	margin-bottom: 15px;
}

.main-block .article-featured .item-content .content-text {
	display: block;
	color: #fff;
	font-weight: normal;
	font-size: 15px;
	line-height: 150%;
	margin-bottom: 15px;
	filter: alpha(opacity=70);
	opacity: 0.7;
}

.main-block .article-featured .item-content .meta-items {
	display: block;
	text-transform: uppercase;
	font-size: 15px;
}

.content.has-sidebar > .wrapper .main-content-area {
	width: 860px;
}

.content.has-sidebar {
	position: relative;
}




.main-block .article-split-cat:after {
	display: block;
	clear: both;
	content: '';
}

.main-block .article-split-cat .item-left {
	display: block;
	width: 48.8%;
	float: left;
}

.main-block .article-split-cat .item-right {
	display: block;
	width: 48.8%;
	margin-left: 2.4%;
	float: left;
}

.main-block .article-split-cat .item-right .item {
	display: block;
}

.main-block .article-split-cat .item a,
.main-block .article-split-cat .item-full a {
	display: block;
	color: #2e2f33;
}

.main-block .article-split-cat .item-full a img {
	display: block;
	width: 100%;
	height: auto;
}

.main-block .article-split-cat .item a,
.main-block .article-split-cat .item-full .item-content {
	display: block;
	background: #f0f4f6;
	padding: 15px;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.main-block .article-split-cat .item-full .item-content strong {
	display: block;
	margin-bottom: 8px;
	font-size: 16px;
}

.main-block .article-split-cat .item .item-content .meta-items,
.main-block .article-split-cat .item-full .item-content .meta-items {
	display: block;
	font-size: 13px;
	color: #95969a;
}

.main-block .article-split-cat .item:nth-child(n+2) {
	margin-top: 10px;
}

.main-block .article-split-cat .item a {
	display: block;
	padding: 0px;
}

.main-block .article-split-cat .item a:after {
	display: block;
	clear: both;
	content: '';
}

.main-block .article-split-cat a .item-image {
	position: relative;
	overflow: hidden;
	background: -webkit-linear-gradient(bottom right, #c55f1e 0%, #66d6ff 100%);
	background: -o-linear-gradient(bottom right, #c55f1e 0%, #66d6ff 100%);
	background: linear-gradient(to top left, #c55f1e 0%, #66d6ff 100%);
}

.main-block .article-split-cat a .item-image img {
	display: block;
	width: 100%;
	opacity: 0.7;
	filter: alpha(opacity=70);
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translateX(0);
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
}

.main-block .article-split-cat a .item-image:before {
	display: block;
	position: absolute;
	z-index: 2;
	content: '';
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: rgba(136, 136, 136, 0);
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.main-block .article-split-cat .item a .item-image {
	display: block;
	float: left;
	width: 22%;
}

.main-block .article-split-cat .item .item-content strong {
	display: block;
	margin-bottom: 5px;
	font-size: 15px;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	font-weight: 600;
}

.main-block .article-split-cat .item a .item-content {
	display: block;
	margin-left: 22%;
	padding: 10px;
	padding: 11px 10px 10px 12px;
}

.main-block .article-layout-1.lets-do-2 .item-content {
	padding: 24px 20px;
}

.main-block .article-layout-1.lets-do-2 .item-header {
	left: 20px;
}

.main-block .article-layout-1.lets-do-2 .item-content .meta-cat {
	font-size: 13px;
	font-weight: bold;
	padding-bottom: 8px;
}

.main-block .article-layout-1.lets-do-2 .item-content strong {
	font-size: 19px;
}

.main-block .article-layout-1.lets-do-2 .item-content .meta-items {
	font-size: 13px;
	font-weight: normal;
	padding-top: 8px;
}



.main-block .reviews-layout {
	display: block;
	width: 100%;
	position: relative;
	overflow: hidden;
}

.main-block .reviews-layout > button {
	display: block;
	position: absolute;
	height: 100%;
	padding: 0 11px;
	background: rgba(207, 207, 207, 0.7);
	border: 0px;
	cursor: pointer;
	font-size: 17px;
	width: 32px;
	z-index: 5;
	text-align: center;
	color: #fff;
	text-shadow: 0 0 2px rgba(0,0,0,0.5);
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.main-block .reviews-layout > button:hover {
	background: rgba(168, 168, 168, 0.7);
}

.main-block .reviews-layout > button:active {
	background: rgba(124, 124, 124, 0.7);
}

.main-block .reviews-layout > button.right {
	right: 0px;
}

.main-block .reviews-layout .reviews-layout-wrapper {
	display: block;
	margin-left: 51px;
	margin-right: 51px;
}

.main-block .reviews-layout .reviews-layout-inner {
	display: block;
	position: relative;
	width: auto;
	white-space: nowrap;
	font-size: 0;
	transition: margin 0.5s;
	-moz-transition: margin 0.5s;
	-webkit-transition: margin 0.5s;
	-o-transition: margin 0.5s;
}

.main-block .reviews-layout .reviews-layout-inner .item {
	display: inline-block;
	white-space: normal;
	width: 240px;
	font-size: 16px;
	margin-left: 19px;
	position: relative;
}

.main-block .reviews-layout .reviews-layout-inner .item:first-child {
	margin-left: 0px;
}

.main-block .reviews-layout .reviews-layout-inner .item a {
	display: block;
	background: -webkit-linear-gradient(bottom right, #c55f1e 0%, #66d6ff 100%);
	background: -o-linear-gradient(bottom right, #c55f1e 0%, #66d6ff 100%);
	background: linear-gradient(to top left, #c55f1e 0%, #66d6ff 100%);
	text-shadow: 0 1px 0 rgba(0,0,0,0.5);
}

.main-block .reviews-layout .reviews-layout-inner .item a img {
	display: block;
	width: 100%;
	height: auto;
	backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translateX(0);
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	filter: alpha(opacity=70);
	opacity: 0.7;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.main-block .reviews-layout .reviews-layout-inner .item a:before {
	display: block;
	position: absolute;
	z-index: 1;
	content: '';
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.2);
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-header {
	display: block;
	position: absolute;
	text-align: center;
	z-index: 2;
	color: #fff;
	top: 25px;
	left: 0px;
	width: 100%;
	padding: 0 20px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-header .meta-cat {
	display: block;
	margin-bottom: 14px;
	color: #fff;
	text-transform: uppercase;
	font-size: 12px;
	font-weight: bold;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-header strong {
	display: block;
	margin-bottom: 14px;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	line-height: 130%;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-header .meta-items {
	display: block;
	font-size: 10px;
	font-weight: bold;
	text-transform: uppercase;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating {
	display: block;
	position: absolute;
	text-align: center;
	z-index: 2;
	color: #fff;
	bottom: 70px;
	left: 0px;
	width: 100%;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating .rating-score {
	display: block;
	position: relative;
	z-index: 20;
	font-size: 22px;
	line-height: 120%;
	color: #EDEDED;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating:after {
	display: block;
	content: '';
	position: absolute;
	width: 30px;
	height: 30px;
	left: 50%;
	top: 50%;
	margin-left: -15px;
	margin-top: -15px;
	background: #2a2d35;
	z-index: 1;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating .chunk-var {
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	left: 50%;
	top: 50%;
	margin-left: -15px;
	margin-top: -15px;
	background: transparent;
	z-index: 2;
	overflow: hidden;
	backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translateX(0);
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating .chunk-bg {
	display: block;
	position: absolute;
	width: 30px;
	height: 30px;
	left: 50%;
	top: 50%;
	margin-left: -15px;
	margin-top: -15px;
	background: #2a2d35;
	z-index: 1;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating .chunk-inner {
	display: block;
	position: absolute;
	width: 100%;
	height: 9px;
	left: -2px;
	padding-right: 4px;
	top: 0px;
	background: #f16c00;
	z-index: 1;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
	-ms-transform: skew(22.5deg,0deg);
	-webkit-transform: skew(22.5deg,0deg);
	transform: skew(22.5deg,0deg);
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating .chunk-inner.nopadd,
.main-block .reviews-layout .reviews-layout-inner .item .item-rating.inactive .chunk-inner {
	width: 0px!important;
	padding-right: 0px;
	left: 0px;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating .chunk-2 .chunk-inner {
	-webkit-transition-delay: 0.1s;
	transition-delay: 0.1s;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating .chunk-3 .chunk-inner {
	-webkit-transition-delay: 0.2s;
	transition-delay: 0.2s;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating .chunk-4 .chunk-inner {
	-webkit-transition-delay: 0.3s;
	transition-delay: 0.3s;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating .chunk-5 .chunk-inner {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating .chunk-6 .chunk-inner {
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating .chunk-7 .chunk-inner {
	-webkit-transition-delay: 0.6s;
	transition-delay: 0.6s;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating .chunk-8 .chunk-inner {
	-webkit-transition-delay: 0.7s;
	transition-delay: 0.7s;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating .chunk-1 {
	-ms-transform: rotate(22.5deg) skew(22.5deg,0deg);
	-webkit-transform: rotate(22.5deg) skew(22.5deg,0deg);
	transform: rotate(22.5deg) skew(22.5deg,0deg);
	margin-left: -2px;
	margin-top: -33px;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating .chunk-2 {
	-ms-transform: rotate(67.5deg) skew(-22.5deg,0deg);
	-webkit-transform: rotate(67.5deg) skew(-22.5deg,0deg);
	transform: rotate(67.5deg) skew(-22.5deg,0deg);
	margin-left: 3px;
	margin-top: -29px;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating .chunk-3 {
	-ms-transform: rotate(112.5deg) skew(-22.5deg,0deg);
	-webkit-transform: rotate(112.5deg) skew(-22.5deg,0deg);
	transform: rotate(112.5deg) skew(-22.5deg,0deg);
	margin-left: 7px;
	margin-top: -12px;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating .chunk-4 {
	-ms-transform: rotate(157.5deg) skew(-22.5deg,0deg);
	-webkit-transform: rotate(157.5deg) skew(-22.5deg,0deg);
	transform: rotate(157.5deg) skew(-22.5deg,0deg);
	margin-left: -2px;
	margin-top: 3px;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating .chunk-5 {
	-ms-transform: rotate(202.5deg) skew(-22.5deg,0deg);
	-webkit-transform: rotate(202.5deg) skew(-22.5deg,0deg);
	transform: rotate(202.5deg) skew(-22.5deg,0deg);
	margin-left: -18px;
	margin-top: 8px;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating .chunk-6 {
	-ms-transform: rotate(247.5deg) skew(-22.5deg,0deg);
	-webkit-transform: rotate(247.5deg) skew(-22.5deg,0deg);
	transform: rotate(247.5deg) skew(-22.5deg,0deg);
	margin-left: -33px;
	margin-top: 0px;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating .chunk-7 {
	-ms-transform: rotate(292.5deg) skew(-22.5deg,0deg);
	-webkit-transform: rotate(292.5deg) skew(-22.5deg,0deg);
	transform: rotate(292.5deg) skew(-22.5deg,0deg);
	margin-left: -38px;
	margin-top: -17px;
}

.main-block .reviews-layout .reviews-layout-inner .item .item-rating .chunk-8 {
	-ms-transform: rotate(337.5deg) skew(-22.5deg,0deg);
	-webkit-transform: rotate(337.5deg) skew(-22.5deg,0deg);
	transform: rotate(337.5deg) skew(-22.5deg,0deg);
	margin-left: -29px;
	margin-top: -33px;
}

.has-sidebar .main-content-area {
	float: left;
}

.has-sidebar.sidebar-left .main-content-area {
	float: right;
}

.has-sidebar.sidebar-left #sidebar {
	padding-left: 0px;
	padding-right: 40px;
	float: left;
}

.sidebar-left .sidebar-background {
	box-shadow: inset -4px 0 0 rgba(255,255,255,0.1), inset 0 3px 0 rgba(255,255,255,0.03);
}

.sidebar-left .sidebar-background-light {
	box-shadow: inset -4px 0 0 rgba(0,0,0,0.02), inset 0 3px 0 rgba(255,255,255,0.03);
}

.content > .wrapper:after {
	display: block;
	clear: both;
	content: '';
}

.sidebar-background {
	width: 0;
	background: #252629;
	content: '';
	position: absolute;
	z-index: 0;
	height: 100%;
	top: 0px;
	right: 0px;
	box-shadow: inset 4px 0 0 rgba(255,255,255,0.1), inset 0 -3px 0 rgba(255,255,255,0.03);
}

.sidebar-background-light {
	width: 20%;
	background: #dadfe1;
	content: '';
	position: absolute;
	z-index: 0;
	height: 100%;
	top: 0px;
	right: 0px;
	box-shadow: inset 4px 0 0 rgba(0,0,0,0.02), inset 0 -3px 0 rgba(255,255,255,0.03);
}


.main-block .main-content.shortcode-content {
	display: block;
	background: #f0f4f6;
	padding: 25px 25px 1px 25px;
}

.article-header {
	display: block;
	margin-bottom: 25px;
	border-bottom: 2px solid rgba(0,0,0,0.04);
	padding-bottom: 25px;
}

.article-header h2 {
	font-size: 41px;
}

.article-header .header-photo-meta .meta-p:after {
	color: rgba(0,0,0,0.3);
}

.article-header .header-photo-meta {
	font-size: 18px;
	color: rgba(0,0,0,0.5);
	line-height: 130%;
}

.article-header .header-photo-meta a {
	color: rgba(0,0,0,0.5);
}

.article-header .header-photo-meta a:hover {
	color: rgba(0,0,0,0.8);
}

.article-header .comments-tag {
	position: relative;
	z-index: 2;
}

.article-header.has-photo .comments-tag {
	float: right;
	margin-top: -12px;
	margin-bottom: -22px;
	margin-right: 20px;
}

.article-header-image {
	display: block;
	position: relative;
	z-index: 0;
	margin-bottom: 25px;
}

.article-header-image:last-child {
	margin-bottom: 0px;
}

.article-header-image img {
	width: 100%;
	height: auto;
}

.shortcode-content p,
.ce_text p
{
	display: block;
	font-size: 17.4px;
	font-weight: normal;
	line-height: 145%;
	margin-bottom: 25px;
}

.ce_text table {
margin-bottom:30px;
}

.shortcode-content h1,
.shortcode-content h2,
.shortcode-content h3,
.shortcode-content h4,
.shortcode-content h5,
.shortcode-content h6 {
	display: block;
/*	text-transform: uppercase;*/
	margin-bottom: 25px;
	color: #252629;
}

.shortcode-content blockquote {
	display: block;
	border-left: 3px solid #787a7d;
	padding-left: 25px;
	color: #787a7d;
	font-size: 19px;
	font-weight: bold;
}

.shortcode-content blockquote p {
	font-size: inherit;
	color: inherit;
	font-weight: inherit;
}

.white-box {
	display: block;
	background: #f0f4f6;
	padding: 25px;
	margin-top: 10px;
}

.white-box:first-child {
	margin-top: 0px;
}

.white-box h1,
.white-box h2,
.white-box h3,
.white-box h4,
.white-box h5,
.white-box h6 {
	color: #2D2E32;
	text-transform: uppercase;
	margin-bottom: 25px;
}

.white-box .tagcloud a {
	margin: 0 2px 5px 0;
	display: inline-block;
	padding: 7px 10px;
	color: #9ca4a9!important;
	background: #e4e9eb;
	text-decoration: none;
	line-height: 120%;
	font-size: 14px!important;
	border-radius: 1px;
}

.white-box .tagcloud a:hover {
	color: #fff!important;
	background: #252629;
}

.about-author .author-content {
	display: block;
	margin-left: 125px;
}

.about-author .author-content h3 {
	margin-bottom: 20px;
	font-size: 22px;
}

.about-author .author-content .subtitle {
	margin-top: -10px;
	margin-bottom: 15px;
	display: block;
	color: #bdc0c3;
	text-transform: uppercase;
}

.about-author .author-content p {
	margin-bottom: 15px;
	display: block;
	line-height: 150%;
	font-size: 14px;
}

.about-author .author-content .read-more {
	display: inline-block;
	line-height: 150%;
	font-size: 14px;
	font-weight: bold;
}

.about-author .author-content .read-more i.fa {
	padding-right: 8px;
}

.about-author .author-content .author-socials {
	display: block;
	cursor: default;
}

.about-author .author-content .author-socials a {
	display: inline-block;
	background: #e4e9eb;
	color: #9ca4a9;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
}

.about-author .author-content .author-socials a:hover {
	background: #232323;
	color: #f0f4f6;
}

.about-author .author-content .author-socials a.soc-hc-facebook:hover {
	background: #3b5998;
}

.about-author .author-content .author-socials a.soc-hc-twitter:hover {
	background: #00aced;
}

.about-author .author-content .author-socials a.soc-hc-google-plus:hover {
	background: #dd4b39;
}

.about-author .author-content .author-socials a.soc-hc-linkedin:hover {
	background: #007bb6;
}

.button {
	display: inline-block;
	border: 0px;
	font-weight: bold;
	padding: 10px 24px 13px 24px;
	cursor: pointer;
	background: #4b95d4;
	color: #fff;
	font-size: 14px;
	box-shadow: inset 0 -3px 0 rgba(0,0,0,0.08), inset 0 -100px 0 rgba(255,255,255,0);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Open Sans", sans-serif;
}

.button:hover {
	box-shadow: inset 0 -3px 0 rgba(0,0,0,0.08), inset 0 -100px 0 rgba(255,255,255,0.1);
}

.button:active {
	box-shadow: inset 0 -1px 0 rgba(0,0,0,0.08), inset 0 -100px 0 rgba(0,0,0,0.1);
}


.review-verdict {
	color: #b9bbbd;
	position: relative;
	display: block;
}


.review-verdict:before {
	display: block;
	content: '';
	position: absolute;
	left: 0px;
	top: 0px;
	width: 100%;
	height: 100%;
	z-index: 1;
	background-color: rgba(37, 38, 41, 0.90);
}

.review-verdict > span,
.review-verdict > p,
.review-verdict > a,
.review-verdict > div,
.review-verdict > h3 {
	position: relative;
	z-index: 2;
}

.review-verdict h1,
.review-verdict h2,
.review-verdict h3,
.review-verdict h4,
.review-verdict h5,
.review-verdict h6 {
	color: #fff;
}

.review-verdict a {
	color: #b9bbbd;
}

.review-verdict a:hover {
	color: #fff;
}

.review-verdict .review-bg {
	display: block;
	position: absolute;
	width: 100%;
	height: 100%;
	left: 0px;
	top: 0px;
	background-position: center;
	background-size: 100% auto;
	background-size: cover;
	z-index: 0;
	filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
	filter: gray;
	-webkit-filter: grayscale(100%);
}

.review-verdict h3 {
	font-size: 36px;
	display: block;
	margin-bottom: 25px;
	font-weight: 500;
}

.review-verdict .review-score {
	display: block;
	margin-left: -25px;
	margin-right: -25px;
	color: #fff;
	background: #1a1a1b;
	padding-left: 25px;
	padding-right: 25px;
	font-size: 30px;
	line-height: 50px;
	line-height: 80px;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	margin-bottom: 25px;
}

.review-verdict .review-author {
	display: block;
	font-size: 16px;
	font-weight: bold;
	text-transform: uppercase;
	color: #6A6D71;
}

.review-verdict .review-author:hover {
	color: #fff;
}

.review-verdict .review-author a {
	color: inherit;
	line-height: 36px;
}

.review-verdict p {
	display: block;
	font-size: 16px;
	font-weight: normal;
	line-height: 150%;
	margin-bottom: 25px;
}

.review-verdict .review-score .final-rating {
	font-size: 58px;
	line-height: inherit;
	background: #bbb928;
	display: inline-block;
	font-family: "Open Sans", sans-serif;
	padding: 0 20px;
	margin-right: 20px;
}

.review-verdict > a {
	font-size: 14px;
	text-transform: uppercase;
	line-height: 100%;
}

.review-verdict > a i.fa {
	padding-right: 8px;
}

.review-verdict .pros-n-cons {
	display: block;
	border-top: 1px solid rgba(255,255,255,0.1);
	padding-top: 25px;
	margin-bottom: 30px;
}

.review-verdict .pros-n-cons:after {
	display: block;
	content: '';
	clear: both;
}

.review-verdict .pros-n-cons .review-pros {
	display: block;
	float: left;
	width: 50%;
	padding-right: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.review-verdict .pros-n-cons .review-cons {
	display: block;
	float: left;
	width: 50%;
	padding-left: 15px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.review-verdict .pros-n-cons > div > strong {
	display: block;
	float: left;
	font-size: 15px;
	font-weight: bold;
	text-transform: uppercase;
	color: #737476;
}

.review-verdict .pros-n-cons > div > ul {
	display: block;
	margin-left: 80px;
	border-left: 1px solid rgba(255,255,255,0.1);
	padding-left: 25px;
}

.review-verdict .pros-n-cons > div > ul li {
	display: block;
	margin-top: 12px;
	font-size: 15px;
	font-weight: bold;
}

.review-verdict .pros-n-cons > div > ul > li:first-child {
	margin-top: 0px;
}

.review-verdict .pros-n-cons > div > ul li i.fa {
	padding-right: 12px;
	font-size: 12px;
	line-height: 17px;
}

.review-verdict .pros-n-cons .review-pros {
	color: #b6cb1a;
}

.review-verdict .pros-n-cons .review-cons {
	color: #dd5c3c;
}



.ot-shortcode-photo-gallery {
	display: block;
	margin-bottom: 25px;
	position: relative;
	overflow: hidden;
}

.ot-shortcode-photo-gallery button {
	position: absolute;
	z-index: 2;
	left: 0px;
	top: 0px;
	height: 100%;
	width: 4.57%;
	padding: 0px;
	background: rgba(222, 226, 228, 0.8);
	border: 0px;
	cursor: pointer;
}

.ot-shortcode-photo-gallery button:hover {
	background: rgba(227, 232, 234, 0.8);
}

.ot-shortcode-photo-gallery button:active {
	background: rgba(208, 211, 213, 0.8);
}

.ot-shortcode-photo-gallery button.gal-nav-right {
	left: auto;
	right: 0px;
}

.ot-shortcode-photo-gallery-inner {
	display: block;
	margin-left: 50px;
	margin-right: 50px;
	position: relative;
	font-size: 0;
	white-space: nowrap;
}

.ot-shortcode-photo-gallery-inner .item {
	display: inline-block;
	font-size: 14px;
	width: 32%;
	margin-left: 2%;
	white-space: normal;
}

.ot-shortcode-photo-gallery-inner .item:first-child {
	margin-left: 0px;
}

.ot-shortcode-photo-gallery-inner:after {
	display: block;
	clear: both;
	content: '';
}

.ot-shortcode-photo-gallery-inner .item img {
	display: block;
	width: 100%;
	height: auto;
}

.ot-shortcode-photo-gallery-inner .item a {
	display: block;
}

.ot-shortcode-photo-gallery-inner .item-group {
	display: none;
}

.ot-shortcode-photo-gallery-inner .item-group.active {
	display: block;
}







/*------------------------------------------------------------------
[4. Comments]

+ #comments
	+ li
		+ .comment-text
+ .writecomment
	+ .comment-form
		+ .contact-form-content

-------------------------------------------------------------------*/

.comments-big-message {
	display: block;
	width: 60%;
	padding: 40px 0;
	margin-left: auto;
	margin-right: auto;
	padding-left: 120px;
	position: relative;
	color: #252629;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.comments-big-message > i.fa {
	display: block;
	position: absolute;
	left: 0px;
	top: 30px;
	font-size: 80px;
	line-height: 100%;
}

.comments-big-message > h3 {
	font-size: 40px;
	text-transform: uppercase;
	margin-bottom: 15px;
	white-space: nowrap;
}

.comment-form .contact-form-user {
	display: block;
}

.comment-form {
	display: block;
}

.comment-form:after {
	display: block;
	clear: both;
	content: '';
}

.writecomment .comment-info {
	display: block;
	margin-bottom: 30px;
	background: #FCFCFC;
	color: #888;
	padding: 21px;
	font-size: 14px;
	border-left: 4px solid #DDAD15;
}

.writecomment .comment-info i.fa {
	display: block;
	float: left;
	width: 37px;
	height: 37px;
	line-height: 37px;
	font-size: 19px;
	color: #fff;
	background: #E7E7E7;
	text-align: center;
	border-radius: 50%;
}

.writecomment .comment-info strong {
	display: block;
	margin-left: 54px;
	margin-bottom: 8px;
}

.writecomment .comment-info span {
	display: block;
	margin-left: 54px;
	line-height: 150%;
}

.writecomment .contact-form-avatar {
	display: block;
	width: 100px;
	height: 100px;
	float: left;
}

.writecomment .contact-form-content {
	display: block;
	margin-left: 120px;
}

.writecomment .contact-form-content p:not(.form-submit) {
	background: #fff;
	margin-bottom: 15px;
	display: block;
}

.writecomment .contact-form-content p label {
	display: block;
	padding: 10px 12px 0 12px;
	font-size: 12px;
	font-weight: bold;
	text-transform: uppercase;
	cursor: text;
	color: #DDD;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.writecomment .contact-form-content p label .required {
	display: inline-block;
	padding-left: 5px;
	color: #E78181;
}

.writecomment .contact-form-content p textarea,
.writecomment .contact-form-content p input[type=text] {
	display: block;
	padding: 12px 12px;
	width: 100%;
	border: 0px;
	font-size: 14px;
	font-family: "Open Sans", sans-serif;
	background: transparent;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.writecomment {
	max-width: 800px;
	margin-left: auto;
	margin-right: auto;
}

.writecomment .contact-form-content p.focused,
.writecomment .contact-form-content p.focused {
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.writecomment .contact-form-content p textarea {
	height: 110px;
}


.comment-form .contact-form-user {
	width: 48%;
	float: left;
}

.comment-form .contact-form-email {
	display: block;
	width: 48%;
	float: right;
}

.comment-form .contact-form-comment {
	display: block;
	clear: right;
}

#comments {
	display: block;
}

#comments li {
	display: block;
}

#comments li:after {
	content: '';
	clear: both;
	display: block;
}

#comments li {
	display: block;
}

#comments .image-avatar {
	display: block;
	float: left;
}

#comments .image-avatar img,
#comments .image-avatar {
	width: 100px;
	height: 100px;
}

#comments li li .image-avatar img,
#comments li li .image-avatar {
	width: 50px;
	height: 50px;
}

#comments .comment-block {
	display: block;
}

#comments > li > .comment-block > .comment-text {
	display: block;
	margin-left: 120px;
	background: #f0f4f6;
	padding: 25px;
	margin-bottom: 20px;
}

#comments li li .comment-block {
	display: block;
	margin-left: 120px;
	background: #f0f4f6;
	padding: 25px;
	margin-bottom: 20px;
	margin-top: -18px;
}

#comments li li .comment-text {
	display: block;
	margin-left: 70px;
}

#comments .comment-block > .comment-text .time-stamp {
	display: block;
	color: #b4b7ba;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	font-size: 16px;
}

#comments .comment-block > .comment-text .user-nick {
	display: block;
	color: #2D2E32;
	text-transform: uppercase;
	margin-bottom: 16px;
	font-family: 'Oswald', sans-serif;
	font-size: 20px;
}

#comments .comment-block > .comment-text .user-nick a {
	color: #232323;
	line-height: 100%;
}

#comments .comment-block > .comment-text .user-nick .user-author {
	color: #fff;
	background: #595c5f;
	margin-left: 12px;
	font-size: 12px;
	font-weight: normal;
	display: inline-block;
	padding: 4px 8px;
}

#comments li li .comment-block > .comment-text .user-nick {
	font-size: 17px;
	margin-bottom: 14px;
}

#comments li li .comment-block > .comment-text .user-nick .user-author {
	font-size: 10px;
	margin-top: -1px;
}

#comments li li .comment-block > .comment-text .time-stamp {
	font-size: 14px;
}

#comments .comment-block > .comment-text p {
	margin-bottom: 15px;
	display: block;
	line-height: 150%;
	font-size: 14px;
}

#comments .comment-block > .comment-text .reply-button {
	display: inline-block;
	line-height: 100%;
	font-size: 14px;
	font-weight: bold;
}

#comments .comment-block > .comment-text .reply-button i.fa {
	padding-right: 8px;
}







/*------------------------------------------------------------------
[5. Photo gallery]

+ .photo-gallery-items
	+ .item
		+ .item-header
			+ img
		+ .item-content
			+ h3
			+ .item-category
			+ p
			+ a.view-more

-------------------------------------------------------------------*/

.photo-gallery-items {
	display: block;
}

.photo-gallery-items:after {
	display: block;
	clear: both;
	content: '';
}

.photo-gallery-items .item {
	display: block;
	float: left;
}

.photo-gallery-items .item .item-content {
	display: block;
	padding: 25px;
	background: #f0f4f6;
}

.photo-gallery-items .item .item-content h3 {
	display: block;
	margin-bottom: 8px;
	color: #4b95d4;
	font-size: 20px;
	text-transform: uppercase;
}

.photo-gallery-items .item .item-content h3 a {
	color: #232323;
}

.photo-gallery-items .item .item-content h3 a:hover {
	color: inherit;
}

.photo-gallery-items .item .item-content .item-category {
	display: block;
	margin-bottom: 18px;
	text-transform: uppercase;
	font-weight: bold;
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	color: #4b95d4;
}

.photo-gallery-items .item .item-content .item-category a {
	color: inherit;
}

.photo-gallery-items .item .item-content .item-category a:hover {
	color: #232323;
}

.photo-gallery-items .item .item-content p {
	display: block;
	margin-bottom: 20px;
	line-height: 150%;
	font-size: 14px;
}

.photo-gallery-items .item .item-content .view-more {
	display: block;
	text-align: center;
	font-size: 13px;
	text-transform: uppercase;
}

.photo-gallery-items .item .item-header {
	position: relative;
}

.photo-gallery-items .item .item-header-overlay {
	display: block;
	position: absolute;
	z-index: 2;
	width: 100%;
	left: 0px;
	bottom: 0px;
	vertical-align: bottom;
	padding: 25px 25px;
	color: #fff;
	text-shadow: 0 1px 0 rgba(0,0,0,0.5);
	font-size: 13px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	box-shadow: inset 0 -80px 40px -40px rgba(0,0,0,0.4);
}

.photo-gallery-items .item .item-header a img {
	width: 100%;
	backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translateX(0);
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
	opacity: 1;
	filter: alpha(opacity=100);
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.photo-gallery-full {
	display: block;
	position: relative;
}

.photo-gallery-full:hover .photo-gallery-full-nav-left,
.photo-gallery-full:hover .photo-gallery-full-nav-right {
	opacity: 1;
	filter: alpha(opacity=100);
}

.photo-gallery-full .photo-gallery-full-nav-left {
	display: block;
	position: absolute;
	z-index: 5;
	color: #fff;
	background: rgba(0,0,0,0.3);
	left: 0px;
	top: 47%;
	padding: 22px 28px;
	font-size: 40px;
	line-height: 100%;
	color: #aaa;
	opacity: 0;
	filter: alpha(opacity=0);
}

.photo-gallery-full .photo-gallery-full-nav-right {
	display: block;
	position: absolute;
	z-index: 5;
	color: #fff;
	background: rgba(0,0,0,0.3);
	right: 0px;
	top: 47%;
	padding: 22px 28px;
	font-size: 40px;
	line-height: 100%;
	color: #aaa;
	opacity: 0;
	filter: alpha(opacity=0);
}

.photo-gallery-full .photo-gallery-full-nav-left:hover,
.photo-gallery-full .photo-gallery-full-nav-right:hover {
	background: rgba(0,0,0,0.8);
	color: #fff;
}

.photo-gallery-inner {
	display: block;
	width: 100%;
	height: auto;
	background: #232323;
	text-align: center;
	position: relative;
}

.photo-gallery-inner img {
	width: 100%;
	height: auto;
}

.photo-gallery-thumbs {
	background: #232323;
	position: relative;
}

.photo-gallery-thumbs .photo-gallery-thumb-list {
	display: block;
	padding: 13px 47px;
	margin: 0 13px;
	font-size: 0;
	white-space: nowrap;
	overflow: hidden;
}

.photo-gallery-thumbs .photo-gallery-thumb-list .item {
	display: inline-block;
	font-size: 14px;
	line-height: 100%;
	margin-right: 12px;
	opacity: 0.5;
	filter: alpha(opacity=50);
}

.photo-gallery-thumbs .photo-gallery-thumb-list .item.active:hover,
.photo-gallery-thumbs .photo-gallery-thumb-list .item.active {
	box-shadow: 0 0 0 1px #000, 0 0 0 4px #E2E2E2;
	opacity: 1;
	filter: alpha(opacity=100);
}

.photo-gallery-thumbs .photo-gallery-thumb-list .item:hover {
	opacity: 1;
	filter: alpha(opacity=100);
}

.photo-gallery-thumbs .photo-gallery-thumb-list .item img {
	display: block;
	width: 90px;
	height: 90px;
}

.photo-gallery-thumbs .photo-gallery-nav {
	position: absolute;
	z-index: 1;
	border: 0px;
	background: rgba(50, 50, 50, 0.8);
	color: #fff;
	top: 13px;
	left: 13px;
	cursor: pointer;
	height: 90px;
	width: 36px;
	font-size: 22px;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.photo-gallery-thumbs .photo-gallery-nav.nav-me-right {
	left: auto;
	right: 13px;
}

.photo-gallery-thumbs .photo-gallery-nav:hover {
	background: rgba(82, 82, 82, 0.8);
}

.photo-gallery-thumbs .photo-gallery-nav:active {
	background: rgba(42, 42, 42, 0.8);
}


.photo-gallery-description {
	display: block;
	background: #f0f4f6;
	padding: 40px 50px 15px 50px;
}



.pagination {
	display: block;
	clear: both;
	text-align: center;
	padding-top: 40px;
	margin-bottom: 20px;
	position: relative;
	font-size: 0;
}

.pagination:before {
	display: block;
	content: '';
	clear: both;
	position: absolute;
	height: 1px;
	width: 100%;
	right: 0px;
	bottom: 20px;
	background: #d7dee2;
	z-index: 0;
}

.pagination .page-numbers:before {
	display: block;
	position: absolute;
	content: '';
	width: 2px;
	right: 100%;
	top: 0px;
	height: 100%;
	background: #E8EDF0;
	padding-bottom: 3px;
	cursor: default;
}

.pagination .page-numbers:after {
	display: block;
	position: absolute;
	content: '';
	width: 2px;
	left: 100%;
	top: 0px;
	height: 100%;
	background: #E8EDF0;
	padding-bottom: 3px;
	cursor: default;
}

.pagination .page-numbers {
	display: inline-block;
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	color: #58595d;
	text-shadow: 0 1px 0 rgba(255,255,255,0.8);
	background: #f2f5f7;
	padding: 14px 15px;
	box-shadow: 0 3px 0 rgba(0,0,0,0.03);
	margin-bottom: 3px;
	position: relative;
	z-index: 2;
	margin: 0 1px;
}

.pagination .page-numbers.current {
	cursor: default;
}

.pagination .page-numbers.current,
.pagination a:hover {
	background: #fff;
}

.pagination .page-numbers.next i.fa {
	padding-left: 8px;
}

.pagination .page-numbers.next {
	margin-left: 10px;
}

.pagination .page-numbers.prev:after,
.pagination .page-numbers.next:before {
	width: 10px;
}

.pagination .page-numbers.prev {
	margin-right: 10px;
}

.pagination .page-numbers.prev i.fa {
	padding-right: 8px;
}

.pagination .page-numbers:last-child:after,
.pagination .page-numbers:first-child:before {
	width: 20px;
}




/*------------------------------------------------------------------
[6. Sidebar styling]

+ #sidebar
	+ .widget

-------------------------------------------------------------------*/

#sidebar {
	display: block;
	float: right;
	width: 300px;
	color: #808081;
	padding: 40px 0 0 40px;
	margin-top: -40px;
}

#sidebar .w-articles .item-footer {
	margin-top: -21px;
	position: relative;
	z-index: 2;
}

.sidebar-light-scheme,
#sidebar.sidebar-light-scheme {
	color: #7d7d7d;
}

.sidebar-light-scheme a,
#sidebar.sidebar-light-scheme a {
	color: #545454;
}

.sidebar-light-scheme .widget .item strong .comment-link:hover,
#sidebar.sidebar-light-scheme .widget .item strong .comment-link:hover,
.sidebar-light-scheme a:hover,
#sidebar.sidebar-light-scheme a:hover {
	color: #222222;
}

.sidebar-light-scheme .widget .w-articles .ite,
#sidebar.sidebar-light-scheme .widget .w-articles .item,
.sidebar-light-scheme .widget > h2,
#sidebar.sidebar-light-scheme .widget > h2 {
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sidebar-light-scheme .item-footer a,
#sidebar.sidebar-light-scheme .item-footer a {
	background-color: #e3e7e9;
	box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.05);
}

.sidebar-light-scheme .item-footer a:hover,
#sidebar.sidebar-light-scheme .item-footer a:hover {
	background-color: #eaedef;
	box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.07);
}

.sidebar-light-scheme .w-photo-gallery .item .item-title,
#sidebar.sidebar-light-scheme .w-photo-gallery .item .item-title {
	box-shadow: inset 0 -190px 100px -100px rgba(87, 87, 87, 0.8);
	color: #fff;
}

.sidebar-light-scheme .widget > h2,
#sidebar.sidebar-light-scheme .widget > h2 {
	color: #898B8E;
}

.sidebar-light-scheme .tagcloud a,
#sidebar.sidebar-light-scheme .tagcloud a {
	background-color: #eaedef;
}

.sidebar-light-scheme .tagcloud a:hover,
#sidebar.sidebar-light-scheme .tagcloud a:hover {
	background-color: #FAFAFA;
}

#sidebar p {
	color: #808081;
}

#sidebar a {
	color: #dfe4e7;
}

#sidebar .widget .item strong .comment-link:hover,
#sidebar:not(.sidebar-light-scheme) a:hover {
	color: #fff;
}

#sidebar .widget {
	display: block;
	width: 100%;
	margin-bottom: 40px;
}

#sidebar .widget > h2 {
	display: block;
	color: #4c4e51;
	text-transform: uppercase;
	font-size: 22px;
	font-weight: bold;
	border-bottom: 1px solid rgba(204, 204, 204, 0.1);
	margin-bottom: 17px;
	padding-bottom: 17px;
}

#sidebar .widget > div {
	display: block;
}

.widget p {
	display: block;
	font-size: 14px;
	line-height: 150%;
	margin-bottom: 15px;
}

.widget p:last-child {
	margin-bottom: 0px;
}

.widget .w-subscribe {
	display: block;
}

.widget .w-subscribe form {
	display: block;
	margin-top: 30px;
}

.widget .w-subscribe input[type=text],
.widget .w-subscribe input[type=email],
.widget .w-subscribe textarea,
.widget .w-subscribe select
{
	display: block;
	width: 50%;
	
	/* margin-left: auto;
	margin-right: auto; */
	margin-bottom: 5px;
	border: 0px;
	padding: 12px 14px;
	font-weight: bold;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Open Sans", sans-serif;
}


.widget .w-subscribe select {color:#757575; padding: 12px 10px;}

@media only screen and (max-width: 600px)
{

.widget .w-subscribe select {width: 100%;}

}


.widget .w-subscribe select option {color:#000;}

.widget .w-subscribe select option:first-child {font-weight:bold; color:#757575;}


.widget .w-subscribe textarea
{
width:80%;
max-width: 100%;
}

.widget .w-subscribe .captcha_text
{
display:block;
margin-bottom:5px;
color:#e8edf0;
}

.widget .w-subscribe p.error {color:#c0392b;}

.widget .w-subscribe2 input[type=submit] {
	display: block;
	width: 69%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 15px;
	border: 0px;
	font-weight: bold;
	padding: 10px 14px 13px 14px;
	cursor: pointer;
	background: #2e2f31;
	color: #969696;
	font-size: 14px;
	box-shadow: inset 0 -3px 0 rgba(255,255,255,0.04);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Open Sans", sans-serif;
}

.widget .w-subscribe2 input[type=submit]:hover {
	background: #393A3C;
}


.widget .w-popular-articles {
	display: block;
}

.widget .w-popular-articles .item {
	display: block;
	padding-bottom: 20px;
	position: relative;
}

.widget .w-popular-articles .item:before {
	display: block;
	position: absolute;
	width: 1px;
	height: 100%;
	top: 0px;
	left: 10px;
	background: #2980b9;
	content: '';
	z-index: 0;
	opacity: 0.2;
	filter: alpha(opacity=20);
}

.widget .w-popular-articles .item:last-child {
	padding-bottom: 0px;
}

.widget .w-popular-articles .item:last-child:before {
	display: none;
}

.widget .w-popular-articles .item .num {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	color: #fff;
	background: #2980b9;
	font-weight: bold;
	padding: 4px 8px;
	font-size: 12px;
	z-index: 1;
}

.widget .w-popular-articles .item strong {
	display: block;
	font-weight: 500;
	padding-left: 40px;
	line-height: 130%;
	font-size: 15px;
}

#sidebar .widget .item strong .comment-link,
.widget .item strong .comment-link {
	display: inline-block;
	color: #e06551;
	font-weight: bold;
	margin-left: 10px;
	font-size: 13px;
}

.widget .item strong .comment-link i.fa {
	padding-right: 6px;
}

.widget .w-popular-articles .item-footer {
	font-size: 14px;
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	padding-top: 19px;
	margin-top: 19px;
	text-align: right;
	color: #C5C5C5;
}

.widget .w-popular-articles .item-footer a {
	color: inherit;
	font-weight: normal;
}

.widget .w-popular-articles .item-footer a i.fa {
	padding-left: 9px;
}

.widget .w-popular-articles .item-footer a:hover {
	color: #fff;
}

.widget .w-articles {
	display: block;
}

.widget .w-articles .item {
	display: block;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding-bottom: 20px;
	margin-bottom: 20px;
}

.widget .w-articles .item:last-child {
	border-bottom: 0px;
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.widget .w-articles .item:after {
	display: block;
	content: '';
	clear: both;
}

.widget .w-articles .item .item-header {
	display: block;
	float: left;
	width: 60px;
}

.widget .w-articles .item .item-content {
	display: block;
	margin-left: 75px;
}

.widget .w-articles .item .item-content > strong {
	display: block;
	margin-bottom: 8px;
	font-weight: 600;
	line-height: 120%;
	font-size:15px;
}

.widget .w-articles .item .item-content > p {
	display: block;
	margin-bottom: 8px;
	line-height: 150%;
	font-size: 13px;
}

.widget a.read-more {
	display: inline-block;
	position: relative;
	font-size: 14px;
	color: #C5C5C5;
}

.widget a.read-more i.fa {
	display: inline-block;
	padding-left: 8px;
}

.ot-mega-menu .item-footer a span,
.footer .item-footer a span,
.widget a.read-more span {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding-bottom: 3px;
}

.ot-mega-menu .item-footer a span:after,
.footer .item-footer a span:after,
.widget a.read-more span:after {
	position: absolute;
	display: block;
	content: '.....................................................................';
	line-height: 0px;
	left: 0px;
	top: 12px;
}

#sidebar .item-footer {
	display: block;
}

#sidebar .item-footer a {
	display: block;
	margin-top: -20px;
	border: 0px;
	text-align: center;
	font-weight: bold;
	font-weight: normal;
	padding: 10px 14px 13px 14px;
	line-height: 150%;
	cursor: pointer;
	background: #2e2f31;
	color: #969696;
	font-size: 14px;
	box-shadow: inset 0 -3px 0 rgba(255,255,255,0.04);
	font-family: "Open Sans", sans-serif;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

#sidebar .item-footer {
	clear: both;
}

.w-cool-b {
	display: block;
	text-align: center;
}

.w-cool-b a {
	display: block;
	line-height: 100%;
}

#sidebar .widget .w-subscribe input[type=submit],
#sidebar .widget .w-subscribe input[type=text] {
	width: 82%;
}

#sidebar .widget .w-articles .item:last-child {
	padding-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.widget .tagcloud a {
	margin: 0 2px 5px 0;
	display: inline-block;
	padding: 7px 10px;
	color: #a5a6a7!important;
	background: #393a3d;
	text-decoration: none;
	line-height: 120%;
	font-size: 14px!important;
	border-radius: 1px;
}

.widget .tagcloud a:hover {
	color: #252629!important;
	background: #d3d4d4;
}


.soc-flipper {
	display: block;
	width: 22.74%;
	height: 60px;
	margin-left: 3%;
	position: relative;
	float: left;
	-webkit-perspective: 200px;
	-moz-perspective: 200px;
	-o-perspective: 200px;
	perspective: 200px;
}

.soc-flipper:hover {
	z-index: 2;
}

.soc-flipper:nth-child(4n+1) {
	clear: left;
	margin-left: 0px;
}

.soc-flipper:nth-child(n+5) {
	margin-top: 8px;
}

.soc-flipper:before {
	display: block;
	content: '';
	width: 100%;
	height: 100%;
	top: 0px;
	left: 0px;
	position: absolute;
	z-index: 100;
}

.soc-flipper .card {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	-webkit-transition: -webkit-transform 0.5s;
	-moz-transition: -moz-transform 0.5s;
	-o-transition: -o-transform 0.5s;
	transition: transform 0.5s;
	-webkit-transform-style: preserve-3d;
	-moz-transform-style: preserve-3d;
	-o-transform-style: preserve-3d;
	transform-style: preserve-3d;
}

.soc-flipper:hover .card {
	-webkit-transform: rotateX( 180deg );
	-moz-transform: rotateX( 180deg );
	-o-transform: rotateX( 180deg );
	transform: rotateX( 180deg );
}

.soc-flipper .card > span {
	display: block;
	height: 100%;
	width: 100%;
	line-height: 60px;
	color: white;
	text-align: center;
	font-weight: bold;
	font-size: 24px;
	position: absolute;
	margin: 0;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-o-backface-visibility: hidden;
	backface-visibility: hidden;
}

.soc-flipper .card .front {
	background: #3b5998;
	backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
	transform: translateX(0);
	-moz-transform: translateX(0);
	-webkit-transform: translateX(0);
}

.soc-flipper .card .back {
	background: #fff;
	color: #2a2b2c;
	-webkit-transform: rotateX( 180deg );
	-moz-transform: rotateX( 180deg );
	-o-transform: rotateX( 180deg );
	transform: rotateX( 180deg );
}

.soc-flipper .card .back strong {
	position: absolute;
	top: 20px;
	font-size: 20px;
	line-height: 100%;
	margin-top: 0px;
	padding-top: 0px;
	width: 100%;
	text-align: center;
	margin-top: -5px;
	display: block;
}

.soc-flipper .card .back i {
	position: absolute;
	top: 20px;
	font-size: 8px;
	margin: 0px;
	padding: 0px;
	display: block;
	width: 100%;
	text-align: center;
	font-style: normal;
	margin-top: -9px;
	text-transform: uppercase;
}

.soc-flipper.flip-twitter .card .front {
	background: #00aced;
}

.soc-flipper.flip-google .card .front {
	background: #dd4b39;
}

.soc-flipper.flip-youtube .card .front {
	background: #bb0000;
}

.soc-flipper.flip-instagram .card .front {
	background: #3f729b;
}

.soc-flipper.flip-linkedin .card .front {
	background: #007bb6;
}

.soc-flipper.flip-pinterest .card .front {
	background: #cb2027;
}

.soc-flipper.flip-stumbleupon .card .front {
	background: #eb4924;
}

.soc-flippers {
	display: block;
}

.soc-flippers:after {
	display: block;
	content: '';
	clear: both;
}


.w-instagram {
	display: block;
}

.w-instagram:after {
	display: block;
	content: '';
	clear: both;
}

.w-instagram .item {
	display: block;
	float: left;
	width: 48%;
	margin-left: 4%;
}

.w-instagram .item:nth-child(2n+1) {
	clear: both;
	margin-left: 0px;
}

.w-instagram .item:nth-child(n+3) {
	margin-top: 20px;
}

.w-instagram .item .item-header {
	display: block;
	margin-bottom: 15px;
}

.w-instagram .item .item-content {
	display: block;
	font-size: 12px;
}

.w-instagram .item .item-content .likes {
	display: block;
	margin-bottom: 8px;
	font-weight: bold;
	color: #cf651d;
	font-weight: bold;
}

.w-instagram .item .item-content .likes i.fa {
	padding-right: 6px;
}

.w-instagram .item .item-content strong {
	display: block;
	margin-bottom: 8px;
	font-size: 13px;
	line-height: 120%;
}

.w-instagram .item .item-content .timestamp {
	display: block;
	font-weight: bold;
}

#sidebar .w-instagram .item-footer {
	padding-top: 20px;
}

#sidebar .w-instagram .item-footer a {
	margin-top: 0px;
}

#sidebar .item-footer a:hover {
	background: #393A3C;
}


.sidebar-fixed.is-now-fixed {
	position: absolute;
	z-index: 99;
	width: inherit;
}

.sidebar-fixed {
	position: relative;
}

.w-photo-gallery {
	display: block;
	position: relative;
	margin-bottom: 20px;
}

.w-photo-gallery:last-child {
	margin-bottom: 0px;
}

.w-photo-gallery .item-overlay {
	display: block;
	position: absolute;
	z-index: 4;
	font-size: 12px;
	bottom: 15px;
	left: 15px;
	right: 15px;
	cursor: default;
	border-top: 1px solid rgba(255,255,255,0.2);
	padding-top: 15px;
}

.w-photo-gallery .item-overlay:before {
	display: block;
	position: absolute;
	content: '';
	left: -15px;
	right: -15px;
	bottom: -15px;
	top: 0px;
	z-index: -1;
}

.w-photo-gallery .item-overlay .w-gal-pager {
	display: block;
}

.w-photo-gallery .item-overlay .w-gal-pager a {
	display: inline-block;
	line-height: 100%;
	width: 11px;
	height: 11px;
	color: transparent!important;
	border: 1px solid rgba(255,255,255,0.4);
	margin-right: 6px;
	border-radius: 50%;
	text-align: center;
}

.w-photo-gallery .item-overlay .w-gal-pager a:hover {
	border: 1px solid #fff;
}

.w-photo-gallery .item-overlay .w-gal-pager a.active {
	background: #fff;
	border: 1px solid #fff;
}

.w-photo-gallery .item-overlay .view-more {
	display: block;
	float: right;
	color: rgba(255,255,255,0.4)!important;
}

.w-photo-gallery .item-overlay .view-more:hover {
	color: #fff!important;
}

.w-photo-gallery .item-list {
	display: block;
	border-radius: 2px;
	overflow: hidden;
}

.w-photo-gallery .item {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	z-index: 0;
	background: #232323;
	opacity: 0;
	overflow: hidden;
	filter: alpha(opacity=0);
	transition: all 0.5s;
	-moz-transition: all 0.5s;
	-webkit-transition: all 0.5s;
	-o-transition: all 0.5s;
}

.w-photo-gallery .item.active {
	display: block;
	position: relative;
	left: 0px;
	top: 0px;
	z-index: 1!important;
	opacity: 1;
	filter: alpha(opacity=100);
}

.w-photo-gallery .item.active.inprocess {
	position: absolute;
	z-index: 2!important;
}

.w-photo-gallery .item a {
	display: block;
	line-height: 100%;
}

.w-photo-gallery .item a img {
	opacity: 1;
	filter: alpha(opacity=100);
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.w-photo-gallery .item .item-title {
	display: block;
	position: absolute;
	bottom: 0px;
	left: 0px;
	width: 100%;
	padding: 65px 15px 55px 15px;
	box-shadow: inset 0 -190px 100px -100px rgba(0,0,0,0.7);
	font-size: 16px;
	line-height: 130%;
	z-index: 3;
	text-shadow: 0 1px 0 rgba(0,0,0,0.5);
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}


.w-fixed-menu {

}

.w-fixed-menu li {
	display: block;
	margin-bottom: 3px;
}

.w-fixed-menu li a {
	display: block;
	background: #dee2e4;
	color: #909192!important;
	font-weight: bold;
	font-size: 15px;
	padding: 16px 20px 16px 48px;
	position: relative;
}

.w-fixed-menu li a:before {
	display: block;
	position: absolute;
	z-index: 0;
	content: '\f10c';
	font-family: "FontAwesome";
	font-size: 13px;
	left: 19px;
	top: 17px;
	color: #ccc;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.w-fixed-menu li:hover a:before {
	color: #2980b9;
}

.w-fixed-menu li.active a:before {
	content: '\f111';
	color: inherit;
}

.w-fixed-menu li.active a,
.w-fixed-menu li:hover a {
	background: #e3e7e9;
	color: #2980b9!important;
}

p:empty {
	display: none;
}

#lightbox-box > div > span {
	text-align: left;
}





/*------------------------------------------------------------------
[7. Footer]

+ .footer
	+ .footer-widgets
		+ .widget
			+ h2
			+ div
	+ .footer-bottom
		+ .footer-bottom-inner

-------------------------------------------------------------------*/

.footer {
	background: #1c1c1f;
	color: #8e8f91;
}

.active.boxed .footer-bottom > .wrapper,
.active.boxed .footer > .wrapper {
	width: 100%;
}

.footer a {
	color: #dfe4e7;
}

.ot-mega-menu .item strong a.comment-link:hover,
.footer-widgets .item strong a.comment-link:hover,
.footer a:hover {
	color: #fff;
}

.footer-widgets {
	background: rgba(255,255,255,0.03);
	padding: 40px 40px;
}

.footer-widgets:after {
	display: block;
	clear: both;
	content: '';
}

.footer-widgets .widget:nth-child(2n+1) {
	clear: both;
	margin-left: 0px;
}

.footer-widgets .widget {
	display: block;
	float: left;
	width: 48.25%;
	margin-left: 3.5%;
}

.ot-mega-menu .widget > h2,
.footer-widgets .widget > h2 {
	display: block;
	color: #e8edf0;
	font-size: 22px;
	text-transform: uppercase;
	font-weight: 500;
	margin-bottom: 20px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
	padding-bottom: 20px;
}




.footer-bottom {
	background: rgba(255,255,255,0.04);
}

.footer-bottom .wrapper {
	background: rgba(255,255,255,0.04);
	padding: 20px 0;
}

.footer-bottom .footer-bottom-inner {
	display: block;
	padding: 0 40px;
}

.footer-bottom .footer-bottom-inner:after {
	display: block;
	clear: both;
	content: '';
}

.footer-bottom .footer-bottom-inner .footer-logo {
	display: block;
	font-size: 34px;
	color: #e8edf0;
	font-family: "Open Sans", sans-serif;
	cursor: default;
	padding-right: 25px;
}

.footer-bottom .footer-bottom-inner p {
	font-size: 13px;
	line-height: 18px;
	margin-bottom: 3px;
	color: #8e8f91;
}

.footer-bottom .footer-bottom-inner ul {
	display: block;
}

.footer-bottom .footer-bottom-inner ul li {
	display: block;
	float: left;
	position: relative;
}

.footer-bottom .footer-bottom-inner ul li:before {
	display: block;
	content: '/';
	position: absolute;
	left: 0px;
	top: 0px;
	padding: 9px 0;
	color: #464748;
}

.footer-bottom .footer-bottom-inner ul li:first-child:before {
	display: none;
}

.footer-bottom .footer-bottom-inner ul li a {
	display: block;
	padding: 11px 10px;
	margin-left: 10px;
	color: #8e8f91;
	font-size: 14px;
	text-decoration:underline;
}

.footer-bottom .footer-bottom-inner ul li a:hover {
	color: #dfe4e7;
	text-decoration:none;
}





.strike-matrix {
	position: relative;
	display: block;
}

.strike-matrix > .innerObject {
	display: block;
	width: 100%;
	height: 100%;
	padding: 0px;
	margin: 0px;
}

.strike-matrix[data-matrix-href] {
	cursor: pointer;
}

.strike-matrix.loadframe > .innerObject {
	transform-origin: center center 0px;
	transition: all 0.1s ease 0s;
	-webkit-transform-origin: center center 0px;
	-webkit-transition: all 0.1s ease 0s;
	-moz-transform-origin: center center 0px;
	-moz-transition: all 0.1s ease 0s;
	-o-transform-origin: center center 0px;
	-o-transition: all 0.1s ease 0s;
	-ms-transform-origin: center center 0px;
	-ms-transition: all 0.1s ease 0s;
}

.strike-matrix.inactive > .innerObject {
	position: relative;
	opacity: 1!important;
	transform: matrix3d(1,0,0.00,0,0.00,1,0.00,0,0,0,1,0,0,0,0,1)!important;
	transform-origin: center center 0px;
	transition: all 0.2s ease 0s;
	-webkit-transform-origin: center center 0px;
	-webkit-transition: all 0.2s ease 0s;
	-moz-transform-origin: center center 0px;
	-moz-transition: all 0.2s ease 0s;
	-o-transform-origin: center center 0px;
	-o-transition: all 0.2s ease 0s;
	-ms-transform-origin: center center 0px;
	-ms-transition: all 0.2s ease 0s;
}

.ot-frame-modal {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	z-index: 1000;
	background: #FAFCFD;
	border-radius: 3px;
	width: 500px;
	margin-top: -100px;
	margin-left: -250px;
	box-shadow: 0 0 20px rgba(0,0,0,0.12), inset 0 0 0 1px #fff;
}

.ot-frame-modal .ot-frame-modal-header {
	display: block;
	padding: 20px 25px;
	border-bottom: 1px solid rgba(0,0,0,0.06);
}

.ot-frame-modal .ot-frame-modal-header a.close-ot-modal {
	color: #d4584b;
}

.ot-frame-modal .ot-frame-modal-header a.close-ot-modal:hover {
	color: #232323;
}

.ot-frame-modal .ot-frame-modal-content {
	display: block;
	padding: 25px 25px 1px 25px;
}

.ot-frame-modal .ot-frame-modal-footer {
	display: block;
	padding: 0 25px 25px 25px;
}

.ot-frame-modal .ot-frame-modal-footer:empty {
	display: none;
}

.ot-frame-modal-footer .button {
	margin-right: 14px;
}





/* lightbox */

.lightbox hr {
    margin: 20px 0px;
}
.lightbox p,
.lightbox span,
.lightbox h2,
.lightbox h3 {
    color: #232323;
    text-shadow: none;
}
.lightbox .loading-box {
    padding: 50px 0px;
    line-height: 24px;
}
.startlightbox {
    overflow: hidden;
}
.startlightbox .lightbox {
    display: block;
}
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.94);
    text-align: center;
    z-index: 200;
    display: none;
    overflow-y: scroll!important;
}
.lightbox .main-black-block {
    box-shadow: none;
    background: #212121;
    color: #ccc;
    font-size: 11.5px;
    line-height: 20px;
    font-weight: 300;
    padding-bottom: 5px;
    color: #8a8a8a;
}
.lightbox .lightcontent .light-close:hover,
.lightbox .lightcontent-loading .light-close:hover {
    color: #db2727;
}
.lightbox .lightcontent .light-close:active,
.lightbox .lightcontent-loading .light-close:active {
    color: #b01e1e;
}
.lightbox .lightcontent .light-close,
.lightbox .lightcontent-loading .light-close {
    display: block;
    right: 0px;
    top: -30px;
    font-family: Arial;
    position: absolute;
    font-size: 14px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}
.lightbox .lightcontent,
.lightbox .lightcontent-loading {
    background: #f4f4f4;
    width: 1140px;
    max-width: 100%;
    margin: 100px auto 70px auto;
    position: relative;
    box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.5);
    text-align: left;
}
.lightbox .light-title {
    display: block;
    position: absolute;
    top: -33px;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
    height: 23px;
    width: 780px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.lightbox .gallery-thumbs {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 30px;
    width: 95%;
}
.lightbox .thacontent {
    padding: 0px 25px 20px 25px;
}
.loading-box {
    display: block;
    text-align: center;
}
.loading-box .loading-image {
    display: block;
    text-align: center;
    padding-top: 20px;
}
.lightbox .carousel-left {
    left: 8px;
}
.lightbox .carousel-right {
    right: 8px;
}
.lightbox blockquote {
    padding-bottom: 30px;
}
.lightbox .article-main-content {
    padding: 0px 55px;
    width: auto;
}
.loading-message {
    display: block;
    background: #f0f0f0;
    padding: 10px 15px;
    font-size: 11px;
    line-height: 140%;
}
.loading-message img {
    display: block;
    float: left;
    width: 34px;
    padding-right: 15px;
}
.main-content-split .loading-message img {
    display: none;
}
.loading-message:before {
    display: block;
    content: '';
    clear: both;
}
.loading-message b {
    font-size: 18px;
    display: block;
    padding-bottom: 4px;
}
.ls-fullwidth .ls-nav-prev,
.ls-fullwidth .ls-nav-next {
    z-index: 20;
}
.ls-fullwidth .ls-nav-next {
    right: 50px!important;
}
.ls-fullwidth .ls-nav-prev {
    left: 50px!important;
}
.light-close i.fa {
    padding-right: 6px;
}
.lightbox .big-photo-block .the-image {
	box-shadow: none;
	text-align: center;
	padding-top: 10px;
	background-color: transparent;
}
.lightbox .big-photo-block .the-image img {
	max-width: 98%;
}
.lightbox .big-photo-block .the-thumbs {
	margin-left: 1%;
	margin-right: 1%;
	overflow: hidden;
}
.lightbox .lightbox-content {
	display: block;
	padding: 0px 2% 8px 2%;
}
.the-image img {
	max-width: 100%;
}
.lightbox .photo-gallery-full {
	box-shadow: none;
}

.lightbox .photo-gallery-main:hover .photo-controls.prev {
	left: 20px;
}

.lightbox .photo-gallery-main:hover .photo-controls.next {
	right: 20px;
}


.waiter.loading {
	background-image: url(../../files/NZM3/images/loading-ot.gif);
	background-position: center;
	background-repeat: no-repeat;
}

.waiter.loading img {
	opacity: 0.3;
}

.dat-menu-setup {
	background-color: #232323;
}

.dat-menu-list li {
	background: transparent!important;
}

a.responsive-menu-button {
	display: none;
	text-align: center;
	color: #f0f0f0;
	font-weight: bold;
	padding: 20px 0;
	font-size: 14px;
	text-transform: uppercase;
}




/* Hover effects go off only above 900px */

@media only screen and (min-width: 900px) {

	.main-block .article-layout-3 .item a:hover .item-header .item-category span,
	.main-block .article-layout-3 .item:hover .item-header .item-category span
	{
		border-color: transparent!important;
		background: #000;
	}

	.main-block .article-layout-3 .item a:hover .item-header .item-meta {
		bottom: 0px;
		opacity: 1;
		filter: alpha(opacity=100);
	}

	.main-block .article-layout-3 .item a:hover .item-image .item-header strong {
		bottom: 50px;
	}

	.main-block .article-layout-3 .item a:hover .item-image .item-header {
		background: rgba(81, 81, 81, 0.7);
	}

	.main-block .article-layout-3 .item a:hover .item-image img {
		opacity: 1;
		filter: alpha(opacity=10);
	}

	.main-block .article-layout-3 .item a:hover .item-content {
		background: #fff;
		box-shadow: 0 3px 0 rgba(0,0,0,0.03);
	}

	.main-block .article-layout-3 .item a:hover .item-content .item-footer-more {
		font-weight: bold;
		letter-spacing: 0px;
		padding-right: 1px;
		color: inherit;
	}

	/*  */

	.main-block .article-layout-1 .item a:hover .item-image img {
		filter: alpha(opacity=100);
		opacity: 1;
	}

	.main-block .article-layout-1 .item a:hover .item-header {
		padding: 8px 8px 8px 8px;
	}

	.main-block .article-layout-1 .item a:hover .item-content {
		bottom: -20%;
		filter: alpha(opacity=0);
		opacity: 0;
	}

	/*  */
	.main-block .article-layout-2 .item a:hover .item-header strong {
		bottom: 35px;
	}

	.main-block .article-layout-2 .item a:hover .item-header .item-meta {
		bottom: 0px;
		opacity: 1;
		filter: alpha(opacity=100);
	}

	.main-block .article-layout-2 .item a:hover .item-image img {
		opacity: 1;
		filter: alpha(opacity=100);
	}

	.main-block .article-layout-2 .item a:hover .item-image:after {
		background: rgba(81, 81, 81, 0.7);
	}

	.main-block .reviews-layout .reviews-layout-inner .item a:hover:before {
		background: rgba(81, 81, 81, 0.7);
	}

	.main-block .reviews-layout .reviews-layout-inner .item a:hover img {
		filter: alpha(opacity=100);
		opacity: 1;
	}

	/*  */
	.main-block .article-split-cat a:hover .item-image:before {
		background: rgba(136, 136, 136, 0.5);
	}

	.main-block .article-split-cat .item a:hover, .main-block .article-split-cat .item-full a:hover .item-content {
		background: #fff;
		box-shadow: 0 3px 0 rgba(0,0,0,0.03);
	}

	.main-block .article-split-cat a:hover .item-image img {
		opacity: 1;
		filter: alpha(opacity=100);
	}

	/*  */
	.article-videos .item a:hover .item-image-inner {
		filter: alpha(opacity=100);
		opacity: 1;
	}

	.article-videos .item a:hover .item-image-inner:before {
		background: rgba(30, 30, 30, 0.7);
	}

	.article-videos .item a:hover .item-content .item-button {
		background: #D34432;
		color: #fff;
	}

	.w-photo-gallery .item a:hover img {
		opacity: 0.3;
		filter: alpha(opacity=30);
	}

	.photo-gallery-items .item .item-header a:hover img {
		opacity: 0.5;
		filter: alpha(opacity=50);
	}

}



/* my */

.header .top-menu ul.right li { font-size:16px; }
a.linkclear {background:none !important; box-shadow:none !important; text-shadow:none !important; }


/* poll */


.poll_default .poll_title
{

display: block;
margin-bottom: 20px;
font-weight: 600;
font-size:16px;
color:#dfe4e7;

}
.poll_default fieldset span,
.poll_default .results ul li
{display:block; margin-bottom:5px;}
.poll_default fieldset span label:hover {cursor:pointer; /*color:#dfe4e7;*/}
.poll_default fieldset span:last-child {margin-bottom:20px;}

.poll_default input[type=radio] {-webkit-appearance:radio;}



.poll_default ul li .result_bar div {
    height: 15px;
    background: #4b95d4;
	margin:15px 0 3px 0;
}



.stat {float:left; padding:3px 20px 0 0;}

@media only screen and (max-width: 900px)
{
.stat {float:none; padding:0 0 15px 0;}
}



/* mos tizer */


.mmtizer {margin:50px 0 20px 0;}

.tizer-block {
  margin: 30px auto 0;
  padding-right: 15px;
  padding-left: 15px;
  text-align: center;
  background-color: #F3F5F7;
  min-height:413px;
}
.tizer-block__row {
  margin-right: -15px;
  margin-left: -15px;
}
.tizer-block__col {
  max-width: 100%;
  padding: 16px 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  max-width: 100%;
  -ms-flex-preferred-size: 0;
  -webkit-flex-basis: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.tizer-block__banner {
  display: inline-block;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 380px;
  height: 365px;
  margin: 8px;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  -webkit-flex-grow: 1;
  flex-grow: 1;
  -ms-flex-negative: 1;
  -webkit-flex-shrink: 1;
  flex-shrink: 1;
}
.tizer-block__banner:empty
{
  display: none;
}
@media screen and (max-width: 1280px) {
  .tizer-block__banner {
    height: 321px;
  }
}
@media screen and (max-width: 1180px) {
  .tizer-block__banner {
    height: 304px;
  }
}
@media screen and (max-width: 1134px) {
  .tizer-block__banner {
    height: 310px;
  }
}
@media screen and (max-width: 1024px) {
  .tizer-block__banner {
    height: 332px;
  }
  .tizer-block__banner:last-child {
    display: none;
  }
}
@media screen and (max-width: 850px) {
  .tizer-block__banner {
    height: 315px;
  }
}
@media screen and (max-width: 768px) {
  .tizer-block__banner {
    height: 284px;
  }
}
@media screen and (max-width: 759px) {
  .tizer-block__banner {
    min-width: 235px;
    height: 355px;
  }
  .tizer-block__banner:last-child {
    display: block;
  }
}
@media screen and (max-width: 630px) {
  .tizer-block__banner {
    height: 320px;
  }
}
@media screen and (max-width: 540px) {
  .tizer-block__banner {
    height: 294px;
  }
}
@media screen and (max-width: 534px) {
  .tizer-block__col {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .tizer-block__banner:last-child {
    display: none;
  }
  .tizer-block__banner {
    height: 340px;
    min-width: 245px;
  }
}
@media screen and (max-width: 517px) {
  .tizer-block__banner {
    height: 350px;
  }
}
@media screen and (max-width: 320px) {
  .tizer-block__col {
    padding: 16px 8px;
  }
  .tizer-block__banner {
    height: 314px;
  }
}


/* end mos tizer */


#sidebar .banns {text-align:center;}
#sidebar .widget:last-child {margin-bottom:0;}
#sidebar .banns a {display:block; margin-bottom:3px;}


.avtory {
    white-space: pre-wrap;
	font-size:14px;
	color:#a5a5a5;
	margin-bottom:25px;
}

.fullmimg {display:block; width:auto; max-width:100%; margin:0 0 20px 0;}



.fcaption,
.podpis_foto {display:block; text-align:left; font-size:14px; color:#949494; line-height:17px;}

.invisible {display:none;}


.shortcode-content .poll_default .poll_title {color:#252629;}
.shortcode-content .poll_default ul {padding:0; list-style:none;}
.shortcode-content .ce_download {margin-bottom:10px; font-size:15px;}

.shortcode-content .ce_image {margin-bottom:20px;}

div.ce_toplink {margin-bottom:20px; text-align:right;}

.shortcode-content .ce_image .caption {font-size:14px; color:#949494;}

.shortcode-content table { width: 100% !important;}
.shortcode-content table td {border:1px solid #0000001a;}

.shortcode-content table,
.shortcode-content table p
{font-size:11px !important;}

.shortcode-content .ce_text div.widget h2 {display:none;}

.banns p {margin-bottom:3px !important;}



.age16 {
    width: 32px;
    height: 32px;
	margin-top:10px;
    background-color: #fff;
    color: #333;
    font-size: .875em;
    font-weight: 400;
    line-height: 32px;
    text-align: center;
    float: left;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    border-radius: 50%;
}


.my-main-title {display:none;}
.my-main-title a {color:#fff;}
.my-main-title .alert-message {text-align: center;}
.my-main-title .alert-message strong {margin-bottom: 0;}


form .widget2 input.checkbox {-webkit-appearance: checkbox;}




@media only screen and (max-width: 900px) {
.fullmimg {
    float: none;
    margin: 0 0 20px 0;
}

.my-main-title {display:block;}


.header .top-banner {
	display: block;
}

}



/* Lightbox */

#lightbox-box {
	position:absolute;
	width:100%;
	height:100%;
	z-index:200;
}

#lightbox-box .lightbox-bg {
	display:block;
	position:fixed;
	background:rgba(0,0,0,0.8);
	width:100%;
	height:100%;
	z-index:199;
}

#lightbox-box.blackout > div > img {
	background:transparent!important;
}

#lightbox-box.blackout > div {
	opacity: 1;
	filter: alpha(opacity=100);
}

#lightbox-box > div > span {
	display:none;
	position:absolute;
	bottom:30px;
	left:0px;
	z-index:200;
	background:rgba(0,0,0,0.5);
	padding:12px 18px;
	font-size:13px;
	font-family:Arial;
	max-width:600px;
	color:#fff;
}

#lightbox-box > a {
	display:none;
	position:fixed;
	top:30px;
	right:30px;
	font-size:12px;
	font-weight:bold;
	color:transparent;
	overflow:hidden;
	width:30px;
	height:30px;
	background:url(../images/lightbox-close.png) no-repeat center;
	opacity: 0.3;
	filter: alpha(opacity=30);
	z-index:201;
}

#lightbox-box > a:hover {
	opacity: 1;
	filter: alpha(opacity=100);
}

#lightbox-box > div {
	display:block;
	position:absolute;
	width:80px;
	height:80px;
	background:#fff url(../images/loading.gif) no-repeat center;
	text-align:center;
	box-shadow:0px 1px 6px rgba(0,0,0,0.3);
	-moz-transition: width 0.4s, height 0.4s, top 0.4s, left 0.4s;
	-webkit-transition: width 0.4s, height 0.4s, top 0.4s, left 0.4s;
	-o-transition: width 0.4s, height 0.4s, top 0.4s, left 0.4s;
	opacity: 0.8;
	filter: alpha(opacity=80);
	z-index:201;
}

#lightbox-box > div > font {
	position:absolute;
	bottom:-36px;
	right:0px;
	display:none;
	opacity: 0.8;
	filter: alpha(opacity=80);
}

#lightbox-box > div > font a {
	float:left;
	display:block;
	background-position:center top;
	background-repeat:no-repeat;
	color:transparent;
	width:28px;
	height:28px;
}

#lightbox-box > div > font a#lightbox-left {
	background-image:url(../images/lightbox-left.jpg);
}

#lightbox-box > div > font a#lightbox-right {
	background-image:url(../images/lightbox-right.jpg);
}

#lightbox-box > div > font a:hover {
	background-position:center bottom;
}

#lightbox-box.blackout > div > img {
	opacity: 1;
	filter: alpha(opacity=100);
}

#lightbox-box > div > img {
	width:100%;
	height:100%;
	background:transparent;
	opacity: 0.2;
	filter: alpha(opacity=20);
}

.lightbox-photo {
	line-height: 16px;
}

.paragraph-row {
	display: block;
	clear: both;
	position: relative;
	margin-bottom: 0px;
}

.paragraph-row:after {
	display: block;
	clear: both;
	content: '';
}

.paragraph-row .column12{width:100%;*width:99.94680851063829%;}
.paragraph-row .column11{width:91.48936170212765%;*width:91.43617021276594%;}
.paragraph-row .column10{width:82.97872340425532%;*width:82.92553191489361%;}
.paragraph-row .column9{width:74.46808510638297%;*width:74.41489361702126%;}
.paragraph-row .column8{width:65.95744680851064%;*width:65.90425531914893%;}
.paragraph-row .column7{width:57.44680851063829%;*width:57.39361702127659%;}
.paragraph-row .column6{width:48.93617021276595%;*width:48.88297872340425%;}
.paragraph-row .column5{width:40.42553191489362%;*width:40.37234042553192%;}
.paragraph-row .column4{width:31.914893617021278%;*width:31.861702127659576%;}
.paragraph-row .column3{width:23.404255319148934%;*width:23.351063829787233%;}
.paragraph-row .column2{width:14.893617021276595%;*width:14.840425531914894%;}
.paragraph-row .column1{width:6.382978723404255%;*width:6.329787234042553%;}

.paragraph-row > li,
.paragraph-row > div {
	float: left;
	margin-left: 2.127659574468085%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.paragraph-row > li:first-child,
.paragraph-row > div:first-child {
	margin-left: 0px;
	padding-left: 0px;
}

.google-maps,
.video-embed {
	display: block;
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
	margin-bottom: 25px;
}

.google-maps iframe,
.video-embed object, .video-embed embed, .video-embed iframe {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%!important;
	height: 100%!important;
}

.shortcode-content blockquote.ot-bq-style-2 {
	display: block;
	position: relative;
	border-left: 0px;
	font-weight: normal;
	padding-left: 60px;
	min-height: 54px;
}

.shortcode-content blockquote.ot-bq-style-2:before {
	display: block;
	position: absolute;
	content: '\f10d';
	font-family: "FontAwesome";
	font-size: 22px;
	left: 0px;
	top: 6px;
	background: #d46e4b;
	color: #fff;
	line-height: 100%;
	padding: 10px 11px;
}

.shortcode-content blockquote.ot-bq-style-3 {
	display: block;
	position: relative;
	border-left: 3px solid #D46E4B;
	font-weight: normal;
	padding-left: 30px;
	min-height: 54px;
	font-size: 17px;
}

.shortcode-content blockquote.ot-bq-style-3:before {
	display: block;
	position: absolute;
	content: '\f10d';
	font-family: "FontAwesome";
	font-size: 17px;
	left: -9px;
	top: 50%;
	margin-top: -18px;
	background: #F0F4F6;
	color: #D46E4B;
	line-height: 100%;
	padding: 10px 0;
}

.shortcode-content ol,
.shortcode-content ul {
	padding: 3px 0 2px 20px;
	margin: 0 0 25px 0;
}

.shortcode-content ol {
	list-style: decimal;
}

.shortcode-content ul {
	list-style: disc;
}

.shortcode-content ul.fa-ul {
	list-style: none;
}

.shortcode-content ol li,
.shortcode-content ul li {
	background: transparent;
	padding: 0 0 0 0px;
	margin: 12px 0 0 0;
	line-height: 130%;
}

.shortcode-content ol > li:first-child,
.shortcode-content ul > li:first-child {
	margin-top: 0px;
}

.shortcode-content ul.fa-ul {
	padding-left: 0px;
}

.shortcode-content ul.fa-ul li {
	padding-left: 23px;
}

.shortcode-content ul.fa-ul li i.fa {
	margin-left: 20px;
	top: 0px;
	font-size: 12px;
	line-height: inherit;
	padding-top: 2px;
}

.shortcode-content ul.fa-ul.big li {
	font-size: 19px;
	font-weight: bold;
	color: #4d4f51;
}

.shortcode-content ul.fa-ul.big li i.fa {
	font-size: 19px;
	left: 0px;
	margin-left: 0px;
	width: 20px;
}

.shortcode-content ul.fa-ul.big li {
	padding-left: 36px;
}

.ot-spacer {
	display: block;
	height: 2px;
	width: 100%;
	margin-top: 50px;
	margin-bottom: 50px;
	background: #c6cdd0;
	color: #c6cdd0;
	text-align: center;
	position: relative;
	border-bottom: 0px;
	font-size: 24px;
	cursor: default;
}

.ot-spacer strong {
	position: relative;
	margin-top: -5px;
	background: #F0F4F6;
	padding: 0 16px;
	line-height: 100%;
	font-size: 14px;
	text-transform: uppercase;
	display: inline-block;
	z-index: 2;
}

.ot-spacer i.fa.fa {
	margin-top: -11px;
	background: #F0F4F6;
	padding: 0 16px;
	position: relative;
	z-index: 2;
}

.ot-spacer.spacer-2 {
	height: 6px;
}

.ot-spacer.spacer-2:before {
	display: block;
	height: 6px;
	content: '';
	width: 100%;
	height: 2px;
	background: #F0F4F6;
	top: 2px;
	left: 0px;
	position: absolute;
	z-index: 1;
}

.wp-caption {
	display: block;
	margin-left: -25px;
	margin-right: -25px;
	margin-bottom: 25px;
}

.wp-caption a {
	display: block;
	width: 100%;
	text-align: center;
	background: #232323;
}

.wp-caption .wp-caption-text {
	display: block;
	padding: 22px 25px;
	width: 100%;
	text-align: left;
	font-style: italic;
	background: #f7fbfc;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

a.button {
	display: inline-block;
}

a.button:hover {
	color: #fff;
}

p a.button {
	display: inline-block;
	padding: 6px 24px 7px 24px;
}

a.button.button-light {
	background-color: #f7fbfc;
	color: #232323;
	border: 1px solid rgba(0,0,0,0.08);
}

a.button.button-light:hover {
	box-shadow: inset 0 -3px 0 rgba(0,0,0,0.08), inset 0 -100px 0 rgba(0,0,0,0.03);
}

a.button.button-light:active {
	box-shadow: inset 0 -1px 0 rgba(0,0,0,0.08), inset 0 -100px 0 rgba(0,0,0,0.08);
}

.color-scheme-table {
	display: block;
	margin-bottom: 25px;
}

.color-scheme-table .color-scheme-row {
	display: block;
	margin-bottom: 3px;
	background: #f7fbfc;
	color: #232323;
	font-size: 15px;
}

.color-scheme-table .color-scheme-row:after {
	display: block;
	clear: both;
	content: '';
}

.color-scheme-table .color-scheme-row .left {
	display: block;
	padding: 13px 0px;
	text-align: center;
	width: 100px;
	color: #fff;
	background-color: #232323;
}

.color-scheme-table .color-scheme-row .left.scheme-light {
	color: #232323;
}

.color-scheme-table .color-scheme-row strong {
	display: block;
	margin-left: 110px;
	padding: 13px 10px;
}

p .marker {
	display: inline-block;
	padding: 0px 8px;
	margin: 0px 5px;
	background: #232323;
	border-radius: 2px;
	-moz-border-radius: 2px;
	color: #fff;
}


.short-tabs {
	display: block;
	margin-bottom: 25px;
}

.short-tabs > div {
	display: none;
	background: #f7fbfc;
	padding: 25px 25px 1px 25px;
}

.short-tabs > div.active {
	display: block;
}

.short-tabs > ul {
	display: block;
	margin: 0px;
	padding: 0px;
	list-style-type: none;
	font-size: 0;
}

.short-tabs > ul li {
	margin: 0 0 3px 3px;
	padding: 0px;
	font-size: 14px;
	font-weight: normal;
	display: inline-block;
	vertical-align: bottom;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.short-tabs > ul li:first-child {
	margin-left: 0px;
}

.short-tabs > ul li a {
	display: block;
	background: #f4f8f9;
	padding: 15px 20px;
	color: #ababab;
}

.short-tabs > ul li a:hover {
	background: #f7fbfc;
}

.short-tabs > ul li.active {
	margin-bottom: 0px;
}

.short-tabs > ul li.active a {
	background: #f7fbfc;
	color: #232323;
	padding: 15px 20px 18px 20px;
}

.accordion {
	display: block;
	margin-bottom: 25px;
}

.accordion > div {
	display: block;
	margin-bottom: 5px;
}

.accordion > div > div {
	display: none;
	background: #f4f8f9;
	padding: 17px 25px 1px 25px;
	margin-top: 4px;
}

.accordion > div > a {
	display: block;
	padding: 20px 25px;
	font-weight: bold;
	text-transform: uppercase;
	font-size: 14px;
	background: #f7fbfc;
	color: #8f8f8f;
	position: relative;
}

.accordion > div > a:after {
	display: block;
	content: '\f067';
	font-family: "FontAwesome";
	position: absolute;
	right: 25px;
	top: 20px;
}

.accordion > div.active > a:after {
	content: '\f068';
}

.accordion > div.active > a,
.accordion > div > a:hover {
	background: #FFFFFF;
	color: #232323;
}

.alert-message {
	display: block;
	margin-bottom: 25px;
	background: #ecad52;
	color: #fff;
	box-shadow: 0 2px 1px rgba(0,0,0,0.1);
	padding: 20px 25px;
}

.alert-message > a {
	display: block;
	color: #fff;
	background: rgba(0,0,0,0.1);
	line-height: 100%;
	padding: 6px 7px;
	margin-top: -5px;
	margin-right: -10px;
	border-radius: 2px;
	font-size: 14px;
}

.alert-message > a:hover {
	background: rgba(0,0,0,0.3);
}

.alert-message strong {
	margin-right: 50px;
	display: block;
	margin-bottom: 8px;
	text-transform: uppercase;
	font-size: 16px;
}

.alert-message span {
	display: block;
	margin-right: 50px;
	font-size: 15px;
	color: rgba(255,255,255,0.8);
}

.image-full {
	display: block;
	margin-bottom: 25px;
	margin-left: -25px;
	margin-right: -25px;
}

.image-full img {
	width: 100%;
}


.shortcode-content a.social-icon {
	display: inline-block;
	margin-right: 20px;
	position: relative;
	color: #232323;
	text-shadow: 0 1px 0 #fff;
}

.shortcode-content a.social-icon:after {
	display: block;
	clear: both;
	content: '';
}

.shortcode-content a.social-icon i.fa {
	display: inline-block;
	float: left;
	width: 25px;
	background: #232323;
	color: #fff;
	text-align: center;
	border-radius: 2px;
	-moz-border-radius: 2px;
	text-shadow: none;
	transition: all 0.2s;
	-moz-transition: all 0.2s;
	-webkit-transition: all 0.2s;
	-o-transition: all 0.2s;
}

.shortcode-content a.social-icon b {
	display: block;
	margin-left: 35px;
	font-size: 14px;
	margin-bottom: 0px;
	line-height: 100%;
}

.shortcode-content a.social-icon span {
	display: block;
	margin-left: 35px;
	font-size: 10px;
	line-height: 100%;
}

.shortcode-content a.social-icon:hover {
	color: #333;
}

.shortcode-content a.social-icon:hover i.fa {
	background: #4b95d4;
}

/* Twtitter color */
.shortcode-content a.social-icon.social-twitter:hover i.fa {
	background: #00aced;
}

/* Facebook color */
.shortcode-content a.social-icon.social-facebook:hover i.fa {
	background: #3b5998;
}

/* Google+ color */
.shortcode-content a.social-icon.social-google-plus:hover i.fa {
	background: #dd4b39;
}

/* Pinterest color */
.shortcode-content a.social-icon.social-pinterest:hover i.fa {
	background: #cb2027;
}

/* Instagram color */
.shortcode-content a.social-icon.social-instagram:hover i.fa {
	background: #517fa4;
}

/* Youtube color */
.shortcode-content a.social-icon.social-youtube:hover i.fa {
	background: #bb0000;
}

/* Flickr color */
.shortcode-content a.social-icon.social-flickr:hover i.fa {
	background: #ff0084;
}

/* Linkedin color */
.shortcode-content a.social-icon.social-linkedin:hover i.fa {
	background: #007bb6;
}

/* Dribbble color */
.shortcode-content a.social-icon.social-dribbble:hover i.fa {
	background: #ea4c89;
}

/* Skype color */
.shortcode-content a.social-icon.social-skype:hover i.fa {
	background: #12A5F4;
}

/* Tumblr color */
.shortcode-content a.social-icon.social-tumblr:hover i.fa {
	background: #32506d;
}

/* Vimeo color */
.shortcode-content a.social-icon.social-vimeo:hover i.fa {
	background: #aad450;
}

/* Vkontakte color */
.shortcode-content a.social-icon.social-vk:hover i.fa {
	background: #45668e;
}

.shortcode-content pre {
	margin: 0px;
	background: #fff;
	border: 1px solid #ECECEC;
	color: #A9ACAE;
	padding: 15px 20px;
	border-radius: 2px;
	display: block;
	white-space: pre-wrap;
	margin-bottom: 25px;
	line-height: 140%;
}

.shortcode-content ul.fa-ul,
.shortcode-content ol {
	font-size: 14px;
}





/* DESKTOP */
@media only screen and (max-width: 1300px) {

	body {
		font-size: 14px;
	}

	.active.boxed {
		max-width: 100%;
	}

	.wrapper {
		max-width: 96%;
		width: 96%;
	}

	.header-photo .wrapper {
		max-width: 90%;
		width: 90%;
	}

	.content.has-sidebar > .wrapper .main-content-area {
		width: 67%;
	}

	#sidebar {
		width: 27%;
		padding-left: 3%;
	}

	.header-photo .header-photo-inner {
		width: 100%;
	}

	.header-photo {
		padding: 60px 0;
	}

	.w-photo-gallery .item,
	.w-photo-gallery .item a img {
		width: 100%;
		height: auto;
	}

	.header-photo .header-photo-inner h2 {
		font-size: 36px;
	}

	.header-photo .header-photo-meta {
		font-size: 18px;
	}

	.article-header h2 {
		font-size: 35px;
	}

	.header .header-search {
		width: 350px;
	}

	.shortcode-content p {
		font-size: 15px;
	}

	.shortcode-content blockquote {
		font-size: 17px;
	}

	.header .main-menu .wrapper > ul > li > a {
		font-size: 15px;
		padding: 22px 13px;
		box-shadow: inset 0 57px 0 #252629;
	}

	.header .header-search input[type=text], .header .header-search input[type=search] {
		font-size: 14px;
	}

	.ot-mega-menu > li {
		backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		transform: translateX(0);
		-moz-transform: translateX(0);
		-webkit-transform: translateX(0);
	}

	.header .top-menu ul li {
		font-size: 13px;
	}

	.header .main-menu ul.sub-menu > li > a {
		font-size: 14px;
	}

	.head-slider-wrap .head-slider-slide > div:nth-child(n+2) .sl-title {
		font-size: 11px;
	}

	.head-slider-wrap .head-slider-slide > div:nth-child(n+2) .sl-category {
		padding: 6px 12px;
		font-size: 11px;
	}

	div[data-animation] > div,
	.mex-scrollnimate > div,
	.animated {
		visibility: visible!important;
		opacity: 1!important;
		filter: alpha(opacity=100)!important;
		-webkit-animation-duration: 0s!important;
		animation-duration: 0s!important;
		backface-visibility: hidden;
		-moz-backface-visibility: hidden;
		-webkit-backface-visibility: hidden;
		transform: translateX(0)!important;
		-moz-transform: translateX(0)!important;
		-webkit-transform: translateX(0)!important;
	}

}


/* TABLET */
@media only screen and (max-width: 900px) {

	body, div, p, a, table, td {
		-webkit-text-size-adjust: none;
		letter-spacing: .015em;
	}

	.big-message-inner h1 {
		font-size: 34px;
	}

	.big-message-inner h2 {
		font-size: 26px;
	}

	.big-message-inner p {
		font-size: 16px;
	}

	.big-message-inner .back-button {
		font-size: 15px;
	}

	.big-message-inner > i.fa {
		font-size: 120px;
	}

	.big-message-inner {
		padding-left: 138px;
	}

	.head-slider {
		display: none;
	}

	.head-slider.reverse-show {
		display: block;
	}

	.main-block .reviews-layout .reviews-layout-inner {
		margin-left: 0px!important;
	}

	.header-block.header-weather {
		display: none!important;
	}

	.content.has-sidebar > .wrapper .main-content-area {
		float: none;
		width: 100%;
	}

	.content.has-sidebar > .wrapper #sidebar {
		float: none;
		width: 100%;
		padding-right: 0px;
		padding-left: 0px;
		height: auto!important;
	}

	.sidebar-background,
	.sidebar-background-light {
		display: none!important;
	}

	.w-instagram .item .item-header img {
		width: 100%;
	}

	.ot-mega-menu > li .widget,
	.footer-widgets .widget {
		display: block;
		float: none;
		width: 100%;
		margin-right: 0px;
		margin-left: 0px;
		margin-bottom: 50px;
		padding-bottom: 1px;
	}

	.footer-widgets .widget:after {
		display: block;
		clear: both;
		content: '';
	}

	.footer-widgets .widget:last-child {
		margin-bottom: 0px;
	}

	.article-videos .item .item-content .item-button {
		display: none;
	}

	.main-block .reviews-layout > button {
		display: none!important;
	}

	.main-block .reviews-layout .reviews-layout-wrapper {
		margin-left: 0px;
		margin-right: 0px;
		overflow-x: auto;
	}

	.main-block .reviews-layout .reviews-layout-inner .item {
		width: 180px;
	}

	.main-block .reviews-layout .reviews-layout-inner .item .item-header strong {
		font-size: 13px;
	}

	.main-block .reviews-layout .reviews-layout-inner .item .item-header .meta-items {
		display: none;
	}

	.main-block .reviews-layout .reviews-layout-inner .item .item-header .meta-cat {
		font-size: 10px;
	}

	.ot-menu-will-follow .main-menu-wrapper.is-now-following .main-menu {
		position: relative;
		top: auto;
		left: auto;
	}

	.main-block .article-featured .item-content {
		position: relative;
		padding: 6% 10% 6% 10%;
	}

	.main-block .article-featured .item a {
		padding-bottom: 0px;
	}

	.header .main-menu .wrapper > ul > li > a {
		font-size: 12px;
		box-shadow: inset 0 53px 0 #252629;
	}

	.ot-shortcode-photo-gallery-inner .item-group {
		width: 150%!important;
	}

	.ot-shortcode-photo-gallery button {
		display: none;
	}

	.ot-shortcode-photo-gallery-inner {
		margin-left: 0px;
		margin-right: 0px;
		white-space: nowrap;
		overflow-x: auto;
	}

	.ot-shortcode-photo-gallery-inner .item-group {
		display: inline-block!important;
		margin-left: 6px;
	}

	.ot-shortcode-photo-gallery-inner .item-group:first-child {
		margin-left: 0px;
	}

	.photo-gallery-thumbs .photo-gallery-nav {
		display: none;
	}

	.main-block .article-layout-default .item .item-content > h3 {
		font-size: 20px;
	}

	.breadcrumbs h2 {
		font-size: 26px;
	}

	.breadcrumbs ul {
		padding: 4px 0;
	}

	.photo-gallery-thumbs .photo-gallery-thumb-list {
		margin-left: 0px;
		margin-right: 0px;
		padding: 13px;
		overflow-x: auto;
	}

	.photo-gallery-thumbs .photo-gallery-thumb-list .item img {
		display: block;
		width: 60px;
		height: 60px;
	}

	.main-block > div.lets-do-4 > .item {
		width: 31.33%;
		margin-left: 3%;
	}

	.main-block > div.lets-do-4 > .item:nth-child(4n+1) {
		clear: none;
		margin-left: 3%;
	}

	.main-block > div.lets-do-4 > .item:nth-child(n+5) {
		margin-top: 0px;
	}

	.main-block > div.lets-do-4 > .item:nth-child(3n+1) {
		clear: both;
		margin-left: 0px;
	}

	.main-block > div.lets-do-4 > .item:nth-child(n+4) {
		margin-top: 28px;
	}

	.shortcode-content ul.fa-ul.big li {
		font-size: 15px;
	}

	.footer-bottom .footer-bottom-inner ul {
		float: none;
		width: 100%;
		text-align: center;
		display: block;
		width: 100%;
		margin-bottom: 20px;
	}

	.footer-bottom .footer-bottom-inner ul li {
		float: none;
		display: inline-block;
	}

	.comments-big-message {
		width: 50%;
		padding: 15px 0;
	}

	.comments-big-message > i.fa {
		font-size: 50px;
		top: 13px;
	}

	.comments-big-message > h3 {
		margin-left: 70px;
		font-size: 24px;
	}

	.comments-big-message > p {
		margin-left: 70px;
	}

	.load-responsive {
		display: none!important;
	}

	.header .top-menu ul.right {
		float: none;
		text-align: center;
	}

	.header .top-menu ul li {
		display: inline-block;
		float: none;
	}

	a.responsive-menu-button {
		display: block;
	}

}


/* PHONE */
@media only screen and (max-width: 600px) {

	.google-mapps-full {
		height: 250px;
	}

	.google-mapps-full iframe {
		height: 100%;
	}

	.big-message-inner {
		width: 100%;
	}

	.big-message-inner > i.fa {
		display: none;
	}

	.big-message-inner {
		padding-left: 0;
		text-align: center;
	}

	.comment-form .contact-form-email,
	.comment-form .contact-form-user {
		float: none;
		width: 100%;
	}

	.main-content.big-message {
		padding: 40px 0;
	}

	.wrapper {
		overflow: hidden;
		max-width: 92%;
		width: 92%;
	}

	.header .wrapper {
		overflow: visible;
	}

	.demo-settings {
		display: none!important;
	}

	.ot-mega-menu > li .widget {
		display: block;
		width: 100%;
		float: none;
		margin-left: 0px;
		margin-right: 0px;
	}
	
	.paragraph-row > div,
	.main-block .article-split-cat .item-right,
	.main-block .article-split-cat .item-left,
	.main-block > div.lets-do-1 > .item,
	.main-block > div.lets-do-2 > .item,
	.main-block > div.lets-do-3 > .item,
	.main-block > div.lets-do-4 > .item,
	.main-block > div.lets-do-5 > .item {
		display: block;
		width: 100%!important;
		float: none;
		margin-left: 0px;
		margin-bottom: 25px;
	}

	.sidebar-fixed {
		padding-top: 0px!important;
	}

	.main-block .main-title h3 {
		font-size: 17px;
	}

	.main-block .main-title .right {
		font-size: 12px;
	}

	.main-content.more-button a {
		font-size: 12px;
		padding: 14px 20px;
	}

	#sidebar .widget > h2 {
		font-size: 20px;
	}

	.ot-mega-menu .widget > h2, .footer-widgets .widget > h2 {
		font-size: 20px;
	}

	.footer-bottom .footer-bottom-inner .footer-logo,
	.footer-bottom .footer-bottom-inner ul {
		display: block;
	}

	.header .header-blocks .wrapper {
		display: block;
	}

	.header .header-blocks .wrapper .header-block {
		display: block;
		width: 100%;
		text-align: center;
		padding-right: 0px;
		padding-top: 30px;
		padding-bottom: 30px;
	}

	.header .header-blocks .wrapper .header-block.header-search {
		padding-top: 0px;
		padding-bottom: 20px;
	}

	.review-verdict .pros-n-cons .review-cons,
	.review-verdict .pros-n-cons .review-pros {
		float: none;
		width: 100%;
		padding-left: 0px;
		padding-right: 0px;
	}

	.review-verdict .pros-n-cons .review-pros {
		margin-bottom: 25px;
	}

	.review-verdict .review-score .final-rating {
		display: block;
		width: 100%;
		float: none;
		text-align: center;
		margin-left: -20px;
	}

	.review-verdict .review-score {
		text-align: center;
		font-size: 23px;
	}

	.comment-form .contact-form-avatar,
	#comments .image-avatar img, #comments .image-avatar,
	.about-author .author-avatar {
		display: none;
	}

	.comment-form .contact-form-content,
	#comments li li .comment-block,
	#comments li li .comment-text,
	#comments > li > .comment-block > .comment-text,
	.about-author .author-content {
		margin-left: 0px;
	}

	.header-photo .header-photo-meta,
	.article-header .header-photo-meta {
		font-size: 15px;
		line-height: 140%;
	}

	.article-header h2 {
		font-size: 26px;
	}

	body {
		font-size: 13px;
	}

	.review-verdict p {
		font-size: 14px;
	}

	.header-photo .header-photo-inner h2,
	.review-verdict h3 {
		font-size: 25px;
	}

	.review-verdict .review-author {
		font-size: 13px;
	}

	.review-verdict .review-author a {
		line-height: 27px;
	}

	.article-videos .item .item-content .item-button {
		display: inline-block;
	}

	.footer-bottom .footer-bottom-inner {
		padding: 0px 20px;
	}

	.footer-widgets {
		padding: 40px 20px;
	}

	.main-block .article-featured .item-content strong {
		font-size: 17px;
	}

	.main-block .article-featured .item-content .content-text {
		display: none;
	}

	.main-block .article-featured .item-content .meta-items {
		font-size: 12px;
	}

	.main-block .article-layout-1.lets-do-2 .item-content strong {
		font-size: 16px;
	}

	.main-block .main-title .right {
		display: none;
	}

	.main-content.more-button {
		margin-top: 30px;
		margin-bottom: 40px;
	}

	.footer-bottom > .wrapper,
	.footer > .wrapper,
	.top-banner > .wrapper {
		width: 100%;
		max-width: 100%;
	}

	#sidebar .widget .w-subscribe input[type=submit],
	#sidebar .widget .w-subscribe input[type=text],
	.widget .w-subscribe input[type=submit],
	.widget .w-subscribe input[type=text],
	.widget .w-subscribe input[type=email],
	.widget .w-subscribe textarea
	{
		width: 100%;
	}

	.widget .w-popular-articles .item strong {
		font-size: 14px;
	}

	.widget a.read-more {
		font-size: 13px;
	}

	.widget .w-articles .item .item-content > strong {
		font-size: 14px;
	}

	.main-block .article-layout-1 .item-header {
		font-size: 9px;
	}

	.main-block .article-split-cat .item .item-content .meta-items {
		font-size: 11px;
	}

	.main-block .article-split-cat .item .item-content strong {
		font-size: 13px;
	}

	.main-block .article-split-cat .item a .item-content {
		padding: 4px 10px 8px 12px;
		margin-left: 24%;
	}

	.main-block .article-split-cat .item a .item-image {
		width: 25%;
	}

	.ot-frame-modal {
		width: 100%!important;
		left: 0px!important;
		top: 0px!important;
		margin-top: 0px!important;
		margin-left: 0px!important;
		border-radius: 0px!important;
	}

	.short-tabs > ul li a {
		font-size: 0;
	}

	.short-tabs > ul li {
		counter-increment: section;
	}

	.short-tabs > ul li a:before {
		font-size: 14px;
		content: counter(section);
	}

	.accordion > div > a {
		line-height: 140%;
	}

	.alert-message strong {
		font-size: 14px;
		margin-right: 0px;
	}

	.alert-message span {
		font-size: 13px;
		margin-right: 0px;
	}

	.alert-message > a {
		display: none;
	}

	.content > .wrapper {
		padding: 20px 0;
	}

	.breadcrumbs ul {
		display: none;
	}

	.breadcrumbs h2 {
		font-size: 24px;
		text-align: center;
	}

	.color-scheme-table .color-scheme-row {
		font-size: 12px;
	}

	.color-scheme-table .color-scheme-row .left {
		width: 80px;
	}

	.color-scheme-table .color-scheme-row strong {
		margin-left: 90px;
	}

	.button {
		font-size: 12px;
	}

	.photo-gallery-items .item .item-content h3 {
		font-size: 17px;
	}

	.photo-gallery-items .item .item-content p {
		font-size: 13px;
	}

	.photo-gallery-items .item .item-content .view-more {
		font-size: 12px;
	}

	.photo-gallery-items .item .item-content {
		padding: 20px;
	}

	.photo-gallery-thumbs .photo-gallery-nav,
	.photo-gallery-full .photo-gallery-full-nav-left,
	.photo-gallery-full .photo-gallery-full-nav-right {
		display: none;
	}

	.pagination .page-numbers {
		font-size: 11px;
		padding: 12px 13px;
	}

	.pagination {
		padding-top: 20px;
	}

	.photo-gallery-description {
		padding: 25px 25px 1px 25px;
	}

	.shortcode-content h1, .shortcode-content h2, .shortcode-content h3, .shortcode-content h4, .shortcode-content h5, .shortcode-content h6 {
		line-height: 140%;
	}

	.photo-gallery-thumbs .photo-gallery-thumb-list {
		margin-left: 0px;
		margin-right: 0px;
		padding: 13px;
		overflow-x: auto;
	}

	.photo-gallery-thumbs .photo-gallery-thumb-list .item img {
		display: block;
		width: 40px;
		height: 40px;
	}

	.main-block .article-layout-default .item .item-image {
		float: none;
		width: 100%;
		margin-bottom: 15px;
	}

	.main-block .article-layout-default .item .item-content {
		margin-left: 0px;
	}

	.main-block .article-layout-default .item .item-content > h3 {
		font-size: 18px;
	}

	.main-block .article-layout-default .item .item-content > .item-meta {
		font-size: 14px;
		line-height: 140%;
	}

	.main-block .article-layout-default .item .item-content > .item-text {
		font-size: 14px;
	}

	.main-block .article-layout-default .item-footer-more {
		font-size: 11px;
	}

	.review-verdict .pros-n-cons > div > strong {
		display: block;
		float: none;
		border-bottom: 1px solid rgba(255,255,255,0.1);
		padding-bottom: 20px;
		margin-bottom: 20px;
	}

	.review-verdict .pros-n-cons > div > ul {
		margin-left: 0px;
		border-left: 0px;
		padding-left: 0px;
	}

	.review-verdict > a {
		font-size: 12px;
	}

	#comments .comment-block > .comment-text .user-nick {
		font-size: 16px;
	}

	#comments .comment-block > .comment-text .user-nick .user-author {
		font-size: 10px;
		margin-top: -1px;
	}

	#comments li li .comment-block > .comment-text .time-stamp,
	#comments .comment-block > .comment-text .time-stamp {
		font-size: 12px;
	}

	#comments .comment-block > .comment-text .reply-button {
		font-size: 13px;
	}

	.comment-form .comment-info i.fa {
		display: none;
	}

	.comment-form .comment-info span,
	.comment-form .comment-info strong {
		margin-left: 0px;
	}

	.about-author .author-content h3 {
		font-size: 18px;
	}

	.comments-big-message {
		width: 100%;
		padding: 8px 0;
	}

	.comments-big-message > i.fa {
		display: none;
	}

	.comments-big-message > h3 {
		margin-left: 0px;
		font-size: 24px;
	}

	.comments-big-message > p {
		margin-left: 0px;
	}

	.article-header .header-photo-meta .meta-p:after, .header-photo .header-photo-meta .meta-p:after {
		/* display: none; */
	}

	.header-photo .header-photo-meta, .article-header .header-photo-meta {
		line-height: 150%;
	}

}


/*!
 * 
 *         SimpleBar.js - v2.5.1
 *         Scrollbars, simpler.
 *         https://grsmto.github.io/simplebar/
 *         
 *         Made by Adrien Grsmto from a fork by Jonathan Nicol
 *         Under MIT License
 *       
 */
[data-simplebar] {
    position: relative;
    z-index: 0;
    overflow: hidden;
    -webkit-overflow-scrolling: touch; /* Trigger native scrolling for mobile, if not supported, plugin is used. */
}

[data-simplebar="init"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.simplebar-scroll-content {
    overflow-x: hidden;
    overflow-y: scroll;
    min-width: 100%;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
}

.simplebar-content {
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    min-height: 100%;
}

.simplebar-track {
    z-index: 1;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 11px;
}

.simplebar-scrollbar {
    position: absolute;
    right: 2px;
    border-radius: 7px;
    min-height: 10px;
    width: 7px;
    opacity: 0;
    -webkit-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
    background: black;
    background-clip: padding-box;
}

.simplebar-track:hover .simplebar-scrollbar {
    /* When hovered, remove all transitions from drag handle */
    opacity: 0.5;
    -webkit-transition: opacity 0s linear;
    transition: opacity 0s linear;
}

.simplebar-track .simplebar-scrollbar.visible {
    opacity: 0.5;
}

.simplebar-track.horizontal {
    left: 0;
    width: auto;
    height: 11px;
}

.simplebar-track.vertical {
    top: 0;
}

.horizontal.simplebar-track .simplebar-scrollbar {
    right: auto;
    top: 2px;
    height: 7px;
    min-height: 0;
    min-width: 10px;
    width: auto;
}

/*! http://responsiveslides.com v1.55 by @viljamis */

.rslides {
  position: relative;
  list-style: none;
  overflow: hidden;
  width: 100%;
  padding: 0;
  margin: 0 auto 20px;
  }

.rslides div {
  -webkit-backface-visibility: hidden;
  position: absolute;
  display: none;
  width: 100%;
  left: 0;
  top: 0;
  }

.rslides div:first-child {
  position: relative;
  display: block;
  float: left;
  }

.rslides img {
  display: block;
  height: auto;
  float: left;
  width: 100%;
  border: 0;
  }

  

.ce_gallery ul.rslides_tabs {list-style:none; padding:0; margin:0 0 25px 0; text-align:center;}
.ce_gallery ul.rslides_tabs li {display:inline-block; margin:7px 4px; padding:0;}

.ce_gallery ul.rslides_tabs li a {
display:block;
/* width:30px;
height:30px; */
border-radius: 50%;
width:25px;
height:25px;
line-height:25px;
/* padding:4px 10px; */
background:#fff;
color:#58595d;
box-shadow: 0 3px 0 rgba(0,0,0,0.03);
}



.ce_gallery ul.rslides_tabs li.rslides_here a {color:#fff; background:#2980b9;}


.rslides .caption {
  position: absolute;
  display: block;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  text-align: center;
  background: #000;
  background: rgba(0,0,0, .8);
  color: #fff;
}



.ce_gallery a.prev {
	
position: absolute;
display: block;
font-size: 80px;
line-height:0;
left: 0;
top:calc(50% - 40px);
	
}

.ce_gallery a.next {
	
position: absolute;
display: block;
font-size: 80px;
line-height:0;
right:0;
top:calc(50% - 40px);
	
}

.ce_gallery {position: relative;}







