/* my mixins */
.ungridTable {
  width: 100%;
  display: table;
  table-layout: fixed;
}
.ungridTable > div,
.ungridTable .col {
  display: table-cell;
}
.vertCenterRel {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.vertCenterAbs {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.horizCenterRel {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.horizCenterAbs {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.allCenterRel {
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
.allCenterAbs {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%);
}
.imgHover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: contrast(1.5);
  filter: contrast(1.5);
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.imgNormal {
  *-webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  webkit-filter: none;
  filter: none;
  opacity: 1;
  filter: alpha(opacity=100);
}
.DarkLinks {
  color: gainsboro !important;
  /*&:hover {
				color: @darkLinkHover !important;
			}

			&:visited {
				@darkLink !important;
			}*/
}
.Links {
  color: #00508c !important;
  /*&:hover {
				color: @linkColorHover !important;
			}

			&:visited {
				@linkColor !important;
			}*/
}
.PrimaryBtnLike {
  background: #00508c;
  color: white !important;
  border: 1px solid #00508c;
}
.PrimaryBtnLike:hover,
.PrimaryBtnLike.hover {
  background: #000000;
}
.DefaultBtnLike {
  background: transparent;
  color: #00508c !important;
  border: 1px solid #00508c;
}
.DefaultBtnLike:hover,
.DefaultBtnLike.hover {
  background: #80a8c6;
}
.BackFace {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.linedIcons {
  font-family: 'lined-icons';
  display: inline-block;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.FaIco {
  font-family: "FontAwesome";
  display: inline-block;
  content: "\f105";
  float: left;
  padding-right: .3em;
}
.BackFace {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}
.animated {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated.infinite {
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.animated.once {
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.animated.hinge {
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  -o-animation-duration: 2s;
  animation-duration: 2s;
}
.animated.slow {
  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;
  -o-animation-duration: 3s;
  animation-duration: 3s;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
  }
}
@-moz-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -moz-transform: translateY(0);
  }
  40% {
    -moz-transform: translateY(-30px);
  }
  60% {
    -moz-transform: translateY(-15px);
  }
}
@-o-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -o-transform: translateY(0);
  }
  40% {
    -o-transform: translateY(-30px);
  }
  60% {
    -o-transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
.bounce {
  -webkit-animation-name: bounce;
  -moz-animation-name: bounce;
  -ms-animation-name: bounce;
  -o-animation-name: bounce;
  animation-name: bounce;
}
@-webkit-keyframes bounceIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.05);
  }
  70% {
    -webkit-transform: scale(0.9);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes bounceIn {
  0% {
    opacity: 0;
    -moz-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -moz-transform: scale(1.05);
  }
  70% {
    -moz-transform: scale(0.9);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@-o-keyframes bounceIn {
  0% {
    opacity: 0;
    -o-transform: scale(0.3);
  }
  50% {
    opacity: 1;
    -o-transform: scale(1.05);
  }
  70% {
    -o-transform: scale(0.9);
  }
  100% {
    -o-transform: scale(1);
  }
}
@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.bounceIn {
  -webkit-animation-name: bounceIn;
  -moz-animation-name: bounceIn;
  -ms-animation-name: bounceIn;
  -o-animation-name: bounceIn;
  animation-name: bounceIn;
}
@-webkit-keyframes bounceInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(30px);
  }
  80% {
    -webkit-transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes bounceInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateY(30px);
  }
  80% {
    -moz-transform: translateY(-10px);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@-o-keyframes bounceInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateY(30px);
  }
  80% {
    -o-transform: translateY(-10px);
  }
  100% {
    -o-transform: translateY(0);
  }
}
@keyframes bounceInDown {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInDown {
  -webkit-animation-name: bounceInDown;
  -moz-animation-name: bounceInDown;
  -ms-animation-name: bounceInDown;
  -o-animation-name: bounceInDown;
  animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(30px);
  }
  80% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(30px);
  }
  80% {
    -moz-transform: translateX(-10px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@-o-keyframes bounceInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateX(30px);
  }
  80% {
    -o-transform: translateX(-10px);
  }
  100% {
    -o-transform: translateX(0);
  }
}
@keyframes bounceInLeft {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(30px);
  }
  80% {
    transform: translateX(-10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInLeft {
  -webkit-animation-name: bounceInLeft;
  -moz-animation-name: bounceInLeft;
  -ms-animation-name: bounceInLeft;
  -o-animation-name: bounceInLeft;
  animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateX(-30px);
  }
  80% {
    -webkit-transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes bounceInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateX(-30px);
  }
  80% {
    -moz-transform: translateX(10px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@-o-keyframes bounceInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateX(-30px);
  }
  80% {
    -o-transform: translateX(10px);
  }
  100% {
    -o-transform: translateX(0);
  }
}
@keyframes bounceInRight {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  60% {
    opacity: 1;
    transform: translateX(-30px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    transform: translateX(0);
  }
}
.bounceInRight {
  -webkit-animation-name: bounceInRight;
  -moz-animation-name: bounceInRight;
  -ms-animation-name: bounceInRight;
  -o-animation-name: bounceInRight;
  animation-name: bounceInRight;
}
@-webkit-keyframes bounceInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(-30px);
  }
  80% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes bounceInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -moz-transform: translateY(-30px);
  }
  80% {
    -moz-transform: translateY(10px);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@-o-keyframes bounceInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    -o-transform: translateY(-30px);
  }
  80% {
    -o-transform: translateY(10px);
  }
  100% {
    -o-transform: translateY(0);
  }
}
@keyframes bounceInUp {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  60% {
    opacity: 1;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.bounceInUp {
  -webkit-animation-name: bounceInUp;
  -moz-animation-name: bounceInUp;
  -ms-animation-name: bounceInUp;
  -o-animation-name: bounceInUp;
  animation-name: bounceInUp;
}
@-webkit-keyframes bounceOut {
  0% {
    -webkit-transform: scale(1);
  }
  25% {
    -webkit-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -webkit-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -webkit-transform: scale(0.3);
  }
}
@-moz-keyframes bounceOut {
  0% {
    -moz-transform: scale(1);
  }
  25% {
    -moz-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -moz-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -moz-transform: scale(0.3);
  }
}
@-o-keyframes bounceOut {
  0% {
    -o-transform: scale(1);
  }
  25% {
    -o-transform: scale(0.95);
  }
  50% {
    opacity: 1;
    -o-transform: scale(1.1);
  }
  100% {
    opacity: 0;
    -o-transform: scale(0.3);
  }
}
@keyframes bounceOut {
  0% {
    transform: scale(1);
  }
  25% {
    transform: scale(0.95);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
.bounceOut {
  -webkit-animation-name: bounceOut;
  -moz-animation-name: bounceOut;
  -ms-animation-name: bounceOut;
  -o-animation-name: bounceOut;
  animation-name: bounceOut;
}
@-webkit-keyframes bounceOutDown {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@-moz-keyframes bounceOutDown {
  0% {
    -moz-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
}
@-o-keyframes bounceOutDown {
  0% {
    -o-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
}
@keyframes bounceOutDown {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(-20px);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.bounceOutDown {
  -webkit-animation-name: bounceOutDown;
  -moz-animation-name: bounceOutDown;
  -ms-animation-name: bounceOutDown;
  -o-animation-name: bounceOutDown;
  animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@-moz-keyframes bounceOutLeft {
  0% {
    -moz-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
}
@-o-keyframes bounceOutLeft {
  0% {
    -o-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateX(20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
}
@keyframes bounceOutLeft {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(20px);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.bounceOutLeft {
  -webkit-animation-name: bounceOutLeft;
  -moz-animation-name: bounceOutLeft;
  -ms-animation-name: bounceOutLeft;
  -o-animation-name: bounceOutLeft;
  animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
  0% {
    -webkit-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@-moz-keyframes bounceOutRight {
  0% {
    -moz-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
}
@-o-keyframes bounceOutRight {
  0% {
    -o-transform: translateX(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
}
@keyframes bounceOutRight {
  0% {
    transform: translateX(0);
  }
  20% {
    opacity: 1;
    transform: translateX(-20px);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.bounceOutRight {
  -webkit-animation-name: bounceOutRight;
  -moz-animation-name: bounceOutRight;
  -ms-animation-name: bounceOutRight;
  -o-animation-name: bounceOutRight;
  animation-name: bounceOutRight;
}
@-webkit-keyframes bounceOutUp {
  0% {
    -webkit-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@-moz-keyframes bounceOutUp {
  0% {
    -moz-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
}
@-o-keyframes bounceOutUp {
  0% {
    -o-transform: translateY(0);
  }
  20% {
    opacity: 1;
    -o-transform: translateY(20px);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
}
@keyframes bounceOutUp {
  0% {
    transform: translateY(0);
  }
  20% {
    opacity: 1;
    transform: translateY(20px);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.bounceOutUp {
  -webkit-animation-name: bounceOutUp;
  -moz-animation-name: bounceOutUp;
  -ms-animation-name: bounceOutUp;
  -o-animation-name: bounceOutUp;
  animation-name: bounceOutUp;
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-o-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fadeIn {
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -ms-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
}
@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDown {
  0% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInDown {
  0% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  -moz-animation-name: fadeInDown;
  -ms-animation-name: fadeInDown;
  -o-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
@-webkit-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInDownBig {
  0% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInDownBig {
  0% {
    opacity: 0;
    transform: translateY(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInDownBig {
  -webkit-animation-name: fadeInDownBig;
  -moz-animation-name: fadeInDownBig;
  -ms-animation-name: fadeInDownBig;
  -o-animation-name: fadeInDownBig;
  animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  -moz-animation-name: fadeInLeft;
  -ms-animation-name: fadeInLeft;
  -o-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInLeftBig {
  0% {
    opacity: 0;
    transform: translateX(-2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInLeftBig {
  -webkit-animation-name: fadeInLeftBig;
  -moz-animation-name: fadeInLeftBig;
  -ms-animation-name: fadeInLeftBig;
  -o-animation-name: fadeInLeftBig;
  animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInRight {
  0% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInRight {
  0% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-name: fadeInRight;
  -moz-animation-name: fadeInRight;
  -ms-animation-name: fadeInRight;
  -o-animation-name: fadeInRight;
  animation-name: fadeInRight;
}
@-webkit-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
}
@-o-keyframes fadeInRightBig {
  0% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0);
  }
}
@keyframes fadeInRightBig {
  0% {
    opacity: 0;
    transform: translateX(2000px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.fadeInRightBig {
  -webkit-animation-name: fadeInRightBig;
  -moz-animation-name: fadeInRightBig;
  -ms-animation-name: fadeInRightBig;
  -o-animation-name: fadeInRightBig;
  animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUp {
  0% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInUp {
  0% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUp {
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -ms-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
@-webkit-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
}
@-o-keyframes fadeInUpBig {
  0% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    -o-transform: translateY(0);
  }
}
@keyframes fadeInUpBig {
  0% {
    opacity: 0;
    transform: translateY(2000px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeInUpBig {
  -webkit-animation-name: fadeInUpBig;
  -moz-animation-name: fadeInUpBig;
  -ms-animation-name: fadeInUpBig;
  -o-animation-name: fadeInUpBig;
  animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-o-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.fadeOut {
  -webkit-animation-name: fadeOut;
  -moz-animation-name: fadeOut;
  -ms-animation-name: fadeOut;
  -o-animation-name: fadeOut;
  animation-name: fadeOut;
}
@-webkit-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
}
@-moz-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(20px);
  }
}
@-o-keyframes fadeOutDown {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(20px);
  }
}
@keyframes fadeOutDown {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
.fadeOutDown {
  -webkit-animation-name: fadeOutDown;
  -moz-animation-name: fadeOutDown;
  -ms-animation-name: fadeOutDown;
  -o-animation-name: fadeOutDown;
  animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(2000px);
  }
}
@-moz-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(2000px);
  }
}
@-o-keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(2000px);
  }
}
@keyframes fadeOutDownBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(2000px);
  }
}
.fadeOutDownBig {
  -webkit-animation-name: fadeOutDownBig;
  -moz-animation-name: fadeOutDownBig;
  -ms-animation-name: fadeOutDownBig;
  -o-animation-name: fadeOutDownBig;
  animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-20px);
  }
}
@-moz-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(-20px);
  }
}
@-o-keyframes fadeOutLeft {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-20px);
  }
}
@keyframes fadeOutLeft {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-20px);
  }
}
.fadeOutLeft {
  -webkit-animation-name: fadeOutLeft;
  -moz-animation-name: fadeOutLeft;
  -ms-animation-name: fadeOutLeft;
  -o-animation-name: fadeOutLeft;
  animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(-2000px);
  }
}
@-moz-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(-2000px);
  }
}
@-o-keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(-2000px);
  }
}
@keyframes fadeOutLeftBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(-2000px);
  }
}
.fadeOutLeftBig {
  -webkit-animation-name: fadeOutLeftBig;
  -moz-animation-name: fadeOutLeftBig;
  -ms-animation-name: fadeOutLeftBig;
  -o-animation-name: fadeOutLeftBig;
  animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
}
@-moz-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(20px);
  }
}
@-o-keyframes fadeOutRight {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(20px);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(20px);
  }
}
.fadeOutRight {
  -webkit-animation-name: fadeOutRight;
  -moz-animation-name: fadeOutRight;
  -ms-animation-name: fadeOutRight;
  -o-animation-name: fadeOutRight;
  animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(2000px);
  }
}
@-moz-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -moz-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(2000px);
  }
}
@-o-keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    -o-transform: translateX(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(2000px);
  }
}
@keyframes fadeOutRightBig {
  0% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(2000px);
  }
}
.fadeOutRightBig {
  -webkit-animation-name: fadeOutRightBig;
  -moz-animation-name: fadeOutRightBig;
  -ms-animation-name: fadeOutRightBig;
  -o-animation-name: fadeOutRightBig;
  animation-name: fadeOutRightBig;
}
@-webkit-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
}
@-moz-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-20px);
  }
}
@-o-keyframes fadeOutUp {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-20px);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-20px);
  }
}
.fadeOutUp {
  -webkit-animation-name: fadeOutUp;
  -moz-animation-name: fadeOutUp;
  -ms-animation-name: fadeOutUp;
  -o-animation-name: fadeOutUp;
  animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-2000px);
  }
}
@-moz-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -moz-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -moz-transform: translateY(-2000px);
  }
}
@-o-keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    -o-transform: translateY(0);
  }
  100% {
    opacity: 0;
    -o-transform: translateY(-2000px);
  }
}
@keyframes fadeOutUpBig {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-2000px);
  }
}
.fadeOutUpBig {
  -webkit-animation-name: fadeOutUpBig;
  -moz-animation-name: fadeOutUpBig;
  -ms-animation-name: fadeOutUpBig;
  -o-animation-name: fadeOutUpBig;
  animation-name: fadeOutUpBig;
}
@-webkit-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@-moz-keyframes flash {
  0%,
  50%,
  100% {
    opacity: 1;
  }
  25%,
  75% {
    opacity: 0;
  }
}
@-o-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;
  -moz-animation-name: flash;
  -ms-animation-name: flash;
  -o-animation-name: flash;
  animation-name: flash;
}
@-webkit-keyframes flip {
  0% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -webkit-animation-timing-function: ease-out;
  }
  40% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -webkit-animation-timing-function: ease-out;
  }
  50% {
    -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
  80% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -webkit-animation-timing-function: ease-in;
  }
  100% {
    -webkit-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -webkit-animation-timing-function: ease-in;
  }
}
@-moz-keyframes flip {
  0% {
    -moz-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -moz-animation-timing-function: ease-out;
  }
  40% {
    -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -moz-animation-timing-function: ease-out;
  }
  50% {
    -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -moz-animation-timing-function: ease-in;
  }
  80% {
    -moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -moz-animation-timing-function: ease-in;
  }
  100% {
    -moz-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -moz-animation-timing-function: ease-in;
  }
}
@-o-keyframes flip {
  0% {
    -o-transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    -o-animation-timing-function: ease-out;
  }
  40% {
    -o-transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    -o-animation-timing-function: ease-out;
  }
  50% {
    -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    -o-animation-timing-function: ease-in;
  }
  80% {
    -o-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    -o-animation-timing-function: ease-in;
  }
  100% {
    -o-transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    -o-animation-timing-function: ease-in;
  }
}
@keyframes flip {
  0% {
    transform: perspective(400px) translateZ(0) rotateY(0) scale(1);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translateZ(150px) rotateY(170deg) scale(1);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(0.95);
    animation-timing-function: ease-in;
  }
  100% {
    transform: perspective(400px) translateZ(0) rotateY(360deg) scale(1);
    animation-timing-function: ease-in;
  }
}
.animate.flip {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flip;
  -moz-animation-name: flip;
  -ms-animation-name: flip;
  -o-animation-name: flip;
  animation-name: flip;
}
@-webkit-keyframes flipInX {
  0% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@-moz-keyframes flipInX {
  0% {
    -moz-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -moz-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -moz-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@-o-keyframes flipInX {
  0% {
    -o-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    -o-transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    -o-transform: perspective(400px) rotateX(10deg);
  }
  100% {
    -o-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
@keyframes flipInX {
  0% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateX(-10deg);
  }
  70% {
    transform: perspective(400px) rotateX(10deg);
  }
  100% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
}
.flipInX {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInX;
  -moz-animation-name: flipInX;
  -ms-animation-name: flipInX;
  -o-animation-name: flipInX;
  animation-name: flipInX;
}
@-webkit-keyframes flipInY {
  0% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -webkit-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -webkit-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@-moz-keyframes flipInY {
  0% {
    -moz-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -moz-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -moz-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -moz-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@-o-keyframes flipInY {
  0% {
    -o-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    -o-transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    -o-transform: perspective(400px) rotateY(10deg);
  }
  100% {
    -o-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
@keyframes flipInY {
  0% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotateY(-10deg);
  }
  70% {
    transform: perspective(400px) rotateY(10deg);
  }
  100% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
}
.flipInY {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipInY;
  -moz-animation-name: flipInY;
  -ms-animation-name: flipInY;
  -o-animation-name: flipInY;
  animation-name: flipInY;
}
@-webkit-keyframes flipOutX {
  0% {
    -webkit-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@-moz-keyframes flipOutX {
  0% {
    -moz-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@-o-keyframes flipOutX {
  0% {
    -o-transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
@keyframes flipOutX {
  0% {
    transform: perspective(400px) rotateX(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateX(90deg);
    opacity: 0;
  }
}
.flipOutX {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutX;
  -moz-animation-name: flipOutX;
  -ms-animation-name: flipOutX;
  -o-animation-name: flipOutX;
  animation-name: flipOutX;
}
@-webkit-keyframes flipOutY {
  0% {
    -webkit-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@-moz-keyframes flipOutY {
  0% {
    -moz-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@-o-keyframes flipOutY {
  0% {
    -o-transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
@keyframes flipOutY {
  0% {
    transform: perspective(400px) rotateY(0deg);
    opacity: 1;
  }
  100% {
    transform: perspective(400px) rotateY(90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible;
  -moz-backface-visibility: visible;
  backface-visibility: visible;
  -webkit-backface-visibility: visible !important;
  -moz-backface-visibility: visible !important;
  -ms-backface-visibility: visible !important;
  -o-backface-visibility: visible !important;
  backface-visibility: visible !important;
  -webkit-animation-name: flipOutY;
  -moz-animation-name: flipOutY;
  -ms-animation-name: flipOutY;
  -o-animation-name: flipOutY;
  animation-name: flipOutY;
}
@-webkit-keyframes hinge {
  0% {
    -webkit-transform: rotate(0);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -webkit-transform: rotate(80deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  40% {
    -webkit-transform: rotate(60deg);
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  80% {
    -webkit-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -webkit-transform-origin: top left;
    -webkit-animation-timing-function: ease-in-out;
  }
  100% {
    -webkit-transform: translateY(700px);
    opacity: 0;
  }
}
@-moz-keyframes hinge {
  0% {
    -moz-transform: rotate(0);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -moz-transform: rotate(80deg);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  40% {
    -moz-transform: rotate(60deg);
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  80% {
    -moz-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -moz-transform-origin: top left;
    -moz-animation-timing-function: ease-in-out;
  }
  100% {
    -moz-transform: translateY(700px);
    opacity: 0;
  }
}
@-o-keyframes hinge {
  0% {
    -o-transform: rotate(0);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    -o-transform: rotate(80deg);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  40% {
    -o-transform: rotate(60deg);
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  80% {
    -o-transform: rotate(60deg) translateY(0);
    opacity: 1;
    -o-transform-origin: top left;
    -o-animation-timing-function: ease-in-out;
  }
  100% {
    -o-transform: translateY(700px);
    opacity: 0;
  }
}
@keyframes hinge {
  0% {
    transform: rotate(0);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%,
  60% {
    transform: rotate(80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40% {
    transform: rotate(60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  80% {
    transform: rotate(60deg) translateY(0);
    opacity: 1;
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  100% {
    transform: translateY(700px);
    opacity: 0;
  }
}
.hinge {
  -webkit-animation-name: hinge;
  -moz-animation-name: hinge;
  -ms-animation-name: hinge;
  -o-animation-name: hinge;
  animation-name: hinge;
}
@-webkit-keyframes lightSpeedIn {
  0% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -webkit-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -webkit-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@-moz-keyframes lightSpeedIn {
  0% {
    -moz-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -moz-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -moz-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@-o-keyframes lightSpeedIn {
  0% {
    -o-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    -o-transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    -o-transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    -o-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
@keyframes lightSpeedIn {
  0% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: translateX(-20%) skewX(30deg);
    opacity: 1;
  }
  80% {
    transform: translateX(0%) skewX(-15deg);
    opacity: 1;
  }
  100% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
}
.lightSpeedIn {
  -webkit-animation-name: lightSpeedIn;
  -moz-animation-name: lightSpeedIn;
  -ms-animation-name: lightSpeedIn;
  -o-animation-name: lightSpeedIn;
  animation-name: lightSpeedIn;
  -webkit-animation-timing-function: ease-out;
  -moz-animation-timing-function: ease-out;
  -ms-animation-timing-function: ease-out;
  -o-animation-timing-function: ease-out;
  animation-timing-function: ease-out;
}
@-webkit-keyframes lightSpeedOut {
  0% {
    -webkit-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@-moz-keyframes lightSpeedOut {
  0% {
    -moz-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -moz-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@-o-keyframes lightSpeedOut {
  0% {
    -o-transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    -o-transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
@keyframes lightSpeedOut {
  0% {
    transform: translateX(0%) skewX(0deg);
    opacity: 1;
  }
  100% {
    transform: translateX(100%) skewX(-30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  -webkit-animation-name: lightSpeedOut;
  -moz-animation-name: lightSpeedOut;
  -ms-animation-name: lightSpeedOut;
  -o-animation-name: lightSpeedOut;
  animation-name: lightSpeedOut;
  -webkit-animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -ms-animation-timing-function: ease-in;
  -o-animation-timing-function: ease-in;
  animation-timing-function: ease-in;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@-moz-keyframes pulse {
  0% {
    -moz-transform: scale(1);
  }
  50% {
    -moz-transform: scale(1.1);
  }
  100% {
    -moz-transform: scale(1);
  }
}
@-o-keyframes pulse {
  0% {
    -o-transform: scale(1);
  }
  50% {
    -o-transform: scale(1.1);
  }
  100% {
    -o-transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.pulse {
  -webkit-animation-name: pulse;
  -moz-animation-name: pulse;
  -ms-animation-name: pulse;
  -o-animation-name: pulse;
  animation-name: pulse;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
}
@-moz-keyframes rollIn {
  0% {
    opacity: 0;
    -moz-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -moz-transform: translateX(0px) rotate(0deg);
  }
}
@-o-keyframes rollIn {
  0% {
    opacity: 0;
    -o-transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    -o-transform: translateX(0px) rotate(0deg);
  }
}
@keyframes rollIn {
  0% {
    opacity: 0;
    transform: translateX(-100%) rotate(-120deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
}
.rollIn {
  -webkit-animation-name: rollIn;
  -moz-animation-name: rollIn;
  -ms-animation-name: rollIn;
  -o-animation-name: rollIn;
  animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes rollOut {
  0% {
    opacity: 1;
    -webkit-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -webkit-transform: translateX(100%) rotate(120deg);
  }
}
@-moz-keyframes rollOut {
  0% {
    opacity: 1;
    -moz-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -moz-transform: translateX(100%) rotate(120deg);
  }
}
@-o-keyframes rollOut {
  0% {
    opacity: 1;
    -o-transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    -o-transform: translateX(100%) rotate(120deg);
  }
}
@keyframes rollOut {
  0% {
    opacity: 1;
    transform: translateX(0px) rotate(0deg);
  }
  100% {
    opacity: 0;
    transform: translateX(100%) rotate(120deg);
  }
}
.rollOut {
  -webkit-animation-name: rollOut;
  -moz-animation-name: rollOut;
  -ms-animation-name: rollOut;
  -o-animation-name: rollOut;
  animation-name: rollOut;
}
@-webkit-keyframes rotateIn {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateIn {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateIn {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateIn {
  0% {
    transform-origin: center center;
    transform: rotate(-200deg);
    opacity: 0;
  }
  100% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateIn {
  -webkit-animation-name: rotateIn;
  -moz-animation-name: rotateIn;
  -ms-animation-name: rotateIn;
  -o-animation-name: rotateIn;
  animation-name: rotateIn;
}
@-webkit-keyframes rotateInDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInDownLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateInDownLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownLeft {
  -webkit-animation-name: rotateInDownLeft;
  -moz-animation-name: rotateInDownLeft;
  -ms-animation-name: rotateInDownLeft;
  -o-animation-name: rotateInDownLeft;
  animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInDownRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateInDownRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInDownRight {
  -webkit-animation-name: rotateInDownRight;
  -moz-animation-name: rotateInDownRight;
  -ms-animation-name: rotateInDownRight;
  -o-animation-name: rotateInDownRight;
  animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateInUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInUpLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateInUpLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpLeft {
  -webkit-animation-name: rotateInUpLeft;
  -moz-animation-name: rotateInUpLeft;
  -ms-animation-name: rotateInUpLeft;
  -o-animation-name: rotateInUpLeft;
  animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
}
@-moz-keyframes rotateInUpRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
}
@-o-keyframes rotateInUpRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
}
@keyframes rotateInUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
}
.rotateInUpRight {
  -webkit-animation-name: rotateInUpRight;
  -moz-animation-name: rotateInUpRight;
  -ms-animation-name: rotateInUpRight;
  -o-animation-name: rotateInUpRight;
  animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateOut {
  0% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: center center;
    -webkit-transform: rotate(200deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOut {
  0% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: center center;
    -moz-transform: rotate(200deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOut {
  0% {
    -o-transform-origin: center center;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: center center;
    -o-transform: rotate(200deg);
    opacity: 0;
  }
}
@keyframes rotateOut {
  0% {
    transform-origin: center center;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: center center;
    transform: rotate(200deg);
    opacity: 0;
  }
}
.rotateOut {
  -webkit-animation-name: rotateOut;
  -moz-animation-name: rotateOut;
  -ms-animation-name: rotateOut;
  -o-animation-name: rotateOut;
  animation-name: rotateOut;
}
@-webkit-keyframes rotateOutDownLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutDownLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutDownLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: left bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  -webkit-animation-name: rotateOutDownLeft;
  -moz-animation-name: rotateOutDownLeft;
  -ms-animation-name: rotateOutDownLeft;
  -o-animation-name: rotateOutDownLeft;
  animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutDownRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutDownRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutDownRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutDownRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  -webkit-animation-name: rotateOutDownRight;
  -moz-animation-name: rotateOutDownRight;
  -ms-animation-name: rotateOutDownRight;
  -o-animation-name: rotateOutDownRight;
  animation-name: rotateOutDownRight;
}
@-webkit-keyframes rotateOutUpLeft {
  0% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: left bottom;
    -webkit-transform: rotate(-90deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutUpLeft {
  0% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: left bottom;
    -moz-transform: rotate(-90deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutUpLeft {
  0% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: left bottom;
    -o-transform: rotate(-90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpLeft {
  0% {
    transform-origin: left bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    -transform-origin: left bottom;
    -transform: rotate(-90deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  -webkit-animation-name: rotateOutUpLeft;
  -moz-animation-name: rotateOutUpLeft;
  -ms-animation-name: rotateOutUpLeft;
  -o-animation-name: rotateOutUpLeft;
  animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutUpRight {
  0% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -webkit-transform-origin: right bottom;
    -webkit-transform: rotate(90deg);
    opacity: 0;
  }
}
@-moz-keyframes rotateOutUpRight {
  0% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -moz-transform-origin: right bottom;
    -moz-transform: rotate(90deg);
    opacity: 0;
  }
}
@-o-keyframes rotateOutUpRight {
  0% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(0);
    opacity: 1;
  }
  100% {
    -o-transform-origin: right bottom;
    -o-transform: rotate(90deg);
    opacity: 0;
  }
}
@keyframes rotateOutUpRight {
  0% {
    transform-origin: right bottom;
    transform: rotate(0);
    opacity: 1;
  }
  100% {
    transform-origin: right bottom;
    transform: rotate(90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  -webkit-animation-name: rotateOutUpRight;
  -moz-animation-name: rotateOutUpRight;
  -ms-animation-name: rotateOutUpRight;
  -o-animation-name: rotateOutUpRight;
  animation-name: rotateOutUpRight;
}
@-webkit-keyframes shake {
  0%,
  100% {
    -webkit-transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -webkit-transform: translateX(10px);
  }
}
@-moz-keyframes shake {
  0%,
  100% {
    -moz-transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -moz-transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -moz-transform: translateX(10px);
  }
}
@-o-keyframes shake {
  0%,
  100% {
    -o-transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    -o-transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    -o-transform: translateX(10px);
  }
}
@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-10px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(10px);
  }
}
.shake {
  -webkit-animation-name: shake;
  -moz-animation-name: shake;
  -ms-animation-name: shake;
  -o-animation-name: shake;
  animation-name: shake;
}
@-webkit-keyframes swing {
  20%,
  40%,
  60%,
  80%,
  100% {
    -webkit-transform-origin: top center;
  }
  20% {
    -webkit-transform: rotate(15deg);
  }
  40% {
    -webkit-transform: rotate(-10deg);
  }
  60% {
    -webkit-transform: rotate(5deg);
  }
  80% {
    -webkit-transform: rotate(-5deg);
  }
  100% {
    -webkit-transform: rotate(0deg);
  }
}
@-moz-keyframes swing {
  20% {
    -moz-transform: rotate(15deg);
  }
  40% {
    -moz-transform: rotate(-10deg);
  }
  60% {
    -moz-transform: rotate(5deg);
  }
  80% {
    -moz-transform: rotate(-5deg);
  }
  100% {
    -moz-transform: rotate(0deg);
  }
}
@-o-keyframes swing {
  20% {
    -o-transform: rotate(15deg);
  }
  40% {
    -o-transform: rotate(-10deg);
  }
  60% {
    -o-transform: rotate(5deg);
  }
  80% {
    -o-transform: rotate(-5deg);
  }
  100% {
    -o-transform: rotate(0deg);
  }
}
@keyframes swing {
  20% {
    transform: rotate(15deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.swing {
  -webkit-transform-origin: top center;
  -moz-transform-origin: top center;
  -ms-transform-origin: top center;
  -o-transform-origin: top center;
  transform-origin: top center;
  -webkit-animation-name: swing;
  -moz-animation-name: swing;
  -ms-animation-name: swing;
  -o-animation-name: swing;
  animation-name: swing;
}
@-webkit-keyframes tada {
  0% {
    -webkit-transform: scale(1);
  }
  10%,
  20% {
    -webkit-transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -webkit-transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -webkit-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -webkit-transform: scale(1) rotate(0);
  }
}
@-moz-keyframes tada {
  0% {
    -moz-transform: scale(1);
  }
  10%,
  20% {
    -moz-transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -moz-transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -moz-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -moz-transform: scale(1) rotate(0);
  }
}
@-o-keyframes tada {
  0% {
    -o-transform: scale(1);
  }
  10%,
  20% {
    -o-transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    -o-transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    -o-transform: scale(1.1) rotate(-3deg);
  }
  100% {
    -o-transform: scale(1) rotate(0);
  }
}
@keyframes tada {
  0% {
    transform: scale(1);
  }
  10%,
  20% {
    transform: scale(0.9) rotate(-3deg);
  }
  30%,
  50%,
  70%,
  90% {
    transform: scale(1.1) rotate(3deg);
  }
  40%,
  60%,
  80% {
    transform: scale(1.1) rotate(-3deg);
  }
  100% {
    transform: scale(1) rotate(0);
  }
}
.tada {
  -webkit-animation-name: tada;
  -moz-animation-name: tada;
  -ms-animation-name: tada;
  -o-animation-name: tada;
  animation-name: tada;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@-webkit-keyframes wobble {
  0% {
    -webkit-transform: translateX(0%);
  }
  15% {
    -webkit-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -webkit-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -webkit-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -webkit-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -webkit-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}
@-moz-keyframes wobble {
  0% {
    -moz-transform: translateX(0%);
  }
  15% {
    -moz-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -moz-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -moz-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -moz-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -moz-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -moz-transform: translateX(0%);
  }
}
@-o-keyframes wobble {
  0% {
    -o-transform: translateX(0%);
  }
  15% {
    -o-transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    -o-transform: translateX(20%) rotate(3deg);
  }
  45% {
    -o-transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    -o-transform: translateX(10%) rotate(2deg);
  }
  75% {
    -o-transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    -o-transform: translateX(0%);
  }
}
@keyframes wobble {
  0% {
    transform: translateX(0%);
  }
  15% {
    transform: translateX(-25%) rotate(-5deg);
  }
  30% {
    transform: translateX(20%) rotate(3deg);
  }
  45% {
    transform: translateX(-15%) rotate(-3deg);
  }
  60% {
    transform: translateX(10%) rotate(2deg);
  }
  75% {
    transform: translateX(-5%) rotate(-1deg);
  }
  100% {
    transform: translateX(0%);
  }
}
.wobble {
  -webkit-animation-name: wobble;
  -moz-animation-name: wobble;
  -ms-animation-name: wobble;
  -o-animation-name: wobble;
  animation-name: wobble;
}
@-webkit-keyframes slideInRight {
  0% {
    -webkit-transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes slideInRight {
  0% {
    -moz-transform: translateX(20px);
  }
  100% {
    -moz-transform: translateX(0);
  }
}
@-o-keyframes slideInRight {
  0% {
    -o-transform: translateX(20px);
  }
  100% {
    -o-transform: translateX(0);
  }
}
@keyframes slideInRight {
  0% {
    transform: translateX(20px);
  }
  100% {
    transform: translateX(0);
  }
}
.slideInRight {
  -webkit-animation-name: slideInRight;
  -moz-animation-name: slideInRight;
  -ms-animation-name: slideInRight;
  -o-animation-name: slideInRight;
  animation-name: slideInRight;
}
@-webkit-keyframes bounceRight {
  0% {
    -webkit-transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes bounceRight {
  0% {
    -webkit-transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-o-keyframes bounceRight {
  0% {
    -webkit-transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes bounceRight {
  0% {
    -webkit-transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(20px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
.bounceRight {
  -webkit-animation-name: bounceRight;
  -moz-animation-name: bounceRight;
  -ms-animation-name: bounceRight;
  -o-animation-name: bounceRight;
  animation-name: bounceRight;
}
@-webkit-keyframes bounceLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-moz-keyframes bounceLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@-o-keyframes bounceLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
@keyframes bounceLeft {
  0% {
    -webkit-transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(-10px);
  }
  100% {
    -webkit-transform: translateX(0);
  }
}
.bounceLeft {
  -webkit-animation-name: bounceLeft;
  -moz-animation-name: bounceLeft;
  -ms-animation-name: bounceLeft;
  -o-animation-name: bounceLeft;
  animation-name: bounceLeft;
}
@-webkit-keyframes slideInUp {
  0% {
    -webkit-transform: translateY(10px);
  }
  100% {
    -webkit-transform: translateY(0);
  }
}
@-moz-keyframes slideInUp {
  0% {
    -moz-transform: translateY(10px);
  }
  100% {
    -moz-transform: translateY(0);
  }
}
@-o-keyframes slideInUp {
  0% {
    -o-transform: translateY(10px);
  }
  100% {
    -o-transform: translateY(0);
  }
}
@keyframes slideInUp {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(0);
  }
}
.slideInUp {
  -webkit-animation-name: slideInUp;
  -moz-animation-name: slideInUp;
  -ms-animation-name: slideInUp;
  -o-animation-name: slideInUp;
  animation-name: slideInUp;
}
.moduletable.gmap * {
  max-width: none !important;
}
div#photoframe .moduletable.gmap,
#slideshow div#photoframe .bt-googlemaps {
  height: 100% !important;
  min-height: 260px;
}
.moduletable * {
  max-width: none !important;
}
.moduletable img {
  max-width: 100% !important;
}
.no-js .panel-collapse.collapse {
  display: block !important;
}
.panel-title {
  margin-bottom: 0 !important;
}
.panel-title > a,
.panel-title > small,
.panel-title > .small,
.panel-title > small > a,
.panel-title > .small > a {
  color: #00508c;
}
.panel-title > a.hover,
.panel-title > small.hover,
.panel-title > .small.hover,
.panel-title > small > a.hover,
.panel-title > .small > a.hover,
.panel-title > a:hover,
.panel-title > small:hover,
.panel-title > .small:hover,
.panel-title > small > a:hover,
.panel-title > .small > a:hover {
  color: #407ca9;
}
.item-page div[itemprop="articleBody"] {
  width: 100%;
}
.outerbanner {
  height: auto !important;
}
.outerbanner > div {
  position: relative !important;
}
.item-page div[itemprop="articleBody"] {
  display: block !important;
}
#bottom-cls .moduletable img {
  width: 100% !important;
}
@media only screen and (max-width: 767px) {
  #dynwrapper #dyn_columns .moduletable > div .wimg img {
    max-height: none !important;
    position: relative;
    top: 30%;
    -webkit-transform: translateY(-30%);
    -moz-transform: translateY(-30%);
    -ms-transform: translateY(-30%);
    -o-transform: translateY(-30%);
    transform: translateY(-30%);
  }
  #dynwrapper #dyn_columns .moduletable > div .wimg {
    max-height: 290px;
    overflow: hidden;
  }
}
.items-leading .item-image img {
  min-width: 100%;
}
div[id*="contentmap_wrapper"] div {
  max-width: none !important;
}
div[id*="contentmap_container"] + div,
.contentmap_module + div {
  display: none !important;
}
.avatar-copyright {
  display: none;
}
div#component {
  padding-bottom: 40px;
}
.blogitem p img {
  margin-bottom: 1em;
}
.blog.centered .blogitem {
  text-align: center;
}
.moduletable.parallax-mod .lgx-parallax.jaxp.parallax-mod {
  height: 33vw;
  min-height: 260px;
  margin: 0 0 -1px 0 !important;
}
.item-page p.img,
.blogitem p.img {
  display: none;
}
/* lightbox and readmore icons */
.allmode-tagerim .allmode-topitem .allmode-readmore a,
.isotope_grid .isotope_item .allmode-readmore a,
ul.mags.feat.blocks li .allmode-readmore a,
.moduletable.parallax-mod .allmode-readmore a,
.allmode-tagerim .allmode-topitem a.thumbnail.zoomin:after,
.isotope_grid .isotope_item a.thumbnail.zoomin:after,
ul.mags.feat.blocks li a.thumbnail.zoomin:after,
.moduletable.parallax-mod a.thumbnail.zoomin:after,
.allmode-tagerim .allmode-topitem a.isotope-readmore-title,
.isotope_grid .isotope_item a.isotope-readmore-title,
ul.mags.feat.blocks li a.isotope-readmore-title,
.moduletable.parallax-mod a.isotope-readmore-title,
.allmode-tagerim .allmode-topitem a.mag:after,
.isotope_grid .isotope_item a.mag:after,
ul.mags.feat.blocks li a.mag:after,
.moduletable.parallax-mod a.mag:after {
  opacity: 0;
  filter: alpha(opacity=0);
}
.allmode-tagerim .allmode-topitem .allmode-readmore a:hover,
.isotope_grid .isotope_item .allmode-readmore a:hover,
ul.mags.feat.blocks li .allmode-readmore a:hover,
.moduletable.parallax-mod .allmode-readmore a:hover,
.allmode-tagerim .allmode-topitem a.thumbnail.zoomin:after:hover,
.isotope_grid .isotope_item a.thumbnail.zoomin:after:hover,
ul.mags.feat.blocks li a.thumbnail.zoomin:after:hover,
.moduletable.parallax-mod a.thumbnail.zoomin:after:hover,
.allmode-tagerim .allmode-topitem a.isotope-readmore-title:hover,
.isotope_grid .isotope_item a.isotope-readmore-title:hover,
ul.mags.feat.blocks li a.isotope-readmore-title:hover,
.moduletable.parallax-mod a.isotope-readmore-title:hover,
.allmode-tagerim .allmode-topitem a.mag:after:hover,
.isotope_grid .isotope_item a.mag:after:hover,
ul.mags.feat.blocks li a.mag:after:hover,
.moduletable.parallax-mod a.mag:after:hover,
.allmode-tagerim .allmode-topitem .allmode-readmore a.hover,
.isotope_grid .isotope_item .allmode-readmore a.hover,
ul.mags.feat.blocks li .allmode-readmore a.hover,
.moduletable.parallax-mod .allmode-readmore a.hover,
.allmode-tagerim .allmode-topitem a.thumbnail.zoomin:after.hover,
.isotope_grid .isotope_item a.thumbnail.zoomin:after.hover,
ul.mags.feat.blocks li a.thumbnail.zoomin:after.hover,
.moduletable.parallax-mod a.thumbnail.zoomin:after.hover,
.allmode-tagerim .allmode-topitem a.isotope-readmore-title.hover,
.isotope_grid .isotope_item a.isotope-readmore-title.hover,
ul.mags.feat.blocks li a.isotope-readmore-title.hover,
.moduletable.parallax-mod a.isotope-readmore-title.hover,
.allmode-tagerim .allmode-topitem a.mag:after.hover,
.isotope_grid .isotope_item a.mag:after.hover,
ul.mags.feat.blocks li a.mag:after.hover,
.moduletable.parallax-mod a.mag:after.hover {
  color: #00508c;
}
.allmode-tagerim .allmode-topitem a.thumbnail.zoomin:hover:after,
.isotope_grid .isotope_item a.thumbnail.zoomin:hover:after,
ul.mags.feat.blocks li a.thumbnail.zoomin:hover:after,
.moduletable.parallax-mod a.thumbnail.zoomin:hover:after,
.allmode-tagerim .allmode-topitem a.mag:hover:after,
.isotope_grid .isotope_item a.mag:hover:after,
ul.mags.feat.blocks li a.mag:hover:after,
.moduletable.parallax-mod a.mag:hover:after,
.allmode-tagerim .allmode-topitem .allmode-readmore a:hover:after,
.isotope_grid .isotope_item .allmode-readmore a:hover:after,
ul.mags.feat.blocks li .allmode-readmore a:hover:after,
.moduletable.parallax-mod .allmode-readmore a:hover:after,
.allmode-tagerim .allmode-topitem a.isotope-readmore-title:hover:after,
.isotope_grid .isotope_item a.isotope-readmore-title:hover:after,
ul.mags.feat.blocks li a.isotope-readmore-title:hover:after,
.moduletable.parallax-mod a.isotope-readmore-title:hover:after {
  color: #00508c !important;
}
.allmode-tagerim .allmode-topitem:hover img,
.isotope_grid .isotope_item:hover img,
ul.mags.feat.blocks li:hover img,
.moduletable.parallax-mod:hover img,
.allmode-tagerim .allmode-topitem.hover img,
.isotope_grid .isotope_item.hover img,
ul.mags.feat.blocks li.hover img,
.moduletable.parallax-mod.hover img {
  opacity: 0.4;
  filter: alpha(opacity=40);
}
.allmode-tagerim .allmode-topitem:hover .allmode-readmore a,
.isotope_grid .isotope_item:hover .allmode-readmore a,
ul.mags.feat.blocks li:hover .allmode-readmore a,
.moduletable.parallax-mod:hover .allmode-readmore a,
.allmode-tagerim .allmode-topitem.hover .allmode-readmore a,
.isotope_grid .isotope_item.hover .allmode-readmore a,
ul.mags.feat.blocks li.hover .allmode-readmore a,
.moduletable.parallax-mod.hover .allmode-readmore a,
.allmode-tagerim .allmode-topitem:hover a.thumbnail.zoomin:after,
.isotope_grid .isotope_item:hover a.thumbnail.zoomin:after,
ul.mags.feat.blocks li:hover a.thumbnail.zoomin:after,
.moduletable.parallax-mod:hover a.thumbnail.zoomin:after,
.allmode-tagerim .allmode-topitem.hover a.thumbnail.zoomin:after,
.isotope_grid .isotope_item.hover a.thumbnail.zoomin:after,
ul.mags.feat.blocks li.hover a.thumbnail.zoomin:after,
.moduletable.parallax-mod.hover a.thumbnail.zoomin:after,
.allmode-tagerim .allmode-topitem:hover a.isotope-readmore-title,
.isotope_grid .isotope_item:hover a.isotope-readmore-title,
ul.mags.feat.blocks li:hover a.isotope-readmore-title,
.moduletable.parallax-mod:hover a.isotope-readmore-title,
.allmode-tagerim .allmode-topitem.hover a.isotope-readmore-title,
.isotope_grid .isotope_item.hover a.isotope-readmore-title,
ul.mags.feat.blocks li.hover a.isotope-readmore-title,
.moduletable.parallax-mod.hover a.isotope-readmore-title,
.allmode-tagerim .allmode-topitem:hover a.mag:after,
.isotope_grid .isotope_item:hover a.mag:after,
ul.mags.feat.blocks li:hover a.mag:after,
.moduletable.parallax-mod:hover a.mag:after,
.allmode-tagerim .allmode-topitem.hover a.mag:after,
.isotope_grid .isotope_item.hover a.mag:after,
ul.mags.feat.blocks li.hover a.mag:after,
.moduletable.parallax-mod.hover a.mag:after {
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeIn;
  -moz-animation-name: fadeIn;
  -ms-animation-name: fadeIn;
  -o-animation-name: fadeIn;
  animation-name: fadeIn;
  -webkit-animation-duration: 0.4s;
  -moz-animation-duration: 0.4s;
  -ms-animation-duration: 0.4s;
  -o-animation-duration: 0.4s;
  animation-duration: 0.4s;
}
.allmode-tagerim .allmode-topitem:hover .allmode-readmore a.infinite,
.isotope_grid .isotope_item:hover .allmode-readmore a.infinite,
ul.mags.feat.blocks li:hover .allmode-readmore a.infinite,
.moduletable.parallax-mod:hover .allmode-readmore a.infinite,
.allmode-tagerim .allmode-topitem.hover .allmode-readmore a.infinite,
.isotope_grid .isotope_item.hover .allmode-readmore a.infinite,
ul.mags.feat.blocks li.hover .allmode-readmore a.infinite,
.moduletable.parallax-mod.hover .allmode-readmore a.infinite,
.allmode-tagerim .allmode-topitem:hover a.thumbnail.zoomin:after.infinite,
.isotope_grid .isotope_item:hover a.thumbnail.zoomin:after.infinite,
ul.mags.feat.blocks li:hover a.thumbnail.zoomin:after.infinite,
.moduletable.parallax-mod:hover a.thumbnail.zoomin:after.infinite,
.allmode-tagerim .allmode-topitem.hover a.thumbnail.zoomin:after.infinite,
.isotope_grid .isotope_item.hover a.thumbnail.zoomin:after.infinite,
ul.mags.feat.blocks li.hover a.thumbnail.zoomin:after.infinite,
.moduletable.parallax-mod.hover a.thumbnail.zoomin:after.infinite,
.allmode-tagerim .allmode-topitem:hover a.isotope-readmore-title.infinite,
.isotope_grid .isotope_item:hover a.isotope-readmore-title.infinite,
ul.mags.feat.blocks li:hover a.isotope-readmore-title.infinite,
.moduletable.parallax-mod:hover a.isotope-readmore-title.infinite,
.allmode-tagerim .allmode-topitem.hover a.isotope-readmore-title.infinite,
.isotope_grid .isotope_item.hover a.isotope-readmore-title.infinite,
ul.mags.feat.blocks li.hover a.isotope-readmore-title.infinite,
.moduletable.parallax-mod.hover a.isotope-readmore-title.infinite,
.allmode-tagerim .allmode-topitem:hover a.mag:after.infinite,
.isotope_grid .isotope_item:hover a.mag:after.infinite,
ul.mags.feat.blocks li:hover a.mag:after.infinite,
.moduletable.parallax-mod:hover a.mag:after.infinite,
.allmode-tagerim .allmode-topitem.hover a.mag:after.infinite,
.isotope_grid .isotope_item.hover a.mag:after.infinite,
ul.mags.feat.blocks li.hover a.mag:after.infinite,
.moduletable.parallax-mod.hover a.mag:after.infinite {
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.allmode-tagerim .allmode-topitem:hover .allmode-readmore a.once,
.isotope_grid .isotope_item:hover .allmode-readmore a.once,
ul.mags.feat.blocks li:hover .allmode-readmore a.once,
.moduletable.parallax-mod:hover .allmode-readmore a.once,
.allmode-tagerim .allmode-topitem.hover .allmode-readmore a.once,
.isotope_grid .isotope_item.hover .allmode-readmore a.once,
ul.mags.feat.blocks li.hover .allmode-readmore a.once,
.moduletable.parallax-mod.hover .allmode-readmore a.once,
.allmode-tagerim .allmode-topitem:hover a.thumbnail.zoomin:after.once,
.isotope_grid .isotope_item:hover a.thumbnail.zoomin:after.once,
ul.mags.feat.blocks li:hover a.thumbnail.zoomin:after.once,
.moduletable.parallax-mod:hover a.thumbnail.zoomin:after.once,
.allmode-tagerim .allmode-topitem.hover a.thumbnail.zoomin:after.once,
.isotope_grid .isotope_item.hover a.thumbnail.zoomin:after.once,
ul.mags.feat.blocks li.hover a.thumbnail.zoomin:after.once,
.moduletable.parallax-mod.hover a.thumbnail.zoomin:after.once,
.allmode-tagerim .allmode-topitem:hover a.isotope-readmore-title.once,
.isotope_grid .isotope_item:hover a.isotope-readmore-title.once,
ul.mags.feat.blocks li:hover a.isotope-readmore-title.once,
.moduletable.parallax-mod:hover a.isotope-readmore-title.once,
.allmode-tagerim .allmode-topitem.hover a.isotope-readmore-title.once,
.isotope_grid .isotope_item.hover a.isotope-readmore-title.once,
ul.mags.feat.blocks li.hover a.isotope-readmore-title.once,
.moduletable.parallax-mod.hover a.isotope-readmore-title.once,
.allmode-tagerim .allmode-topitem:hover a.mag:after.once,
.isotope_grid .isotope_item:hover a.mag:after.once,
ul.mags.feat.blocks li:hover a.mag:after.once,
.moduletable.parallax-mod:hover a.mag:after.once,
.allmode-tagerim .allmode-topitem.hover a.mag:after.once,
.isotope_grid .isotope_item.hover a.mag:after.once,
ul.mags.feat.blocks li.hover a.mag:after.once,
.moduletable.parallax-mod.hover a.mag:after.once {
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.allmode-tagerim .allmode-topitem:hover .allmode-readmore a.hinge,
.isotope_grid .isotope_item:hover .allmode-readmore a.hinge,
ul.mags.feat.blocks li:hover .allmode-readmore a.hinge,
.moduletable.parallax-mod:hover .allmode-readmore a.hinge,
.allmode-tagerim .allmode-topitem.hover .allmode-readmore a.hinge,
.isotope_grid .isotope_item.hover .allmode-readmore a.hinge,
ul.mags.feat.blocks li.hover .allmode-readmore a.hinge,
.moduletable.parallax-mod.hover .allmode-readmore a.hinge,
.allmode-tagerim .allmode-topitem:hover a.thumbnail.zoomin:after.hinge,
.isotope_grid .isotope_item:hover a.thumbnail.zoomin:after.hinge,
ul.mags.feat.blocks li:hover a.thumbnail.zoomin:after.hinge,
.moduletable.parallax-mod:hover a.thumbnail.zoomin:after.hinge,
.allmode-tagerim .allmode-topitem.hover a.thumbnail.zoomin:after.hinge,
.isotope_grid .isotope_item.hover a.thumbnail.zoomin:after.hinge,
ul.mags.feat.blocks li.hover a.thumbnail.zoomin:after.hinge,
.moduletable.parallax-mod.hover a.thumbnail.zoomin:after.hinge,
.allmode-tagerim .allmode-topitem:hover a.isotope-readmore-title.hinge,
.isotope_grid .isotope_item:hover a.isotope-readmore-title.hinge,
ul.mags.feat.blocks li:hover a.isotope-readmore-title.hinge,
.moduletable.parallax-mod:hover a.isotope-readmore-title.hinge,
.allmode-tagerim .allmode-topitem.hover a.isotope-readmore-title.hinge,
.isotope_grid .isotope_item.hover a.isotope-readmore-title.hinge,
ul.mags.feat.blocks li.hover a.isotope-readmore-title.hinge,
.moduletable.parallax-mod.hover a.isotope-readmore-title.hinge,
.allmode-tagerim .allmode-topitem:hover a.mag:after.hinge,
.isotope_grid .isotope_item:hover a.mag:after.hinge,
ul.mags.feat.blocks li:hover a.mag:after.hinge,
.moduletable.parallax-mod:hover a.mag:after.hinge,
.allmode-tagerim .allmode-topitem.hover a.mag:after.hinge,
.isotope_grid .isotope_item.hover a.mag:after.hinge,
ul.mags.feat.blocks li.hover a.mag:after.hinge,
.moduletable.parallax-mod.hover a.mag:after.hinge {
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  -o-animation-duration: 2s;
  animation-duration: 2s;
}
.allmode-tagerim .allmode-topitem:hover .allmode-readmore a.slow,
.isotope_grid .isotope_item:hover .allmode-readmore a.slow,
ul.mags.feat.blocks li:hover .allmode-readmore a.slow,
.moduletable.parallax-mod:hover .allmode-readmore a.slow,
.allmode-tagerim .allmode-topitem.hover .allmode-readmore a.slow,
.isotope_grid .isotope_item.hover .allmode-readmore a.slow,
ul.mags.feat.blocks li.hover .allmode-readmore a.slow,
.moduletable.parallax-mod.hover .allmode-readmore a.slow,
.allmode-tagerim .allmode-topitem:hover a.thumbnail.zoomin:after.slow,
.isotope_grid .isotope_item:hover a.thumbnail.zoomin:after.slow,
ul.mags.feat.blocks li:hover a.thumbnail.zoomin:after.slow,
.moduletable.parallax-mod:hover a.thumbnail.zoomin:after.slow,
.allmode-tagerim .allmode-topitem.hover a.thumbnail.zoomin:after.slow,
.isotope_grid .isotope_item.hover a.thumbnail.zoomin:after.slow,
ul.mags.feat.blocks li.hover a.thumbnail.zoomin:after.slow,
.moduletable.parallax-mod.hover a.thumbnail.zoomin:after.slow,
.allmode-tagerim .allmode-topitem:hover a.isotope-readmore-title.slow,
.isotope_grid .isotope_item:hover a.isotope-readmore-title.slow,
ul.mags.feat.blocks li:hover a.isotope-readmore-title.slow,
.moduletable.parallax-mod:hover a.isotope-readmore-title.slow,
.allmode-tagerim .allmode-topitem.hover a.isotope-readmore-title.slow,
.isotope_grid .isotope_item.hover a.isotope-readmore-title.slow,
ul.mags.feat.blocks li.hover a.isotope-readmore-title.slow,
.moduletable.parallax-mod.hover a.isotope-readmore-title.slow,
.allmode-tagerim .allmode-topitem:hover a.mag:after.slow,
.isotope_grid .isotope_item:hover a.mag:after.slow,
ul.mags.feat.blocks li:hover a.mag:after.slow,
.moduletable.parallax-mod:hover a.mag:after.slow,
.allmode-tagerim .allmode-topitem.hover a.mag:after.slow,
.isotope_grid .isotope_item.hover a.mag:after.slow,
ul.mags.feat.blocks li.hover a.mag:after.slow,
.moduletable.parallax-mod.hover a.mag:after.slow {
  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;
  -o-animation-duration: 3s;
  animation-duration: 3s;
}
.allmode-tagerim .allmode-topitem a.thumbnail.zoomin,
.isotope_grid .isotope_item a.thumbnail.zoomin,
ul.mags.feat.blocks li a.thumbnail.zoomin,
.moduletable.parallax-mod a.thumbnail.zoomin {
  border: none;
  padding: 0;
  border-radius: 0;
  margin: 0;
  pointer-events: none;
  background: transparent;
}
.allmode-tagerim .allmode-topitem a.thumbnail.zoomin:after,
.isotope_grid .isotope_item a.thumbnail.zoomin:after,
ul.mags.feat.blocks li a.thumbnail.zoomin:after,
.moduletable.parallax-mod a.thumbnail.zoomin:after {
  content: "+";
  font-family: 'lined-icons';
  display: inline-block;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e114";
}
.allmode-tagerim .allmode-topitem .allmode-readmore a,
.isotope_grid .isotope_item .allmode-readmore a,
ul.mags.feat.blocks li .allmode-readmore a,
.moduletable.parallax-mod .allmode-readmore a,
.allmode-tagerim .allmode-topitem a.thumbnail.zoomin:after,
.isotope_grid .isotope_item a.thumbnail.zoomin:after,
ul.mags.feat.blocks li a.thumbnail.zoomin:after,
.moduletable.parallax-mod a.thumbnail.zoomin:after,
.allmode-tagerim .allmode-topitem a.isotope-readmore-title,
.isotope_grid .isotope_item a.isotope-readmore-title,
ul.mags.feat.blocks li a.isotope-readmore-title,
.moduletable.parallax-mod a.isotope-readmore-title,
.allmode-tagerim .allmode-topitem a.mag:after,
.isotope_grid .isotope_item a.mag:after,
ul.mags.feat.blocks li a.mag:after,
.moduletable.parallax-mod a.mag:after,
.allmode-tagerim .allmode-topitem .lgx-parallax-text a:after,
.isotope_grid .isotope_item .lgx-parallax-text a:after,
ul.mags.feat.blocks li .lgx-parallax-text a:after,
.moduletable.parallax-mod .lgx-parallax-text a:after {
  position: absolute;
  top: 50%;
  right: 52%;
  background: white;
  font-size: 2rem;
  border-radius: 50%;
  width: 2em;
  height: 2em;
  text-align: center;
  display: inline-block;
  vertical-align: middle;
  z-index: 5;
  line-height: 2em;
  pointer-events: all;
  margin-top: -0.5em;
  color: #444;
  font-weight: normal;
}
.allmode-tagerim .allmode-topitem .allmode-readmore a:hover,
.isotope_grid .isotope_item .allmode-readmore a:hover,
ul.mags.feat.blocks li .allmode-readmore a:hover,
.moduletable.parallax-mod .allmode-readmore a:hover,
.allmode-tagerim .allmode-topitem a.thumbnail.zoomin:after:hover,
.isotope_grid .isotope_item a.thumbnail.zoomin:after:hover,
ul.mags.feat.blocks li a.thumbnail.zoomin:after:hover,
.moduletable.parallax-mod a.thumbnail.zoomin:after:hover,
.allmode-tagerim .allmode-topitem a.isotope-readmore-title:hover,
.isotope_grid .isotope_item a.isotope-readmore-title:hover,
ul.mags.feat.blocks li a.isotope-readmore-title:hover,
.moduletable.parallax-mod a.isotope-readmore-title:hover,
.allmode-tagerim .allmode-topitem a.mag:after:hover,
.isotope_grid .isotope_item a.mag:after:hover,
ul.mags.feat.blocks li a.mag:after:hover,
.moduletable.parallax-mod a.mag:after:hover,
.allmode-tagerim .allmode-topitem .lgx-parallax-text a:after:hover,
.isotope_grid .isotope_item .lgx-parallax-text a:after:hover,
ul.mags.feat.blocks li .lgx-parallax-text a:after:hover,
.moduletable.parallax-mod .lgx-parallax-text a:after:hover,
.allmode-tagerim .allmode-topitem .allmode-readmore a.hover,
.isotope_grid .isotope_item .allmode-readmore a.hover,
ul.mags.feat.blocks li .allmode-readmore a.hover,
.moduletable.parallax-mod .allmode-readmore a.hover,
.allmode-tagerim .allmode-topitem a.thumbnail.zoomin:after.hover,
.isotope_grid .isotope_item a.thumbnail.zoomin:after.hover,
ul.mags.feat.blocks li a.thumbnail.zoomin:after.hover,
.moduletable.parallax-mod a.thumbnail.zoomin:after.hover,
.allmode-tagerim .allmode-topitem a.isotope-readmore-title.hover,
.isotope_grid .isotope_item a.isotope-readmore-title.hover,
ul.mags.feat.blocks li a.isotope-readmore-title.hover,
.moduletable.parallax-mod a.isotope-readmore-title.hover,
.allmode-tagerim .allmode-topitem a.mag:after.hover,
.isotope_grid .isotope_item a.mag:after.hover,
ul.mags.feat.blocks li a.mag:after.hover,
.moduletable.parallax-mod a.mag:after.hover,
.allmode-tagerim .allmode-topitem .lgx-parallax-text a:after.hover,
.isotope_grid .isotope_item .lgx-parallax-text a:after.hover,
ul.mags.feat.blocks li .lgx-parallax-text a:after.hover,
.moduletable.parallax-mod .lgx-parallax-text a:after.hover {
  color: #00508c;
}
.allmode-tagerim .allmode-topitem .allmode-readmore a,
.isotope_grid .isotope_item .allmode-readmore a,
ul.mags.feat.blocks li .allmode-readmore a,
.moduletable.parallax-mod .allmode-readmore a,
.allmode-tagerim .allmode-topitem a.isotope-readmore-title,
.isotope_grid .isotope_item a.isotope-readmore-title,
ul.mags.feat.blocks li a.isotope-readmore-title,
.moduletable.parallax-mod a.isotope-readmore-title {
  right: auto;
  left: 52%;
}
.allmode-tagerim .allmode-topitem .allmode-readmore a span,
.isotope_grid .isotope_item .allmode-readmore a span,
ul.mags.feat.blocks li .allmode-readmore a span,
.moduletable.parallax-mod .allmode-readmore a span,
.allmode-tagerim .allmode-topitem a.isotope-readmore-title span,
.isotope_grid .isotope_item a.isotope-readmore-title span,
ul.mags.feat.blocks li a.isotope-readmore-title span,
.moduletable.parallax-mod a.isotope-readmore-title span {
  display: none;
}
.allmode-tagerim .allmode-topitem .allmode-readmore a:after,
.isotope_grid .isotope_item .allmode-readmore a:after,
ul.mags.feat.blocks li .allmode-readmore a:after,
.moduletable.parallax-mod .allmode-readmore a:after,
.allmode-tagerim .allmode-topitem a.isotope-readmore-title:after,
.isotope_grid .isotope_item a.isotope-readmore-title:after,
ul.mags.feat.blocks li a.isotope-readmore-title:after,
.moduletable.parallax-mod a.isotope-readmore-title:after {
  font-family: 'lined-icons';
  display: inline-block;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e129";
}
.allmode-tagerim .allmode-topitem a.mag:after,
.isotope_grid .isotope_item a.mag:after,
ul.mags.feat.blocks li a.mag:after,
.moduletable.parallax-mod a.mag:after,
.allmode-tagerim .allmode-topitem .lgx-parallax-text a:after,
.isotope_grid .isotope_item .lgx-parallax-text a:after,
ul.mags.feat.blocks li .lgx-parallax-text a:after,
.moduletable.parallax-mod .lgx-parallax-text a:after {
  right: 0;
  left: 0;
  font-family: 'lined-icons';
  display: inline-block;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e114";
  margin: 0 auto;
  margin-top: -0.6em;
}
.allmode-tagerim {
  /*a.thumbnail.zoomin {
	    border: none;
	    padding: 0;
	    border-radius: 0;
	    margin: 0;
	    pointer-events: none;
	    background: transparent;

	    &:after {
	    	content: "+";
	    	line-height: 1.5em !important;

	    }

	}

	span.allmode-readmore a, a.thumbnail.zoomin:after {
		position: absolute;
	    	top: 50%;
	    	right: 52%;
	    	background: white;
	    	font-size: 3rem;
	    	border-radius: 50%;
	    	width:1.5em;
	    	height: 1.5em;
	    	text-align: center;
	    	display: inline-block;
	    	vertical-align: middle;
	    	z-index: 5;
	    	line-height: 1em;
	    	//transform: translateY(-50%);
	    	pointer-events: all;
	    	margin-top: -.5em;
	}

	span.allmode-readmore a {
		right: auto;
		left: 52%;
	}*/
}
.allmode-tagerim .allmode-topbox {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin-left: -10px;
  margin-right: -10px;
}
.allmode-tagerim .allmode-topbox .allmode-topitem {
  display: block;
  vertical-align: top;
  padding: 0 10px;
  /*span.allmode-readmore a, a.thumbnail.zoomin:after {
				.opacity(0);
			}


			&:hover, &.hover {
						img {
							.opacity(.4);
						}

						span.allmode-readmore a, a.thumbnail.zoomin:after {
							.animated;
							.fadeInUp;
							.animation-duration(.4s);
						}


			}*/
}
.allmode-tagerim .allmode-topbox .allmode-topitem .allmode-title {
  margin-bottom: 0 !important;
}
.allmode-tagerim .allmode-topbox .allmode-topitem .allmode-title a {
  text-transform: none;
  color: #292929;
  display: block;
  line-height: 1em;
  min-height: 1.2em;
}
.allmode-tagerim .allmode-topbox .allmode-topitem .allmode-title a.hover,
.allmode-tagerim .allmode-topbox .allmode-topitem .allmode-title a:hover {
  color: #00508c;
}
.allmode-tagerim .allmode-topbox .allmode-topitem .allmode-text {
  position: relative;
  background: #292929;
}
.allmode-tagerim .allmode-topbox .allmode-topitem .allmode-text p + p {
  display: none;
}
.allmode-tagerim .allmode-topbox .allmode-topitem .allmode-text img {
  position: relative;
  -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  min-width: 100%;
  height: auto;
}
.allmode-tagerim .allmode-topbox .allmode-topitem .allmode-text p.img {
  display: block;
}
.isotope_grid .isotope_item {
  padding: 0;
  line-height: 0;
  color: white;
  background: white !important;
  /*> div {
			margin-bottom: 5em;
			background: @sec-color;
			}*/
}
.isotope_grid .isotope_item .iso-inner {
  position: relative;
  padding-bottom: 5em;
}
.isotope_grid .isotope_item p {
  margin: 0 !important;
}
.isotope_grid .isotope_item p + p,
.isotope_grid .isotope_item p:empty {
  display: none;
}
.isotope_grid .isotope_item p.img {
  display: block !important;
}
.isotope_grid .isotope_item .art-title {
  text-align: center;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 0;
  padding: 1em;
  margin: 0;
  display: table;
  vertical-align: middle;
  width: 100%;
  margin-bottom: 0 !important;
  height: 2em;
  text-transform: none;
}
.isotope_grid .isotope_item .art-title a {
  display: table-cell;
  vertical-align: top;
}
.js .moduletable.owl .allmode-topbox {
  display: block !important;
  margin: 0;
  margin-bottom: 20px;
}
.js .moduletable.owl .allmode-topitem {
  padding: 0;
}
.moduletable.raxo-clean.owl,
.moduletable.raxo-clean.owl .allmode-topbox {
  margin-bottom: 0;
}
.moduletable.raxo-clean.owl .allmode-title {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  margin: 0 !important;
  text-align: center;
  padding: 10px 1em;
  background: white;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
@media only screen and (max-width: 991px) {
  .moduletable.raxo-clean.owl .allmode-title {
    background: transparent;
    color: white;
  }
  .moduletable.raxo-clean.owl .allmode-title a {
    color: white !important;
    text-shadow: 0px 0px 1em black;
  }
}
@media only screen and (min-width: 992px) {
  .moduletable.raxo-clean.owl .allmode-title {
    -webkit-transform: translateY(100%);
    -moz-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
  }
}
.moduletable.raxo-clean.owl .allmode-topitem {
  position: relative;
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.moduletable.raxo-clean.owl .allmode-topitem p.img {
  margin: 0;
}
@media only screen and (min-width: 992px) {
  .moduletable.raxo-clean.owl .allmode-topitem .allmode-text img {
    transform-style: preserve-3d;
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
}
@media only screen and (min-width: 992px) {
  .moduletable.raxo-clean.owl .allmode-topitem:hover .allmode-title,
  .moduletable.raxo-clean.owl .allmode-topitem.hover .allmode-title {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .moduletable.raxo-clean.owl .allmode-topitem:hover .allmode-text img,
  .moduletable.raxo-clean.owl .allmode-topitem.hover .allmode-text img {
    -webkit-transform: translateY(-20px);
    -moz-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}
/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 *  Owl Carousel - Core
 */
.owl-carousel {
  display: none;
  width: 100%;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
  -moz-backface-visibility: hidden;
  /* fix firefox animation glitch */
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
}
.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
  display: none;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel.owl-refresh .owl-item {
  visibility: hidden;
}
.owl-carousel.owl-drag .owl-item {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel.owl-grab {
  cursor: move;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}
/* No Js */
.no-js .owl-carousel {
  display: block;
}
/*
 *  Owl Carousel - Animate Plugin
 */
.owl-carousel .animated {
  animation-duration: 1000ms;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  transition: height 500ms ease-in-out;
}
/*
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img.owl-lazy {
  transform-style: preserve-3d;
}
/*
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  transition: transform 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -ms-transform: scale(1.3, 1.3);
  transform: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
}
/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-theme .owl-nav {
  margin-top: 10px;
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-nav [class*='owl-'] {
  color: #00508c;
  font-size: 14px;
  margin: 5px;
  padding: 4px 7px;
  background: #D6D6D6;
  display: inline-block;
  cursor: pointer;
  border-radius: 3px;
}
.owl-theme .owl-nav [class*='owl-']:hover {
  background: #869791;
  color: #FFF;
  text-decoration: none;
}
.owl-theme .owl-nav .disabled {
  opacity: 0.5;
  cursor: default;
}
.owl-theme .owl-nav.disabled + .owl-dots {
  margin-top: 10px;
}
.owl-theme .owl-dots {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
}
.owl-theme .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.owl-theme .owl-dots .owl-dot span {
  width: 10px;
  height: 10px;
  margin: 5px 7px;
  background: #D6D6D6;
  display: block;
  -webkit-backface-visibility: visible;
  transition: opacity 200ms ease;
  border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
  background: #869791;
}
/* Owl Carousel - Controls - Dots
-----------------------------------------------------------------*/
.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  zoom: 1;
  margin-top: 30px;
  *display: inline;
}
.owl-dots {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.owl-carousel .owl-dots .owl-dot span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0 4px;
  opacity: 0.5;
  border-radius: 50%;
  background-color: #d70341;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.owl-carousel .owl-dots .owl-dot.active span,
.owl-carousel .owl-dots .owl-dot:hover span {
  opacity: 1;
}
/* Owl Carousel - Controls
-----------------------------------------------------------------*/
.owl-carousel .owl-dots,
.owl-carousel .owl-nav {
  text-align: center;
  -webkit-tap-highlight-color: transparent;
  line-height: 1;
}
/* Owl Carousel - Controls - Arrows
-----------------------------------------------------------------*/
.owl-carousel .owl-nav [class*=owl-] {
  position: absolute;
  top: 50%;
  margin-top: -18px;
  left: -36px;
  zoom: 1;
  width: 36px;
  height: 36px;
  line-height: 32px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #666;
  background-color: #FFF;
  font-size: 18px;
  opacity: 0;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}
.owl-carousel.with-carousel-dots .owl-nav [class*=owl-] {
  margin-top: -38px;
}
.owl-carousel-full .owl-nav [class*=owl-] {
  margin-top: -30px;
  left: 0 !important;
  height: 60px;
  line-height: 60px;
  border: none;
  color: #EEE;
  background-color: rgba(0, 0, 0, 0.4);
  font-size: 28px;
  border-radius: 0 3px 3px 0;
}
.owl-carousel-full .with-carousel-dots .owl-nav [class*=owl-] {
  margin-top: -50px;
}
.owl-carousel .owl-nav .owl-next {
  left: auto;
  right: -36px;
}
.owl-carousel-full .owl-nav .owl-next {
  left: auto !important;
  right: 0 !important;
  border-radius: 3px 0 0 3px;
}
.owl-carousel:hover .owl-nav [class*=owl-] {
  opacity: 1;
  left: -18px;
}
.owl-carousel:hover .owl-nav .owl-next {
  left: auto;
  right: -18px;
}
.owl-carousel .owl-nav [class*=owl-]:hover {
  background-color: #d70341 !important;
  color: #FFF !important;
  text-decoration: none;
}
.owl-carousel .owl-nav .disabled {
  display: none !important;
}
#slideshow #photoframe .moduletable.slide-ck,
#slideshow #photoframe .moduletable.parallax-mod,
#slideshow #photoframe .moduletable .sketcharticleimage {
  height: 55vw;
}
@media only screen and (min-width: 992px) {
}
#topwide .lgx-parallax.jaxp.parallax-mod {
  background-position: top center;
  height: 40vw !important;
}
#slideshow .lgx-parallax.jaxp.parallax-mod {
  height: 55vw;
  max-height: 95vh;
}
/* parallaxing */
.moduletable.slide-ck {
  position: relative;
  overflow: hidden;
}
.no-js .moduletable.slide-ck {
  background: silver;
}
/*.slideshowck {
    position: fixed !important;
    right: 0;
    left: 0;
    top: 0;
    z-index: 0;

    		@media @uptodesktop {
    			position: relative !important;
    		}
}*/
.moduletable.slide-ck.light .camera_caption,
.moduletable.slide-ck.light .camera_caption a {
  color: #292929;
  text-shadow: 0px 0px 1em white;
}
.moduletable.slide-ck .slideshowck.slide-ck.camera_wrap {
  margin-bottom: 0 !important;
  max-height: 95vh !important;
}
.moduletable.slide-ck .camera_pag {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  text-align: center;
}
.moduletable.slide-ck .camera_pag ul {
  display: table;
  margin: 0 auto;
}
.moduletable.slide-ck .cameraContents {
  position: relative;
}
.moduletable.slide-ck .camera_caption {
  color: white;
  font-size: 3em;
  line-height: 1.2em;
  text-align: center;
  text-shadow: 2px 2px 0px #333, 0px 0px 1em black;
  display: table !important;
  width: 100%;
  height: 100%;
}
.moduletable.slide-ck .camera_caption > div {
  background: transparent;
  text-align: center;
  display: table-cell;
  vertical-align: middle;
}
.moduletable.slide-ck .camera_caption > div > div {
  max-width: 75% !important;
  margin: 0 auto;
  line-height: 1em;
  -webkit-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: fadeInUp;
  -moz-animation-name: fadeInUp;
  -ms-animation-name: fadeInUp;
  -o-animation-name: fadeInUp;
  animation-name: fadeInUp;
  backface-visibility: hidden;
}
.moduletable.slide-ck .camera_caption > div > div.infinite {
  -webkit-animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -o-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}
.moduletable.slide-ck .camera_caption > div > div.once {
  -webkit-animation-iteration-count: 1;
  -moz-animation-iteration-count: 1;
  -o-animation-iteration-count: 1;
  animation-iteration-count: 1;
}
.moduletable.slide-ck .camera_caption > div > div.hinge {
  -webkit-animation-duration: 2s;
  -moz-animation-duration: 2s;
  -o-animation-duration: 2s;
  animation-duration: 2s;
}
.moduletable.slide-ck .camera_caption > div > div.slow {
  -webkit-animation-duration: 3s;
  -moz-animation-duration: 3s;
  -o-animation-duration: 3s;
  animation-duration: 3s;
}
.moduletable.slide-ck .camera_caption > div > div a {
  color: white;
  padding: 1em;
  text-align: center;
  display: block;
}
.moduletable.slide-ck .camera_caption > div > div a:hover,
.moduletable.slide-ck .camera_caption > div > div a.hover {
  color: #bcd1e1;
}
.moduletable.slide-ck .camera_caption > div > div + div {
  padding-top: .5em;
}
.allmode-box .allmode-itemsbox {
  margin-left: -10px;
  margin-right: -10px;
  width: auto;
  min-width: 100%;
}
.allmode-box .allmode-itemsbox .allmode-item {
  padding: 0 10px;
  margin-bottom: 40px;
}
.allmode-box .allmode-itemsbox .allmode-img,
.allmode-box .allmode-itemsbox img {
  display: block;
  min-width: 100%;
}
.allmode-box .allmode-itemsbox img {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  *-webkit-transform: scale(1);
  -moz-transform: scale(1);
  -ms-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  webkit-filter: none;
  filter: none;
  opacity: 1;
  filter: alpha(opacity=100);
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  opacity: 0.85;
  filter: alpha(opacity=85);
}
.allmode-box .allmode-itemsbox img:hover,
.allmode-box .allmode-itemsbox img.hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-filter: contrast(1.5);
  filter: contrast(1.5);
  opacity: 0.8;
  filter: alpha(opacity=80);
}
.allmode-box .allmode-itemsbox .allmode-img {
  border-radius: 4px;
  overflow: hidden;
  background: #292929;
  /*&:hover, &.hover {
					img {

						.opacity(.6);
					}
				}*/
}
@media only screen and (min-width: 481px) {
  .allmode-box .allmode-itemsbox .allmode-title {
    margin-top: 0;
  }
  .allmode-box .allmode-itemsbox .side-img,
  .allmode-box .allmode-itemsbox .side-text {
    display: inline-block;
    vertical-align: top;
    width: 49%;
  }
  .allmode-box .allmode-itemsbox .side-img {
    padding-right: 5px;
  }
  .allmode-box .allmode-itemsbox .side-text {
    padding-left: 5px;
  }
}
.mod-sidefields dl {
  margin-bottom: 0;
}
.mod-sidefields dd {
  margin-bottom: 1em;
}
.mod-sidefields dd:before {
  display: inline-block;
  width: 30px;
  text-align: center;
  float: none;
}
.mod-sidefields span.field-label {
  font-weight: bold;
}
.moduletable.video-home-back {
  position: absolute;
}
#photoframe .moduletable.home-video-caption.container {
  margin: 0 auto !important;
  border: none;
}
#photoframe .moduletable.home-video-caption.container .custom {
  display: table;
  width: 100%;
  height: 56vw;
  color: white;
}
#photoframe .moduletable.home-video-caption.container .custom,
#photoframe .moduletable.home-video-caption.container .custom .btn {
  text-shadow: #000 1px 2px;
}
@media only screen and (min-width: 992px) {
  #photoframe .moduletable.home-video-caption.container .custom {
    height: 100vh;
  }
}
#photoframe .moduletable.home-video-caption.container .custom:before,
#photoframe .moduletable.home-video-caption.container .custom:after {
  content: none;
}
#photoframe .moduletable.home-video-caption.container .custom > div {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}
#photoframe .moduletable.home-video-caption.container .custom > div blockquote {
  position: relative;
  width: 100%;
  margin: 0 auto;
  font-style: italic;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  line-height: 1.2em;
  font-size: 2.2em;
  font-weight: bold;
}
#photoframe .moduletable.home-video-caption.container .custom > div blockquote,
#photoframe .moduletable.home-video-caption.container .custom > div blockquote:before,
#photoframe .moduletable.home-video-caption.container .custom > div blockquote:after {
  color: white;
}
#photoframe .moduletable.home-video-caption.container .custom > div blockquote:before,
#photoframe .moduletable.home-video-caption.container .custom > div blockquote:after {
  font-size: 1.2em;
}
#photoframe .moduletable.home-video-caption.container .custom > div blockquote:after {
  position: absolute;
  right: 0;
  bottom: 0;
  top: auto;
}
#photoframe .moduletable.home-video-caption.container .custom > div blockquote p {
  font-size: 1em;
}
#photoframe .moduletable.home-video-caption.container .custom > div h1 {
  text-transform: none;
  font-weight: 600;
  font-size: 5em;
  letter-spacing: normal;
}
@media only screen and (max-width: 767px) {
  #photoframe .moduletable.home-video-caption.container .custom > div {
    font-size: .8em;
  }
}
#photoframe .moduletable.home-video-caption.container .custom .btn-abs {
  position: absolute;
  bottom: 20px;
  right: 0;
  left: 0;
  text-align: center;
}
#photoframe .moduletable.home-video-caption.container .custom .btn-abs .btn.btn-primary {
  background: transparent !important;
  border: 2px solid white !important;
}
#photoframe .moduletable.home-video-caption.container .custom .btn-abs .btn.btn-primary:hover,
#photoframe .moduletable.home-video-caption.container .custom .btn-abs .btn.btn-primary.hover {
  background: #00508c !important;
}
@media only screen and (min-width: 992px) {
  .homepage .wrapfold {
    padding-top: 0;
  }
}
.moduletable.raxo-clean.owl.references {
  margin-bottom: 80px;
}
p.centered {
  text-align: center;
}
.mod-discover p {
  text-align: right;
}
.allmode-tagerim .allmode-topbox .allmode-topitem .allmode-text p.img ~ *:not(.allmode-readmore) {
  display: none;
}
.iso-inner p.img ~ * {
  display: none;
}
.item-page.realisations .item-image {
  display: none;
}
.moduletable.slide-ck.withtitle > h2 {
  z-index: 5;
  margin: 0 auto;
  display: table-cell;
  right: 0;
  left: 0;
  width: 80%;
  color: white !important;
  text-shadow: #000 1px 2px;
  font-size: 64px;
  letter-spacing: 2px;
  text-transform: none;
  font-weight: 700;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.moduletable.slide-ck.withtitle {
  border: none;
  padding: 0 !important;
  margin: 0;
}
.blog.realisations > p {
  display: none;
}
.isotope_button-group.filter-button-group-cat {
  width: 100%;
  margin: 0 auto;
  text-align: left;
  padding: 20px;
}
.isotope_button-group.filter-button-group-cat .btn {
  margin: 0;
  border-radius: 0;
  padding: 10px 1em;
  font-weight: normal;
  color: #555 !important;
  font-family: "Lato", Helvetica, Arial, sans-serif;
  letter-spacing: normal;
  text-transform: none;
  text-shadow: none;
  border: 1px solid #efefef !important;
}
.isotope_button-group.filter-button-group-cat .btn:hover,
.isotope_button-group.filter-button-group-cat .btn.hover {
  background: transparent;
  color: #00508c !important;
}
.isotope_button-group.filter-button-group-cat .btn:last-child {
  border-radius: 0 6px 6px 0;
  border-left: none;
}
.isotope_button-group.filter-button-group-cat .btn:first-child {
  border-radius: 6px 0 0 6px;
  border-right: none;
}
.isotope-div.row .isotope_button-group .btn:active,
.isotope-div.row .isotope_button-group .btn.is-checked,
.isotope-div.row .isotope_button:active,
.isotope-div.row .isotope_button.is-checked {
  background-color: #00508c !important;
  color: white !important;
  border-color: #00508c !important;
  font-weight: bold;
  outline: none !important;
  box-shadow: none !important;
}
.isotope_grid .isotope_item .art-title a {
  color: #555;
  font-size: 16px;
}
.isotope_grid .isotope_item .art-title a:hover,
.isotope_grid .isotope_item .art-title a.hover {
  color: #00508c;
}
.isotope_grid .isotope_item .allmode-readmore a,
.isotope_grid .isotope_item a.thumbnail.zoomin:after,
.isotope_grid .isotope_item a.isotope-readmore-title {
  margin-top: -45px;
}
.isotope_grid .isotope_item p.img {
  display: block !important;
  background: black;
}
.moduletable.mod-implantation .moduletable {
  padding: 0;
  margin: 0;
}
.moduletable.mod-implantation > div {
  filter: grayscale(1);
  /*.rl_tabs.outline_content>.tab-content>.tab-pane {
	    padding: 0;
	    padding-top: 20px;
		}

		.rl_tabs.outline_content>.tab-content {
		    border: none;
		    border-radius: 0;
		}*/
}
.moduletable.mod-implantation > div .moduletable {
  padding: 0;
  margin: 0;
}
.moduletable.mod-implantation > div .nav.nav-tabs li a:before {
  font-family: "FontAwesome";
  float: left;
  padding-left: .3em;
}
.moduletable.mod-implantation > div .nav.nav-tabs li:first-child a:before {
  content: "\f0f7";
}
.moduletable.mod-implantation > div .nav.nav-tabs li:first-child + li a:before {
  content: "\e66b";
  font-family: 'font-icons';
}
.formResponsive > h3,
.formResponsive h2 {
  text-transform: none;
}
.formResponsive .rsform-block {
  display: inline-block;
  vertical-align: top;
  padding: 0 10px;
  margin-bottom: 10px;
}
@media only screen and (min-width: 768px) {
  .formResponsive .rsform-block {
    width: 33%;
  }
  .formResponsive .rsform-block.rsform-block-objet {
    width: 66%;
  }
  .formResponsive .rsform-block.rsform-block-message,
  .formResponsive .rsform-block.rsform-block-captcha,
  .formResponsive .rsform-block.rsform-block-envoyer,
  .formResponsive .rsform-block.table {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .formResponsive .rsform-block {
    display: block;
    width: 100%;
  }
}
.formResponsive .formSpan12 {
  margin-left: -10px;
  margin-right: -10px;
  max-width: 120% !important;
}
.formResponsive .rsform-block input,
.formResponsive .rsform-block select,
.formResponsive .rsform-block textarea {
  width: 100% !important;
  border: 2px solid gainsboro;
}
.formResponsive .formBody {
  float: none !important;
}
.formResponsive .formControlLabel {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.2rem;
  margin-bottom: 1em;
}
.formResponsive p.formDescription:empty {
  display: none;
}
.formResponsive button {
  background: #00508c;
  color: white !important;
  border: 1px solid #00508c;
  padding: 10px 20px;
  border-radius: 3px;
  text-transform: uppercase;
  font-weight: 600;
}
.formResponsive button:hover,
.formResponsive button.hover {
  background: #000000;
}
.moduletable.mod-contact-address {
  margin-top: 20px;
}
body.contact-page .outerbody {
  padding-top: 80px;
}
@media screen and (min-width: 481px) and (max-width: 799px) {
  #isotope-div-146 .isotope_item {
    width: 47% !important;
  }
}
@media only screen and (max-width: 480px) {
  #isotope-div-146 .isotope_item {
    width: 100% !important;
  }
  #isotope-div-146 .isotope_item img {
    min-width: 100% !important;
  }
}
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 6px;
  text-align: center;
}
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-name a span {
  text-align: center;
  font-weight: 600;
  font-size: 30px;
  display: inline-block;
  margin: 0 auto;
  color: #333;
}
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-name a span:hover,
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-name a span.hover {
  color: white !important;
}
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-name:after {
  border-color: white;
}
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home h3.allmode-title,
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-name a span {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5) !important;
}
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-box {
  text-align: left;
}
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-title a {
  color: white !important;
}
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-title a:hover,
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-title a.hover {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-news .allmode-topitem {
  display: table;
  width: 100%;
  position: relative;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
  padding: 20px;
  margin-bottom: 20px;
}
@media only screen and (min-width: 992px) {
  div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-news .allmode-topitem {
    display: inline-block;
    width: 48%;
    margin: 5px;
    vertical-align: top;
  }
}
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-news .allmode-topitem .allmode-readmore {
  background: #00508c;
  color: white !important;
  border: 1px solid #00508c;
  margin: 0 auto;
  border: none !important;
  font-weight: bold !important;
  padding: 10px 20px;
}
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-news .allmode-topitem .allmode-readmore:hover,
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-news .allmode-topitem .allmode-readmore.hover {
  background: #000000;
}
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-news .allmode-topitem .allmode-readmore a {
  font-weight: bold;
}
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-news .allmode-topitem .allmode-readmore.hover,
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-news .allmode-topitem .allmode-readmore.hover {
  background: rgba(0, 0, 0, 0.5) !important;
}
@media only screen and (max-width: 767px) {
  div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-news .allmode-topitem .side-box {
    display: block;
  }
  div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-news .allmode-topitem .side-box p.raxo-news-readmore {
    display: none;
  }
}
@media only screen and (min-width: 768px) {
  div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-news .allmode-topitem .side-box {
    display: table-cell;
    vertical-align: top;
  }
  div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-news .allmode-topitem .side-box.img-date {
    width: 30% !important;
  }
}
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-news .allmode-topitem .side-box.side-text {
  text-align: center;
}
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-news .allmode-topitem .side-box.img-date {
  position: relative;
}
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-news .allmode-topitem .side-box.img-date span.allmode-date {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  padding: 1em;
  overflow: hidden;
  text-align: center;
  font-weight: normal;
  line-height: 1em;
  font-size: 1rem;
  text-transform: capitalize;
}
div#news-outer-sub #news-wrap .moduletable.raxo-news.news-home .allmode-news .allmode-topitem .side-box.img-date span.allmode-date span {
  display: block;
  padding-bottom: 10px;
  font-size: 2em;
}
.lgx-parallax-title {
  text-transform: none;
  text-shadow: 2px 2px 0px #000;
}
body.activites .lgx-parallax-title {
  text-transform: none;
  text-shadow: 2px 2px 0px #000;
}
body.activites .lgx-parallax-text a {
  position: absolute;
  bottom: 20px;
  right: 0;
  left: 0;
  margin: 0 auto;
  display: inline-block;
}
body.activites .lgx-parallax-text a span {
  display: none;
}
body.activites .lgx-parallax-text a:hover:after {
  color: #00508c;
}
body.activites .lgx-parallax-text a:after {
  position: absolute;
  bottom: 20px;
  right: 0;
  left: 0;
  top: auto !important;
  margin: 0;
  line-height: 2em !important;
}
div#colorbox {
  border-radius: 0;
}
div#colorbox button#cboxClose {
  position: absolute;
  bottom: 30px;
  right: 0;
  left: 0;
  top: auto;
  opacity: 1;
  filter: alpha(opacity=100);
  color: #00508c;
  width: 40px;
  height: 40px;
  background: none;
  box-shadow: none;
  margin: 0 auto;
}
div#colorbox button#cboxClose:active {
  outline: none;
}
div#colorbox button#cboxClose:before {
  font-family: 'lined-icons';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: inherit;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e043";
  font-size: 4rem;
  display: inline-block;
  height: 1.2em;
  width: 1.2em;
  float: none;
  line-height: 1em;
}
div#colorbox div#cboxLoadedContent {
  padding: 50px;
}
.lgx-parallax-inner {
  position: relative;
}
.moduletable.raxo-news {
  border-top: 1px solid #f5f5f5;
  padding-top: 60px;
  padding-bottom: 40px;
}
.moduletable.raxo-news h4.allmode-title a {
  text-transform: none;
  color: #555;
  line-height: 1.5em;
  color: #333;
}
.moduletable.raxo-news h4.allmode-title a:hover,
.moduletable.raxo-news h4.allmode-title a.hover {
  color: #00508c;
}
.moduletable.raxo-news h4.allmode-title {
  margin-bottom: 0 !important;
}
.moduletable.raxo-news .allmode-text {
  margin-top: 15px;
}
.col-md-8 .item-page .item-image {
  display: none;
}
.owl-carousel .owl-dots .owl-dot {
  background: transparent;
  border: none;
}
.moduletable .owl-carousel {
  position: relative;
}
.moduletable .owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  left: 0;
  width: 100%;
}
.moduletable .owl-carousel .owl-nav > div {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5) !important;
  border-radius: 4px;
  border: none !important;
  color: white !important;
  padding: 10px !important;
  height: 60px !important;
  width: 6rem !important;
  margin-top: -40px;
  overflow: hidden;
  display: inline-block;
  white-space: nowrap;
}
.moduletable .owl-carousel .owl-nav > div:hover,
.moduletable .owl-carousel .owl-nav > div.hover {
  background: #00508c;
}
.moduletable .owl-carousel .owl-nav > div:before {
  content: "\f105";
  font-family: FontAwesome;
  margin-right: 3rem;
  line-height: .5em;
  padding: 10px;
  font-size: 3rem;
  height: 100%;
  display: inline-block;
  vertical-align: middle;
}
.moduletable .owl-carousel .owl-nav > div.owl-prev:before {
  content: "\f104";
  padding-left: 20px;
}
.moduletable .owl-carousel .owl-nav > div.owl-prev {
  right: auto;
  left: -2rem;
}
.moduletable .owl-carousel .owl-nav > div.owl-next {
  left: auto;
  right: -2rem;
}
.moduletable .owl-carousel .owl-nav > div.owl-next:before {
  padding-left: 5px;
}
#slideshow .moduletable.mod-page-title {
  min-height: 0;
  height: auto;
  right: 0;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
#slideshow .moduletable.mod-page-title h1 {
  color: white;
  max-width: 80% !important;
  margin: 0 auto;
}
.db8socialmediashare.mod-social-links-mod {
  text-align: left;
}
.moduletable.inverted .db8socialmediashare.mod-social-links-mod a {
  width: 36px;
  height: 40px;
  margin: 0 1px;
}
.moduletable.inverted .db8socialmediashare.mod-social-links-mod a span:before {
  background: #555;
  color: white;
  border-radius: 3px;
  width: 36px;
  height: 36px;
  line-height: 36px;
  font-size: .9em;
}
.db8socialmediashare.mod-social-links-mod a {
  display: inline-block;
  padding: 0;
  margin: 0;
  border: none;
}
.db8socialmediashare.mod-social-links-mod a span {
  border-radius: 0;
  height: 40px;
  width: 40px;
  line-height: 40px;
  margin-top: 0;
  vertical-align: middle;
  overflow: hidden;
  margin: 0;
  border: none;
  padding: 0;
  display: inline-block;
}
.db8socialmediashare.mod-social-links-mod a span:before {
  font-size: 1.7rem;
  color: #555;
  width: 40px;
  height: 40px;
  display: inline-block;
  text-align: center;
  margin-top: 0;
}
.db8socialmediashare.mod-social-links-mod a span.hidelink {
  display: none;
  width: 0;
}
.db8socialmediashare.mod-social-links-mod a span,
.db8socialmediashare.mod-social-links-mod a span:before {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.db8socialmediashare.mod-social-links-mod a span:hover:before,
.db8socialmediashare.mod-social-links-mod a span.hover:before {
  color: white;
  background: #555;
}
.db8socialmediashare.mod-social-links-mod a span.icon-facebook:hover:before {
  background: dodgerblue;
}
.db8socialmediashare.mod-social-links-mod a span.icon-twitter:hover:before {
  background: #00ACEE;
}
.db8socialmediashare.mod-social-links-mod a span.icon-linkedin:hover:before {
  background: steelblue;
}
.db8socialmediashare.mod-social-links-mod a span.icon-pinterest:hover:before {
  background: #C8232C;
}
.db8socialmediashare.mod-social-links-mod a span.icon-google-plus:hover:before {
  background: #DD4B39;
}
.moduletable.mod-social-links-mod.news {
  display: table;
  width: 100%;
  table-layout: fixed;
  margin-bottom: 40px !important;
}
.moduletable.mod-social-links-mod.news > div {
  display: table-cell;
  vertical-align: top;
}
@media only screen and (max-width: 767px) {
  .moduletable.mod-social-links-mod.news > div {
    display: block;
    text-align: left;
  }
}
.moduletable.mod-social-links-mod.news .db8socialmediashare.mod-social-links-mod.news {
  text-align: right;
}
@media only screen and (max-width: 767px) {
  .moduletable.mod-social-links-mod.news .db8socialmediashare.mod-social-links-mod.news {
    text-align: left;
  }
}
.moduletable.mod-social-links-mod.news .inline-b {
  font-weight: bold;
  margin-bottom: 1em;
}
.sketcharticleimage img {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
}
@media only screen and (max-width: 991px) {
  .sketcharticleimage img {
    top: 105px !important;
  }
}
@media only screen and (max-width: 767px) {
  .moduletable.parallax-mod {
    min-height: 18em !important;
  }
  .moduletable.parallax-mod .lgx-parallax-text a {
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  .lgx-parallax-content .lgx-parallax-title,
  .moduletable.slide-ck.withtitle > h2,
  .moduletable.mod-page-title h1 {
    font-size: 4rem !important;
  }
}
/* jean */
.slick-track {
  max-width: none !important;
}
.products-slider-slick {
  margin: 0;
  padding: 0;
}
/*.products-slider-slick button.slick-arrow {
	position:  absolute;
	top:  50%;
	left: 0;
	transform: translateY(-50%) translateX(-120%);
	-webkit-transform: translateY(-50%) translateX(-120%);
	   -moz-transform: translateY(-50%) translateX(-120%);
	    -ms-transform: translateY(-50%) translateX(-120%);
	     -o-transform: translateY(-50%) translateX(-120%);
	        transform: translateY(-50%) translateX(-120%);
}

.products-slider-slick button.slick-arrow.slick-next {
	left: auto;
	right:  0;
	transform: translateY(-50%) translateX(120%);
	-webkit-transform: translateY(-50%) translateX(120%);
	   -moz-transform: translateY(-50%) translateX(120%);
	    -ms-transform: translateY(-50%) translateX(120%);
	     -o-transform: translateY(-50%) translateX(120%);
	        transform: translateY(-50%) translateX(120%);
}

.products-slider-slick .slick-slide {
	margin:  0;
	padding:  0;
	box-sizing:  border-box;
	min-height: 360px;
	padding: 20px;
	position: relative;
}

.products-slider-slick .slick-slide:after {
	content: "";
	position: absolute;
	width: 'calc(100% - 10px)';
	height: 'calc(100% - 10px)';
	position: absolute;
	top: 8px;
	left:  8px;
	border: 2px solid #3373a3;
}

.products-slider-slick button.slick-arrow {
	background: 0 0;
	font-size: 0;
	border: none;
}

.products-slider-slick button.slick-arrow:before {
	content: "\f054";
	font-family: fontawesome;
	font-size: 3rem;
	color: #555;
	line-height: 1em;
}

.products-slider-slick button.slick-arrow.slick-prev:before {
	content: "\f053";
}*/
/* slick.js */
button.slick-prev.slick-arrow {
  position: absolute;
  top: 50%;
  left: 0;
  z-index: 55;
}
button.slick-next.slick-arrow {
  position: absolute;
  top: 50%;
  right: 0;
  z-index: 55;
}
button.slick-arrow {
  background: transparent;
  font-size: 0;
  border: none;
}
button.slick-arrow:before {
  content: "\f054";
  font-family: "FontAwesome";
  font-size: 6rem;
  color: #00508C;
  line-height: 1em;
}
button.slick-arrow.slick-prev:before {
  content: "\f053";
}
button.slick-arrow:hover {
  background: transparent !important;
  color: #193951 !important;
}
button.slick-arrow:hover:before {
  color: #193951 !important;
}
button.slick-arrow:focus,
button.slick-arrow:active {
  outline: none;
  background: transparent !important;
}
button.slick-arrow:focus:before,
button.slick-arrow:active:before {
  color: #193951 !important;
  background: transparent !important;
}
.slick-dots {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 65;
  display: inline-block;
  padding: 0;
  list-style: none;
  text-align: center;
  margin: 0 auto;
  height: 20px;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li.slick-active button:before {
  opacity: .75;
  color: black;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:before {
  font-family: 'FontAwesome';
  font-size: 10px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '\f111';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul.products-slider-slick.toslick {
  padding: 0 5rem;
}
ul.products-slider-slick.toslick li.slick-slide {
  padding: 20px;
  min-height: 360px;
  position: relative;
  margin: 0 10px;
  border: 2px solid silver;
  text-align: center;
  margin-bottom: 0;
}
ul.products-slider-slick.toslick li.slick-slide h6:last-child {
  margin-bottom: 0;
}
ul.products-slider-slick.toslick ul.slick-dots {
  margin-top: 20px;
  position: relative;
  width: 100%;
}
ul.collection-finishes li a,
ul.products-slider-slick.toslick li a {
  display: table;
  text-align: center;
  position: relative;
  margin: 0 auto;
}
ul.collection-finishes li a:after,
ul.products-slider-slick.toslick li a:after {
  font-family: "FontAwesome";
  content: "\f105";
  float: left;
  padding-right: .3em;
  position: absolute;
  right: 20px;
  top: 20px;
  float: none;
  z-index: 5;
  padding: 0;
  display: inline-block;
  font-size: 2rem;
  content: "\f055";
}
ul.collection-finishes li a img.multithumb,
ul.products-slider-slick.toslick li a img.multithumb {
  position: relative;
  float: none;
}
/* raxo more articles */
.moduletable.raxo.more-arts {
  border-top: 1px solid steelblue;
}
.moduletable.raxo.more-arts .allmode-name:after {
  content: none;
}

/* timeline */
.moduletable.mod-jux-timeline .jux-tl-info {
  background: steelblue;
  border-radius: 0;
}
.moduletable.mod-jux-timeline .jux-tl-item h2 a {
  color: white;
}
.moduletable.mod-jux-timeline .jux-tl-desc {
  color: white;
}
.moduletable.mod-jux-timeline .jux-tl-item .jux-tl-desc {
  color: white;
}
.moduletable.mod-jux-timeline .jux-tl-item.right .arrow {
  border-right-color: steelblue;
}
.moduletable.mod-jux-timeline .jux-tl-item.left .arrow {
  border-left-color: steelblue;
}
@media only screen and (max-width: 767px) {
  .moduletable.mod-jux-timeline .jux-tl-wrap.clearfix .arrow {
    display: none;
  }
  .moduletable.mod-jux-timeline .jux-tl-time {
    font-size: 3rem !important;
  }
}
/* cw gallery */
.item-page div[itemprop="articleBody"] img.cphoto {
  margin-bottom: 0 !important;
}
.moduletable > h2 span.subtitle,
.moduletable > h3 span.subtitle {
  display: inline-block;
  font-weight: bolder;
  color: inherit;
}

/* custom module with fixed background */
.mod-custom-fixed {
  background-position: center center !important;
  position: relative;
  z-index: 55;
  background-size: cover !important;
  height: 100%;
}
.mod-custom-fixed:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(255, 255, 255, 0.3);
}
.mod-custom-fixed > div {
  padding: 80px 0;
}
@media only screen and (min-width: 992px) {
  .mod-custom-fixed > div {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
  }
}
.mod-custom-fixed > div,
.mod-custom-fixed > div h2,
.mod-custom-fixed > div h3,
.mod-custom-fixed > div p,
.mod-custom-fixed > div li {
  color: black;
  text-shadow: 0px 0px 1em white;
}
@media only screen and (max-width: 991px) {
  .mod-custom-fixed > div {
    padding: 40px;
  }
}
.moduletable.modcustom-full {
  padding: 0 !important;
  margin: 0;
  border: none;
}
.moduletable.modcustom-full.dark .mod-custom-fixed:before {
  background: rgba(0, 0, 0, 0.3);
}
.moduletable.modcustom-full.dark .mod-custom-fixed > div,
.moduletable.modcustom-full.dark .mod-custom-fixed > div h2,
.moduletable.modcustom-full.dark .mod-custom-fixed > div h3,
.moduletable.modcustom-full.dark .mod-custom-fixed > div p,
.moduletable.modcustom-full.dark .mod-custom-fixed > div li {
  color: white;
  text-shadow: 0px 0px 1em black;
}

.moduletable.modcustom-full.dark.mod-showroom-home .col-md-6 {
    padding: 40px;
    background: rgba(0, 0, 0, 0.7);
    text-shadow: none !important;
}

div#prefooter {
    background: rgba(0, 0, 0, 0.2);
}

/* raxo */
.more-news .allmode-title a {
  font-weight: 400;
}
.more-news .allmode-title a span {
  font-size: .62em;
  line-height: 1em;
}
.mod-collections .allmode-title a {
  font-weight: 300;
}
.mod-collections .allmode-title a span {
  font-weight: 600;
  display: inline-block;
}

.moduletable.raxo .allmode-topitem.rw > div {
    vertical-align: middle;
}

.moduletable.raxo.raxo-home-slider.mod-actus .allmode-title a {
    font-weight: 300;
}

.moduletable.raxo.raxo-home-slider .allmode-img {
    max-width: 48vw !important;
    margin: 0 auto;
}

.rw.collection-main.vertcenter img {
    max-width: 48vw !important;
    margin: 0 auto !important;
}

@media (min-width: 768px) {
    p.acysubbuttons {
        width: auto !important;
    }
}

.moduletable.mod-newsletter.container.centered {
    padding-top: 60px;
    padding-bottom: 40px;
}


.moduletable.jmg-art-img.fixed.art-img-news {
  max-height: 400px !important;
  min-height: 200px !important;
}



#component .search span.badge.badge-info {
  background: steelblue;
}
#component .search span.icon-search {
  padding: 0;
  margin: 0;
}
#component .search span.badge.badge-info {
  background: steelblue;
}
#component .search fieldset.phrases .controls {
  padding-left: 1.2em;
}
#component .search fieldset.only label {
  padding-left: 1em;
}
#component .search .phrases-box {
  margin-bottom: 20px;
}
#component .search fieldset {
  margin-bottom: 20px;
}
#component .search dd.result-created.search-results {
  margin-bottom: 20px;
}

@media only screen and (max-width: 480px) {
  .allmode-box.allmode-news.raxo.raxo-home-slider.mod-collections > div,
  .allmode-box.allmode-news.raxo.raxo-home-slider.mod-actus > div {
    padding: 0 40px;
  }
}

h3.allmode-title a:active {
    outline: none !important;
}

/* Post launch */

@media screen and (min-width: 992px) {
.moduletable.mod-newsletter.container.centered {
    padding: 0 !important;
}
}

div#pre-footer .moduletable:first-child:not(.mod-newsletter) {
    background: white;
      padding-top: 20px;  
}

div#pre-footer .moduletable:first-child:not(.mod-newsletter) > h3 {
    color: gray;
}

@media screen and (min-width: 1200px) {
.allmode-box.allmode-news.raxo.raxo-home-slider.mod-actus .slick-list {
    padding: 0 40px;
}
}

