

/* Start:/local/resources/css/animate.css?174065858323848*/
@charset "UTF-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

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

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

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

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

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

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

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

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

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }

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

.flash {
  animation-name: flash;
}

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

@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }

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

  to {
    transform: scale3d(1, 1, 1);
  }
}

.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }

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

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

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

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

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

  to {
    transform: scale3d(1, 1, 1);
  }
}

.rubberBand {
  animation-name: rubberBand;
}

@keyframes shake {
  from, to {
    transform: translate3d(0, 0, 0);
  }

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

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

.shake {
  animation-name: shake;
}

@keyframes headShake {
  0% {
    transform: translateX(0);
  }

  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }

  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }

  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }

  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }

  50% {
    transform: translateX(0);
  }
}

.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

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

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

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

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

  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}

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

@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }

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

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

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

  to {
    transform: scale3d(1, 1, 1);
  }
}

.tada {
  animation-name: tada;
}

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

@keyframes wobble {
  from {
    transform: none;
  }

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

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

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

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

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

  to {
    transform: none;
  }
}

.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }

  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }

  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }

  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }

  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }

  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }

  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }

  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}

.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

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

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

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

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

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

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

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

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

  to {
    transform: none;
  }
}

.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

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

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

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

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

  to {
    transform: none;
  }
}

.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }

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

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

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

  to {
    transform: none;
  }
}

.bounceInRight {
  animation-name: bounceInRight;
}

@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0);
  }

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

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

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

  to {
    transform: translate3d(0, 0, 0);
  }
}

.bounceInUp {
  animation-name: bounceInUp;
}

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

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

  to {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }
}

.bounceOut {
  animation-name: bounceOut;
}

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

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

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.bounceOutDown {
  animation-name: bounceOutDown;
}

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

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.bounceOutLeft {
  animation-name: bounceOutLeft;
}

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

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.bounceOutRight {
  animation-name: bounceOutRight;
}

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

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

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.bounceOutUp {
  animation-name: bounceOutUp;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  animation-name: fadeIn;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDown {
  animation-name: fadeInDown;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInDownBig {
  animation-name: fadeInDownBig;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRight {
  animation-name: fadeInRight;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInRightBig {
  animation-name: fadeInRightBig;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUp {
  animation-name: fadeInUp;
}

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

  to {
    opacity: 1;
    transform: none;
  }
}

.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
  }
}

.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }

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

.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}

.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }

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

.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}

.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }

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

.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}

.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }

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

.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}

.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

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

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

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

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

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

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

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

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

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

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

  to {
    transform: perspective(400px);
  }
}

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

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

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

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

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

  to {
    transform: perspective(400px);
  }
}

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

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }

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

  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}

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

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }

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

  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}

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

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

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

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

  to {
    transform: none;
    opacity: 1;
  }
}

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

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }

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

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

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

  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}

.rotateIn {
  animation-name: rotateIn;
}

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

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

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

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInDownRight {
  animation-name: rotateInDownRight;
}

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

  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

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

  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}

.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }

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

.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

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

.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

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

.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }

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

.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }

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

.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

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

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

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

  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}

.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }

  50% {
    transform: rotate(-10deg);
  }

  70% {
    transform: rotate(3deg);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.jackInTheBox {
  animation-name: jackInTheBox;
}

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

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

  to {
    opacity: 1;
    transform: none;
  }
}

.rollIn {
  animation-name: rollIn;
}

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

@keyframes rollOut {
  from {
    opacity: 1;
  }

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

.rollOut {
  animation-name: rollOut;
}

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

  50% {
    opacity: 1;
  }
}

.zoomIn {
  animation-name: zoomIn;
}

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

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

.zoomInDown {
  animation-name: zoomInDown;
}

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

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

.zoomInLeft {
  animation-name: zoomInLeft;
}

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

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

.zoomInRight {
  animation-name: zoomInRight;
}

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

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

.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }

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

  to {
    opacity: 0;
  }
}

.zoomOut {
  animation-name: zoomOut;
}

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

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

.zoomOutDown {
  animation-name: zoomOutDown;
}

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

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

.zoomOutLeft {
  animation-name: zoomOutLeft;
}

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

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

.zoomOutRight {
  animation-name: zoomOutRight;
}

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

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

.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }

  to {
    transform: translate3d(0, 0, 0);
  }
}

.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}

.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}

.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}

.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}

.slideOutUp {
  animation-name: slideOutUp;
}

/* End */


/* Start:/local/resources/arctic_modal/jquery.arcticmodal-0.3.css?1740658583647*/
.arcticmodal-overlay,
.arcticmodal-container { position: fixed; left: 0; top: 0; right: 0; bottom: 0; z-index: 1000; }
.arcticmodal-container { overflow: auto; margin: 0; padding: 0; border: 0; border-collapse: collapse; }
*:first-child+html .arcticmodal-container { height: 100% }
.arcticmodal-container_i { height: 100%; margin: 0 auto; }
.arcticmodal-container_i2 { padding: 24px; margin: 0; border: 0; vertical-align: middle; }
.arcticmodal-error { padding: 20px; border-radius: 10px; background: #000; color: #fff; }
.arcticmodal-loading { width: 80px; height: 80px; border-radius: 10px; background: #000 url(/local/resources/arctic_modal/loading.gif) no-repeat 50% 50%; }
/* End */


/* Start:/local/resources/arctic_modal/simple.css?1740658583410*/
.box-modal {
	position: relative;
	width: 500px;
	padding: 16px;
	background: #fff;
	color: #3c3c3c;
	font: 14px/18px Arial, "Helvetica CY", "Nimbus Sans L", sans-serif;
	box-shadow: 0 0 0 6px rgba(153, 153, 153, .3);
	border-radius: 6px;
}
.box-modal_close { position: absolute; right: 10px; top: 6px; font-size: 11px; line-height: 15px; color: #999; cursor: pointer; }
.box-modal_close:hover { color: #666; }
/* End */


/* Start:/bitrix/templates/edu54_ru_new/components/bitrix/menu/main_horizontal_multilevel/style.css?17406585661367*/
.main-menu {padding-left: 30px; font-size: 110%;}

.main-menu li a {padding-left: 20px; padding-right: 20px;}

.rabota {color: #00ff26 !important;}

.main-level2-menu {
	background-color: #418CB4;
}

.main-level2-menu li {
	padding: 5px 0;
}

.main-level2-menu li a {
	color: #fff;
}

.main-level2-menu li a:hover {
	background-color: #3A7DA1;
	color: #fff;
}

.level2-active {
	background-color: #336F8F;
}

.nav li a:focus {
	border-bottom: none;
}

.main-menu .dropdown-submenu {
	position: relative;
}

.main-menu .dropdown-submenu>.dropdown-menu {
	top: 0;
	left: 100%;
	margin-top: -6px;
	margin-left: -1px;
	-webkit-border-radius: 0 6px 6px 6px;
	-moz-border-radius: 0 6px 6px;
	border-radius: 0 6px 6px 6px;
}

.main-menu .dropdown-submenu:hover>.dropdown-menu {
	display: block;
}

.main-menu .dropdown-submenu>a:after {
	display: block;
	content: " ";
	float: right;
	width: 0;
	height: 0;
	border-color: transparent;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-left-color: #ccc;
	margin-top: 5px;
	margin-right: -10px;
}

.main-menu .dropdown-submenu:hover>a:after {
	border-left-color: #fff;
}

.dropdown-submenu.pull-left {
	float: none;
}

.main-menu .dropdown-submenu.pull-left>.dropdown-menu {
	left: -100%;
	margin-left: 10px;
	-webkit-border-radius: 6px 0 6px 6px;
	-moz-border-radius: 6px 0 6px 6px;
	border-radius: 6px 0 6px 6px;
}
/* End */


/* Start:/bitrix/templates/edu54_ru_new/components/bitrix/menu/footer-menu/style.css?1740658566217*/
div.footer-menu .title a {font-size: 95%;}

div.footer-menu .description {font-size: 85%; padding-left: 20px;}

div.footer-menu li {margin-bottom: 5px;}

div.footer-menu .level2 {padding-left: 20px; font-size: 90%;}


/* End */


/* Start:/local/components/dlay/cookienotice/templates/.default/style.css?17406585811420*/
#dlay-cookienotice-modal {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.9);
    text-align: center;
    z-index: 999999;
    -webkit-box-shadow: 1px 1px 7px 2px rgba(0, 0, 0, 0.16);
    box-shadow: 1px 1px 7px 2px rgba(0, 0, 0, 0.16);
    font-size: 12px;
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    -o-transform: translateY(100%);
    transform: translateY(100%);
    -webkit-transition: transform .8s;
    -o-transition: transform .8s;
    transition: transform .8s;
}

#dlay-cookienotice-modal.dlay-cookienotice-load {
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
}
.dlay-cookienotice-button {
    font-size: 14px;
    cursor: pointer;
    outline: none;
    margin-left: 10px;
}
/*
.dlay-cookienotice-button {
    background-color: transparent;
    border: 2px solid #222 !important;
    color: #222;
    border: none;
    padding: 3px 16px;
    border-radius: 3px;
    font-size: 14px;
    cursor: pointer;
    outline: none;
    margin-left: 10px;
}

.dlay-cookienotice-button:hover {
    background-color: #222;
    color: #fff;
}*/

.dlay-cookienotice-link {
    text-decoration: underline;
    color: #222;
}

.dlay-cookienotice-text {
    max-width: 100%;
    margin: auto;
    width: 1050px;
}
/* End */


/* Start:/local/components/oblcit/auth.modal/templates/.default/style.css?17406585824843*/
.auth {
    padding: 0 20px;
}

.auth_modal_pass {
    position: relative;
}

.auth_modal_passr::before {
    position: absolute;
    content: "22@";
    top: 10px;
    left: 20px;
    display: block;
    width: 300px;
    height: 10px;
}

.auth_modal_pass::before {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 15px solid transparent;
    top: -2px;
    right: 50px;
    border-right-color: darkgray;
    border-width: 3px 10px 3px 0;
}
.auth_modal_pass::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    border: 15px solid transparent;
    border-right: 0;
    top: -3px;
    right: -20px;
    border-left-color: darkgray;
    border-width: 4px 0 4px 20px;
}

#auth_modal .show_hide_pas {
    position: absolute;
    top: 107px;
    left: -20px;
}

.dot_loader_dot {
    top: -2px;
    position: relative;
    width: 6px;
    height: 6px;

    border-radius: 100%;
    background: white;
    animation-name: fade;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    ~animation-timing-function: steps(3);
    display: inline-block;
    margin: 0 5px;
    opacity: 0;
}

.dot1 {
    ~animation-delay: 1s;
}

.dot_loader_dot2 {
    animation-delay: 0.1s;
}

.dot_loader_dot3 {
    animation-delay: 0.2s; 
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  100% { 
    opacity: 0;
  }
}



.checkmark__circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark {

    
  ~width: 56px;
  ~height: 56px;
~margin: 10% auto;
    width: 20px;
    height: 20px;
    margin: auto;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;

  box-shadow: inset 0px 0px 0px #7ac142;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes scale {
  0%, 100% {
    transform: none;
  }
  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}
@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 30px #7ac142;
  }
}


.radio,
.checkbox {
  padding-left: 20px;
  position: relative;
  display: block;
}
.radio input,
.checkbox input {
  opacity: 0;
  position: absolute;
  z-index: 1;
  cursor: pointer;
  margin-left: -20px;
}
.radio input:checked + label::before,
.checkbox input:checked + label::before {
  border-color: #337ab7;
}
.radio input:checked + label::after,
.checkbox input:checked + label::after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 13px;
  height: 13px;
  left: 2px;
  top: 4px;
  margin-left: -20px;
  border: 1px solid #337ab7;
  border-radius: 50%;
  background-color: #337ab7;
}
.radio label,
.checkbox label {
  display: inline-block;
  position: relative;
  padding-left: 5px;
}
.radio label::before,
.checkbox label::before {
  content: '';
  display: inline-block;
  position: absolute;
  width: 17px;
  height: 17px;
  left: 0;
  top: 2px;
  margin-left: -20px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
}
.radio.disabled label,
.checkbox.disabled label {
  color: #ccc;
}
.radio.disabled label::before,
.checkbox.disabled label::before {
  opacity: 0.54;
  border-color: #ccc;
}
.checkbox input:checked + label::before {
  border-color: #337ab7;
  background-color: #337ab7;
}
.checkbox input:checked + label::after {
  content: "\f00c";
  font-family: FontAwesome;
  font-size: 13px;
  color: #fff;
  top: 0;
  left: 1px;
  border-color: transparent;
  background-color: transparent;
}
.checkbox label::before {
  border-radius: 2px;
}

label[for=remember]:before {
    top: 1px;
}

.label_checked::before {
  border-color: #337ab7;
}
.label_checked::after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 13px;
  height: 13px;
  left: 2px;
  top: 4px;
  margin-left: -20px;
  border: 1px solid #337ab7;
  border-radius: 50%;
  background-color: #337ab7;
}

label.label_checkbox_checked::before {
  border-color: #337ab7;
  background-color: #337ab7;
}
label.label_checkbox_checked::after {
  content: '';
  display: inline-block;
  position: absolute;
  width: 13px;
  height: 13px;
  left: 2px;
  top: 4px;
  margin-left: -20px;
  border: 1px solid #337ab7;
  border-radius: 50%;
  background-color: #337ab7;

  content: "\f00c";
  font-family: FontAwesome;
  font-size: 13px;
  color: #fff;
  top: 0;
  left: 1px;
  border-color: transparent;
  background-color: transparent;  
}
/* End */


/* Start:/bitrix/templates/edu54_ru_new/styles.css?17406585656082*/
.usn {
    user-select: none;
}

.cd {
    cursor: default;
}

.cp {
    cursor: pointer;
}

.dn {
    display: none;
}

.ib {
    display: inline-block;
}

.in {
    display: inline;
}

.t {
    display: table;
}

.tc {
    display: table-cell;
}

.nb {
    border: none;
}

.pr {
    position: relative;
}

.b_aliceblue {
    background-color: aliceblue !important;
}

.redw {
    color: #b32d2d;
}

.red {
    color: red;
}

.grayer {
    color: #b4bbb0;
}

.greenr {
    color: #94b882;
}

.gray {
    color: gray;
}

.left {
    text-align: left;
}

.center {
    text-align: center;
}

.right {
    text-align: right;
}

.inline {
    display: inline;
}

.fl {
    float: left;
}

.fn {
    float: none;
}

.fr {
    float: right;
}

.wi {
    width: initial;
}

.bs_selected {
    background: #337ab7 !important;
    color: white !important;
}

.dashed {
    border-bottom: 1px dashed #0073AA;
    cursor: pointer;
}

.red_highlight {
    box-shadow: 0px 0px 5px 1px rgba(255, 0, 0, 1)
}

/* IMAGELIGHTBOX */

.lightbox_a:hover {
    border: none;
}

#imagelightbox-overlay {
    background-color: #fff;
    background-color: rgba( 255, 255, 255, .9 );
    position: fixed;
    z-index: 9998;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#imagelightbox {
    position: fixed;
    z-index: 9999;
    -ms-touch-action: none;
    touch-action: none;
}

/* IMAGELIGHTBOX */

.page_title {
    color: #5e5e5e;
    font-size: 2rem;
    margin: 0 5px 0 10px;
    border-bottom: 2px solid #418cb4;
    padding-bottom: 5px;
    padding-left: 10px;
}

/* //NEW */
/* SPINNER LOADER */
.spinner_loader {
    border: 16px solid #f3f3f3; /* Light grey */
    border-top: 16px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;

    width: 50px;
    height: 50px;
    border: 8px solid #f3f3f3;
    border-top: 8px solid #3498db;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner_loader_small {
    margin: 0;
    border: 2px solid #f3f3f3; /* Light grey */
    border-top: 2px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 2s linear infinite;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
}

.spinner_loader_small_news_load {
    float: left;
    margin-top: 12px;
    margin-left: 5px;
}

/* //SPINNER LOADER */

.share-page {
    color: #418CB4;
}

.forum_topic:hover {
    background: #f0ffd1;
}

.per_page {
    display: inline;
    width: 55px;
    padding: 5px;
}

#wiki-post h1 {
    font-size: 20px;
    font-weight: bold;
}

.mds .col-xs-1, .mds .col-sm-1, .mds .col-md-1, .mds .col-lg-1, .mds .col-xs-2, .mds .col-sm-2, .mds .col-md-2, .mds .col-lg-2, .mds .col-xs-3, .mds .col-sm-3, .mds .col-md-3, .mds .col-lg-3, .mds .col-xs-4, .mds .col-sm-4, .mds .col-md-4, .mds .col-lg-4, .mds .col-xs-5, .mds .col-sm-5, .mds .col-md-5, .mds .col-lg-5, .mds .col-xs-6, .mds .col-sm-6, .mds .col-md-6, .mds .col-lg-6, .mds .col-xs-7, .mds .col-sm-7, .mds .col-md-7, .mds .col-lg-7, .mds .col-xs-8, .mds .col-sm-8, .mds .col-md-8, .mds .col-lg-8, .mds .col-xs-9, .mds .col-sm-9, .mds .col-md-9, .mds .col-lg-9, .mds .col-xs-10, .mds .col-sm-10, .mds .col-md-10, .mds .col-lg-10, .mds .col-xs-11, .mds .col-sm-11, .mds .col-md-11, .mds .col-lg-11, .mds .col-xs-12, .mds .col-sm-12, .mds .col-md-12, .mds .col-lg-12 {
    padding-left: 15px;
    padding-right: 15px;
}

/*MDS styles*/
h2.mds {
    color: #5e5e5e;
    font-size: 25px;
    margin: 0 5px 20px 10px;
    border-bottom: 2px solid #418cb4;
    padding-bottom: 5px;
    padding-left: 10px;
}

h3.mds {
    color: #5e5e5e;
    font-size: 20px;
    margin: 0 0 20px;
    border-bottom: 2px solid #418cb4;
    padding-bottom: 5px;
    margin-top: 30px;
}

div.mds h4 {
    font-size: 20px;
}

h2.mds.green,
h3.mds.green {
    color: #287e65;
    border-bottom: 2px solid #287e65;
}

h2.mds a, h3.mds a, h2.mds a:hover, h3.mds a:hover  {
    color: inherit;
    font-weight: inherit;
}

div.winner-cup {
    background: url("/bitrix/templates/edu54_ru_new/images/winner_cup.png") no-repeat;
    position: absolute;
    width: 50px;
    height: 57px;
    background-size: cover;
    top: 0px;
    left: 2px;
}

/* Shutter Out Horizontal */
.hvr-shutter-out-horizontal {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px transparent;
    position: relative;
    background: #fff;
    -webkit-transition-property: color;
    transition-property: color;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.hvr-shutter-out-horizontal:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(65,138,178,0);
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}
.hvr-shutter-out-horizontal:hover, .hvr-shutter-out-horizontal:focus, .hvr-shutter-out-horizontal:active {
    color: white;
}
.hvr-shutter-out-horizontal:hover:before, .hvr-shutter-out-horizontal:focus:before, .hvr-shutter-out-horizontal:active:before {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    background-color: rgba(65,138,178,0.3);
    transition-duration: 0.3s;
}

.block-title a,
.block-title a:hover {
    color: inherit;
    font-weight: inherit;
    text-decoration: none;
}

.block-title-v3 {
    padding: 0 30px 20px 30px;
    color: #5e5e5e;
    font-family: FranklinGothicMedium;
    font-weight: normal;
    text-align: center;
    font-size: 22px;
    position: relative;
}

.block-title-v3 img {
    position: absolute;
    left: 15px;
}
/* End */


/* Start:/bitrix/templates/edu54_ru_new/template_styles.css?174065856518187*/
.fa, .fab, .fal, .far, .fas { /* FONT AWESOME FIX */
    line-height: inherit;
}

@font-face {
	font-family: AGCenturyOldStyle;
	src: url('/include/fonts/agcoscr.ttf');
}

@font-face {
	font-family: FranklinGothicMedium;
	src: url('/include/fonts/framd.ttf');
}

@media print {
	a::after {
		display: none;
	}
}

.ng-cloak {
	display: none;
}

body {
	min-width: 1056px;
	font-family: Helvetica, Arial;
	font-size: 16px;
	background: url('/include/test/05.png') fixed center;
}

a {
	color: #418CB4;
	font-weight: 600;
}

a:active {

}

a:focus, a:hover {
	text-decoration: none;
}

a:hover {
	border-bottom: 1px dotted #a9a9a9;
}

a:hover img {
	box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.flr {
    float: right;
}

.img-no-hover {
	box-shadow: none !important;
}

.title-logo a:hover, .title-logo a:focus {
	border-bottom: none;
}

.container {
	width: 1056px !important;
	max-width: none !important;
	box-shadow: 0 0 10px rgba(0,0,0,0.5);
	background: #fff;
}

.navbar-nav {
	font-family: Arial;
	font-size: 90%;
}

.navbar-nav li a {
	font-weight: normal;
	text-decoration: none;
}

.navbar-nav li a:hover {
	text-decoration: none;
	border-bottom: none;
}

.title-header {
	~height: 75px;
	margin-top: 5px;
}

.title-logo {
	padding-left: 43px;
	position: relative;
}

.title-logo-text {
	position: absolute;
	width: 700px;
	top: 30px;
	left: 190px;
	color: #246080;
	font-family: arial;
	font-size: 150%;
	text-align: center;
	line-height: 1;
}

.title-text {
	padding-top: 35px;
	padding-left: 78px;
}

.title-login {
	font-size: 90%;
	padding-top: 5px;
}

.title-login-button {
	padding-bottom: 5px;
}

.title-login-button a {
	font-weight: normal;
}

.hr-title {
	border: none;
	background: #418cb4;
	height: 2px;
	margin-top: 15px;
}

.main-menu-11 {background:#418cb4;}

.main-menu li {
    margin: 0 -2px;
}

.footer {background: #cfdde6;}

.footer-divider {
	background:#418cb4;
	height:20px;
}

.footer-menu {
	padding: 5px 0 0 20px;
	font-family: Arial;
	font-size: 90%;
}

.footer-menu a {
	color: #505052;
	font-weight: normal;
}

.footer-copyright {
	font-size: 80%;
	padding: 5px 5px;
}

.footer-copyright a {
	color: #000;
	border-bottom: 1px dotted;
	font-weight: normal;
}

.footer-counter {
	padding-left: 20px;
	padding-top: 10px;
}

.footer-copyright a:hover {
	color: #000;
	border-bottom: 1px solid;
	text-decoration:none;
}

.block-title, .block-title-mini, .block-title-mini-2, .block-title-v2 {
	color: #5e5e5e;
	font-size: 135%;
	padding: 20px 30px 0 30px;
	line-height: 0;
	margin-bottom: -15px;
	font-family: FranklinGothicMedium;
}

.block-title-v2 {
	margin-bottom: 20px;
	padding: 20px 0 0 30px;
	font-size: 18px;
	color: #287e65;
}

.block-title-v2 a {
	color: #5e5e5e;
	font-weight: normal;
}

.block-title-mini a {
	color: #5e5e5e;
	font-family: FranklinGothicMedium;
	font-weight: normal;
}

.block-title-minister {
	font-size: 125%;
}

.section-title {
	color: #5e5e5e;
	font-size: 135%;
	padding: 20px 20px 10px 20px;
	line-height: 0;
	margin-bottom: -15px;
}

.section-title-component {
	color: #5e5e5e;
	font-size: 135%;
	padding: 20px 10px 10px 10px;
	line-height: 0;
	margin-bottom: -15px;
}

.block-body {
	padding: 0 30px;
	min-height: 30px;
}

.block-body-padding {
	padding-top: 5px;
}

.block-title-mini {padding: 20px 30px 0 0;}

.block-title-mini-2 {padding: 20px 10px 10px 0;}

.block-body-mini {
	padding: 0 30px 0 0;
	min-height: 10px;
}

.sub-title {
	color: #418cb4;
	font: 120% arial;
	padding-left: 40px;
	padding-bottom: 15px;
	padding-top: 20px;
	font-family: FranklinGothicMedium;
}

.sub-title a {
	color: #418cb4;
	font-family: FranklinGothicMedium;
	font-weight: normal;
}

.sub-title-2 {
	color: #5e5e5e;
	font: 125%;
	font-weight: bold;
	padding-left: 20px;
	padding-bottom: 5px;
	padding-top: 5px;
}

.sub-title-2 a {
	color: #5e5e5e;
}

.sub-divider {
	margin-bottom: -10px;
}

.block-data {padding-left: 20px;}

.block-gerb {
	text-align: right;
	padding-top: 10px;
	padding-bottom: 20px;
}

.block-gerb-link {
	padding-top: 5px;
}

.block-gerb-link a {
	font-size: 110%;
	color: #505052;
	font-weight: bold;
}

.all-items-link {
	padding-top: 10px;
	padding-bottom: 20px;
	padding-right: 20px;
}

.all-items-link a {
	font-size: 90%;
	color: #505052;
	font-weight: normal;
}

.news-list-1 {
	padding-top: 10px;
}

.news-list-1-text {
	font-size: 85%;
	padding-left: 0;
}

.news-list-1-text a {
	color: #333333;
	font-weight: normal;
}

.news-list-1-date {
	color:#0c9ec9;
	font-size: 75%;
	padding-right: 0;
}

.news-list-3 {
	padding-bottom: 10px;
	position: relative;
}

.news-list-4 {
	padding-top: 10px;
}

.news-list-4-foto {padding: 0 0 10px 30px;}

.news-list-4-title {
	padding-top: 5px;
	padding-bottom: 5px;
	text-align: center;
	line-height: 1.2;
}

.news-list-4-title a {
	color: #505052;
	font-size: 90%;
	font-weight: normal;
}

.news-list-4-date {
	color:#b3b3b3;
	font-size: 75%;
	text-align: right;
}

.popup-title {
	position:absolute;
	top: 0;
	left: 8px;
	background: rgba(50,50,50,0.6);
	width: 175px;
	color: #fff;
	font-size: 85%;
	padding: 5px;
	font-weight: normal;
}

.main-news-title {
	padding: 10px 0 10px 20px;
	font-family: FranklinGothicMedium;
	line-height: 1.3;
}

.main-news-title a {
	font-size: 110%;
	color: #363636;
	font-weight: normal;
}

.main-news-announce {
	font-size: 90%;
	text-align: left;
	padding-left: 20px;
}

.main-loading {
	position:absolute;
	top:9px;
	left:20px;
}

.news-divider {margin: 5px 0;}

.filter-block {
	padding-left: 20px;
	padding-top: 20px;
	font-size: 90%;
}

.section-button a {
	font-size: 90% !important;
}

.filter-block-tags {
	padding-right: 20px;
}

.filter-block-tags select {
	font-size: 90%;
}

.filter-block-button {
	padding-top: 10px;
}

.main-quote-block-L, .main-quote-block-R {
	width: 300px;
	padding: 10px 20px 0 20px;
	font-size: 100%;
	font-weight: bold;
	color: #125A7C;
	line-height: 1.5;
}

.main-quote-block-L {
	float: left;
	padding-left: 0;
	text-align: right;
}

.main-quote-block-R {
	float: right;
	padding-right: 0;
	text-align: left;
}

.news-back-button {
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
}

.mini-news-title a {
	font-size: 85%;
	font-weight: normal;
	color: #505052;
}

.video-main-title {
	line-height: 1.2;
	padding-top: 5px;
}

.video-main-title a {
	color: #333333;
	font-size: 85%;
	font-weight: 500;
}

.video-player-url, .video-player-file {
	font-size: 80%;
	padding-top: 5px;
	padding-bottom: 5px;
}

.video-player-url a, .video-player-file a {
	font-weight: normal;
}

.video-player-file {
	padding-top: 0;
}

.main-mini-foto {
	padding-bottom: 5px;
}

.main-mini-foto-block {
	padding-top: 10px;
}

.main-mini-foto-first {
	padding-left: 14px;
}

.auth-mem-btn {
	width: 150px;
	margin: 5px 0;
}

.page-404 {
	font-size: 150%;
	text-align: center;
	padding: 50px 0;
	color: #555;
}

.main-news-list-button {
	color: #888;
	margin-top: 10px;
}

.main-news-list-button-group {
	width: 100%;
}

.minister-main-title {
	text-align: left;
	font-size: 100%;
	font-weight: normal;
	padding-left: 30px;
}

.minister-main-date {
	text-align: right;
	font-size: 100%;
	font-weight: bold;
	padding-right: 30px;
}

.minister-main-text {
	font-size: 90%;
	padding: 10px 30px;
}

.minister-title {
	font-size: 100%;
}

.minister-title a {
	color: #505059;
	font-size: 90%;
	font-weight: normal;
}

.minister-date {
	text-align: right;
	font-size: 100%;
	font-weight: bold;
	color: #0C9EC9;
}

.minister-back-button {
	text-align: right;
	padding: 30px;
}

.resource-list-subtitle {
	padding-top: 30px;
}

div.resources-list {
	padding-left: 10px;
}

.resource-list-link {
	font-size: 90%;
	padding-bottom: 10px;
}

.resource-list-link a {
	color: #505052;
}

.resource-list-tags {
	font-size: 75%;
}

.resource-list-tags a {
	font-weight: normal;
}

.main-text {
	font-size: 100%;
	padding: 10px 30px;
}

.main-text a {
	font-size: 100%;
	font-weight: normal;
}

.main-text li {
	font-size: 100%;
}

.main-text blockquote {
	border-left: none;
	font-size: 100%;
}

.video-preview-text {
	font-size: 80%;
}

.insert-file-link {
	padding-top: 10px;
}

.minobr-title {
	padding: 0 30px 0 30px;
	margin-bottom: -15px;
}

.minobr-title-1 {
	color: #5e5e5e;
	font-size: 135%;
	line-height: 1;
	font-family: FranklinGothicMedium;
	padding-left: 10px;
}

.minobr-title-2 {
	color: #6D6D6D;
	font-size: 110%;
	line-height: 1;
	font-family: FranklinGothicMedium;
	margin-bottom: -10px;
	padding-left: 10px;
}

.minobr-title-3 {
	color: #6D6D6D;
	font-size: 150%;
	line-height: 1;
	font-family: FranklinGothicMedium;
	padding: 5px 0 15px 0;
}

.minobr-title-hr {
	border: none;
	background: #418cb4;
	height: 2px;
	margin-top: 5px;
}

.minobr-title-button .active {
	background: #336f8f;
	color: #fff;
}

/*.minobr-title-button {*/
	/*position: absolute;*/
	/*top: 14px;*/
	/*left: 75px;*/
/*}*/

.minobr-title-btn {
	border-color: #336F8F !important;
}

.minobr-body {
	padding-left: 20px;
	padding-right: 20px;
}

.minobr-list-date {
	font-size: 80%;
	text-align: center;
	font-weight: bold;
}

.minobr-list-day {
	color: #009FD3;
	font-size: 125%;
	text-align: center;
}

.minobr-list-time {
	color: #009FD3;
	font-size: 130%;
	text-align: center;
}

.minobr-list-title {
	font-size: 80%;
	padding: 10px 10px;
}

.minobr-list-rubrika {
	font-size: 70%;
	text-align: center;
}

.minobr-list-go {

}

.minobr-list-go-btn {
	font-size: 175%;
	width: 50px;
	height: 75px;
	color:#418CB4;
}

.minobr-list-status {
	font-size: 80%;
	font-weight: bold;
	text-align: center;
	padding: 0;
}

.minobr-list-open {
	color: #18AE18;
}

.minobr-list-close {
	color: #f00;
}

.minobr-list-bg-on {
	background-color: #f9f9f9;
}

.minobr-day-panel {
	margin-left: 0px;
	margin-right: 0px;
	width: 195px;
	padding-left: 2px;
	padding-right: 2px;
}

.minobr-day-title {
	padding-top: 5px;
	margin-bottom: 5px;
	font-size: 120%;
	text-align: center;
	height: 40px;
}

.minobr-day-body {
}

.minobr-day-body-heading {
	padding: 5px;
	background-color: #418CB4 !important;
	color: #fff !important;
}

.minobr-day-body-time {
	text-align: center;
	font-size: 120%;
}

.minobr-day-body-period {
	text-align: center;
	font-size: 75%;
}

.minobr-day-body-title {
	font-size: 80%;
}

.minobr-day-body-title a {
	color: #363636;
}

.minobr-day-tem� {
	font-size: 75% !important;
}

.minobr-day-body-target {
	font-size: 80%;
	text-align: center;
}

.minobr-day-hr {
	margin-top: 5px;
	margin-bottom: 5px;
	border-color: #418CB4;
}

.minobr-view-alert-close, .minobr-view-alert-open {
	position: absolute;
	left: 0;
	top: 320px;
	margin-left: 10px;
	width: 600px;
	height: 50px;
	font-weight: bold;
	color: #fff;
	text-align: center;
}

.minobr-view-alert-close {
	background-color: rgba(255,0,0,0.75);
	font-size: 150%;
	padding-top: 5px;
}

.minobr-view-alert-open {
	background-color: rgba(0,190,0,0.75);
	font-size: 115%;
	padding-top: 11px;
}

.minobr-view-alert-open-test {
	width: 600px;
	height: 50px;
	font-weight: bold;
	color: #fff;
	text-align: center;
	background-color: rgba(0,190,0,1);
	font-size: 115%;
	padding-top: 11px;
}

.minobr-view-title {
	font-size: 110%;
	padding-top: 5px;
	padding-bottom: 10px;
	text-align: center;
}

.minobr-view-date {
	font-size: 80%;
	font-weight: bold;
	text-align: center;
	padding-top: 5px;
}

.minobr-view-rubrika {
	font-size: 80%;
	text-align: center;
}

.minobr-view-announce {
	font-size: 90%;
}

.minobr-view-comments {
	font-size: 80%;
	text-align: center;
}

.minobr-view-target {
	font-size: 80%;
	text-align: justify;
	padding-left: 40px;
}

.minobr-view-target a {
	color: #333;
}

.minobr-view-target-title {
	font-size: 90%;
	font-weight: bold;
}

.minobr-view-back-title {
	padding-top: 5px;
	padding-bottom: 10px;
}

.minobr-back-form-label {
	text-align: right;
	padding-top: 6px;
	font-weight: bold;
	font-size: 85%;
}

.minobr-back-row {
	margin-bottom: 15px;
}

.send-back-error-field {
	box-shadow: 0 0 5px rgba(255, 0, 0, 0.7);
}

.minobr-view-arch-title {
	font-size: 130%;
	font-weight: bold;
	padding-bottom: 15px;
	padding-top: 10px;
}

.minobr-view-arch-body {
	padding: 15px 5px;
}

.minobr-view-arch-name {
	line-height: 1;
}

.minobr-view-arch-name a {
	font-size: 90%;
	color: #333;
}

.minobr-view-arch-date {
	text-align: center;
	font-size: 75%;
	padding-top: 5px;
	color: #8A8F91;
}

.minobr-view-arch-show, .minobr-view-arch-counter {
	font-size: 70%;
	color: #8A8F91;
	padding-top: 5px;
}

.minobr-view-arch-show {
	text-align: right;
}

.minobr-view-arch-counter {
	text-align: left;
}

.minobr-view-arch-no-records {
	text-align: center;
	color: #333;
	font-weight: bold;
	font-size: 90%;
}

.main-img-button:hover {
	box-shadow: 0 0 5px rgba(2,2,2,0.3);
}

.minobr-archive-name a {
	font-size: 90%;
	text-align: center;
	color: #333;
	font-weight: bold;
}

.minobr-archive-name {
	text-align: center;
	padding-bottom: 20px;
}

.minobr-archive-count {
	font-size: 80%;
	padding-top: 5px;
	color: #A8AEB0;
}

.not-active-element {
	background: #e7e7e7;
}

.forum-body {
	padding-left: 20px;
	padding-right: 20px;
}

.video-in-text {
	padding-bottom: 20px;
}

.vote-result-title {
	font-size: 110%;
	font-weight: bold;
	padding-left: 10px;
}

.vote-result-parameters {
	font-size: 80%;
	padding-left: 20px;
}

.vote-alert {
	margin: 10px 10px 10px 0;
}

.banner-block {
	padding-left: 0;
	padding-right: 30px;
	text-align: center;
}

.banner-block-2 {
	padding: 10px 25px;
}

/*                            */

.der_comments .blog-add-comment {
	padding-bottom: 0;
}

.btn-xxs {
	padding: 1px 2px;
	font-size: 8px;
	line-height: 1.2;
	border-radius: 3px;
}

h2.mds.tgray {
	color: #1A1615;
	border-bottom: 8px solid #A9A9A9;
	padding-left: 0;
	padding-bottom: 10px;
}

.stgray {
	color: #4C4A4B;
	border-bottom: 2px solid #A9A9A9;
	padding-left: 0;
	padding-bottom: 5px;
}

.stgray a {
	color: #4C4A4B;
	rborder-bottom: 2px solid #A9A9A9;
	padding-left: 0;
	padding-bottom: 5px;
	font-weight: normal;
}

/* 0r
div.filesBlock div.ico {
    width: 60px;
    float: left;
    padding: 8px;
    margin-right: 16px;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(to top, #abb0b3, #e6e7e7);
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    color: #636465;
    box-shadow: 0 1px 5px black;
    transition: ease-in 0.2s;
}
div.filesBlock div.item {
    min-height: 55px;
    margin: 15px 0px;
}*/

div.RRRfilesBlock div.ico {
	font-size: 1.3rem;
    width: 53px;
    float: left;
    padding: 7px 8px;
    margin-right: 12px;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(to top, #abb0b3, #e6e7e7);
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    color: #636465;
    box-shadow: 0 1px 5px black;
    transition: ease-in 0.2s;
}

div.filesBlock div.ico {
	font-size: 1.1rem; /* font-size: 1.2rem; */
    width: 45px;
    float: left;
    padding: 4px 5px;
    margin-right: 12px;
    overflow: hidden;
    text-align: center;
    rbackground: linear-gradient(to top, #abb0b3, #e6e7e7);
	background: linear-gradient(to top, #dbdbdb, #e6e7e7);
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    color: #636465;
    rbox-shadow: 0 1px 5px black;
	rbox-shadow: 0px 1px 3px black;
	box-shadow: 0px 1px 2px #636465;
    transitionr: ease-in 0.2s;
}

div.item a:hover div.ico {
	color:#418CB4;
	box-shadow: 0px 1px 3px #418CB4;
	background: linear-gradient(to top, #e6e7e7, #e6e7e7);
}

div.filesBlock div.item {
    min-height: 30px;
	margin-top: 12px;
    /*margin: 3px 0px;*/
}

div.filesBlock div.filename {
    font-size: 1.4rem;
	line-height: 1.2;
}

.rect_link {
    background-color: #fcfcfc;
    color: #4e4e3f;
    position: relative;
    border: 1px solid #d6d6d6;
    border-bottom-width: 1px;
    border-bottom-width: 1px;
    border-bottom-width: 2px;
    margin: 0 .35rem .35rem 0;
    padding: 0 1rem;
    line-height: 2.7rem;
    height: 2.75rem;
    font-size: 1.5rem;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    rwidth: 24%;
}

.rect_link:hover {
	color: #418CB4;
    background-color: #f4f4f4;
    border-bottom: 2px solid #76a900;
    border-bottom: 2px solid #418CB4;
}

.file_ext {
    background-color: #fcfcfc;
    color: #4e4e3f;
    position: relative;
    border: 1px solid #d6d6d6;
    border-bottom-width: 1px;
    border-bottom-width: 1px;
    border-bottom-width: 2px;
    margin: 0 .35rem .35rem 0;
    padding: 0 1rem;
    line-height: 2.7rem;
    height: 2.75rem;
    font-size: 1.5rem;
    display: inline-block;
    overflow: hidden;
    text-overflow: ellipsis;
    rwidth: 24%;
}

.file_ext:hover {
	color: #418CB4;
    background-color: #f4f4f4;
    border-bottom: 2px solid #76a900;
    border-bottom: 2px solid #418CB4;
}

/* NEW MESSAGE BUTTONS http://edu54.ru/community/user/27692/blog/ */

.microblog-top-tabs-visible {
	position: relative;
}

/* FIX BITRIX CSS ORDER */

.feed-post-important-switch,
.feed-post-important-switch:before,
.feed-post-important-switch:after {
	background: url("/bitrix/templates/edu54_ru_new/components/bitrix/socialnetwork.log.ex/.default/images/log/live_feed_sprite_6.png?3") no-repeat 37px -1027px;
	cursor: pointer;
	height: 65px;
	position: absolute;
	right: 0;
	top: 0;
	width: 65px;
}

.feed-post-important-switch:before,
.feed-post-important-switch:after {
	background-position: -26px -1025px;
	content: '';
	opacity: 0;

	-webkit-transition: opacity 0.2s linear;
	transition: opacity 0.2s linear;
}

.feed-post-important-switch:hover:before {
	opacity: 1;
}

.feed-post-important-switch-active:after {
	background-position: -91px -1025px;
	opacity: 1;
}

.feed-post-important-switch-active:hover:before {
	opacity: 0;
}

/* FIX BITRIX CSS ORDER */

.dot_loader_dot {
    top: -2px;
    position: relative;
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: white;
    animation-name: fade;
    animation-duration: 0.8s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    display: inline-block;
    margin: 0 5px;
    opacity: 0;
}

.dot_loader_dot2 {
    animation-delay: 0.1s;
}

.dot_loader_dot3 {
    animation-delay: 0.2s;
}

@keyframes fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* End */


/* Start:/bitrix/templates/edu54_ru_new/fw/lightslider/css/lightslider.min.css?17406585685534*/
/*! lightslider - v1.1.3 - 2015-04-14
* https://github.com/sachinchoolur/lightslider
* Copyright (c) 2015 Sachin N; Licensed MIT */.lSSlideWrapper,.lSSlideWrapper .lSFade{position:relative}.lSSlideWrapper .lSSlide,.lSSlideWrapper.usingCss .lSFade>*{-webkit-transition-timing-function:inherit!important;transition-timing-function:inherit!important;-webkit-transition-duration:inherit!important;transition-duration:inherit!important}.lSSlideOuter,.lSSlideOuter .lSPager.lSGallery{-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;-webkit-touch-callout:none;-webkit-user-select:none}.lSSlideOuter .lSPager.lSGallery:after,.lSSlideWrapper>.lightSlider:after{clear:both}.lSSlideOuter{overflow:hidden;user-select:none}.lightSlider:after,.lightSlider:before{content:" ";display:table}.lightSlider{overflow:hidden;margin:0}.lSSlideWrapper{max-width:100%;overflow:hidden}.lSSlideWrapper .lSSlide{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);transform:translate(0,0);-webkit-transition:all 1s;-webkit-transition-property:-webkit-transform,height;-moz-transition-property:-moz-transform,height;transition-property:transform,height}.lSSlideWrapper .lSFade>*{position:absolute!important;top:0;left:0;z-index:9;margin-right:0;width:100%}.lSSlideWrapper.usingCss .lSFade>*{opacity:0;-webkit-transition-delay:0s;transition-delay:0s;-webkit-transition-property:opacity;transition-property:opacity}.lSSlideWrapper .lSFade>.active{z-index:10}.lSSlideWrapper.usingCss .lSFade>.active{opacity:1}.lSSlideOuter .lSPager.lSpg{margin:10px 0 0;padding:0;text-align:center}.lSSlideOuter .lSPager.lSpg>li{cursor:pointer;display:inline-block;padding:0 5px}.lSSlideOuter .lSPager.lSpg>li a{background-color:#222;border-radius:30px;display:inline-block;height:8px;overflow:hidden;text-indent:-999em;width:8px;position:relative;z-index:99;-webkit-transition:all .5s linear 0s;transition:all .5s linear 0s}.lSSlideOuter .lSPager.lSpg>li.active a,.lSSlideOuter .lSPager.lSpg>li:hover a{background-color:#428bca}.lSSlideOuter .media{opacity:.8}.lSSlideOuter .media.active{opacity:1}.lSSlideOuter .lSPager.lSGallery{list-style:none;padding-left:0;margin:0;overflow:hidden;transform:translate3d(0,0,0);-moz-transform:translate3d(0,0,0);-ms-transform:translate3d(0,0,0);-webkit-transform:translate3d(0,0,0);-o-transform:translate3d(0,0,0);-webkit-transition-property:-webkit-transform;-moz-transition-property:-moz-transform;user-select:none}.lSSlideOuter .lSPager.lSGallery li{overflow:hidden;-webkit-transition:border-radius .12s linear 0s .35s linear 0s;transition:border-radius .12s linear 0s .35s linear 0s}.lSSlideOuter .lSPager.lSGallery li.active,.lSSlideOuter .lSPager.lSGallery li:hover{border-radius:5px}.lSSlideOuter .lSPager.lSGallery img{display:block;height:auto;max-width:100%}.lSSlideOuter .lSPager.lSGallery:after,.lSSlideOuter .lSPager.lSGallery:before{content:" ";display:table}.lSAction>a{width:32px;display:block;top:50%;height:32px;background-image:url(/bitrix/templates/edu54_ru_new/fw/lightslider/css/../img/controls.png);cursor:pointer;position:absolute;z-index:99;margin-top:-16px;opacity:.5;-webkit-transition:opacity .35s linear 0s;transition:opacity .35s linear 0s}.lSAction>a:hover{opacity:1}.lSAction>.lSPrev{background-position:0 0;left:10px}.lSAction>.lSNext{background-position:-32px 0;right:10px}.lSAction>a.disabled{pointer-events:none}.cS-hidden{height:1px;opacity:0;filter:alpha(opacity=0);overflow:hidden}.lSSlideOuter.vertical{position:relative}.lSSlideOuter.vertical.noPager{padding-right:0!important}.lSSlideOuter.vertical .lSGallery{position:absolute!important;right:0;top:0}.lSSlideOuter.vertical .lightSlider>*{width:100%!important;max-width:none!important}.lSSlideOuter.vertical .lSAction>a{left:50%;margin-left:-14px;margin-top:0}.lSSlideOuter.vertical .lSAction>.lSNext{background-position:31px -31px;bottom:10px;top:auto}.lSSlideOuter.vertical .lSAction>.lSPrev{background-position:0 -31px;bottom:auto;top:10px}.lSSlideOuter.lSrtl{direction:rtl}.lSSlideOuter .lSPager,.lSSlideOuter .lightSlider{padding-left:0;list-style:none}.lSSlideOuter.lSrtl .lSPager,.lSSlideOuter.lSrtl .lightSlider{padding-right:0}.lSSlideOuter .lSGallery li,.lSSlideOuter .lightSlider>*{float:left}.lSSlideOuter.lSrtl .lSGallery li,.lSSlideOuter.lSrtl .lightSlider>*{float:right!important}@-webkit-keyframes rightEnd{0%,100%{left:0}50%{left:-15px}}@keyframes rightEnd{0%,100%{left:0}50%{left:-15px}}@-webkit-keyframes topEnd{0%,100%{top:0}50%{top:-15px}}@keyframes topEnd{0%,100%{top:0}50%{top:-15px}}@-webkit-keyframes leftEnd{0%,100%{left:0}50%{left:15px}}@keyframes leftEnd{0%,100%{left:0}50%{left:15px}}@-webkit-keyframes bottomEnd{0%,100%{bottom:0}50%{bottom:-15px}}@keyframes bottomEnd{0%,100%{bottom:0}50%{bottom:-15px}}.lSSlideOuter .rightEnd{-webkit-animation:rightEnd .3s;animation:rightEnd .3s;position:relative}.lSSlideOuter .leftEnd{-webkit-animation:leftEnd .3s;animation:leftEnd .3s;position:relative}.lSSlideOuter.vertical .rightEnd{-webkit-animation:topEnd .3s;animation:topEnd .3s;position:relative}.lSSlideOuter.vertical .leftEnd{-webkit-animation:bottomEnd .3s;animation:bottomEnd .3s;position:relative}.lSSlideOuter.lSrtl .rightEnd{-webkit-animation:leftEnd .3s;animation:leftEnd .3s;position:relative}.lSSlideOuter.lSrtl .leftEnd{-webkit-animation:rightEnd .3s;animation:rightEnd .3s;position:relative}.lightSlider.lsGrab>*{cursor:-webkit-grab;cursor:-moz-grab;cursor:-o-grab;cursor:-ms-grab;cursor:grab}.lightSlider.lsGrabbing>*{cursor:move;cursor:-webkit-grabbing;cursor:-moz-grabbing;cursor:-o-grabbing;cursor:-ms-grabbing;cursor:grabbing}
/* End */
/* /local/resources/css/animate.css?174065858323848 */
/* /local/resources/arctic_modal/jquery.arcticmodal-0.3.css?1740658583647 */
/* /local/resources/arctic_modal/simple.css?1740658583410 */
/* /bitrix/templates/edu54_ru_new/components/bitrix/menu/main_horizontal_multilevel/style.css?17406585661367 */
/* /bitrix/templates/edu54_ru_new/components/bitrix/menu/footer-menu/style.css?1740658566217 */
/* /local/components/dlay/cookienotice/templates/.default/style.css?17406585811420 */
/* /local/components/oblcit/auth.modal/templates/.default/style.css?17406585824843 */
/* /bitrix/templates/edu54_ru_new/styles.css?17406585656082 */
/* /bitrix/templates/edu54_ru_new/template_styles.css?174065856518187 */
/* /bitrix/templates/edu54_ru_new/fw/lightslider/css/lightslider.min.css?17406585685534 */
