@charset "UTF-8";
@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -webkit-transform: translateY(0)
    }
    40% {
        -webkit-transform: translateY(-15px)
    }
    60% {
        -webkit-transform: translateY(-7.5px)
    }
}

@-moz-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -moz-transform: translateY(0)
    }
    40% {
        -moz-transform: translateY(-15px)
    }
    60% {
        -moz-transform: translateY(-7.5px)
    }
}

@-o-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        -o-transform: translateY(0)
    }
    40% {
        -o-transform: translateY(-15px)
    }
    60% {
        -o-transform: translateY(-7.5px)
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0)
    }
    40% {
        transform: translateY(-15px)
    }
    60% {
        transform: translateY(-7.5px)
    }
}

.bounce {
    -webkit-animation-name: bounce;
    -moz-animation-name: bounce;
    -o-animation-name: bounce;
    animation-name: bounce
}

@-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;
    -o-animation-name: flash;
    animation-name: flash
}

@-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;
    -o-animation-name: pulse;
    animation-name: pulse
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.05)
    }
    70% {
        -webkit-transform: scale(.9)
    }
    100% {
        -webkit-transform: scale(1)
    }
}

@-moz-keyframes bounceIn {
    0% {
        opacity: 0;
        -moz-transform: scale(.3)
    }
    50% {
        opacity: 1;
        -moz-transform: scale(1.05)
    }
    70% {
        -moz-transform: scale(.9)
    }
    100% {
        -moz-transform: scale(1)
    }
}

@-o-keyframes bounceIn {
    0% {
        opacity: 0;
        -o-transform: scale(.3)
    }
    50% {
        opacity: 1;
        -o-transform: scale(1.05)
    }
    70% {
        -o-transform: scale(.9)
    }
    100% {
        -o-transform: scale(1)
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(.3)
    }
    50% {
        opacity: 1;
        transform: scale(1.05)
    }
    70% {
        transform: scale(.9)
    }
    100% {
        transform: scale(1)
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    -moz-animation-name: bounceIn;
    -o-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(15px)
    }
    80% {
        -webkit-transform: translateX(-5px)
    }
    100% {
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -moz-transform: translateX(-100px)
    }
    60% {
        opacity: 1;
        -moz-transform: translateX(15px)
    }
    80% {
        -moz-transform: translateX(-5px)
    }
    100% {
        -moz-transform: translateX(0)
    }
}

@-o-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -o-transform: translateX(-100px)
    }
    60% {
        opacity: 1;
        -o-transform: translateX(15px)
    }
    80% {
        -o-transform: translateX(-5px)
    }
    100% {
        -o-transform: translateX(0)
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-100px)
    }
    60% {
        opacity: 1;
        transform: translateX(15px)
    }
    80% {
        transform: translateX(-5px)
    }
    100% {
        transform: translateX(0)
    }
}

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

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-15px)
    }
    80% {
        -webkit-transform: translateX(5px)
    }
    100% {
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes bounceInRight {
    0% {
        opacity: 0;
        -moz-transform: translateX(100px)
    }
    60% {
        opacity: 1;
        -moz-transform: translateX(-15px)
    }
    80% {
        -moz-transform: translateX(5px)
    }
    100% {
        -moz-transform: translateX(0)
    }
}

@-o-keyframes bounceInRight {
    0% {
        opacity: 0;
        -o-transform: translateX(100px)
    }
    60% {
        opacity: 1;
        -o-transform: translateX(-15px)
    }
    80% {
        -o-transform: translateX(5px)
    }
    100% {
        -o-transform: translateX(0)
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(100px)
    }
    60% {
        opacity: 1;
        transform: translateX(-15px)
    }
    80% {
        transform: translateX(5px)
    }
    100% {
        transform: translateX(0)
    }
}

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

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(-15px)
    }
    80% {
        -webkit-transform: translateY(5px)
    }
    100% {
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes bounceInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(100px)
    }
    60% {
        opacity: 1;
        -moz-transform: translateY(-15px)
    }
    80% {
        -moz-transform: translateY(5px)
    }
    100% {
        -moz-transform: translateY(0)
    }
}

@-o-keyframes bounceInUp {
    0% {
        opacity: 0;
        -o-transform: translateY(100px)
    }
    60% {
        opacity: 1;
        -o-transform: translateY(-15px)
    }
    80% {
        -o-transform: translateY(5px)
    }
    100% {
        -o-transform: translateY(0)
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(100px)
    }
    60% {
        opacity: 1;
        transform: translateY(-15px)
    }
    80% {
        transform: translateY(5px)
    }
    100% {
        transform: translateY(0)
    }
}

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

@-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;
    -o-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-10px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-10px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

@-o-keyframes fadeInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(-10px)
    }
    100% {
        opacity: 1;
        -o-transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-10px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

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

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -moz-transform: translateY(-100px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

@-o-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -o-transform: translateY(-100px)
    }
    100% {
        opacity: 1;
        -o-transform: translateY(0)
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translateY(-100px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

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

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-10px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -moz-transform: translateX(-10px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0)
    }
}

@-o-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -o-transform: translateX(-10px)
    }
    100% {
        opacity: 1;
        -o-transform: translateX(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-10px)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

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

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(10px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(10px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

@-o-keyframes fadeInUp {
    0% {
        opacity: 0;
        -o-transform: translateY(10px)
    }
    100% {
        opacity: 1;
        -o-transform: translateY(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(10px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

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

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(100px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -moz-transform: translateY(100px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

@-o-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -o-transform: translateY(100px)
    }
    100% {
        opacity: 1;
        -o-transform: translateY(0)
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translateY(100px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

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

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

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

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

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

.zoomIn {
    -webkit-animation-name: "zoomIn";
    -moz-animation-name: "zoomIn";
    -o-animation-name: "zoomIn";
    animation-name: "zoomIn"
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@-moz-keyframes zoomInDown {
    0% {
        opacity: 0;
        -moz-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -moz-animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -moz-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -moz-animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@-o-keyframes zoomInDown {
    0% {
        opacity: 0;
        -o-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -o-animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -o-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -o-animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInDown {
    -webkit-animation-name: "zoomInDown";
    -moz-animation-name: "zoomInDown";
    -o-animation-name: "zoomInDown";
    animation-name: "zoomInDown"
}

/*!* Font Awesome 4.3.0 by @davegandy - http://fontawesome.io - @fontawesome
* License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)*/
@font-face {
    font-family: fontawesome;
    src: url(/fonts/font-awesome/fontawesome-webfont.eot);
    src: url(/fonts/font-awesome/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(/fonts/font-awesome/fontawesome-webfont.woff2) format("woff2"), url(/fonts/font-awesome/fontawesome-webfont.woff) format("woff"), url(/fonts/font-awesome/fontawesome-webfont.ttf) format("truetype"), url(/fonts/font-awesome/fontawesome-webfont.svg#fontawesomeregular) format("svg");
    font-weight: 400;
    font-style: normal
}

.icon {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0)
}

.icon-lg {
    font-size: 1.33333em;
    line-height: .75em;
    vertical-align: -15%
}

.icon-2x {
    font-size: 2em
}

.icon-3x {
    font-size: 3em
}

.icon-4x {
    font-size: 4em
}

.icon-5x {
    font-size: 5em
}

.icon-fw {
    width: 1.28571em;
    text-align: center
}

.icon-ul {
    padding-left: 0;
    margin-left: 2.14286em;
    list-style-type: none
}

.icon-ul > li {
    position: relative
}

.icon-li {
    position: absolute;
    left: -2.14286em;
    width: 2.14286em;
    top: .14286em;
    text-align: center
}

.icon-li.icon-lg {
    left: -1.85714em
}

.icon-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.icon.pull-left {
    margin-right: .3em
}

.icon.pull-right {
    margin-left: .3em
}

.icon-spin, .call-me-back-form .btn-submit.loading::before, .contact-form .btn-submit.loading::before, .nostage-contact-form .btn-submit.loading::before, .meeting-contact-form .btn-submit.loading::before {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.icon-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.icon-rotate-90 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.icon-rotate-180 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.icon-rotate-270 {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.icon-flip-horizontal {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.icon-flip-vertical {
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1)
}

:root .icon-rotate-90, :root .icon-rotate-180, :root .icon-rotate-270, :root .icon-flip-horizontal, :root .icon-flip-vertical {
    filter: none
}

.icon-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.icon-stack-1x, .icon-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.icon-stack-1x {
    line-height: inherit
}

.icon-stack-2x {
    font-size: 2em
}

.icon-inverse {
    color: #fff
}

.icon-glass:before {
    content: ""
}

.icon-music:before {
    content: ""
}

.icon-search:before {
    content: ""
}

.icon-envelope-o:before {
    content: ""
}

.icon-heart:before {
    content: ""
}

.icon-star:before {
    content: ""
}

.icon-star-o:before {
    content: ""
}

.icon-user:before {
    content: ""
}

.icon-film:before {
    content: ""
}

.icon-th-large:before {
    content: ""
}

.icon-th:before {
    content: ""
}

.icon-th-list:before {
    content: ""
}

.icon-check:before {
    content: ""
}

.icon-remove:before, .icon-close:before, .icon-times:before {
    content: ""
}

.icon-search-plus:before {
    content: ""
}

.icon-search-minus:before {
    content: ""
}

.icon-power-off:before {
    content: ""
}

.icon-signal:before {
    content: ""
}

.icon-gear:before, .icon-cog:before {
    content: ""
}

.icon-trash-o:before {
    content: ""
}

.icon-home:before {
    content: ""
}

.icon-file-o:before {
    content: ""
}

.icon-clock-o:before {
    content: ""
}

.icon-road:before {
    content: ""
}

.icon-download:before {
    content: ""
}

.icon-arrow-circle-o-down:before {
    content: ""
}

.icon-arrow-circle-o-up:before {
    content: ""
}

.icon-inbox:before {
    content: ""
}

.icon-play-circle-o:before {
    content: ""
}

.icon-rotate-right:before, .icon-repeat:before {
    content: ""
}

.icon-refresh:before {
    content: ""
}

.icon-list-alt:before {
    content: ""
}

.icon-lock:before {
    content: ""
}

.icon-flag:before {
    content: ""
}

.icon-headphones:before {
    content: ""
}

.icon-volume-off:before {
    content: ""
}

.icon-volume-down:before {
    content: ""
}

.icon-volume-up:before {
    content: ""
}

.icon-qrcode:before {
    content: ""
}

.icon-barcode:before {
    content: ""
}

.icon-tag:before {
    content: ""
}

.icon-tags:before {
    content: ""
}

.icon-book:before {
    content: ""
}

.icon-bookmark:before {
    content: ""
}

.icon-print:before {
    content: ""
}

.icon-camera:before {
    content: ""
}

.icon-font:before {
    content: ""
}

.icon-bold:before {
    content: ""
}

.icon-italic:before {
    content: ""
}

.icon-text-height:before {
    content: ""
}

.icon-text-width:before {
    content: ""
}

.icon-align-left:before {
    content: ""
}

.icon-align-center:before {
    content: ""
}

.icon-align-right:before {
    content: ""
}

.icon-align-justify:before {
    content: ""
}

.icon-list:before {
    content: ""
}

.icon-dedent:before, .icon-outdent:before {
    content: ""
}

.icon-indent:before {
    content: ""
}

.icon-video-camera:before {
    content: ""
}

.icon-photo:before, .icon-image:before, .icon-picture-o:before {
    content: ""
}

.icon-pencil:before {
    content: ""
}

.icon-map-marker:before {
    content: ""
}

.icon-adjust:before {
    content: ""
}

.icon-tint:before {
    content: ""
}

.icon-edit:before, .icon-pencil-square-o:before {
    content: ""
}

.icon-share-square-o:before {
    content: ""
}

.icon-check-square-o:before {
    content: ""
}

.icon-arrows:before {
    content: ""
}

.icon-step-backward:before {
    content: ""
}

.icon-fast-backward:before {
    content: ""
}

.icon-backward:before {
    content: ""
}

.icon-play:before {
    content: ""
}

.icon-pause:before {
    content: ""
}

.icon-stop:before {
    content: ""
}

.icon-forward:before {
    content: ""
}

.icon-fast-forward:before {
    content: ""
}

.icon-step-forward:before {
    content: ""
}

.icon-eject:before {
    content: ""
}

.icon-chevron-left:before {
    content: ""
}

.icon-chevron-right:before {
    content: ""
}

.icon-plus-circle:before {
    content: ""
}

.icon-minus-circle:before {
    content: ""
}

.icon-times-circle:before {
    content: ""
}

.icon-check-circle:before {
    content: ""
}

.icon-question-circle:before {
    content: ""
}

.icon-info-circle:before {
    content: ""
}

.icon-crosshairs:before {
    content: ""
}

.icon-times-circle-o:before {
    content: ""
}

.icon-check-circle-o:before {
    content: ""
}

.icon-ban:before {
    content: ""
}

.icon-arrow-left:before {
    content: ""
}

.icon-arrow-right:before {
    content: ""
}

.icon-arrow-up:before {
    content: ""
}

.icon-arrow-down:before {
    content: ""
}

.icon-mail-forward:before, .icon-share:before {
    content: ""
}

.icon-expand:before {
    content: ""
}

.icon-compress:before {
    content: ""
}

.icon-plus:before {
    content: ""
}

.icon-minus:before {
    content: ""
}

.icon-asterisk:before {
    content: ""
}

.icon-exclamation-circle:before {
    content: ""
}

.icon-gift:before {
    content: ""
}

.icon-leaf:before {
    content: ""
}

.icon-fire:before {
    content: ""
}

.icon-eye:before {
    content: ""
}

.icon-eye-slash:before {
    content: ""
}

.icon-warning:before, .icon-exclamation-triangle:before {
    content: ""
}

.icon-plane:before {
    content: ""
}

.icon-calendar:before {
    content: ""
}

.icon-random:before {
    content: ""
}

.icon-comment:before {
    content: ""
}

.icon-magnet:before {
    content: ""
}

.icon-chevron-up:before {
    content: ""
}

.icon-chevron-down:before {
    content: ""
}

.icon-retweet:before {
    content: ""
}

.icon-shopping-cart:before {
    content: ""
}

.icon-folder:before {
    content: ""
}

.icon-folder-open:before {
    content: ""
}

.icon-arrows-v:before {
    content: ""
}

.icon-arrows-h:before {
    content: ""
}

.icon-bar-chart-o:before, .icon-bar-chart:before {
    content: ""
}

.icon-twitter-square:before {
    content: ""
}

.icon-facebook-square:before {
    content: ""
}

.icon-camera-retro:before {
    content: ""
}

.icon-key:before {
    content: ""
}

.icon-gears:before, .icon-cogs:before {
    content: ""
}

.icon-comments:before {
    content: ""
}

.icon-thumbs-o-up:before {
    content: ""
}

.icon-thumbs-o-down:before {
    content: ""
}

.icon-star-half:before {
    content: ""
}

.icon-heart-o:before {
    content: ""
}

.icon-sign-out:before {
    content: ""
}

.icon-linkedin-square:before {
    content: ""
}

.icon-thumb-tack:before {
    content: ""
}

.icon-external-link:before {
    content: ""
}

.icon-sign-in:before {
    content: ""
}

.icon-trophy:before {
    content: ""
}

.icon-github-square:before {
    content: ""
}

.icon-upload:before {
    content: ""
}

.icon-lemon-o:before {
    content: ""
}

.icon-phone:before {
    content: ""
}

.icon-square-o:before {
    content: ""
}

.icon-bookmark-o:before {
    content: ""
}

.icon-phone-square:before {
    content: ""
}

.icon-twitter:before {
    content: ""
}

.icon-facebook-f:before, .icon-facebook:before {
    content: ""
}

.icon-github:before {
    content: ""
}

.icon-unlock:before {
    content: ""
}

.icon-credit-card:before {
    content: ""
}

.icon-rss:before {
    content: ""
}

.icon-hdd-o:before {
    content: ""
}

.icon-bullhorn:before {
    content: ""
}

.icon-bell:before {
    content: ""
}

.icon-certificate:before {
    content: ""
}

.icon-hand-o-right:before {
    content: ""
}

.icon-hand-o-left:before {
    content: ""
}

.icon-hand-o-up:before {
    content: ""
}

.icon-hand-o-down:before {
    content: ""
}

.icon-arrow-circle-left:before {
    content: ""
}

.icon-arrow-circle-right:before {
    content: ""
}

.icon-arrow-circle-up:before {
    content: ""
}

.icon-arrow-circle-down:before {
    content: ""
}

.icon-globe:before {
    content: ""
}

.icon-wrench:before {
    content: ""
}

.icon-tasks:before {
    content: ""
}

.icon-filter:before {
    content: ""
}

.icon-briefcase:before {
    content: ""
}

.icon-arrows-alt:before {
    content: ""
}

.icon-group:before, .icon-users:before {
    content: ""
}

.icon-chain:before, .icon-link:before {
    content: ""
}

.icon-cloud:before {
    content: ""
}

.icon-flask:before {
    content: ""
}

.icon-cut:before, .icon-scissors:before {
    content: ""
}

.icon-copy:before, .icon-files-o:before {
    content: ""
}

.icon-paperclip:before {
    content: ""
}

.icon-save:before, .icon-floppy-o:before {
    content: ""
}

.icon-square:before {
    content: ""
}

.icon-navicon:before, .icon-reorder:before, .icon-bars:before {
    content: ""
}

.icon-list-ul:before {
    content: ""
}

.icon-list-ol:before {
    content: ""
}

.icon-strikethrough:before {
    content: ""
}

.icon-underline:before {
    content: ""
}

.icon-table:before {
    content: ""
}

.icon-magic:before {
    content: ""
}

.icon-truck:before {
    content: ""
}

.icon-pinterest:before {
    content: ""
}

.icon-pinterest-square:before {
    content: ""
}

.icon-google-plus-square:before {
    content: ""
}

.icon-google-plus:before {
    content: ""
}

.icon-money:before {
    content: ""
}

.icon-caret-down:before {
    content: ""
}

.icon-caret-up:before {
    content: ""
}

.icon-caret-left:before {
    content: ""
}

.icon-caret-right:before {
    content: ""
}

.icon-columns:before {
    content: ""
}

.icon-unsorted:before, .icon-sort:before {
    content: ""
}

.icon-sort-down:before, .icon-sort-desc:before {
    content: ""
}

.icon-sort-up:before, .icon-sort-asc:before {
    content: ""
}

.icon-envelope:before {
    content: ""
}

.icon-linkedin:before {
    content: ""
}

.icon-rotate-left:before, .icon-undo:before {
    content: ""
}

.icon-legal:before, .icon-gavel:before {
    content: ""
}

.icon-dashboard:before, .icon-tachometer:before {
    content: ""
}

.icon-comment-o:before {
    content: ""
}

.icon-comments-o:before {
    content: ""
}

.icon-flash:before, .icon-bolt:before {
    content: ""
}

.icon-sitemap:before {
    content: ""
}

.icon-umbrella:before {
    content: ""
}

.icon-paste:before, .icon-clipboard:before {
    content: ""
}

.icon-lightbulb-o:before {
    content: ""
}

.icon-exchange:before {
    content: ""
}

.icon-cloud-download:before {
    content: ""
}

.icon-cloud-upload:before {
    content: ""
}

.icon-user-md:before {
    content: ""
}

.icon-stethoscope:before {
    content: ""
}

.icon-suitcase:before {
    content: ""
}

.icon-bell-o:before {
    content: ""
}

.icon-coffee:before {
    content: ""
}

.icon-cutlery:before {
    content: ""
}

.icon-file-text-o:before {
    content: ""
}

.icon-building-o:before {
    content: ""
}

.icon-hospital-o:before {
    content: ""
}

.icon-ambulance:before {
    content: ""
}

.icon-medkit:before {
    content: ""
}

.icon-fighter-jet:before {
    content: ""
}

.icon-beer:before {
    content: ""
}

.icon-h-square:before {
    content: ""
}

.icon-plus-square:before {
    content: ""
}

.icon-angle-double-left:before {
    content: ""
}

.icon-angle-double-right:before {
    content: ""
}

.icon-angle-double-up:before {
    content: ""
}

.icon-angle-double-down:before {
    content: ""
}

.icon-angle-left:before {
    content: ""
}

.icon-angle-right:before {
    content: ""
}

.icon-angle-up:before {
    content: ""
}

.icon-angle-down:before {
    content: ""
}

.icon-desktop:before {
    content: ""
}

.icon-laptop:before {
    content: ""
}

.icon-tablet:before {
    content: ""
}

.icon-mobile-phone:before, .icon-mobile:before {
    content: ""
}

.icon-circle-o:before {
    content: ""
}

.icon-quote-left:before {
    content: ""
}

.icon-quote-right:before {
    content: ""
}

.icon-spinner:before {
    content: ""
}

.icon-circle:before {
    content: ""
}

.icon-mail-reply:before, .icon-reply:before {
    content: ""
}

.icon-github-alt:before {
    content: ""
}

.icon-folder-o:before {
    content: ""
}

.icon-folder-open-o:before {
    content: ""
}

.icon-smile-o:before {
    content: ""
}

.icon-frown-o:before {
    content: ""
}

.icon-meh-o:before {
    content: ""
}

.icon-gamepad:before {
    content: ""
}

.icon-keyboard-o:before {
    content: ""
}

.icon-flag-o:before {
    content: ""
}

.icon-flag-checkered:before {
    content: ""
}

.icon-terminal:before {
    content: ""
}

.icon-code:before {
    content: ""
}

.icon-mail-reply-all:before, .icon-reply-all:before {
    content: ""
}

.icon-star-half-empty:before, .icon-star-half-full:before, .icon-star-half-o:before {
    content: ""
}

.icon-location-arrow:before {
    content: ""
}

.icon-crop:before {
    content: ""
}

.icon-code-fork:before {
    content: ""
}

.icon-unlink:before, .icon-chain-broken:before {
    content: ""
}

.icon-question:before {
    content: ""
}

.icon-info:before {
    content: ""
}

.icon-exclamation:before {
    content: ""
}

.icon-superscript:before {
    content: ""
}

.icon-subscript:before {
    content: ""
}

.icon-eraser:before {
    content: ""
}

.icon-puzzle-piece:before {
    content: ""
}

.icon-microphone:before {
    content: ""
}

.icon-microphone-slash:before {
    content: ""
}

.icon-shield:before {
    content: ""
}

.icon-calendar-o:before {
    content: ""
}

.icon-fire-extinguisher:before {
    content: ""
}

.icon-rocket:before {
    content: ""
}

.icon-maxcdn:before {
    content: ""
}

.icon-chevron-circle-left:before {
    content: ""
}

.icon-chevron-circle-right:before {
    content: ""
}

.icon-chevron-circle-up:before {
    content: ""
}

.icon-chevron-circle-down:before {
    content: ""
}

.icon-html5:before {
    content: ""
}

.icon-css3:before {
    content: ""
}

.icon-anchor:before {
    content: ""
}

.icon-unlock-alt:before {
    content: ""
}

.icon-bullseye:before {
    content: ""
}

.icon-ellipsis-h:before {
    content: ""
}

.icon-ellipsis-v:before {
    content: ""
}

.icon-rss-square:before {
    content: ""
}

.icon-play-circle:before {
    content: ""
}

.icon-ticket:before {
    content: ""
}

.icon-minus-square:before {
    content: ""
}

.icon-minus-square-o:before {
    content: ""
}

.icon-level-up:before {
    content: ""
}

.icon-level-down:before {
    content: ""
}

.icon-check-square:before {
    content: ""
}

.icon-pencil-square:before {
    content: ""
}

.icon-external-link-square:before {
    content: ""
}

.icon-share-square:before {
    content: ""
}

.icon-compass:before {
    content: ""
}

.icon-toggle-down:before, .icon-caret-square-o-down:before {
    content: ""
}

.icon-toggle-up:before, .icon-caret-square-o-up:before {
    content: ""
}

.icon-toggle-right:before, .icon-caret-square-o-right:before {
    content: ""
}

.icon-euro:before, .icon-eur:before {
    content: ""
}

.icon-gbp:before {
    content: ""
}

.icon-dollar:before, .icon-usd:before {
    content: ""
}

.icon-rupee:before, .icon-inr:before {
    content: ""
}

.icon-cny:before, .icon-rmb:before, .icon-yen:before, .icon-jpy:before {
    content: ""
}

.icon-ruble:before, .icon-rouble:before, .icon-rub:before {
    content: ""
}

.icon-won:before, .icon-krw:before {
    content: ""
}

.icon-bitcoin:before, .icon-btc:before {
    content: ""
}

.icon-file:before {
    content: ""
}

.icon-file-text:before {
    content: ""
}

.icon-sort-alpha-asc:before {
    content: ""
}

.icon-sort-alpha-desc:before {
    content: ""
}

.icon-sort-amount-asc:before {
    content: ""
}

.icon-sort-amount-desc:before {
    content: ""
}

.icon-sort-numeric-asc:before {
    content: ""
}

.icon-sort-numeric-desc:before {
    content: ""
}

.icon-thumbs-up:before {
    content: ""
}

.icon-thumbs-down:before {
    content: ""
}

.icon-youtube-square:before {
    content: ""
}

.icon-youtube:before {
    content: ""
}

.icon-xing:before {
    content: ""
}

.icon-xing-square:before {
    content: ""
}

.icon-youtube-play:before {
    content: ""
}

.icon-dropbox:before {
    content: ""
}

.icon-stack-overflow:before {
    content: ""
}

.icon-instagram:before {
    content: ""
}

.icon-flickr:before {
    content: ""
}

.icon-adn:before {
    content: ""
}

.icon-bitbucket:before {
    content: ""
}

.icon-bitbucket-square:before {
    content: ""
}

.icon-tumblr:before {
    content: ""
}

.icon-tumblr-square:before {
    content: ""
}

.icon-long-arrow-down:before {
    content: ""
}

.icon-long-arrow-up:before {
    content: ""
}

.icon-long-arrow-left:before {
    content: ""
}

.icon-long-arrow-right:before {
    content: ""
}

.icon-apple:before {
    content: ""
}

.icon-windows:before {
    content: ""
}

.icon-android:before {
    content: ""
}

.icon-linux:before {
    content: ""
}

.icon-dribbble:before {
    content: ""
}

.icon-skype:before {
    content: ""
}

.icon-foursquare:before {
    content: ""
}

.icon-trello:before {
    content: ""
}

.icon-female:before {
    content: ""
}

.icon-male:before {
    content: ""
}

.icon-gittip:before, .icon-gratipay:before {
    content: ""
}

.icon-sun-o:before {
    content: ""
}

.icon-moon-o:before {
    content: ""
}

.icon-archive:before {
    content: ""
}

.icon-bug:before {
    content: ""
}

.icon-vk:before {
    content: ""
}

.icon-weibo:before {
    content: ""
}

.icon-renren:before {
    content: ""
}

.icon-pagelines:before {
    content: ""
}

.icon-stack-exchange:before {
    content: ""
}

.icon-arrow-circle-o-right:before {
    content: ""
}

.icon-arrow-circle-o-left:before {
    content: ""
}

.icon-toggle-left:before, .icon-caret-square-o-left:before {
    content: ""
}

.icon-dot-circle-o:before {
    content: ""
}

.icon-wheelchair:before {
    content: ""
}

.icon-vimeo-square:before {
    content: ""
}

.icon-turkish-lira:before, .icon-try:before {
    content: ""
}

.icon-plus-square-o:before {
    content: ""
}

.icon-space-shuttle:before {
    content: ""
}

.icon-slack:before {
    content: ""
}

.icon-envelope-square:before {
    content: ""
}

.icon-wordpress:before {
    content: ""
}

.icon-openid:before {
    content: ""
}

.icon-institution:before, .icon-bank:before, .icon-university:before {
    content: ""
}

.icon-mortar-board:before, .icon-graduation-cap:before {
    content: ""
}

.icon-yahoo:before {
    content: ""
}

.icon-google:before {
    content: ""
}

.icon-reddit:before {
    content: ""
}

.icon-reddit-square:before {
    content: ""
}

.icon-stumbleupon-circle:before {
    content: ""
}

.icon-stumbleupon:before {
    content: ""
}

.icon-delicious:before {
    content: ""
}

.icon-digg:before {
    content: ""
}

.icon-pied-piper:before {
    content: ""
}

.icon-pied-piper-alt:before {
    content: ""
}

.icon-drupal:before {
    content: ""
}

.icon-joomla:before {
    content: ""
}

.icon-language:before {
    content: ""
}

.icon-fax:before {
    content: ""
}

.icon-building:before {
    content: ""
}

.icon-child:before {
    content: ""
}

.icon-paw:before {
    content: ""
}

.icon-spoon:before {
    content: ""
}

.icon-cube:before {
    content: ""
}

.icon-cubes:before {
    content: ""
}

.icon-behance:before {
    content: ""
}

.icon-behance-square:before {
    content: ""
}

.icon-steam:before {
    content: ""
}

.icon-steam-square:before {
    content: ""
}

.icon-recycle:before {
    content: ""
}

.icon-automobile:before, .icon-car:before {
    content: ""
}

.icon-cab:before, .icon-taxi:before {
    content: ""
}

.icon-tree:before {
    content: ""
}

.icon-spotify:before {
    content: ""
}

.icon-deviantart:before {
    content: ""
}

.icon-soundcloud:before {
    content: ""
}

.icon-database:before {
    content: ""
}

.icon-file-pdf-o:before {
    content: ""
}

.icon-file-word-o:before {
    content: ""
}

.icon-file-excel-o:before {
    content: ""
}

.icon-file-powerpoint-o:before {
    content: ""
}

.icon-file-photo-o:before, .icon-file-picture-o:before, .icon-file-image-o:before {
    content: ""
}

.icon-file-zip-o:before, .icon-file-archive-o:before {
    content: ""
}

.icon-file-sound-o:before, .icon-file-audio-o:before {
    content: ""
}

.icon-file-movie-o:before, .icon-file-video-o:before {
    content: ""
}

.icon-file-code-o:before {
    content: ""
}

.icon-vine:before {
    content: ""
}

.icon-codepen:before {
    content: ""
}

.icon-jsfiddle:before {
    content: ""
}

.icon-life-bouy:before, .icon-life-buoy:before, .icon-life-saver:before, .icon-support:before, .icon-life-ring:before {
    content: ""
}

.icon-circle-o-notch:before {
    content: ""
}

.icon-ra:before, .icon-rebel:before {
    content: ""
}

.icon-ge:before, .icon-empire:before {
    content: ""
}

.icon-git-square:before {
    content: ""
}

.icon-git:before {
    content: ""
}

.icon-hacker-news:before {
    content: ""
}

.icon-tencent-weibo:before {
    content: ""
}

.icon-qq:before {
    content: ""
}

.icon-wechat:before, .icon-weixin:before {
    content: ""
}

.icon-send:before, .icon-paper-plane:before {
    content: ""
}

.icon-send-o:before, .icon-paper-plane-o:before {
    content: ""
}

.icon-history:before {
    content: ""
}

.icon-genderless:before, .icon-circle-thin:before {
    content: ""
}

.icon-header:before {
    content: ""
}

.icon-paragraph:before {
    content: ""
}

.icon-sliders:before {
    content: ""
}

.icon-share-alt:before {
    content: ""
}

.icon-share-alt-square:before {
    content: ""
}

.icon-bomb:before {
    content: ""
}

.icon-soccer-ball-o:before, .icon-futbol-o:before {
    content: ""
}

.icon-tty:before {
    content: ""
}

.icon-binoculars:before {
    content: ""
}

.icon-plug:before {
    content: ""
}

.icon-slideshare:before {
    content: ""
}

.icon-twitch:before {
    content: ""
}

.icon-yelp:before {
    content: ""
}

.icon-newspaper-o:before {
    content: ""
}

.icon-wifi:before {
    content: ""
}

.icon-calculator:before {
    content: ""
}

.icon-paypal:before {
    content: ""
}

.icon-google-wallet:before {
    content: ""
}

.icon-cc-visa:before {
    content: ""
}

.icon-cc-mastercard:before {
    content: ""
}

.icon-cc-discover:before {
    content: ""
}

.icon-cc-amex:before {
    content: ""
}

.icon-cc-paypal:before {
    content: ""
}

.icon-cc-stripe:before {
    content: ""
}

.icon-bell-slash:before {
    content: ""
}

.icon-bell-slash-o:before {
    content: ""
}

.icon-trash:before {
    content: ""
}

.icon-copyright:before {
    content: ""
}

.icon-at:before {
    content: ""
}

.icon-eyedropper:before {
    content: ""
}

.icon-paint-brush:before {
    content: ""
}

.icon-birthday-cake:before {
    content: ""
}

.icon-area-chart:before {
    content: ""
}

.icon-pie-chart:before {
    content: ""
}

.icon-line-chart:before {
    content: ""
}

.icon-lastfm:before {
    content: ""
}

.icon-lastfm-square:before {
    content: ""
}

.icon-toggle-off:before {
    content: ""
}

.icon-toggle-on:before {
    content: ""
}

.icon-bicycle:before {
    content: ""
}

.icon-bus:before {
    content: ""
}

.icon-ioxhost:before {
    content: ""
}

.icon-angellist:before {
    content: ""
}

.icon-cc:before {
    content: ""
}

.icon-shekel:before, .icon-sheqel:before, .icon-ils:before {
    content: ""
}

.icon-meanpath:before {
    content: ""
}

.icon-buysellads:before {
    content: ""
}

.icon-connectdevelop:before {
    content: ""
}

.icon-dashcube:before {
    content: ""
}

.icon-forumbee:before {
    content: ""
}

.icon-leanpub:before {
    content: ""
}

.icon-sellsy:before {
    content: ""
}

.icon-shirtsinbulk:before {
    content: ""
}

.icon-simplybuilt:before {
    content: ""
}

.icon-skyatlas:before {
    content: ""
}

.icon-cart-plus:before {
    content: ""
}

.icon-cart-arrow-down:before {
    content: ""
}

.icon-diamond:before {
    content: ""
}

.icon-ship:before {
    content: ""
}

.icon-user-secret:before {
    content: ""
}

.icon-motorcycle:before {
    content: ""
}

.icon-street-view:before {
    content: ""
}

.icon-heartbeat:before {
    content: ""
}

.icon-venus:before {
    content: ""
}

.icon-mars:before {
    content: ""
}

.icon-mercury:before {
    content: ""
}

.icon-transgender:before {
    content: ""
}

.icon-transgender-alt:before {
    content: ""
}

.icon-venus-double:before {
    content: ""
}

.icon-mars-double:before {
    content: ""
}

.icon-venus-mars:before {
    content: ""
}

.icon-mars-stroke:before {
    content: ""
}

.icon-mars-stroke-v:before {
    content: ""
}

.icon-mars-stroke-h:before {
    content: ""
}

.icon-neuter:before {
    content: ""
}

.icon-facebook-official:before {
    content: ""
}

.icon-pinterest-p:before {
    content: ""
}

.icon-whatsapp:before {
    content: ""
}

.icon-server:before {
    content: ""
}

.icon-user-plus:before {
    content: ""
}

.icon-user-times:before {
    content: ""
}

.icon-hotel:before, .icon-bed:before {
    content: ""
}

.icon-viacoin:before {
    content: ""
}

.icon-train:before {
    content: ""
}

.icon-subway:before {
    content: ""
}

.icon-medium:before {
    content: ""
}

@font-face {
    font-family: fontello;
    src: url(/fonts/fontello/fontello.eot);
    src: url(/fonts/fontello/fontello.eot#iefix) format("embedded-opentype"), url(/fonts/fontello/fontello.woff2) format("woff2"), url(/fonts/fontello/fontello.woff) format("woff"), url(/fonts/fontello/fontello.ttf) format("truetype"), url(/fonts/fontello/fontello.svg#fontello) format("svg");
    font-weight: 400;
    font-style: normal
}

[class^=customicon]:before, [class*=" customicon"]:before {
    display: inline-block;
    font-family: fontello;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    width: 25px;
    margin-top: 1.5px;
    font-size: 18px
}

.icon-active-sound:before {
    content: '\e800'
}

.icon-adminsion:before {
    content: '\e801'
}

.icon-air-filter:before {
    content: '\e802'
}

.icon-bench:before {
    content: '\e803'
}

.icon-compressor:before {
    content: '\e804'
}

.icon-curve:before {
    content: '\e805'
}

.icon-dsg:before {
    content: '\e806'
}

.icon-dvd-motion:before {
    content: '\e807'
}

.icon-ecux:before {
    content: '\e808'
}

.icon-engineer-notes:before {
    content: '\e809'
}

.icon-exhaust:before {
    content: '\e80a'
}

.icon-fap:before {
    content: '\e80b'
}

.icon-intercooler:before {
    content: '\e80c'
}

.icon-sport-button:before {
    content: '\e80d'
}

.icon-sport-catalyst:before {
    content: '\e80e'
}

.icon-start-stop:before {
    content: '\e80f'
}

.icon-tinted-glass:before {
    content: '\e810'
}

.icon-milltek-valvesonic:before {
    content: '\e811'
}

.icon-waiting-room:before {
    content: '\e812'
}

.icon-warranty:before {
    content: '\e813'
}

.icon-ce:before {
    content: '\e814';
    margin-top: 1px;
    text-align: center;
    font-size: 14px;
    width: 11px
}

.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0
}

.slick-list:focus {
    outline: none
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand
}

.slick-slider .slick-track, .slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block
}

.slick-track:before, .slick-track:after {
    content: "";
    display: table
}

.slick-track:after {
    clear: both
}

.slick-loading .slick-track {
    visibility: hidden
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none
}

[dir=rtl] .slick-slide {
    float: right
}

.slick-slide img {
    display: block
}

.slick-slide.slick-loading img {
    display: none
}

.slick-slide.dragging img {
    pointer-events: none
}

.slick-initialized .slick-slide {
    display: block
}

.slick-loading .slick-slide {
    visibility: hidden
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent
}

.slick-loading .slick-list {
    background: #fff url(/img/ajax-loader.gif?1496954075) center center no-repeat
}

@font-face {
    font-family: slick;
    src: url(./assets/fonts/slick.eot);
    src: url(./assets/fonts/slick.eot?#iefix) format("embedded-opentype"), url(./assets/fonts/slick.woff) format("woff"), url(./assets/fonts/slick.ttf) format("truetype"), url(./assets/fonts/slick.svg#slick) format("svg");
    font-weight: 400;
    font-style: normal
}

.slick-prev, .slick-next {
    position: absolute;
    display: block;
    height: 60px;
    width: 60px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background: 0 0;
    color: transparent;
    top: 50%;
    margin-top: -30px;
    padding: 0;
    border: none;
    outline: none
}

.slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
    outline: none;
    background: 0 0;
    color: transparent
}

.slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
    opacity: 1
}

.slick-prev.slick-disabled:before, .slick-next.slick-disabled:before {
    opacity: .4
}

.slick-prev:before, .slick-next:before {
    font-size: 80px;
    line-height: 20px;
    color: #fff;
    opacity: .9;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-prev {
    left: 0
}

[dir=rtl] .slick-prev {
    left: auto;
    right: 0
}

.slick-prev:before {
    content: "‹"
}

[dir=rtl] .slick-prev:before {
    content: "›"
}

.slick-next {
    right: 0
}

[dir=rtl] .slick-next {
    left: 0;
    right: auto
}

.slick-next:before {
    content: "›"
}

[dir=rtl] .slick-next:before {
    content: "‹"
}

.slick-slider {
    margin-bottom: 30px
}

.slick-dots {
    position: absolute;
    bottom: 0;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    width: 100%
}

.slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 1px;
    padding: 0;
    cursor: pointer
}

.slick-dots li button {
    border: 0;
    background: 0 0;
    display: block;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0;
    font-size: 0;
    color: transparent;
    padding: 5px;
    cursor: pointer
}

.slick-dots li button:hover, .slick-dots li button:focus {
    outline: none
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
    opacity: 1
}

.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "•";
    width: 20px;
    height: 20px;
    font-family: slick;
    font-size: 10px;
    line-height: 20px;
    text-align: center;
    color: #fff;
    opacity: .4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.slick-dots li.slick-active button:before {
    color: #fff;
    opacity: .9
}

/*!PhotoSwipe main CSS by Dmitry Semenov | photoswipe.com | MIT license*/
.pswp {
    display: none;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
    z-index: 1500;
    -webkit-text-size-adjust: 100%;
    -webkit-backface-visibility: hidden;
    outline: none
}

.pswp * {
    box-sizing: border-box
}

.pswp img {
    max-width: none
}

.pswp--animate_opacity {
    opacity: .001;
    will-change: opacity;
    transition: opacity 333ms cubic-bezier(.4, 0, .22, 1)
}

.pswp--open {
    display: block
}

.pswp--zoom-allowed .pswp__img {
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in
}

.pswp--zoomed-in .pswp__img {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab
}

.pswp--dragging .pswp__img {
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing
}

.pswp__bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: #282828;
    opacity: 0;
    -webkit-backface-visibility: hidden;
    will-change: opacity
}

.pswp__scroll-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden
}

.pswp__container, .pswp__zoom-wrap {
    -ms-touch-action: none;
    touch-action: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0
}

.pswp__container, .pswp__img {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none
}

.pswp__zoom-wrap {
    position: absolute;
    width: 100%;
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    transition: transform 333ms cubic-bezier(.4, 0, .22, 1)
}

.pswp__bg {
    will-change: opacity;
    transition: opacity 333ms cubic-bezier(.4, 0, .22, 1)
}

.pswp--animated-in .pswp__bg, .pswp--animated-in .pswp__zoom-wrap {
    -webkit-transition: none;
    transition: none
}

.pswp__container, .pswp__zoom-wrap {
    -webkit-backface-visibility: hidden;
    will-change: transform
}

.pswp__item {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden
}

.pswp__img {
    position: absolute;
    width: auto;
    height: auto;
    top: 0;
    left: 0
}

.pswp__img--placeholder {
    -webkit-backface-visibility: hidden
}

.pswp__img--placeholder--blank {
    background: #222
}

.pswp--ie .pswp__img {
    width: 100% !important;
    height: auto !important;
    left: 0;
    top: 0
}

.pswp__error-msg {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
    font-size: 14px;
    line-height: 16px;
    margin-top: -8px;
    color: #ccc
}

.pswp__error-msg a {
    color: #ccc;
    text-decoration: underline
}

/*!PhotoSwipe Default UI CSS by Dmitry Semenov | photoswipe.com | MIT license*/
.pswp__button {
    width: 44px;
    height: 44px;
    position: relative;
    background: 0 0;
    cursor: pointer;
    overflow: visible;
    -webkit-appearance: none;
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
    float: right;
    opacity: .75;
    transition: opacity .2s;
    box-shadow: none
}

.pswp__button:focus, .pswp__button:hover {
    opacity: 1
}

.pswp__button:active {
    outline: none;
    opacity: .9
}

.pswp__button::-moz-focus-inner {
    padding: 0;
    border: 0
}

.pswp__ui--over-close .pswp__button--close {
    opacity: 1
}

.pswp__button, .pswp__button--arrow--left:before, .pswp__button--arrow--right:before {
    background: url(/img/default-skin/default-skin.png) 0 0 no-repeat;
    background-size: 264px 88px;
    width: 44px;
    height: 44px
}

@media (-webkit-min-device-pixel-ratio: 1.1),(min-resolution: 105dpi),(min-resolution: 1.1dppx) {
    .pswp--svg .pswp__button, .pswp--svg .pswp__button--arrow--left:before, .pswp--svg .pswp__button--arrow--right:before {
        background-image: url(/img/default-skin/default-skin.svg)
    }

    .pswp--svg .pswp__button--arrow--left, .pswp--svg .pswp__button--arrow--right {
        background: 0 0
    }
}

.pswp__button--close {
    background-position: 0 -44px
}

.pswp__button--share {
    background-position: -44px -44px
}

.pswp__button--fs {
    display: none
}

.pswp--supports-fs .pswp__button--fs {
    display: block
}

.pswp--fs .pswp__button--fs {
    background-position: -44px 0
}

.pswp__button--zoom {
    display: none;
    background-position: -88px 0
}

.pswp--zoom-allowed .pswp__button--zoom {
    display: block
}

.pswp--zoomed-in .pswp__button--zoom {
    background-position: -132px 0
}

.pswp--touch .pswp__button--arrow--left, .pswp--touch .pswp__button--arrow--right {
    visibility: hidden
}

.pswp__button--arrow--left, .pswp__button--arrow--right {
    background: 0 0;
    top: 50%;
    margin-top: -50px;
    width: 70px;
    height: 100px;
    position: absolute
}

.pswp__button--arrow--left {
    left: 0
}

.pswp__button--arrow--right {
    right: 0
}

.pswp__button--arrow--left:before, .pswp__button--arrow--right:before {
    content: '';
    top: 35px;
    background-color: rgba(0, 0, 0, .3);
    height: 30px;
    width: 32px;
    position: absolute
}

.pswp__button--arrow--left:before {
    left: 6px;
    background-position: -138px -44px
}

.pswp__button--arrow--right:before {
    right: 6px;
    background-position: -94px -44px
}

.pswp__counter, .pswp__share-modal {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none
}

.pswp__share-modal {
    display: block;
    background: rgba(0, 0, 0, .5);
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    padding: 10px;
    position: absolute;
    z-index: 1600;
    opacity: 0;
    transition: opacity .25s ease-out;
    -webkit-backface-visibility: hidden;
    will-change: opacity
}

.pswp__share-modal--hidden {
    display: none
}

.pswp__share-tooltip {
    z-index: 1620;
    position: absolute;
    background: #fff;
    top: 56px;
    border-radius: 2px;
    display: block;
    width: auto;
    right: 44px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .25);
    transform: translateY(6px);
    transition: transform .25s;
    -webkit-backface-visibility: hidden;
    will-change: transform
}

.pswp__share-tooltip a {
    display: block;
    padding: 8px 12px;
    color: #000;
    text-decoration: none;
    font-size: 14px;
    line-height: 18px
}

.pswp__share-tooltip a:hover {
    text-decoration: none;
    color: #000
}

.pswp__share-tooltip a:first-child {
    border-radius: 2px 2px 0 0
}

.pswp__share-tooltip a:last-child {
    border-radius: 0 0 2px 2px
}

.pswp__share-modal--fade-in {
    opacity: 1
}

.pswp__share-modal--fade-in .pswp__share-tooltip {
    transform: translateY(0)
}

.pswp--touch .pswp__share-tooltip a {
    padding: 16px 12px
}

a.pswp__share--facebook:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    top: -12px;
    right: 15px;
    border: 6px solid transparent;
    border-bottom-color: #fff;
    -webkit-pointer-events: none;
    -moz-pointer-events: none;
    pointer-events: none
}

a.pswp__share--facebook:hover {
    background: #3e5c9a;
    color: #fff
}

a.pswp__share--facebook:hover:before {
    border-bottom-color: #3e5c9a
}

a.pswp__share--twitter:hover {
    background: #55acee;
    color: #fff
}

a.pswp__share--pinterest:hover {
    background: #ccc;
    color: #ce272d
}

a.pswp__share--download:hover {
    background: #ddd
}

.pswp__counter {
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
    font-size: 13px;
    line-height: 44px;
    color: #fff;
    opacity: .75;
    padding: 0 10px
}

.pswp__caption {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    min-height: 44px
}

.pswp__caption small {
    font-size: 11px;
    color: #bbb
}

.pswp__caption__center {
    text-align: left;
    max-width: 420px;
    margin: 0 auto;
    font-size: 13px;
    padding: 10px;
    line-height: 20px;
    color: #ccc
}

.pswp__caption--empty {
    display: none
}

.pswp__caption--fake {
    visibility: hidden
}

.pswp__preloader {
    width: 44px;
    height: 44px;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -22px;
    opacity: 0;
    transition: opacity .25s ease-out;
    will-change: opacity;
    direction: ltr
}

.pswp__preloader__icn {
    width: 20px;
    height: 20px;
    margin: 12px
}

.pswp__preloader--active {
    opacity: 1
}

.pswp__preloader--active .pswp__preloader__icn {
    background: url(/img/default-skin/preloader.gif) 0 0 no-repeat
}

.pswp--css_animation .pswp__preloader--active {
    opacity: 1
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__icn {
    animation: clockwise 500ms linear infinite
}

.pswp--css_animation .pswp__preloader--active .pswp__preloader__donut {
    animation: donut-rotate 1000ms cubic-bezier(.4, 0, .22, 1) infinite
}

.pswp--css_animation .pswp__preloader__icn {
    background: 0 0;
    opacity: .75;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 15px;
    top: 15px;
    margin: 0
}

.pswp--css_animation .pswp__preloader__cut {
    position: relative;
    width: 7px;
    height: 14px;
    overflow: hidden
}

.pswp--css_animation .pswp__preloader__donut {
    box-sizing: border-box;
    width: 14px;
    height: 14px;
    border: 2px solid #fff;
    border-radius: 50%;
    border-left-color: transparent;
    border-bottom-color: transparent;
    position: absolute;
    top: 0;
    left: 0;
    background: 0 0;
    margin: 0
}

@media screen and (max-width: 1024px) {
    .pswp__preloader {
        position: relative;
        left: auto;
        top: auto;
        margin: 0;
        float: right
    }
}

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

@keyframes donut-rotate {
    0% {
        transform: rotate(0)
    }
    50% {
        transform: rotate(-140deg)
    }
    100% {
        transform: rotate(0)
    }
}

.pswp__ui {
    -webkit-font-smoothing: auto;
    visibility: visible;
    opacity: 1;
    z-index: 1550
}

.pswp__top-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
    width: 100%
}

.pswp__caption, .pswp__top-bar, .pswp--has_mouse .pswp__button--arrow--left, .pswp--has_mouse .pswp__button--arrow--right {
    -webkit-backface-visibility: hidden;
    will-change: opacity;
    transition: opacity 333ms cubic-bezier(.4, 0, .22, 1)
}

.pswp--has_mouse .pswp__button--arrow--left, .pswp--has_mouse .pswp__button--arrow--right {
    visibility: visible
}

.pswp__top-bar, .pswp__caption {
    background-color: rgba(0, 0, 0, .5)
}

.pswp__ui--fit .pswp__top-bar, .pswp__ui--fit .pswp__caption {
    background-color: rgba(0, 0, 0, .3)
}

.pswp__ui--idle .pswp__top-bar {
    opacity: 0
}

.pswp__ui--idle .pswp__button--arrow--left, .pswp__ui--idle .pswp__button--arrow--right {
    opacity: 0
}

.pswp__ui--hidden .pswp__top-bar, .pswp__ui--hidden .pswp__caption, .pswp__ui--hidden .pswp__button--arrow--left, .pswp__ui--hidden .pswp__button--arrow--right {
    opacity: .001
}

.pswp__ui--one-slide .pswp__button--arrow--left, .pswp__ui--one-slide .pswp__button--arrow--right, .pswp__ui--one-slide .pswp__counter {
    display: none
}

.pswp__element--disabled {
    display: none !important
}

.pswp--minimal--dark .pswp__top-bar {
    background: 0 0
}

/*!* Bootstrap v3.3.5 (http://getbootstrap.com)
* Copyright 2011-2015 Twitter, Inc.
* Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)*//*!normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css*/
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden], template {
    display: none
}

a {
    background-color: transparent
}

a:active, a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b, strong {
    font-weight: 700
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button, select {
    text-transform: none
}

button, html input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled], html input[disabled] {
    cursor: default
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    height: auto
}

input[type=search] {
    -webkit-appearance: textfield;
    box-sizing: content-box
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: 700
}

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

td, th {
    padding: 0
}

/*!Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css*/
@media print {
    *, *:before, *:after {
        background: 0 0 !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important
    }

    a, a:visited {
        text-decoration: underline
    }

    a[href]:after {
        content: " (" attr(href) ")"
    }

    abbr[title]:after {
        content: " (" attr(title) ")"
    }

    a[href^="#"]:after, a[href^="javascript:"]:after {
        content: ""
    }

    pre, blockquote {
        border: 1px solid #999;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    tr, img {
        page-break-inside: avoid
    }

    img {
        max-width: 100% !important
    }

    p, h2, h3 {
        orphans: 3;
        widows: 3
    }

    h2, h3 {
        page-break-after: avoid
    }


    .btn > .caret, .dropup > .btn > .caret {
        border-top-color: #000 !important
    }

    .label {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse !important
    }

    .table td, .table th {
        background-color: #fff !important
    }

    .table-bordered th, .table-bordered td {
        border: 1px solid #ddd !important
    }
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

*:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

html {
    font-size: 10px;
    -webkit-tap-highlight-color: transparent
}

body {
    font-family: helvetica neue, Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857;
    color: #333;
    background-color: #fff
}

input, button, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

a {
    color: #ff3020;
    text-decoration: none
}

a:hover, a:focus {
    color: #d30f00;
    text-decoration: underline
}

a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

figure {
    margin: 0
}

img {
    vertical-align: middle
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto
}

.img-rounded {
    border-radius: 4px
}

.img-thumbnail {
    padding: 4px;
    line-height: 1.42857;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    display: inline-block;
    max-width: 100%;
    height: auto
}

.img-circle {
    border-radius: 50%
}

hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee
}

.sr-only, .call-me-back-form .control-label, .contact-form .control-label, .nostage-contact-form .control-label, .meeting-contact-form .control-label {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

[role=button] {
    cursor: pointer
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit
}

h1 small, h1 .small, h2 small, h2 .small, h3 small, h3 .small, h4 small, h4 .small, h5 small, h5 .small, h6 small, h6 .small, .h1 small, .h1 .small, .h2 small, .h2 .small, .h3 small, .h3 .small, .h4 small, .h4 .small, .h5 small, .h5 .small, .h6 small, .h6 .small {
    font-weight: 400;
    line-height: 1;
    color: #777
}

h1, .h1, h2, .h2, h3, .h3 {
    margin-top: 20px;
    margin-bottom: 10px
}

h1 small, h1 .small, .h1 small, .h1 .small, h2 small, h2 .small, .h2 small, .h2 .small, h3 small, h3 .small, .h3 small, .h3 .small {
    font-size: 65%
}

h4, .h4, h5, .h5, h6, .h6 {
    margin-top: 10px;
    margin-bottom: 10px
}

h4 small, h4 .small, .h4 small, .h4 .small, h5 small, h5 .small, .h5 small, .h5 .small, h6 small, h6 .small, .h6 small, .h6 .small {
    font-size: 75%
}

h1, .h1 {
    font-size: 36px
}

h2, .h2 {
    font-size: 30px
}

h3, .h3 {
    font-size: 24px
}

h4, .h4 {
    font-size: 18px
}

h5, .h5 {
    font-size: 14px
}

h6, .h6 {
    font-size: 12px
}

p {
    margin: 0 0 10px
}

.lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4
}

@media (min-width: 768px) {
    .lead {
        font-size: 21px
    }
}

small, .small {
    font-size: 85%
}

mark, .mark {
    background-color: #fcf8e3;
    padding: .2em
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.text-justify {
    text-align: justify
}

.text-nowrap {
    white-space: nowrap
}

.text-lowercase {
    text-transform: lowercase
}

.text-uppercase, .initialism {
    text-transform: uppercase
}

.text-capitalize {
    text-transform: capitalize
}

.text-muted {
    color: #777
}

.text-primary {
    color: #ff3020
}

a.text-primary:hover, a.text-primary:focus {
    color: #ec1100
}

.text-success {
    color: #3c763d
}

a.text-success:hover, a.text-success:focus {
    color: #2b542c
}

.text-info {
    color: #31708f
}

a.text-info:hover, a.text-info:focus {
    color: #245269
}

.text-warning {
    color: #8a6d3b
}

a.text-warning:hover, a.text-warning:focus {
    color: #66512c
}

.text-danger {
    color: #a94442
}

a.text-danger:hover, a.text-danger:focus {
    color: #843534
}

.bg-primary {
    color: #fff
}

.bg-primary {
    background-color: #ff3020
}

a.bg-primary:hover, a.bg-primary:focus {
    background-color: #ec1100
}

.bg-success {
    background-color: #dff0d8
}

a.bg-success:hover, a.bg-success:focus {
    background-color: #c1e2b3
}

.bg-info {
    background-color: #d9edf7
}

a.bg-info:hover, a.bg-info:focus {
    background-color: #afd9ee
}

.bg-warning {
    background-color: #fcf8e3
}

a.bg-warning:hover, a.bg-warning:focus {
    background-color: #f7ecb5
}

.bg-danger {
    background-color: #f2dede
}

a.bg-danger:hover, a.bg-danger:focus {
    background-color: #e4b9b9
}

.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee
}

ul, ol {
    margin-top: 0;
    margin-bottom: 10px
}

ul ul, ul ol, ol ul, ol ol {
    margin-bottom: 0
}

.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline {
    padding-left: 0;
    list-style: none;
    margin-left: -5px
}

.list-inline > li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px
}

dl {
    margin-top: 0;
    margin-bottom: 20px
}

dt, dd {
    line-height: 1.42857
}

dt {
    font-weight: 700
}

dd {
    margin-left: 0
}

.dl-horizontal dd:before, .dl-horizontal dd:after {
    content: " ";
    display: table
}

.dl-horizontal dd:after {
    clear: both
}

@media (min-width: 992px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        clear: left;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .dl-horizontal dd {
        margin-left: 180px
    }
}

abbr[title], abbr[data-original-title] {
    cursor: help;
    border-bottom: 1px dotted #777
}

.initialism {
    font-size: 90%
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee
}

blockquote p:last-child, blockquote ul:last-child, blockquote ol:last-child {
    margin-bottom: 0
}

blockquote footer, blockquote small, blockquote .small {
    display: block;
    font-size: 80%;
    line-height: 1.42857;
    color: #777
}

blockquote footer:before, blockquote small:before, blockquote .small:before {
    content: '\2014 \00A0'
}

.blockquote-reverse, blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #eee;
    border-left: 0;
    text-align: right
}

.blockquote-reverse footer:before, .blockquote-reverse small:before, .blockquote-reverse .small:before, blockquote.pull-right footer:before, blockquote.pull-right small:before, blockquote.pull-right .small:before {
    content: ''
}

.blockquote-reverse footer:after, .blockquote-reverse small:after, .blockquote-reverse .small:after, blockquote.pull-right footer:after, blockquote.pull-right small:after, blockquote.pull-right .small:after {
    content: '\00A0 \2014'
}

address {
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.42857
}

code, kbd, pre, samp {
    font-family: Menlo, Monaco, Consolas, courier new, monospace
}

code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px
}

kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 2px;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25)
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700;
    box-shadow: none
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857;
    word-break: break-all;
    word-wrap: break-word;
    color: #333;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px
}

pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0
}

.pre-scrollable {
    max-height: 340px;
    overflow-y: scroll
}

.container {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px
}

.container:before, .container:after {
    content: " ";
    display: table
}

.container:after {
    clear: both
}

@media (min-width: 768px) {
    .container {
        width: 750px
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px
    }
}

.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px
}

.container-fluid:before, .container-fluid:after {
    content: " ";
    display: table
}

.container-fluid:after {
    clear: both
}

.row {
    margin-left: -15px;
    margin-right: -15px
}

.row:before, .row:after {
    content: " ";
    display: table
}

.row:after {
    clear: both
}

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

.col-xs-1, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9, .col-xs-10, .col-xs-11, .col-xs-12 {
    float: left
}

.col-xs-1 {
    width: 8.33333%
}

.col-xs-2 {
    width: 16.66667%
}

.col-xs-3 {
    width: 25%
}

.col-xs-4 {
    width: 33.33333%
}

.col-xs-5 {
    width: 41.66667%
}

.col-xs-6 {
    width: 50%
}

.col-xs-7 {
    width: 58.33333%
}

.col-xs-8 {
    width: 66.66667%
}

.col-xs-9 {
    width: 75%
}

.col-xs-10 {
    width: 83.33333%
}

.col-xs-11 {
    width: 91.66667%
}

.col-xs-12 {
    width: 100%
}

.col-xs-pull-0 {
    right: auto
}

.col-xs-pull-1 {
    right: 8.33333%
}

.col-xs-pull-2 {
    right: 16.66667%
}

.col-xs-pull-3 {
    right: 25%
}

.col-xs-pull-4 {
    right: 33.33333%
}

.col-xs-pull-5 {
    right: 41.66667%
}

.col-xs-pull-6 {
    right: 50%
}

.col-xs-pull-7 {
    right: 58.33333%
}

.col-xs-pull-8 {
    right: 66.66667%
}

.col-xs-pull-9 {
    right: 75%
}

.col-xs-pull-10 {
    right: 83.33333%
}

.col-xs-pull-11 {
    right: 91.66667%
}

.col-xs-pull-12 {
    right: 100%
}

.col-xs-push-0 {
    left: auto
}

.col-xs-push-1 {
    left: 8.33333%
}

.col-xs-push-2 {
    left: 16.66667%
}

.col-xs-push-3 {
    left: 25%
}

.col-xs-push-4 {
    left: 33.33333%
}

.col-xs-push-5 {
    left: 41.66667%
}

.col-xs-push-6 {
    left: 50%
}

.col-xs-push-7 {
    left: 58.33333%
}

.col-xs-push-8 {
    left: 66.66667%
}

.col-xs-push-9 {
    left: 75%
}

.col-xs-push-10 {
    left: 83.33333%
}

.col-xs-push-11 {
    left: 91.66667%
}

.col-xs-push-12 {
    left: 100%
}

.col-xs-offset-0 {
    margin-left: 0%
}

.col-xs-offset-1 {
    margin-left: 8.33333%
}

.col-xs-offset-2 {
    margin-left: 16.66667%
}

.col-xs-offset-3 {
    margin-left: 25%
}

.col-xs-offset-4 {
    margin-left: 33.33333%
}

.col-xs-offset-5 {
    margin-left: 41.66667%
}

.col-xs-offset-6 {
    margin-left: 50%
}

.col-xs-offset-7 {
    margin-left: 58.33333%
}

.col-xs-offset-8 {
    margin-left: 66.66667%
}

.col-xs-offset-9 {
    margin-left: 75%
}

.col-xs-offset-10 {
    margin-left: 83.33333%
}

.col-xs-offset-11 {
    margin-left: 91.66667%
}

.col-xs-offset-12 {
    margin-left: 100%
}

@media (min-width: 768px) {
    .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12 {
        float: left
    }

    .col-sm-1 {
        width: 8.33333%
    }

    .col-sm-2 {
        width: 16.66667%
    }

    .col-sm-3 {
        width: 25%
    }

    .col-sm-4 {
        width: 33.33333%
    }

    .col-sm-5 {
        width: 41.66667%
    }

    .col-sm-6 {
        width: 50%
    }

    .col-sm-7 {
        width: 58.33333%
    }

    .col-sm-8 {
        width: 66.66667%
    }

    .col-sm-9 {
        width: 75%
    }

    .col-sm-10 {
        width: 83.33333%
    }

    .col-sm-11 {
        width: 91.66667%
    }

    .col-sm-12 {
        width: 100%
    }

    .col-sm-pull-0 {
        right: auto
    }

    .col-sm-pull-1 {
        right: 8.33333%
    }

    .col-sm-pull-2 {
        right: 16.66667%
    }

    .col-sm-pull-3 {
        right: 25%
    }

    .col-sm-pull-4 {
        right: 33.33333%
    }

    .col-sm-pull-5 {
        right: 41.66667%
    }

    .col-sm-pull-6 {
        right: 50%
    }

    .col-sm-pull-7 {
        right: 58.33333%
    }

    .col-sm-pull-8 {
        right: 66.66667%
    }

    .col-sm-pull-9 {
        right: 75%
    }

    .col-sm-pull-10 {
        right: 83.33333%
    }

    .col-sm-pull-11 {
        right: 91.66667%
    }

    .col-sm-pull-12 {
        right: 100%
    }

    .col-sm-push-0 {
        left: auto
    }

    .col-sm-push-1 {
        left: 8.33333%
    }

    .col-sm-push-2 {
        left: 16.66667%
    }

    .col-sm-push-3 {
        left: 25%
    }

    .col-sm-push-4 {
        left: 33.33333%
    }

    .col-sm-push-5 {
        left: 41.66667%
    }

    .col-sm-push-6 {
        left: 50%
    }

    .col-sm-push-7 {
        left: 58.33333%
    }

    .col-sm-push-8 {
        left: 66.66667%
    }

    .col-sm-push-9 {
        left: 75%
    }

    .col-sm-push-10 {
        left: 83.33333%
    }

    .col-sm-push-11 {
        left: 91.66667%
    }

    .col-sm-push-12 {
        left: 100%
    }

    .col-sm-offset-0 {
        margin-left: 0%
    }

    .col-sm-offset-1 {
        margin-left: 8.33333%
    }

    .col-sm-offset-2 {
        margin-left: 16.66667%
    }

    .col-sm-offset-3 {
        margin-left: 25%
    }

    .col-sm-offset-4 {
        margin-left: 33.33333%
    }

    .col-sm-offset-5 {
        margin-left: 41.66667%
    }

    .col-sm-offset-6 {
        margin-left: 50%
    }

    .col-sm-offset-7 {
        margin-left: 58.33333%
    }

    .col-sm-offset-8 {
        margin-left: 66.66667%
    }

    .col-sm-offset-9 {
        margin-left: 75%
    }

    .col-sm-offset-10 {
        margin-left: 83.33333%
    }

    .col-sm-offset-11 {
        margin-left: 91.66667%
    }

    .col-sm-offset-12 {
        margin-left: 100%
    }
}

@media (min-width: 992px) {
    .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12 {
        float: left
    }

    .col-md-1 {
        width: 8.33333%
    }

    .col-md-2 {
        width: 16.66667%
    }

    .col-md-3 {
        width: 25%
    }

    .col-md-4 {
        width: 33.33333%
    }

    .col-md-5 {
        width: 41.66667%
    }

    .col-md-6 {
        width: 50%
    }

    .col-md-7 {
        width: 58.33333%
    }

    .col-md-8 {
        width: 66.66667%
    }

    .col-md-9 {
        width: 75%
    }

    .col-md-10 {
        width: 83.33333%
    }

    .col-md-11 {
        width: 91.66667%
    }

    .col-md-12 {
        width: 100%
    }

    .col-md-pull-0 {
        right: auto
    }

    .col-md-pull-1 {
        right: 8.33333%
    }

    .col-md-pull-2 {
        right: 16.66667%
    }

    .col-md-pull-3 {
        right: 25%
    }

    .col-md-pull-4 {
        right: 33.33333%
    }

    .col-md-pull-5 {
        right: 41.66667%
    }

    .col-md-pull-6 {
        right: 50%
    }

    .col-md-pull-7 {
        right: 58.33333%
    }

    .col-md-pull-8 {
        right: 66.66667%
    }

    .col-md-pull-9 {
        right: 75%
    }

    .col-md-pull-10 {
        right: 83.33333%
    }

    .col-md-pull-11 {
        right: 91.66667%
    }

    .col-md-pull-12 {
        right: 100%
    }

    .col-md-push-0 {
        left: auto
    }

    .col-md-push-1 {
        left: 8.33333%
    }

    .col-md-push-2 {
        left: 16.66667%
    }

    .col-md-push-3 {
        left: 25%
    }

    .col-md-push-4 {
        left: 33.33333%
    }

    .col-md-push-5 {
        left: 41.66667%
    }

    .col-md-push-6 {
        left: 50%
    }

    .col-md-push-7 {
        left: 58.33333%
    }

    .col-md-push-8 {
        left: 66.66667%
    }

    .col-md-push-9 {
        left: 75%
    }

    .col-md-push-10 {
        left: 83.33333%
    }

    .col-md-push-11 {
        left: 91.66667%
    }

    .col-md-push-12 {
        left: 100%
    }

    .col-md-offset-0 {
        margin-left: 0%
    }

    .col-md-offset-1 {
        margin-left: 8.33333%
    }

    .col-md-offset-2 {
        margin-left: 16.66667%
    }

    .col-md-offset-3 {
        margin-left: 25%
    }

    .col-md-offset-4 {
        margin-left: 33.33333%
    }

    .col-md-offset-5 {
        margin-left: 41.66667%
    }

    .col-md-offset-6 {
        margin-left: 50%
    }

    .col-md-offset-7 {
        margin-left: 58.33333%
    }

    .col-md-offset-8 {
        margin-left: 66.66667%
    }

    .col-md-offset-9 {
        margin-left: 75%
    }

    .col-md-offset-10 {
        margin-left: 83.33333%
    }

    .col-md-offset-11 {
        margin-left: 91.66667%
    }

    .col-md-offset-12 {
        margin-left: 100%
    }
}

@media (min-width: 1200px) {
    .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12 {
        float: left
    }

    .col-lg-1 {
        width: 8.33333%
    }

    .col-lg-2 {
        width: 16.66667%
    }

    .col-lg-3 {
        width: 25%
    }

    .col-lg-4 {
        width: 33.33333%
    }

    .col-lg-5 {
        width: 41.66667%
    }

    .col-lg-6 {
        width: 50%
    }

    .col-lg-7 {
        width: 58.33333%
    }

    .col-lg-8 {
        width: 66.66667%
    }

    .col-lg-9 {
        width: 75%
    }

    .col-lg-10 {
        width: 83.33333%
    }

    .col-lg-11 {
        width: 91.66667%
    }

    .col-lg-12 {
        width: 100%
    }

    .col-lg-pull-0 {
        right: auto
    }

    .col-lg-pull-1 {
        right: 8.33333%
    }

    .col-lg-pull-2 {
        right: 16.66667%
    }

    .col-lg-pull-3 {
        right: 25%
    }

    .col-lg-pull-4 {
        right: 33.33333%
    }

    .col-lg-pull-5 {
        right: 41.66667%
    }

    .col-lg-pull-6 {
        right: 50%
    }

    .col-lg-pull-7 {
        right: 58.33333%
    }

    .col-lg-pull-8 {
        right: 66.66667%
    }

    .col-lg-pull-9 {
        right: 75%
    }

    .col-lg-pull-10 {
        right: 83.33333%
    }

    .col-lg-pull-11 {
        right: 91.66667%
    }

    .col-lg-pull-12 {
        right: 100%
    }

    .col-lg-push-0 {
        left: auto
    }

    .col-lg-push-1 {
        left: 8.33333%
    }

    .col-lg-push-2 {
        left: 16.66667%
    }

    .col-lg-push-3 {
        left: 25%
    }

    .col-lg-push-4 {
        left: 33.33333%
    }

    .col-lg-push-5 {
        left: 41.66667%
    }

    .col-lg-push-6 {
        left: 50%
    }

    .col-lg-push-7 {
        left: 58.33333%
    }

    .col-lg-push-8 {
        left: 66.66667%
    }

    .col-lg-push-9 {
        left: 75%
    }

    .col-lg-push-10 {
        left: 83.33333%
    }

    .col-lg-push-11 {
        left: 91.66667%
    }

    .col-lg-push-12 {
        left: 100%
    }

    .col-lg-offset-0 {
        margin-left: 0%
    }

    .col-lg-offset-1 {
        margin-left: 8.33333%
    }

    .col-lg-offset-2 {
        margin-left: 16.66667%
    }

    .col-lg-offset-3 {
        margin-left: 25%
    }

    .col-lg-offset-4 {
        margin-left: 33.33333%
    }

    .col-lg-offset-5 {
        margin-left: 41.66667%
    }

    .col-lg-offset-6 {
        margin-left: 50%
    }

    .col-lg-offset-7 {
        margin-left: 58.33333%
    }

    .col-lg-offset-8 {
        margin-left: 66.66667%
    }

    .col-lg-offset-9 {
        margin-left: 75%
    }

    .col-lg-offset-10 {
        margin-left: 83.33333%
    }

    .col-lg-offset-11 {
        margin-left: 91.66667%
    }

    .col-lg-offset-12 {
        margin-left: 100%
    }
}

table {
    background-color: transparent
}

caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777;
    text-align: left
}

th {
    text-align: left
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px
}

.table > thead > tr > th, .table > thead > tr > td, .table > tbody > tr > th, .table > tbody > tr > td, .table > tfoot > tr > th, .table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857;
    vertical-align: top;
    border-top: 1px solid #ddd
}

.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd
}

.table > caption + thead > tr:first-child > th, .table > caption + thead > tr:first-child > td, .table > colgroup + thead > tr:first-child > th, .table > colgroup + thead > tr:first-child > td, .table > thead:first-child > tr:first-child > th, .table > thead:first-child > tr:first-child > td {
    border-top: 0
}

.table > tbody + tbody {
    border-top: 2px solid #ddd
}

.table .table {
    background-color: #fff
}

.table-condensed > thead > tr > th, .table-condensed > thead > tr > td, .table-condensed > tbody > tr > th, .table-condensed > tbody > tr > td, .table-condensed > tfoot > tr > th, .table-condensed > tfoot > tr > td {
    padding: 5px
}

.table-bordered {
    border: 1px solid #ddd
}

.table-bordered > thead > tr > th, .table-bordered > thead > tr > td, .table-bordered > tbody > tr > th, .table-bordered > tbody > tr > td, .table-bordered > tfoot > tr > th, .table-bordered > tfoot > tr > td {
    border: 1px solid #ddd
}

.table-bordered > thead > tr > th, .table-bordered > thead > tr > td {
    border-bottom-width: 2px
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9
}

.table-hover > tbody > tr:hover {
    background-color: #f5f5f5
}

table col[class*=col-] {
    position: static;
    float: none;
    display: table-column
}

table td[class*=col-], table th[class*=col-] {
    position: static;
    float: none;
    display: table-cell
}

.table > thead > tr > td.active, .table > thead > tr > th.active, .table > thead > tr.active > td, .table > thead > tr.active > th, .table > tbody > tr > td.active, .table > tbody > tr > th.active, .table > tbody > tr.active > td, .table > tbody > tr.active > th, .table > tfoot > tr > td.active, .table > tfoot > tr > th.active, .table > tfoot > tr.active > td, .table > tfoot > tr.active > th {
    background-color: #f5f5f5
}

.table-hover > tbody > tr > td.active:hover, .table-hover > tbody > tr > th.active:hover, .table-hover > tbody > tr.active:hover > td, .table-hover > tbody > tr:hover > .active, .table-hover > tbody > tr.active:hover > th {
    background-color: #e8e8e8
}

.table > thead > tr > td.success, .table > thead > tr > th.success, .table > thead > tr.success > td, .table > thead > tr.success > th, .table > tbody > tr > td.success, .table > tbody > tr > th.success, .table > tbody > tr.success > td, .table > tbody > tr.success > th, .table > tfoot > tr > td.success, .table > tfoot > tr > th.success, .table > tfoot > tr.success > td, .table > tfoot > tr.success > th {
    background-color: #dff0d8
}

.table-hover > tbody > tr > td.success:hover, .table-hover > tbody > tr > th.success:hover, .table-hover > tbody > tr.success:hover > td, .table-hover > tbody > tr:hover > .success, .table-hover > tbody > tr.success:hover > th {
    background-color: #d0e9c6
}

.table > thead > tr > td.info, .table > thead > tr > th.info, .table > thead > tr.info > td, .table > thead > tr.info > th, .table > tbody > tr > td.info, .table > tbody > tr > th.info, .table > tbody > tr.info > td, .table > tbody > tr.info > th, .table > tfoot > tr > td.info, .table > tfoot > tr > th.info, .table > tfoot > tr.info > td, .table > tfoot > tr.info > th {
    background-color: #d9edf7
}

.table-hover > tbody > tr > td.info:hover, .table-hover > tbody > tr > th.info:hover, .table-hover > tbody > tr.info:hover > td, .table-hover > tbody > tr:hover > .info, .table-hover > tbody > tr.info:hover > th {
    background-color: #c4e3f3
}

.table > thead > tr > td.warning, .table > thead > tr > th.warning, .table > thead > tr.warning > td, .table > thead > tr.warning > th, .table > tbody > tr > td.warning, .table > tbody > tr > th.warning, .table > tbody > tr.warning > td, .table > tbody > tr.warning > th, .table > tfoot > tr > td.warning, .table > tfoot > tr > th.warning, .table > tfoot > tr.warning > td, .table > tfoot > tr.warning > th {
    background-color: #fcf8e3
}

.table-hover > tbody > tr > td.warning:hover, .table-hover > tbody > tr > th.warning:hover, .table-hover > tbody > tr.warning:hover > td, .table-hover > tbody > tr:hover > .warning, .table-hover > tbody > tr.warning:hover > th {
    background-color: #faf2cc
}

.table > thead > tr > td.danger, .table > thead > tr > th.danger, .table > thead > tr.danger > td, .table > thead > tr.danger > th, .table > tbody > tr > td.danger, .table > tbody > tr > th.danger, .table > tbody > tr.danger > td, .table > tbody > tr.danger > th, .table > tfoot > tr > td.danger, .table > tfoot > tr > th.danger, .table > tfoot > tr.danger > td, .table > tfoot > tr.danger > th {
    background-color: #f2dede
}

.table-hover > tbody > tr > td.danger:hover, .table-hover > tbody > tr > th.danger:hover, .table-hover > tbody > tr.danger:hover > td, .table-hover > tbody > tr:hover > .danger, .table-hover > tbody > tr.danger:hover > th {
    background-color: #ebcccc
}

.table-responsive {
    overflow-x: auto;
    min-height: .01%
}

@media screen and (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd
    }

    .table-responsive > .table {
        margin-bottom: 0
    }

    .table-responsive > .table > thead > tr > th, .table-responsive > .table > thead > tr > td, .table-responsive > .table > tbody > tr > th, .table-responsive > .table > tbody > tr > td, .table-responsive > .table > tfoot > tr > th, .table-responsive > .table > tfoot > tr > td {
        white-space: nowrap
    }

    .table-responsive > .table-bordered {
        border: 0
    }

    .table-responsive > .table-bordered > thead > tr > th:first-child, .table-responsive > .table-bordered > thead > tr > td:first-child, .table-responsive > .table-bordered > tbody > tr > th:first-child, .table-responsive > .table-bordered > tbody > tr > td:first-child, .table-responsive > .table-bordered > tfoot > tr > th:first-child, .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-left: 0
    }

    .table-responsive > .table-bordered > thead > tr > th:last-child, .table-responsive > .table-bordered > thead > tr > td:last-child, .table-responsive > .table-bordered > tbody > tr > th:last-child, .table-responsive > .table-bordered > tbody > tr > td:last-child, .table-responsive > .table-bordered > tfoot > tr > th:last-child, .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-right: 0
    }

    .table-responsive > .table-bordered > tbody > tr:last-child > th, .table-responsive > .table-bordered > tbody > tr:last-child > td, .table-responsive > .table-bordered > tfoot > tr:last-child > th, .table-responsive > .table-bordered > tfoot > tr:last-child > td {
        border-bottom: 0
    }
}

fieldset {
    padding: 0;
    margin: 0;
    border: 0;
    min-width: 0
}

legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5
}

label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700
}

input[type=search] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

input[type=radio], input[type=checkbox] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal
}

input[type=file] {
    display: block
}

input[type=range] {
    display: block;
    width: 100%
}

select[multiple], select[size] {
    height: auto
}

input[type=file]:focus, input[type=radio]:focus, input[type=checkbox]:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.42857;
    color: #555
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6)
}

.form-control::-moz-placeholder {
    color: #999;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #999
}

.form-control::-webkit-input-placeholder {
    color: #999
}

.form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
    background-color: #eee;
    opacity: 1
}

.form-control[disabled], fieldset[disabled] .form-control {
    cursor: not-allowed
}

textarea.form-control {
    height: auto
}

input[type=search] {
    -webkit-appearance: none
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type=date].form-control, input[type=time].form-control, input[type=datetime-local].form-control, input[type=month].form-control {
        line-height: 34px
    }

    input[type=date].input-sm, .input-group-sm > input[type=date].form-control, .input-group-sm > input[type=date].input-group-addon, .input-group-sm > .input-group-btn > input[type=date].btn, .input-group-sm input[type=date], input[type=time].input-sm, .input-group-sm > input[type=time].form-control, .input-group-sm > input[type=time].input-group-addon, .input-group-sm > .input-group-btn > input[type=time].btn, .input-group-sm input[type=time], input[type=datetime-local].input-sm, .input-group-sm > input[type=datetime-local].form-control, .input-group-sm > input[type=datetime-local].input-group-addon, .input-group-sm > .input-group-btn > input[type=datetime-local].btn, .input-group-sm input[type=datetime-local], input[type=month].input-sm, .input-group-sm > input[type=month].form-control, .input-group-sm > input[type=month].input-group-addon, .input-group-sm > .input-group-btn > input[type=month].btn, .input-group-sm input[type=month] {
        line-height: 30px
    }

    input[type=date].input-lg, .input-group-lg > input[type=date].form-control, .input-group-lg > input[type=date].input-group-addon, .input-group-lg > .input-group-btn > input[type=date].btn, .input-group-lg input[type=date], input[type=time].input-lg, .input-group-lg > input[type=time].form-control, .input-group-lg > input[type=time].input-group-addon, .input-group-lg > .input-group-btn > input[type=time].btn, .input-group-lg input[type=time], input[type=datetime-local].input-lg, .input-group-lg > input[type=datetime-local].form-control, .input-group-lg > input[type=datetime-local].input-group-addon, .input-group-lg > .input-group-btn > input[type=datetime-local].btn, .input-group-lg input[type=datetime-local], input[type=month].input-lg, .input-group-lg > input[type=month].form-control, .input-group-lg > input[type=month].input-group-addon, .input-group-lg > .input-group-btn > input[type=month].btn, .input-group-lg input[type=month] {
        line-height: 46px
    }
}

.form-group {
    margin-bottom: 15px
}

.radio, .checkbox {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px
}

.radio label, .checkbox label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer
}

.radio input[type=radio], .radio-inline input[type=radio], .checkbox input[type=checkbox], .checkbox-inline input[type=checkbox] {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px \9
}

.radio + .radio, .checkbox + .checkbox {
    margin-top: -5px
}

.radio-inline, .checkbox-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: 400;
    cursor: pointer
}

.radio-inline + .radio-inline, .checkbox-inline + .checkbox-inline {
    margin-top: 0;
    margin-left: 10px
}

input[type=radio][disabled], input[type=radio].disabled, fieldset[disabled] input[type=radio], input[type=checkbox][disabled], input[type=checkbox].disabled, fieldset[disabled] input[type=checkbox] {
    cursor: not-allowed
}

.radio-inline.disabled, fieldset[disabled] .radio-inline, .checkbox-inline.disabled, fieldset[disabled] .checkbox-inline {
    cursor: not-allowed
}

.radio.disabled label, fieldset[disabled] .radio label, .checkbox.disabled label, fieldset[disabled] .checkbox label {
    cursor: not-allowed
}

.form-control-static {
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0;
    min-height: 34px
}

.form-control-static.input-lg, .input-group-lg > .form-control-static.form-control, .input-group-lg > .form-control-static.input-group-addon, .input-group-lg > .input-group-btn > .form-control-static.btn, .form-control-static.input-sm, .input-group-sm > .form-control-static.form-control, .input-group-sm > .form-control-static.input-group-addon, .input-group-sm > .input-group-btn > .form-control-static.btn {
    padding-left: 0;
    padding-right: 0
}

.input-sm, .input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px
}

select.input-sm, .input-group-sm > select.form-control, .input-group-sm > select.input-group-addon, .input-group-sm > .input-group-btn > select.btn {
    height: 30px;
    line-height: 30px
}

textarea.input-sm, .input-group-sm > textarea.form-control, .input-group-sm > textarea.input-group-addon, .input-group-sm > .input-group-btn > textarea.btn, select[multiple].input-sm, .input-group-sm > select[multiple].form-control, .input-group-sm > select[multiple].input-group-addon, .input-group-sm > .input-group-btn > select[multiple].btn {
    height: auto
}

.form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px
}

.form-group-sm select.form-control {
    height: 30px;
    line-height: 30px
}

.form-group-sm textarea.form-control, .form-group-sm select[multiple].form-control {
    height: auto
}

.form-group-sm .form-control-static {
    height: 30px;
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.5
}

.input-lg, .input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 4px
}

select.input-lg, .input-group-lg > select.form-control, .input-group-lg > select.input-group-addon, .input-group-lg > .input-group-btn > select.btn {
    height: 46px;
    line-height: 46px
}

textarea.input-lg, .input-group-lg > textarea.form-control, .input-group-lg > textarea.input-group-addon, .input-group-lg > .input-group-btn > textarea.btn, select[multiple].input-lg, .input-group-lg > select[multiple].form-control, .input-group-lg > select[multiple].input-group-addon, .input-group-lg > .input-group-btn > select[multiple].btn {
    height: auto
}

.form-group-lg .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 4px
}

.form-group-lg select.form-control {
    height: 46px;
    line-height: 46px
}

.form-group-lg textarea.form-control, .form-group-lg select[multiple].form-control {
    height: auto
}

.form-group-lg .form-control-static {
    height: 46px;
    min-height: 38px;
    padding: 11px 16px;
    font-size: 18px;
    line-height: 1.33333
}

.has-feedback {
    position: relative
}

.has-feedback .form-control {
    padding-right: 42.5px
}

.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none
}

.input-lg + .form-control-feedback, .input-group-lg > .form-control + .form-control-feedback, .input-group-lg > .input-group-addon + .form-control-feedback, .input-group-lg > .input-group-btn > .btn + .form-control-feedback, .input-group-lg + .form-control-feedback, .form-group-lg .form-control + .form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px
}

.input-sm + .form-control-feedback, .input-group-sm > .form-control + .form-control-feedback, .input-group-sm > .input-group-addon + .form-control-feedback, .input-group-sm > .input-group-btn > .btn + .form-control-feedback, .input-group-sm + .form-control-feedback, .form-group-sm .form-control + .form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px
}

.has-success .help-block, .has-success .control-label, .has-success .radio, .has-success .checkbox, .has-success .radio-inline, .has-success .checkbox-inline, .has-success.radio label, .has-success.checkbox label, .has-success.radio-inline label, .has-success.checkbox-inline label {
    color: #3c763d
}

.has-success .form-control {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-success .form-control:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168
}

.has-success .input-group-addon {
    color: #3c763d;
    border-color: #3c763d;
    background-color: #dff0d8
}

.has-success .form-control-feedback {
    color: #3c763d
}

.has-warning .help-block, .has-warning .control-label, .has-warning .radio, .has-warning .checkbox, .has-warning .radio-inline, .has-warning .checkbox-inline, .has-warning.radio label, .has-warning.checkbox label, .has-warning.radio-inline label, .has-warning.checkbox-inline label {
    color: #8a6d3b
}

.has-warning .form-control {
    border-color: #8a6d3b;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-warning .form-control:focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b
}

.has-warning .input-group-addon {
    color: #8a6d3b;
    border-color: #8a6d3b;
    background-color: #fcf8e3
}

.has-warning .form-control-feedback {
    color: #8a6d3b
}

.has-error .help-block, .has-error .control-label, .has-error .radio, .has-error .checkbox, .has-error .radio-inline, .has-error .checkbox-inline, .has-error.radio label, .has-error.checkbox label, .has-error.radio-inline label, .has-error.checkbox-inline label {
    color: #a94442
}

.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483
}

.has-error .input-group-addon {
    color: #a94442;
    border-color: #a94442;
    background-color: #f2dede
}

.has-error .form-control-feedback {
    color: #a94442
}

.has-feedback label ~ .form-control-feedback {
    top: 25px
}

.has-feedback label.sr-only ~ .form-control-feedback, .has-feedback .call-me-back-form label.control-label ~ .form-control-feedback, .call-me-back-form .has-feedback label.control-label ~ .form-control-feedback, .has-feedback .contact-form label.control-label ~ .form-control-feedback, .contact-form .has-feedback label.control-label ~ .form-control-feedback, .has-feedback .nostage-contact-form label.control-label ~ .form-control-feedback, .nostage-contact-form .has-feedback label.control-label ~ .form-control-feedback, .has-feedback .meeting-contact-form label.control-label ~ .form-control-feedback, .meeting-contact-form .has-feedback label.control-label ~ .form-control-feedback {
    top: 0
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373
}

@media (min-width: 768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .form-inline .form-control-static {
        display: inline-block
    }

    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle
    }

    .form-inline .input-group .input-group-addon, .form-inline .input-group .input-group-btn, .form-inline .input-group .form-control {
        width: auto
    }

    .form-inline .input-group > .form-control {
        width: 100%
    }

    .form-inline .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .radio, .form-inline .checkbox {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .radio label, .form-inline .checkbox label {
        padding-left: 0
    }

    .form-inline .radio input[type=radio], .form-inline .checkbox input[type=checkbox] {
        position: relative;
        margin-left: 0
    }

    .form-inline .has-feedback .form-control-feedback {
        top: 0
    }
}

.form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px
}

.form-horizontal .radio, .form-horizontal .checkbox {
    min-height: 27px
}

.form-horizontal .form-group {
    margin-left: -15px;
    margin-right: -15px
}

.form-horizontal .form-group:before, .form-horizontal .form-group:after {
    content: " ";
    display: table
}

.form-horizontal .form-group:after {
    clear: both
}

@media (min-width: 768px) {
    .form-horizontal .control-label {
        text-align: right;
        margin-bottom: 0;
        padding-top: 7px
    }
}

.form-horizontal .has-feedback .form-control-feedback {
    right: 15px
}

@media (min-width: 768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 14.33333px;
        font-size: 18px
    }
}

@media (min-width: 768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
        font-size: 12px
    }
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    white-space: nowrap;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.btn:focus, .btn.focus, .btn:active:focus, .btn:active.focus, .btn.active:focus, .btn.active.focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

.btn:hover, .btn:focus, .btn.focus {
    color: #4c4c4c;
    text-decoration: none
}

.btn:active, .btn.active {
    outline: 0;
    background-image: none;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    cursor: not-allowed;
    opacity: .65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none
}

a.btn.disabled, fieldset[disabled] a.btn {
    pointer-events: none
}

.btn-default {
    color: #4c4c4c;
    background-color: #fff;
    border-color: #fff
}

.btn-default:focus, .btn-default.focus {
    color: #4c4c4c;
    background-color: #e6e6e6;
    border-color: #bfbfbf
}

.btn-default:hover {
    color: #4c4c4c;
    background-color: #e6e6e6;
    border-color: #e0e0e0
}

.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
    color: #4c4c4c;
    background-color: #e6e6e6;
    border-color: #e0e0e0
}

.btn-default:active:hover, .btn-default:active:focus, .btn-default:active.focus, .btn-default.active:hover, .btn-default.active:focus, .btn-default.active.focus, .open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus, .open > .btn-default.dropdown-toggle.focus {
    color: #4c4c4c;
    background-color: #d4d4d4;
    border-color: #bfbfbf
}

.btn-default:active, .btn-default.active, .open > .btn-default.dropdown-toggle {
    background-image: none
}

.btn-default.disabled, .btn-default.disabled:hover, .btn-default.disabled:focus, .btn-default.disabled.focus, .btn-default.disabled:active, .btn-default.disabled.active, .btn-default[disabled], .btn-default[disabled]:hover, .btn-default[disabled]:focus, .btn-default[disabled].focus, .btn-default[disabled]:active, .btn-default[disabled].active, fieldset[disabled] .btn-default, fieldset[disabled] .btn-default:hover, fieldset[disabled] .btn-default:focus, fieldset[disabled] .btn-default.focus, fieldset[disabled] .btn-default:active, fieldset[disabled] .btn-default.active {
    background-color: #fff;
    border-color: #fff
}

.btn-default .badge {
    color: #fff;
    background-color: #4c4c4c
}

.btn-primary {
    color: #fff;
    background-color: #ff3020;
    border-color: #ff1807
}

.btn-primary:focus, .btn-primary.focus {
    color: #fff;
    background-color: #ec1100;
    border-color: #860a00
}

.btn-primary:hover {
    color: #fff;
    background-color: #ec1100;
    border-color: #c80e00
}

.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #ec1100;
    border-color: #c80e00
}

.btn-primary:active:hover, .btn-primary:active:focus, .btn-primary:active.focus, .btn-primary.active:hover, .btn-primary.active:focus, .btn-primary.active.focus, .open > .btn-primary.dropdown-toggle:hover, .open > .btn-primary.dropdown-toggle:focus, .open > .btn-primary.dropdown-toggle.focus {
    color: #fff;
    background-color: #c80e00;
    border-color: #860a00
}

.btn-primary:active, .btn-primary.active, .open > .btn-primary.dropdown-toggle {
    background-image: none
}

.btn-primary.disabled, .btn-primary.disabled:hover, .btn-primary.disabled:focus, .btn-primary.disabled.focus, .btn-primary.disabled:active, .btn-primary.disabled.active, .btn-primary[disabled], .btn-primary[disabled]:hover, .btn-primary[disabled]:focus, .btn-primary[disabled].focus, .btn-primary[disabled]:active, .btn-primary[disabled].active, fieldset[disabled] .btn-primary, fieldset[disabled] .btn-primary:hover, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:active, fieldset[disabled] .btn-primary.active {
    background-color: #ff3020;
    border-color: #ff1807
}

.btn-primary .badge {
    color: #ff3020;
    background-color: #fff
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success:focus, .btn-success.focus {
    color: #fff;
    background-color: #449d44;
    border-color: #255625
}

.btn-success:hover {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

.btn-success:active:hover, .btn-success:active:focus, .btn-success:active.focus, .btn-success.active:hover, .btn-success.active:focus, .btn-success.active.focus, .open > .btn-success.dropdown-toggle:hover, .open > .btn-success.dropdown-toggle:focus, .open > .btn-success.dropdown-toggle.focus {
    color: #fff;
    background-color: #398439;
    border-color: #255625
}

.btn-success:active, .btn-success.active, .open > .btn-success.dropdown-toggle {
    background-image: none
}

.btn-success.disabled, .btn-success.disabled:hover, .btn-success.disabled:focus, .btn-success.disabled.focus, .btn-success.disabled:active, .btn-success.disabled.active, .btn-success[disabled], .btn-success[disabled]:hover, .btn-success[disabled]:focus, .btn-success[disabled].focus, .btn-success[disabled]:active, .btn-success[disabled].active, fieldset[disabled] .btn-success, fieldset[disabled] .btn-success:hover, fieldset[disabled] .btn-success:focus, fieldset[disabled] .btn-success.focus, fieldset[disabled] .btn-success:active, fieldset[disabled] .btn-success.active {
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success .badge {
    color: #5cb85c;
    background-color: #fff
}

.btn-info {
    color: #fff;
    background-color: #1372b8;
    border-color: #1164a1
}

.btn-info:focus, .btn-info.focus {
    color: #fff;
    background-color: #0e558a;
    border-color: #051c2d
}

.btn-info:hover {
    color: #fff;
    background-color: #0e558a;
    border-color: #0b4169
}

.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #0e558a;
    border-color: #0b4169
}

.btn-info:active:hover, .btn-info:active:focus, .btn-info:active.focus, .btn-info.active:hover, .btn-info.active:focus, .btn-info.active.focus, .open > .btn-info.dropdown-toggle:hover, .open > .btn-info.dropdown-toggle:focus, .open > .btn-info.dropdown-toggle.focus {
    color: #fff;
    background-color: #0b4169;
    border-color: #051c2d
}

.btn-info:active, .btn-info.active, .open > .btn-info.dropdown-toggle {
    background-image: none
}

.btn-info.disabled, .btn-info.disabled:hover, .btn-info.disabled:focus, .btn-info.disabled.focus, .btn-info.disabled:active, .btn-info.disabled.active, .btn-info[disabled], .btn-info[disabled]:hover, .btn-info[disabled]:focus, .btn-info[disabled].focus, .btn-info[disabled]:active, .btn-info[disabled].active, fieldset[disabled] .btn-info, fieldset[disabled] .btn-info:hover, fieldset[disabled] .btn-info:focus, fieldset[disabled] .btn-info.focus, fieldset[disabled] .btn-info:active, fieldset[disabled] .btn-info.active {
    background-color: #1372b8;
    border-color: #1164a1
}

.btn-info .badge {
    color: #1372b8;
    background-color: #fff
}

.btn-warning {
    color: #fff;
    background-color: #ff8a00;
    border-color: #e67c00
}

.btn-warning:focus, .btn-warning.focus {
    color: #fff;
    background-color: #cc6e00;
    border-color: #663700
}

.btn-warning:hover {
    color: #fff;
    background-color: #cc6e00;
    border-color: #a85b00
}

.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #cc6e00;
    border-color: #a85b00
}

.btn-warning:active:hover, .btn-warning:active:focus, .btn-warning:active.focus, .btn-warning.active:hover, .btn-warning.active:focus, .btn-warning.active.focus, .open > .btn-warning.dropdown-toggle:hover, .open > .btn-warning.dropdown-toggle:focus, .open > .btn-warning.dropdown-toggle.focus {
    color: #fff;
    background-color: #a85b00;
    border-color: #663700
}

.btn-warning:active, .btn-warning.active, .open > .btn-warning.dropdown-toggle {
    background-image: none
}

.btn-warning.disabled, .btn-warning.disabled:hover, .btn-warning.disabled:focus, .btn-warning.disabled.focus, .btn-warning.disabled:active, .btn-warning.disabled.active, .btn-warning[disabled], .btn-warning[disabled]:hover, .btn-warning[disabled]:focus, .btn-warning[disabled].focus, .btn-warning[disabled]:active, .btn-warning[disabled].active, fieldset[disabled] .btn-warning, fieldset[disabled] .btn-warning:hover, fieldset[disabled] .btn-warning:focus, fieldset[disabled] .btn-warning.focus, fieldset[disabled] .btn-warning:active, fieldset[disabled] .btn-warning.active {
    background-color: #ff8a00;
    border-color: #e67c00
}

.btn-warning .badge {
    color: #ff8a00;
    background-color: #fff
}

.btn-danger {
    color: #fff;
    background-color: #ff3020;
    border-color: #ff1807
}

.btn-danger:focus, .btn-danger.focus {
    color: #fff;
    background-color: #ec1100;
    border-color: #860a00
}

.btn-danger:hover {
    color: #fff;
    background-color: #ec1100;
    border-color: #c80e00
}

.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #ec1100;
    border-color: #c80e00
}

.btn-danger:active:hover, .btn-danger:active:focus, .btn-danger:active.focus, .btn-danger.active:hover, .btn-danger.active:focus, .btn-danger.active.focus, .open > .btn-danger.dropdown-toggle:hover, .open > .btn-danger.dropdown-toggle:focus, .open > .btn-danger.dropdown-toggle.focus {
    color: #fff;
    background-color: #c80e00;
    border-color: #860a00
}

.btn-danger:active, .btn-danger.active, .open > .btn-danger.dropdown-toggle {
    background-image: none
}

.btn-danger.disabled, .btn-danger.disabled:hover, .btn-danger.disabled:focus, .btn-danger.disabled.focus, .btn-danger.disabled:active, .btn-danger.disabled.active, .btn-danger[disabled], .btn-danger[disabled]:hover, .btn-danger[disabled]:focus, .btn-danger[disabled].focus, .btn-danger[disabled]:active, .btn-danger[disabled].active, fieldset[disabled] .btn-danger, fieldset[disabled] .btn-danger:hover, fieldset[disabled] .btn-danger:focus, fieldset[disabled] .btn-danger.focus, fieldset[disabled] .btn-danger:active, fieldset[disabled] .btn-danger.active {
    background-color: #ff3020;
    border-color: #ff1807
}

.btn-danger .badge {
    color: #ff3020;
    background-color: #fff
}

.btn-link {
    color: #ff3020;
    font-weight: 400;
    border-radius: 0
}

.btn-link, .btn-link:active, .btn-link.active, .btn-link[disabled], fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn-link, .btn-link:hover, .btn-link:focus, .btn-link:active {
    border-color: transparent
}

.btn-link:hover, .btn-link:focus {
    color: #d30f00;
    text-decoration: underline;
    background-color: transparent
}

.btn-link[disabled]:hover, .btn-link[disabled]:focus, fieldset[disabled] .btn-link:hover, fieldset[disabled] .btn-link:focus {
    color: #777;
    text-decoration: none
}

.btn-lg, .btn-group-lg > .btn {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 4px
}

.btn-sm, .btn-group-sm > .btn {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px
}

.btn-xs, .btn-group-xs > .btn {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 2px
}

.btn-block {
    display: block;
    width: 100%
}

.btn-block + .btn-block {
    margin-top: 5px
}

input[type=submit].btn-block, input[type=reset].btn-block, input[type=button].btn-block {
    width: 100%
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear
}

.fade.in {
    opacity: 1
}

.collapse {
    display: none
}

.collapse.in {
    display: block
}

tr.collapse.in {
    display: table-row
}

tbody.collapse.in {
    display: table-row-group
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-property: height, visibility;
    transition-property: height, visibility;
    -webkit-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-timing-function: ease;
    transition-timing-function: ease
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid \9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.dropup, .dropdown {
    position: relative
}

.dropdown-toggle:focus {
    outline: 0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    list-style: none;
    font-size: 14px;
    text-align: left;
    background-color: #fff;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    background-clip: padding-box
}

.dropdown-menu.pull-right {
    right: 0;
    left: auto
}

.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857;
    color: #333;
    white-space: nowrap
}

.dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
    text-decoration: none;
    color: #262626;
    background-color: #f5f5f5
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:hover, .dropdown-menu > .active > a:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    background-color: #ff3020
}

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
    color: #777
}

.dropdown-menu > .disabled > a:hover, .dropdown-menu > .disabled > a:focus {
    text-decoration: none;
    background-color: transparent;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    cursor: not-allowed
}

.open > .dropdown-menu {
    display: block
}

.open > a {
    outline: 0
}

.dropdown-menu-right {
    left: auto;
    right: 0
}

.dropdown-menu-left {
    left: 0;
    right: auto
}

.dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.42857;
    color: #777;
    white-space: nowrap
}

.dropdown-backdrop {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    z-index: 990
}

.pull-right > .dropdown-menu {
    right: 0;
    left: auto
}

.dropup .caret, .navbar-fixed-bottom .dropdown .caret {
    border-top: 0;
    border-bottom: 4px dashed;
    border-bottom: 4px solid \9;
    content: ""
}

.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px
}

@media (min-width: 992px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto
    }

    .navbar-right .dropdown-menu-left {
        left: 0;
        right: auto
    }
}

.btn-group, .btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.btn-group > .btn, .btn-group-vertical > .btn {
    position: relative;
    float: left
}

.btn-group > .btn:hover, .btn-group > .btn:focus, .btn-group > .btn:active, .btn-group > .btn.active, .btn-group-vertical > .btn:hover, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn.active {
    z-index: 2
}

.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
    margin-left: -1px
}

.btn-toolbar {
    margin-left: -5px
}

.btn-toolbar:before, .btn-toolbar:after {
    content: " ";
    display: table
}

.btn-toolbar:after {
    clear: both
}

.btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group {
    float: left
}

.btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group {
    margin-left: 5px
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0
}

.btn-group > .btn:first-child {
    margin-left: 0
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group > .btn-group {
    float: left
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0
}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
    outline: 0
}

.btn-group > .btn + .dropdown-toggle {
    padding-left: 8px;
    padding-right: 8px
}

.btn-group > .btn-lg + .dropdown-toggle, .btn-group-lg.btn-group > .btn + .dropdown-toggle {
    padding-left: 12px;
    padding-right: 12px
}

.btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn .caret {
    margin-left: 0
}

.btn-lg .caret, .btn-group-lg > .btn .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0
}

.dropup .btn-lg .caret, .dropup .btn-group-lg > .btn .caret {
    border-width: 0 5px 5px
}

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%
}

.btn-group-vertical > .btn-group:before, .btn-group-vertical > .btn-group:after {
    content: " ";
    display: table
}

.btn-group-vertical > .btn-group:after {
    clear: both
}

.btn-group-vertical > .btn-group > .btn {
    float: none
}

.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
    border-radius: 0
}

.btn-group-vertical > .btn:first-child:not(:last-child) {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
    border-bottom-left-radius: 4px;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate
}

.btn-group-justified > .btn, .btn-group-justified > .btn-group {
    float: none;
    display: table-cell;
    width: 1%
}

.btn-group-justified > .btn-group .btn {
    width: 100%
}

.btn-group-justified > .btn-group .dropdown-menu {
    left: auto
}

[data-toggle=buttons] > .btn input[type=radio], [data-toggle=buttons] > .btn input[type=checkbox], [data-toggle=buttons] > .btn-group > .btn input[type=radio], [data-toggle=buttons] > .btn-group > .btn input[type=checkbox] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.input-group {
    position: relative;
    display: table;
    border-collapse: separate
}

.input-group[class*=col-] {
    float: none;
    padding-left: 0;
    padding-right: 0
}

.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0
}

.input-group-addon, .input-group-btn, .input-group .form-control {
    display: table-cell
}

.input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child), .input-group .form-control:not(:first-child):not(:last-child) {
    border-radius: 0
}

.input-group-addon, .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle
}

.input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 4px
}

.input-group-addon.input-sm, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .input-group-addon.btn {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 2px
}

.input-group-addon.input-lg, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .input-group-addon.btn {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 4px
}

.input-group-addon input[type=radio], .input-group-addon input[type=checkbox] {
    margin-top: 0
}

.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group-btn:last-child > .btn-group:not(:last-child) > .btn {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.input-group-addon:first-child {
    border-right: 0
}

.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:first-child > .btn-group:not(:first-child) > .btn {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.input-group-addon:last-child {
    border-left: 0
}

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap
}

.input-group-btn > .btn {
    position: relative
}

.input-group-btn > .btn + .btn {
    margin-left: -1px
}

.input-group-btn > .btn:hover, .input-group-btn > .btn:focus, .input-group-btn > .btn:active {
    z-index: 2
}

.input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
    margin-right: -1px
}

.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px
}

.nav {
    margin-bottom: 0;
    padding-left: 0;
    list-style: none
}

.nav:before, .nav:after {
    content: " ";
    display: table
}

.nav:after {
    clear: both
}

.nav > li {
    position: relative;
    display: block
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 15px
}

.nav > li > a:hover, .nav > li > a:focus {
    text-decoration: none;
    background-color: #eee
}

.nav > li.disabled > a {
    color: #777
}

.nav > li.disabled > a:hover, .nav > li.disabled > a:focus {
    color: #777;
    text-decoration: none;
    background-color: transparent;
    cursor: not-allowed
}

.nav .open > a, .nav .open > a:hover, .nav .open > a:focus {
    background-color: #eee;
    border-color: #ff3020
}

.nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.nav > li > a > img {
    max-width: none
}

.nav-tabs {
    border-bottom: 1px solid #ddd
}

.nav-tabs > li {
    float: left;
    margin-bottom: -1px
}

.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1.42857;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0
}

.nav-tabs > li > a:hover {
    border-color: #eee #eee #ddd
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus {
    color: #555;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
    cursor: default
}

.nav-pills > li {
    float: left
}

.nav-pills > li > a {
    border-radius: 4px
}

.nav-pills > li + li {
    margin-left: 2px
}

.nav-pills > li.active > a, .nav-pills > li.active > a:hover, .nav-pills > li.active > a:focus {
    color: #fff;
    background-color: #ff3020
}

.nav-stacked > li {
    float: none
}

.nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0
}

.nav-justified, .nav-tabs.nav-justified {
    width: 100%
}

.nav-justified > li, .nav-tabs.nav-justified > li {
    float: none
}

.nav-justified > li > a, .nav-tabs.nav-justified > li > a {
    text-align: center;
    margin-bottom: 5px
}

.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media (min-width: 768px) {
    .nav-justified > li, .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%
    }

    .nav-justified > li > a, .nav-tabs.nav-justified > li > a {
        margin-bottom: 0
    }
}

.nav-tabs-justified, .nav-tabs.nav-justified {
    border-bottom: 0
}

.nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
    margin-right: 0;
    border-radius: 4px
}

.nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
    border: 1px solid #ddd
}

@media (min-width: 768px) {
    .nav-tabs-justified > li > a, .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }

    .nav-tabs-justified > .active > a, .nav-tabs.nav-justified > .active > a, .nav-tabs-justified > .active > a:hover, .nav-tabs.nav-justified > .active > a:hover, .nav-tabs-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:focus {
        border-bottom-color: #fff
    }
}

.tab-content > .tab-pane {
    display: none
}

.tab-content > .active {
    display: block
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}


.breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px
}

.breadcrumb > li {
    display: inline-block
}

.breadcrumb > li + li:before {
    content: "/ ";
    padding: 0 5px;
    color: #ccc
}

.breadcrumb > .active {
    color: #777
}

.pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px
}

.pagination > li {
    display: inline
}

.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    line-height: 1.42857;
    text-decoration: none;
    color: #ff3020;
    background-color: #fff;
    border: 1px solid #ddd;
    margin-left: -1px
}

.pagination > li:first-child > a, .pagination > li:first-child > span {
    margin-left: 0;
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px
}

.pagination > li:last-child > a, .pagination > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px
}

.pagination > li > a:hover, .pagination > li > a:focus, .pagination > li > span:hover, .pagination > li > span:focus {
    z-index: 3;
    color: #d30f00;
    background-color: #eee;
    border-color: #ddd
}

.pagination > .active > a, .pagination > .active > a:hover, .pagination > .active > a:focus, .pagination > .active > span, .pagination > .active > span:hover, .pagination > .active > span:focus {
    z-index: 2;
    color: #fff;
    background-color: #ff3020;
    border-color: #ff3020;
    cursor: default
}

.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus {
    color: #777;
    background-color: #fff;
    border-color: #ddd;
    cursor: not-allowed
}

.pagination-lg > li > a, .pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333
}

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
    border-bottom-left-radius: 4px;
    border-top-left-radius: 4px
}

.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
    border-bottom-right-radius: 4px;
    border-top-right-radius: 4px
}

.pagination-sm > li > a, .pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5
}

.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
    border-bottom-left-radius: 2px;
    border-top-left-radius: 2px
}

.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
    border-bottom-right-radius: 2px;
    border-top-right-radius: 2px
}

.pager {
    padding-left: 0;
    margin: 20px 0;
    list-style: none;
    text-align: center
}

.pager:before, .pager:after {
    content: " ";
    display: table
}

.pager:after {
    clear: both
}

.pager li {
    display: inline
}

.pager li > a, .pager li > span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px
}

.pager li > a:hover, .pager li > a:focus {
    text-decoration: none;
    background-color: #eee
}

.pager .next > a, .pager .next > span {
    float: right
}

.pager .previous > a, .pager .previous > span {
    float: left
}

.pager .disabled > a, .pager .disabled > a:hover, .pager .disabled > a:focus, .pager .disabled > span {
    color: #777;
    background-color: #fff;
    cursor: not-allowed
}

.label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em
}

.label:empty {
    display: none
}

.btn .label {
    position: relative;
    top: -1px
}

a.label:hover, a.label:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.label-default {
    background-color: #777
}

.label-default[href]:hover, .label-default[href]:focus {
    background-color: #5e5e5e
}

.label-primary {
    background-color: #ff3020
}

.label-primary[href]:hover, .label-primary[href]:focus {
    background-color: #ec1100
}

.label-success {
    background-color: #5cb85c
}

.label-success[href]:hover, .label-success[href]:focus {
    background-color: #449d44
}

.label-info {
    background-color: #1372b8
}

.label-info[href]:hover, .label-info[href]:focus {
    background-color: #0e558a
}

.label-warning {
    background-color: #ff8a00
}

.label-warning[href]:hover, .label-warning[href]:focus {
    background-color: #cc6e00
}

.label-danger {
    background-color: #ff3020
}

.label-danger[href]:hover, .label-danger[href]:focus {
    background-color: #ec1100
}

.badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    vertical-align: middle;
    white-space: nowrap;
    text-align: center;
    background-color: #777;
    border-radius: 10px
}

.badge:empty {
    display: none
}

.btn .badge {
    position: relative;
    top: -1px
}

.btn-xs .badge, .btn-group-xs > .btn .badge, .btn-group-xs > .btn .badge {
    top: 0;
    padding: 1px 5px
}

.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
    color: #ff3020;
    background-color: #fff
}

.list-group-item > .badge {
    float: right
}

.list-group-item > .badge + .badge {
    margin-right: 5px
}

.nav-pills > li > a > .badge {
    margin-left: 3px
}

a.badge:hover, a.badge:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.jumbotron {
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #eee
}

.jumbotron h1, .jumbotron .h1 {
    color: inherit
}

.jumbotron p {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 200
}

.jumbotron > hr {
    border-top-color: #d5d5d5
}

.container .jumbotron, .container-fluid .jumbotron {
    border-radius: 4px
}

.jumbotron .container {
    max-width: 100%
}

@media screen and (min-width: 768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px
    }

    .container .jumbotron, .container-fluid .jumbotron {
        padding-left: 60px;
        padding-right: 60px
    }

    .jumbotron h1, .jumbotron .h1 {
        font-size: 63px
    }
}

.thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out
}

.thumbnail > img, .thumbnail a > img {
    display: block;
    max-width: 100%;
    height: auto;
    margin-left: auto;
    margin-right: auto
}

.thumbnail .caption {
    padding: 9px;
    color: #333
}

a.thumbnail:hover, a.thumbnail:focus, a.thumbnail.active {
    border-color: #ff3020
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px
}

.alert h4 {
    margin-top: 0;
    color: inherit
}

.alert .alert-link {
    font-weight: 700
}

.alert > p, .alert > ul {
    margin-bottom: 0
}

.alert > p + p {
    margin-top: 5px
}

.alert-dismissable, .alert-dismissible {
    padding-right: 35px
}

.alert-dismissable .close, .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit
}

.alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #3c763d
}

.alert-success hr {
    border-top-color: #c9e2b3
}

.alert-success .alert-link {
    color: #2b542c
}

.alert-info {
    background-color: #d9edf7;
    border-color: #bce8f1;
    color: #31708f
}

.alert-info hr {
    border-top-color: #a6e1ec
}

.alert-info .alert-link {
    color: #245269
}

.alert-warning {
    background-color: #fcf8e3;
    border-color: #faebcc;
    color: #8a6d3b
}

.alert-warning hr {
    border-top-color: #f7e1b5
}

.alert-warning .alert-link {
    color: #66512c
}

.alert-danger {
    background-color: #f2dede;
    border-color: #ebccd1;
    color: #a94442
}

.alert-danger hr {
    border-top-color: #e4b9c0
}

.alert-danger .alert-link {
    color: #843534
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }
    to {
        background-position: 0 0
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }
    to {
        background-position: 0 0
    }
}

.progress {
    overflow: hidden;
    height: 20px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1)
}

.progress-bar {
    float: left;
    width: 0%;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #ff3020;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease
}

.progress-striped .progress-bar, .progress-bar-striped {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));
    background-size: 40px 40px
}

.progress.active .progress-bar, .progress-bar.active {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite
}

.progress-bar-success {
    background-color: #5cb85c
}

.progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0))
}

.progress-bar-info {
    background-color: #1372b8
}

.progress-striped .progress-bar-info {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0))
}

.progress-bar-warning {
    background-color: #ff8a00
}

.progress-striped .progress-bar-warning {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0))
}

.progress-bar-danger {
    background-color: #ff3020
}

.progress-striped .progress-bar-danger {
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0))
}

.media {
    margin-top: 15px
}

.media:first-child {
    margin-top: 0
}

.media, .media-body {
    zoom: 1;
    overflow: hidden
}

.media-body {
    width: 10000px
}

.media-object {
    display: block
}

.media-object.img-thumbnail {
    max-width: none
}

.media-right, .media > .pull-right {
    padding-left: 10px
}

.media-left, .media > .pull-left {
    padding-right: 10px
}

.media-left, .media-right, .media-body {
    display: table-cell;
    vertical-align: top
}

.media-middle {
    vertical-align: middle
}

.media-bottom {
    vertical-align: bottom
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.media-list {
    padding-left: 0;
    list-style: none
}

.list-group {
    margin-bottom: 20px;
    padding-left: 0
}

.list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd
}

.list-group-item:first-child {
    border-top-right-radius: 4px;
    border-top-left-radius: 4px
}

.list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

a.list-group-item, button.list-group-item {
    color: #555
}

a.list-group-item .list-group-item-heading, button.list-group-item .list-group-item-heading {
    color: #333
}

a.list-group-item:hover, a.list-group-item:focus, button.list-group-item:hover, button.list-group-item:focus {
    text-decoration: none;
    color: #555;
    background-color: #f5f5f5
}

button.list-group-item {
    width: 100%;
    text-align: left
}

.list-group-item.disabled, .list-group-item.disabled:hover, .list-group-item.disabled:focus {
    background-color: #eee;
    color: #777;
    cursor: not-allowed
}

.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading {
    color: inherit
}

.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text {
    color: #777
}

.list-group-item.active, .list-group-item.active:hover, .list-group-item.active:focus {
    z-index: 2;
    color: #fff;
    background-color: #ff3020;
    border-color: #ff3020
}

.list-group-item.active .list-group-item-heading, .list-group-item.active .list-group-item-heading > small, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading > .small {
    color: inherit
}

.list-group-item.active .list-group-item-text, .list-group-item.active:hover .list-group-item-text, .list-group-item.active:focus .list-group-item-text {
    color: #ffedec
}

.list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8
}

a.list-group-item-success, button.list-group-item-success {
    color: #3c763d
}

a.list-group-item-success .list-group-item-heading, button.list-group-item-success .list-group-item-heading {
    color: inherit
}

a.list-group-item-success:hover, a.list-group-item-success:focus, button.list-group-item-success:hover, button.list-group-item-success:focus {
    color: #3c763d;
    background-color: #d0e9c6
}

a.list-group-item-success.active, a.list-group-item-success.active:hover, a.list-group-item-success.active:focus, button.list-group-item-success.active, button.list-group-item-success.active:hover, button.list-group-item-success.active:focus {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d
}

.list-group-item-info {
    color: #31708f;
    background-color: #d9edf7
}

a.list-group-item-info, button.list-group-item-info {
    color: #31708f
}

a.list-group-item-info .list-group-item-heading, button.list-group-item-info .list-group-item-heading {
    color: inherit
}

a.list-group-item-info:hover, a.list-group-item-info:focus, button.list-group-item-info:hover, button.list-group-item-info:focus {
    color: #31708f;
    background-color: #c4e3f3
}

a.list-group-item-info.active, a.list-group-item-info.active:hover, a.list-group-item-info.active:focus, button.list-group-item-info.active, button.list-group-item-info.active:hover, button.list-group-item-info.active:focus {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f
}

.list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3
}

a.list-group-item-warning, button.list-group-item-warning {
    color: #8a6d3b
}

a.list-group-item-warning .list-group-item-heading, button.list-group-item-warning .list-group-item-heading {
    color: inherit
}

a.list-group-item-warning:hover, a.list-group-item-warning:focus, button.list-group-item-warning:hover, button.list-group-item-warning:focus {
    color: #8a6d3b;
    background-color: #faf2cc
}

a.list-group-item-warning.active, a.list-group-item-warning.active:hover, a.list-group-item-warning.active:focus, button.list-group-item-warning.active, button.list-group-item-warning.active:hover, button.list-group-item-warning.active:focus {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b
}

.list-group-item-danger {
    color: #a94442;
    background-color: #f2dede
}

a.list-group-item-danger, button.list-group-item-danger {
    color: #a94442
}

a.list-group-item-danger .list-group-item-heading, button.list-group-item-danger .list-group-item-heading {
    color: inherit
}

a.list-group-item-danger:hover, a.list-group-item-danger:focus, button.list-group-item-danger:hover, button.list-group-item-danger:focus {
    color: #a94442;
    background-color: #ebcccc
}

a.list-group-item-danger.active, a.list-group-item-danger.active:hover, a.list-group-item-danger.active:focus, button.list-group-item-danger.active, button.list-group-item-danger.active:hover, button.list-group-item-danger.active:focus {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442
}

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3
}

.panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05)
}

.panel-body {
    padding: 15px
}

.panel-body:before, .panel-body:after {
    content: " ";
    display: table
}

.panel-body:after {
    clear: both
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.panel-heading > .dropdown .dropdown-toggle {
    color: inherit
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit
}

.panel-title > a, .panel-title > small, .panel-title > .small, .panel-title > small > a, .panel-title > .small > a {
    color: inherit
}

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel > .list-group, .panel > .panel-collapse > .list-group {
    margin-bottom: 0
}

.panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0
}

.panel > .list-group:first-child .list-group-item:first-child, .panel > .panel-collapse > .list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.panel > .list-group:last-child .list-group-item:last-child, .panel > .panel-collapse > .list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0
}

.list-group + .panel-footer {
    border-top-width: 0
}

.panel > .table, .panel > .table-responsive > .table, .panel > .panel-collapse > .table {
    margin-bottom: 0
}

.panel > .table caption, .panel > .table-responsive > .table caption, .panel > .panel-collapse > .table caption {
    padding-left: 15px;
    padding-right: 15px
}

.panel > .table:first-child, .panel > .table-responsive:first-child > .table:first-child {
    border-top-right-radius: 3px;
    border-top-left-radius: 3px
}

.panel > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child {
    border-top-left-radius: 3px
}

.panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child {
    border-top-right-radius: 3px
}

.panel > .table:last-child, .panel > .table-responsive:last-child > .table:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
    border-bottom-left-radius: 3px
}

.panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
    border-bottom-right-radius: 3px
}

.panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body {
    border-top: 1px solid #ddd
}

.panel > .table > tbody:first-child > tr:first-child th, .panel > .table > tbody:first-child > tr:first-child td {
    border-top: 0
}

.panel > .table-bordered, .panel > .table-responsive > .table-bordered {
    border: 0
}

.panel > .table-bordered > thead > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0
}

.panel > .table-bordered > thead > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0
}

.panel > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th {
    border-bottom: 0
}

.panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0
}

.panel > .table-responsive {
    border: 0;
    margin-bottom: 0
}

.panel-group {
    margin-bottom: 20px
}

.panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px
}

.panel-group .panel + .panel {
    margin-top: 5px
}

.panel-group .panel-heading {
    border-bottom: 0
}

.panel-group .panel-heading + .panel-collapse > .panel-body, .panel-group .panel-heading + .panel-collapse > .list-group {
    border-top: 1px solid #ddd
}

.panel-group .panel-footer {
    border-top: 0
}

.panel-group .panel-footer + .panel-collapse .panel-body {
    border-bottom: 1px solid #ddd
}

.panel-default {
    border-color: #ddd
}

.panel-default > .panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ddd
}

.panel-default > .panel-heading .badge {
    color: #f5f5f5;
    background-color: #333
}

.panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd
}

.panel-primary {
    border-color: #ff3020
}

.panel-primary > .panel-heading {
    color: #fff;
    background-color: #ff3020;
    border-color: #ff3020
}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ff3020
}

.panel-primary > .panel-heading .badge {
    color: #ff3020;
    background-color: #fff
}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ff3020
}

.panel-success {
    border-color: #d6e9c6
}

.panel-success > .panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6
}

.panel-success > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #d6e9c6
}

.panel-success > .panel-heading .badge {
    color: #dff0d8;
    background-color: #3c763d
}

.panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #d6e9c6
}

.panel-info {
    border-color: #bce8f1
}

.panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1
}

.panel-info > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #bce8f1
}

.panel-info > .panel-heading .badge {
    color: #d9edf7;
    background-color: #31708f
}

.panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #bce8f1
}

.panel-warning {
    border-color: #faebcc
}

.panel-warning > .panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc
}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #faebcc
}

.panel-warning > .panel-heading .badge {
    color: #fcf8e3;
    background-color: #8a6d3b
}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #faebcc
}

.panel-danger {
    border-color: #ebccd1
}

.panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1
}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ebccd1
}

.panel-danger > .panel-heading .badge {
    color: #f2dede;
    background-color: #a94442
}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ebccd1
}

.embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden;
    padding-bottom: 56.25%
}

.embed-responsive .embed-responsive-item, .embed-responsive iframe, .embed-responsive embed, .embed-responsive object, .embed-responsive video {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    border: 0
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%
}

.embed-responsive-4by3 {
    padding-bottom: 75%
}

.well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05)
}

.well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, .15)
}

.well-lg {
    padding: 24px;
    border-radius: 4px
}

.well-sm {
    padding: 9px;
    border-radius: 2px
}

.close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .2;
    filter: alpha(opacity=20)
}

.close:hover, .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    opacity: .5;
    filter: alpha(opacity=50)
}

button.close {
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
    -webkit-appearance: none
}

.modal-open {
    overflow: hidden
}

.modal {
    display: none;
    overflow: hidden;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    -webkit-overflow-scrolling: touch;
    outline: 0
}

.modal.fade .modal-dialog {
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%);
    -webkit-transition: -webkit-transform .3s ease-out;
    -moz-transition: -moz-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0)
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: 10px
}

.modal-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 4px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    background-clip: padding-box;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}

.modal-backdrop.fade {
    opacity: 0;
    filter: alpha(opacity=0)
}

.modal-backdrop.in {
    opacity: .5;
    filter: alpha(opacity=50)
}

.modal-header {
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    min-height: 16.42857px
}

.modal-header .close {
    margin-top: -2px
}

.modal-title {
    margin: 0;
    line-height: 1.42857
}

.modal-body {
    position: relative;
    padding: 15px
}

.modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5
}

.modal-footer:before, .modal-footer:after {
    content: " ";
    display: table
}

.modal-footer:after {
    clear: both
}

.modal-footer .btn + .btn {
    margin-left: 5px;
    margin-bottom: 0
}

.modal-footer .btn-group .btn + .btn {
    margin-left: -1px
}

.modal-footer .btn-block + .btn-block {
    margin-left: 0
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5)
    }

    .modal-sm {
        width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px
    }
}

.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: helvetica neue, Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 12px;
    opacity: 0;
    filter: alpha(opacity=0)
}

.tooltip.in {
    opacity: .9;
    filter: alpha(opacity=90)
}

.tooltip.top {
    margin-top: -3px;
    padding: 5px 0
}

.tooltip.right {
    margin-left: 3px;
    padding: 0 5px
}

.tooltip.bottom {
    margin-top: 3px;
    padding: 5px 0
}

.tooltip.left {
    margin-left: -3px;
    padding: 0 5px
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 4px
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-left .tooltip-arrow {
    bottom: 0;
    right: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-family: helvetica neue, Helvetica, Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    letter-spacing: normal;
    line-break: auto;
    line-height: 1.42857;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    white-space: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    font-size: 14px;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 4px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2)
}

.popover.top {
    margin-top: -10px
}

.popover.right {
    margin-left: 10px
}

.popover.bottom {
    margin-top: 10px
}

.popover.left {
    margin-left: -10px
}

.popover-title {
    margin: 0;
    padding: 8px 14px;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 3px 3px 0 0
}

.popover-content {
    padding: 9px 14px
}

.popover > .arrow, .popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.popover > .arrow {
    border-width: 11px
}

.popover > .arrow:after {
    border-width: 10px;
    content: ""
}

.popover.top > .arrow {
    left: 50%;
    margin-left: -11px;
    border-bottom-width: 0;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, .25);
    bottom: -11px
}

.popover.top > .arrow:after {
    content: " ";
    bottom: 1px;
    margin-left: -10px;
    border-bottom-width: 0;
    border-top-color: #fff
}

.popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-left-width: 0;
    border-right-color: #999;
    border-right-color: rgba(0, 0, 0, .25)
}

.popover.right > .arrow:after {
    content: " ";
    left: 1px;
    bottom: -10px;
    border-left-width: 0;
    border-right-color: #fff
}

.popover.bottom > .arrow {
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, .25);
    top: -11px
}

.popover.bottom > .arrow:after {
    content: " ";
    top: 1px;
    margin-left: -10px;
    border-top-width: 0;
    border-bottom-color: #fff
}

.popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999;
    border-left-color: rgba(0, 0, 0, .25)
}

.popover.left > .arrow:after {
    content: " ";
    right: 1px;
    border-right-width: 0;
    border-left-color: #fff;
    bottom: -10px
}

.carousel {
    position: relative
}

.carousel-inner {
    position: relative;
    overflow: hidden;
    width: 100%
}

.carousel-inner > .item {
    display: none;
    position: relative;
    -webkit-transition: .6s ease-in-out left;
    -o-transition: .6s ease-in-out left;
    transition: .6s ease-in-out left
}

.carousel-inner > .item > img, .carousel-inner > .item > a > img {
    display: block;
    max-width: 100%;
    height: auto;
    line-height: 1
}

@media all and (transform-3d),(-webkit-transform-3d) {
    .carousel-inner > .item {
        -webkit-transition: -webkit-transform .6s ease-in-out;
        -moz-transition: -moz-transform .6s ease-in-out;
        -o-transition: -o-transform .6s ease-in-out;
        transition: transform .6s ease-in-out;
        -webkit-backface-visibility: hidden;
        -moz-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000px;
        -moz-perspective: 1000px;
        perspective: 1000px
    }

    .carousel-inner > .item.next, .carousel-inner > .item.active.right {
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0);
        left: 0
    }

    .carousel-inner > .item.prev, .carousel-inner > .item.active.left {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        left: 0
    }

    .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right, .carousel-inner > .item.active {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        left: 0
    }
}

.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
    display: block
}

.carousel-inner > .active {
    left: 0
}

.carousel-inner > .next, .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%
}

.carousel-inner > .next {
    left: 100%
}

.carousel-inner > .prev {
    left: -100%
}

.carousel-inner > .next.left, .carousel-inner > .prev.right {
    left: 0
}

.carousel-inner > .active.left {
    left: -100%
}

.carousel-inner > .active.right {
    left: 100%
}

.carousel-control {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 15%;
    opacity: .5;
    filter: alpha(opacity=50);
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6)
}

.carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.0001) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)
}

.carousel-control.right {
    left: auto;
    right: 0;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.0001) 0%, rgba(0, 0, 0, 0.5) 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)
}

.carousel-control:hover, .carousel-control:focus {
    outline: 0;
    color: #fff;
    text-decoration: none;
    opacity: .9;
    filter: alpha(opacity=90)
}

.carousel-control .icon-prev, .carousel-control .icon-next, .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right {
    position: absolute;
    top: 50%;
    margin-top: -10px;
    z-index: 5;
    display: inline-block
}

.carousel-control .icon-prev, .carousel-control .glyphicon-chevron-left {
    left: 50%;
    margin-left: -10px
}

.carousel-control .icon-next, .carousel-control .glyphicon-chevron-right {
    right: 50%;
    margin-right: -10px
}

.carousel-control .icon-prev, .carousel-control .icon-next {
    width: 20px;
    height: 20px;
    line-height: 1;
    font-family: serif
}

.carousel-control .icon-prev:before {
    content: '\2039'
}

.carousel-control .icon-next:before {
    content: '\203a'
}

.carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    margin-left: -30%;
    padding-left: 0;
    list-style: none;
    text-align: center
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    border: 1px solid #fff;
    border-radius: 10px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: transparent
}

.carousel-indicators .active {
    margin: 0;
    width: 12px;
    height: 12px;
    background-color: #fff
}

.carousel-caption {
    position: absolute;
    left: 15%;
    right: 15%;
    bottom: 20px;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6)
}

.carousel-caption .btn {
    text-shadow: none
}

@media screen and (min-width: 768px) {
    .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-prev, .carousel-control .icon-next {
        width: 30px;
        height: 30px;
        margin-top: -15px;
        font-size: 30px
    }

    .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
        margin-left: -15px
    }

    .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
        margin-right: -15px
    }

    .carousel-caption {
        left: 20%;
        right: 20%;
        padding-bottom: 30px
    }

    .carousel-indicators {
        bottom: 20px
    }
}

.clearfix:before, .reprog-nostage .reprog-title:before, .intro-section .reprog-title:before, .clearfix:after, .reprog-nostage .reprog-title:after, .intro-section .reprog-title:after {
    content: " ";
    display: table
}

.clearfix:after, .reprog-nostage .reprog-title:after, .intro-section .reprog-title:after {
    clear: both
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto
}

.pull-right {
    float: right !important
}

.pull-left {
    float: left !important
}

.hide {
    display: none !important
}

.show {
    display: block !important
}

.invisible {
    visibility: hidden
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0
}

.hidden {
    display: none !important
}

.affix {
    position: fixed
}

@-ms-viewport {
    width: device-width;
}

.visible-xs {
    display: none !important
}

.visible-sm {
    display: none !important
}

.visible-md {
    display: none !important
}

.visible-lg {
    display: none !important
}

.visible-xs-block, .visible-xs-inline, .visible-xs-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-lg-block, .visible-lg-inline, .visible-lg-inline-block {
    display: none !important
}

@media (max-width: 767px) {
    .visible-xs {
        display: block !important
    }

    table.visible-xs {
        display: table !important
    }

    tr.visible-xs {
        display: table-row !important
    }

    th.visible-xs, td.visible-xs {
        display: table-cell !important
    }
}

@media (max-width: 767px) {
    .visible-xs-block {
        display: block !important
    }
}

@media (max-width: 767px) {
    .visible-xs-inline {
        display: inline !important
    }
}

@media (max-width: 767px) {
    .visible-xs-inline-block {
        display: inline-block !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm {
        display: block !important
    }

    table.visible-sm {
        display: table !important
    }

    tr.visible-sm {
        display: table-row !important
    }

    th.visible-sm, td.visible-sm {
        display: table-cell !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-block {
        display: block !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline {
        display: inline !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline-block {
        display: inline-block !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md {
        display: block !important
    }

    table.visible-md {
        display: table !important
    }

    tr.visible-md {
        display: table-row !important
    }

    th.visible-md, td.visible-md {
        display: table-cell !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-block {
        display: block !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline {
        display: inline !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline-block {
        display: inline-block !important
    }
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important
    }

    table.visible-lg {
        display: table !important
    }

    tr.visible-lg {
        display: table-row !important
    }

    th.visible-lg, td.visible-lg {
        display: table-cell !important
    }
}

@media (min-width: 1200px) {
    .visible-lg-block {
        display: block !important
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline {
        display: inline !important
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline-block {
        display: inline-block !important
    }
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important
    }
}

.visible-print {
    display: none !important
}

@media print {
    .visible-print {
        display: block !important
    }

    table.visible-print {
        display: table !important
    }

    tr.visible-print {
        display: table-row !important
    }

    th.visible-print, td.visible-print {
        display: table-cell !important
    }
}

.visible-print-block {
    display: none !important
}

@media print {
    .visible-print-block {
        display: block !important
    }
}

.visible-print-inline {
    display: none !important
}

@media print {
    .visible-print-inline {
        display: inline !important
    }
}

.visible-print-inline-block {
    display: none !important
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important
    }
}

@media print {
    .hidden-print {
        display: none !important
    }
}

.checkbox {
    padding-left: 20px
}

.checkbox label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 5px
}

.checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: border .15s ease-in-out, color .15s ease-in-out;
    -o-transition: border .15s ease-in-out, color .15s ease-in-out;
    transition: border .15s ease-in-out, color .15s ease-in-out
}

.checkbox label::after {
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 0;
    margin-left: -20px;
    padding-left: 3px;
    padding-top: 1px;
    font-size: 11px;
    color: #555
}

.checkbox input[type=checkbox], .checkbox input[type=radio] {
    opacity: 0;
    z-index: 1
}

.checkbox input[type=checkbox]:focus + label::before, .checkbox input[type=radio]:focus + label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

.checkbox input[type=checkbox]:checked + label::after, .checkbox input[type=radio]:checked + label::after {
    font-family: fontawesome;
    content: ""
}

.checkbox input[type=checkbox]:disabled + label, .checkbox input[type=radio]:disabled + label {
    opacity: .65
}

.checkbox input[type=checkbox]:disabled + label::before, .checkbox input[type=radio]:disabled + label::before {
    background-color: #eee;
    cursor: not-allowed
}

.checkbox.checkbox-circle label::before {
    border-radius: 50%
}

.checkbox.checkbox-inline {
    margin-top: 0
}

.checkbox-primary input[type=checkbox]:checked + label::before, .checkbox-primary input[type=radio]:checked + label::before {
    background-color: #ff3020;
    border-color: #ff3020
}

.checkbox-primary input[type=checkbox]:checked + label::after, .checkbox-primary input[type=radio]:checked + label::after {
    color: #fff
}

.checkbox-danger input[type=checkbox]:checked + label::before, .checkbox-danger input[type=radio]:checked + label::before {
    background-color: #ff3020;
    border-color: #ff3020
}

.checkbox-danger input[type=checkbox]:checked + label::after, .checkbox-danger input[type=radio]:checked + label::after {
    color: #fff
}

.checkbox-info input[type=checkbox]:checked + label::before, .checkbox-info input[type=radio]:checked + label::before {
    background-color: #1372b8;
    border-color: #1372b8
}

.checkbox-info input[type=checkbox]:checked + label::after, .checkbox-info input[type=radio]:checked + label::after {
    color: #fff
}

.checkbox-warning input[type=checkbox]:checked + label::before, .checkbox-warning input[type=radio]:checked + label::before {
    background-color: #ff8a00;
    border-color: #ff8a00
}

.checkbox-warning input[type=checkbox]:checked + label::after, .checkbox-warning input[type=radio]:checked + label::after {
    color: #fff
}

.checkbox-success input[type=checkbox]:checked + label::before, .checkbox-success input[type=radio]:checked + label::before {
    background-color: #5cb85c;
    border-color: #5cb85c
}

.checkbox-success input[type=checkbox]:checked + label::after, .checkbox-success input[type=radio]:checked + label::after {
    color: #fff
}

.radio {
    padding-left: 20px
}

.radio label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 5px
}

.radio label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: border .15s ease-in-out;
    -o-transition: border .15s ease-in-out;
    transition: border .15s ease-in-out
}

.radio label::after {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 11px;
    height: 11px;
    left: 3px;
    top: 3px;
    margin-left: -20px;
    border-radius: 50%;
    background-color: #555;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    -moz-transition: -moz-transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    -o-transition: -o-transform .1s cubic-bezier(.8, -.33, .2, 1.33);
    transition: transform .1s cubic-bezier(.8, -.33, .2, 1.33)
}

.radio input[type=radio] {
    opacity: 0;
    z-index: 1
}

.radio input[type=radio]:focus + label::before {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

.radio input[type=radio]:checked + label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1)
}

.radio input[type=radio]:disabled + label {
    opacity: .65
}

.radio input[type=radio]:disabled + label::before {
    cursor: not-allowed
}

.radio.radio-inline {
    margin-top: 0
}

.radio-primary input[type=radio] + label::after {
    background-color: #ff3020
}

.radio-primary input[type=radio]:checked + label::before {
    border-color: #ff3020
}

.radio-primary input[type=radio]:checked + label::after {
    background-color: #ff3020
}

.radio-danger input[type=radio] + label::after {
    background-color: #ff3020
}

.radio-danger input[type=radio]:checked + label::before {
    border-color: #ff3020
}

.radio-danger input[type=radio]:checked + label::after {
    background-color: #ff3020
}

.radio-info input[type=radio] + label::after {
    background-color: #1372b8
}

.radio-info input[type=radio]:checked + label::before {
    border-color: #1372b8
}

.radio-info input[type=radio]:checked + label::after {
    background-color: #1372b8
}

.radio-warning input[type=radio] + label::after {
    background-color: #ff8a00
}

.radio-warning input[type=radio]:checked + label::before {
    border-color: #ff8a00
}

.radio-warning input[type=radio]:checked + label::after {
    background-color: #ff8a00
}

.radio-success input[type=radio] + label::after {
    background-color: #5cb85c
}

.radio-success input[type=radio]:checked + label::before {
    border-color: #5cb85c
}

.radio-success input[type=radio]:checked + label::after {
    background-color: #5cb85c
}

input[type=checkbox].styled:checked + label:after, input[type=radio].styled:checked + label:after {
    font-family: fontawesome;
    content: "\f00c"
}

input[type=checkbox] .styled:checked + label::before, input[type=radio] .styled:checked + label::before {
    color: #fff
}

input[type=checkbox] .styled:checked + label::after, input[type=radio] .styled:checked + label::after {
    color: #fff
}

/*!* Bootstrap Modal
*
* Copyright Jordan Schroter
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
*
* Boostrap 3 patch for for bootstrap-modal. Include BEFORE bootstrap-modal.css!*/
body.modal-open {
    margin-right: 0
}

.modal-open .navbar-fixed-top, .modal-open .navbar-fixed-bottom {
    margin-right: 0
}

.modal {
    left: 50%;
    bottom: auto;
    right: auto;
    z-index: 1050;
    padding: 0;
    width: 500px;
    margin-left: -250px;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    background-clip: padding-box
}

.modal.container {
    max-width: none
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040
}

/*!* Bootstrap Modal
*
* Copyright Jordan Schroter
* Licensed under the Apache License v2.0
* http://www.apache.org/licenses/LICENSE-2.0
**/
.modal-open {
    overflow: hidden
}

.modal-open.page-overflow .page-container {
    overflow-y: scroll
}

.modal-open.page-overflow .page-container .navbar-fixed-top, .modal-open.page-overflow .page-container .navbar-fixed-bottom {
    overflow-y: scroll
}

.modal-open.page-overflow .modal-scrollable {
    overflow-y: scroll
}

@media (max-width: 979px) {
    .modal-open.page-overflow .page-container .navbar-fixed-top, .modal-open.page-overflow .page-container .navbar-fixed-bottom {
        overflow-y: visible
    }
}

.modal-scrollable {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: auto
}

.modal {
    outline: none;
    position: absolute;
    margin-top: 0;
    top: 50%;
    overflow: visible
}

.modal.fade {
    top: -100%;
    -webkit-transition: opacity .3s linear, top .3s ease-out, bottom .3s ease-out, margin-top .3s ease-out;
    -moz-transition: opacity .3s linear, top .3s ease-out, bottom .3s ease-out, margin-top .3s ease-out;
    -o-transition: opacity .3s linear, top .3s ease-out, bottom .3s ease-out, margin-top .3s ease-out;
    transition: opacity .3s linear, top .3s ease-out, bottom .3s ease-out, margin-top .3s ease-out
}

.modal.fade.in {
    top: 50%
}

.modal-body {
    max-height: none;
    overflow: visible
}

.modal.modal-absolute {
    position: absolute;
    z-index: 950
}

.modal .loading-mask {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 6px
}

.modal-backdrop {
    opacity: .7;
    filter: alpha(opacity=70);
    background: #fff
}

.modal-backdrop.modal-absolute {
    position: absolute;
    z-index: 940
}

.modal-backdrop.fade.in {
    opacity: .7;
    filter: alpha(opacity=70);
    background: #fff
}

.modal.container {
    width: 940px;
    margin-left: -470px
}

.modal-overflow.modal {
    top: 1%
}

.modal-overflow.modal.fade {
    top: -100%
}

.modal-overflow.modal.fade.in {
    top: 1%
}

.modal-overflow .modal-body {
    overflow: auto;
    -webkit-overflow-scrolling: touch
}

@media (min-width: 1200px) {
    .modal.container {
        width: 1170px;
        margin-left: -585px
    }
}

@media (max-width: 979px) {
    .modal {
        top: 1%;
        right: 1%;
        left: 1%;
        bottom: auto;
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important
    }

    .modal.container, .modal.modal-overflow {
        top: 1%;
        right: 1%;
        left: 1%;
        bottom: auto;
        width: auto !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important
    }

    .modal.fade.in, .modal.container.fade.in, .modal.modal-overflow.fade.in {
        top: 10%;
        bottom: auto
    }

    .modal-body, .modal-overflow .modal-body {
        position: static;
        margin: 0;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important
    }

    .modal-footer, .modal-overflow .modal-footer {
        position: static
    }
}

.loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -12px 0 0 -12px
}

.ath-viewport {
    position: relative;
    z-index: 2147483641;
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    -ms-text-size-adjust: none;
    -o-text-size-adjust: none;
    text-size-adjust: none
}

.ath-viewport * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.ath-modal {
    pointer-events: auto !important;
    background: rgba(0, 0, 0, .6)
}

.ath-mandatory {
    background: #000
}

.ath-container {
    pointer-events: auto !important;
    position: absolute;
    z-index: 2147483641;
    padding: .7em .6em;
    width: 18em;
    background: #eee;
    background-size: 100% auto;
    box-shadow: 0 .2em 0 #d1d1d1;
    font-family: sans-serif;
    font-size: 15px;
    line-height: 1.5em;
    text-align: center
}

.ath-container small {
    font-size: .8em;
    line-height: 1.3em;
    display: block;
    margin-top: .5em
}

.ath-ios.ath-phone {
    bottom: 1.8em;
    left: 50%;
    margin-left: -9em
}

.ath-ios6.ath-tablet {
    left: 5em;
    top: 1.8em
}

.ath-ios7.ath-tablet {
    left: .7em;
    top: 1.8em
}

.ath-ios8.ath-tablet {
    right: .4em;
    top: 1.8em
}

.ath-android {
    bottom: 1.8em;
    left: 50%;
    margin-left: -9em
}

.ath-container:before {
    content: '';
    position: relative;
    display: block;
    float: right;
    margin: -.7em -.6em 0 .5em;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAIQAAACECAMAAABmmnOVAAAAdVBMVEUAAAA5OTkzMzM7Ozs3NzdBQUFAQEA/Pz8+Pj5BQUFAQEA/Pz8+Pj5BQUFAQEA/Pz9BQUE+Pj4/Pz8/Pz8+Pj4/Pz8/Pz8/Pz8+Pj4/Pz8+Pj4/Pz8/Pz8/Pz8/Pz8/Pz8+Pj4/Pz8/Pz8/Pz8/Pz9AQEA/Pz+fdCaPAAAAJnRSTlMACQoNDjM4OTo7PEFCQ0RFS6ytsbS1tru8vcTFxu7x8vX19vf4+C5yomAAAAJESURBVHgBvdzLTsJAGEfxr4C2KBcVkQsIDsK8/yPaqIsPzVlyzrKrX/5p0kkXEz81L23otc9NpIbbWia2YVLqdnhlqFlhGWpSDHe1aopsSIpRb8gK0dC3G30b9rVmhWZIimTICsvQtx/FsuYOrWHoDjX3Gu31gzJxdki934WrAIOsAIOsAIOiAMPhPsJTgKGN0BVsYIVsYIVpYIVpYIVpYIVpYIVpYIVpYIVpYIVlAIVgEBRs8BRs8BRs8BRs8BRs8BRs8BRs8BRTNmgKNngKNngKNngKNngKNhiKGxgiOlZoBlaYBlaYBlaYBlaYBlaYBlaYBlaYBlZIBlBMfQMrVAMr2KAqBENSHFHhGEABhi5CV6gGUKgGUKgGUKgGUFwuqgEUvoEVsoEVpoEUpgEUggF+gKTKY+h1fxSlC7/Z+RrxOQ3fcEoAPPHZBlaYBlaYBlaYBlZYBlYIhvLBCstw7PgM7hkiWOEZWGEaWGEaWGEaIsakEAysmHkGVpxmvoEVqoEVpoEVpoEVpoEVpoEVpoEVkoEVgkFQsEFSsEFQsGEcoSvY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnY4CnmbNAUT2c2WAo2eAo2eAo2eAo2eAo2eArNEPFACjZ4CjZ4CjZ4CjaIird/rBvFH6llNCvewdli1URWCIakSIZesUaDoFg36dKFWk9zCZDei3TtwmCj7pC22AwikiIZPEU29IpFNliKxa/hC9DFITjQPYhcAAAAAElFTkSuQmCC);
    background-color: rgba(255, 255, 255, .8);
    background-size: 50%;
    background-repeat: no-repeat;
    background-position: 50%;
    width: 2.7em;
    height: 2.7em;
    text-align: center;
    overflow: hidden;
    color: #a33;
    z-index: 2147483642
}

.ath-container.ath-icon:before {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    float: none
}

.ath-mandatory .ath-container:before {
    display: none
}

.ath-container.ath-android:before {
    float: left;
    margin: -.7em .5em 0 -.6em
}

.ath-container.ath-android.ath-icon:before {
    position: absolute;
    right: auto;
    left: 0;
    margin: 0;
    float: none
}

.ath-action-icon {
    display: inline-block;
    vertical-align: middle;
    background-position: 50%;
    background-repeat: no-repeat;
    text-indent: -9999em;
    overflow: hidden
}

.ath-ios7 .ath-action-icon, .ath-ios8 .ath-action-icon {
    width: 1.6em;
    height: 1.6em;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAHgAAACtCAYAAAB7l7tOAAAF6UlEQVR4AezZWWxUZRiH8VcQEdxZEFFiUZBFUCIa1ABBDARDcCciYGKMqTEGww3SOcNSAwQTjOBiiIpEhRjAhRgXRC8MFxojEhAFZUGttVhaoSxlaW3n8W3yXZxm6vTrOMM5Q98n+V9MMu1pvl++uZhKuypghu49KaaTWGdZSYoVN6VD95nMpLNYZ9XNbdQR2od2k88O3Gm6Bh0t7H0p5Vwp2Ax3ajpu2tYbciFWwkTFO63DY6+JcI4USFaSyYpWp8N7SVZJKR3EinkBk9JxvZFXxhnZSjBaoWp1ZL0ES8WKYXMZp0AndORgy8WKFe5Yf1zvvSBWDEpys2LU6MjD5kmEWQlGKsJRHXlcqUSQVcItEnDEA6gAb7LhjvD9WO6yIEfICQI5A1nzGCYB1T4og5bBiFcyv2f6ujYhl4iVxwKG6qp8MK55HsqPwK0rMr9v/yEo3uCPrJstVh5KMER30Aeh31Ioq0FrHfjXw9CYghnrvYFTuqfEymFzGSwBlT4ARYr7u+K6GLmCVGvAGg2NMG0d/sgJnpScZLjXSkC5z8H3eQ72/k24Q8NfzvwFyK4qtuJSZKaubRPyE/K/Mtx+EvCHL+7uasId1t10w0scz/RzSzYzAfgKV30D3LPaG7lRkR8RK4tKKJKAMp+D7r0EfmmOe0x3m2itAc/ZxBjgAt1mXHWKPPkdb+QGSTJdrDaU5EoJ2OtzwD0WwY7KNNzbRfMFFg24WPdtGHnS221Cflgsj56hjwTs8TnY7oq7/QDhjutGicsb2AVcovsO18l6uPPNNiE/JFaGAq7Q7fY50G4LYVtz3FrdaNGyBXbIl+q24DqhyHes9EaulwR3SwtZs+ktAT/7HORliru1gnCndONFyx44Dfn7MPLYN7yR6yTJZAllJeguAT/4HOBFz8I3ZWm4E0TLFbBD7qn7EVdtHYx53R9ZN0ksrZRuErDN5+AuLIWvm+Oe1k0ULdfADrmX7idcR0/DyBXeyCdlLuMMOGCBz4F1ng+f7yFcve5e0fIFHELeiav6BAx70Rt5p0yhY3u/wR0kyarW/uX35b403PtFyzewQ75ctwtXzSkY8WqruHslSV8RscrL6TJ1bcvfWJ0/HzbtIdw/ugdFyzdwOOAq3T6fmzxwGQ3vbmO8iFioIWqYSsHMj9M/ljfuTsOdItoZBXYBfXX7cVXVwvXLm/8+fU3lcdCqdEMNGBbgUmRmfQISQKd5sGEn4VK6YtEiAXYBA3QVuA4q8hCHrDcafR1ul65jewfuovsCl7vJrNlOuEbdo6JFCuwCrtb9hqusBu56Cw4cI1y1briIWEBn3Ue0XKPuMdGiBg4H9NdV0HJ/6QZLOEPmPN0GmpfSPS5arIBdwHUtIFfoBsl/ZsgfhHCfFi2WwC5goO4AmvanbqBkzJA76tboZokWa2AXMEi3RTdAvDLkDqJFAhzB32xFD2wZsGXA0WfAlgFbBmwZsGXAlgFbBpzk04JaKb0iA9ZnF9x5SQAFtRKKIgPWZxfaeRmwAZ/BGbAB37eaG6MCbnq2Aed5czYyKirgpmcbsAHHZAZswN0Wwo7KeG1fFf2jAm56dtzOQ42yB+65mDhWFBUwUETMUiMDNmADbp/APRaTAh6I2bpGCNw1bufRZJQ1cPdF/NueHZsgDEBBGLbMGoIu4AZu5gLOZeEaYmEXeznF3jRPyEv4frgJvvJe3qTefY0AAwYMGDBgwIABAwYMGDBgwIABAwYMGDBgwIABAwYMGDBgwIABAwYMGDBgwIABAwYMGDBgwIABAwb8rwADBgwYMGDAgAEDBgwYMGDAgAEDBgwYMGDAgAEDBgz4/sz1Nia/9hizA7zgklwy3RYwYMBzBRjw4bPjxAbAAizAAtwgwAIswAIswAIMGDBgARZgARZgAS4FWIAFWIAFWIABAwYswAIswAIswIUAC7AAC7AACzBgwIAFWIAFWIAFuBBgARZgARZgAQYMGPApQ99ZCdgWtzqwATbABtgAG2DbnxNb7zbRimsMLMACrDf2wMWI/WasfQAAAABJRU5ErkJggg==);
    margin-top: -.3em;
    background-size: auto 100%
}

.ath-ios6 .ath-action-icon {
    width: 1.8em;
    height: 1.8em;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJAAAAB0CAQAAADAmnOnAAAAAnNCSVQICFXsRgQAAAAJcEhZcwAAWwEAAFsBAXkZiFwAAAAZdEVYdFNvZnR3YXJlAHd3dy5pbmtzY2FwZS5vcmeb7jwaAAAF4klEQVR4Ae3a/a+XdR3H8ec5HM45HDmKICoVohkZsxESRRCzcZM/2JKkdGR5MrSkleA0Pd00O4u5IVuNM2yYc6XSzCExU4oUNRPCJFdMUAhsYZpUGhscOHA4N8/WZzsL6HBxvofvdV3fa3yer//gsV3vH659KHzncBsJxUYhDzOEhCKQbORs+ip2wzgM+wvj+P9i35qAGLaHGcQSgKSTrxBLABJppZpYApCspoFYApBsZjSxBCD5OxOJJQBJG1cQSwCSLpqJJQCJ3MvgCGTinuSMCJS8LZwfgZL3FtMiUPIOcU0ESl4PLRHoRPsJtREoeRsYGYGS9yrvo6RmpbLaigWSfzOdErLs6+bLUMFA0sF1+QF1cz1UNlBYK9V5AHXyWSgEkKyiIWOgGh829Ki1lLcaxjCVK7mJRSxjBY+zgRf/u9pXcMB7jhEZAg32EUP3O6hMKOP5Iq2sZQeHMZXt5KKMgOpcY+iHVnFyjeQKlrCBdsxge5ieAVC9vzLUelI8H+A7bKIHM10H81IGGuKvDf1ggDxVTKOV1zG3/Yia1ICG+ltD32MgNTKfP2HuW0VDKkCNrjfUTOm9i6XswwrZJkaVHeh0f2fodkrtfO6jAytqrzG+rEDDfVG1x1sprZEs5RBW4PZxeT+Bbrf5hPu9arfzKaU6WjiAFbseWvoF1GW/6vYGSmkyW7Dit4xB5QHq9Br6Xx2t9GAhtp6zkoHsfNp1J9wX6H+jeR4LtJc4LxGopZZyNpN/YcG2mw9nBTSPLizgOmjKAujGgvJID3ekD7QYi7nGzkvmQtpA38Vi7iJf0TedlC7QTVjMfcY2QyvSBPpUMW/PIBfbo9pls1XpAX2EdizeznStob3OJpQO0DB2YfE21q2GtnghpAm0Gou3T9tm6BGHQppA12HRVt17eboNlydNoLHsx2JtmL801OYcQmkC/QKLtQt9ydBW3wNpA30ci7Ur3WdolUMhbaBqNhf/8qQJ9Hkszs5wjaH9XkUobaAqtmFRdoGbDb3sWMgG6DIs5852knO82RaXer+P+qyb3eWeo7ZNBrRZvm1otY2QFdBjeHIb6hTne49Put12+9ObMoDdYmfy5UkF6AK6cCCr9aM2u9IddptcOYCG+FNDB5xLKCugO7G01TndFp/xgAntdYvrfdwVLnORt3q9Vx25F27DUjbGPxr6qxMgW6Cd2N+d6wLXedA+6nKbK73Lr/pJxzusvE/wZrvX0FOOgGyBxmF/dprXutYOj6nNdS6xyYnWp/dGcaGdhr5vDWQN9E1MXrUzfcA2j2qPj/l1J1uT9iPOeh8w1O7nCGUN9HzyGZ7ndo9qp0ucanU2r1xH+wdDu5wIeQDVVx0+/kd1i697RNv8thdn+Qz4Uv9p6DeOhHyApmBfq3OBu+3Nfd7nVELZAX3Nw4ZarYG8gG7GY1dlk6/Zm3/2Rk8jlB1QvT82dNAmQjkBVf8Mj957fdrefM7ZVhPKEuidvmDob06CXIGGbsX/bZDf8KAhfdbJhLIGmuZuQ084HHIGatiLvRvrRkP6qldbBXkAzbfD0N0OhryBGqrEMOd50FC7d1hPKGugBh8ydMh5hPIGGouI1d5lj6F1vptQ9kDvcKOhN5wMlQH0QcRGnzC03yZCeQDN9G1D6xwBFQI07FI8x02GdjgB8gJqttPQcmuhYoAumzvG7YZWejrkA1TrPYYO+SVCFQO0aM4bqj0uJJQH0LluSP7PkyeQU9QOmyAvoBm+Zegpz4LKA/qYB/wE5AXUe3m81zqoRKAPOYWcuvP9dxvqcD6h7IAKkaNU3eUlHLcI9EzS5YlAi62h/zUy89QCqqKUmvgHywsJlEHnsQYxAvXVIJo5gIhnPhiBju1iNmLvLn85Ah1ZPYs5jBGo72awEzEC9dVwHqQHI9DxWoAYgSLQQKteGIESu/qhCJTYtT+PQBEoAkWgCBSBkotAEehUWwSKQBEoAkWg/BeBIlAEikARKAJFoFmealu4gVLy1Gt5dkARKAL9BzujPSurTmu/AAAAAElFTkSuQmCC);
    margin-bottom: .4em;
    background-size: 100% auto
}

.ath-android .ath-action-icon {
    width: 1.4em;
    height: 1.5em;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAANlBMVEVmZmb///9mZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZmZW6fJrAAAAEXRSTlMAAAYHG21ub8fLz9DR8/T4+RrZ9owAAAB3SURBVHja7dNLDoAgDATQWv4gKve/rEajJOJiWLgg6WzpSyB0aHqHiNj6nL1lovb4C+hYzkSNAT7mryQFAVOeGAj4CjwEtgrWXpD/uZKtwEJApXt+Vn0flzRhgNiFZQkOXY0aADQZCOCPlsZJ46Rx0jhp3IiN2wGDHhxtldrlwQAAAABJRU5ErkJggg==);
    background-size: 100% auto
}

.ath-container p {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 2147483642;
    text-shadow: 0 .1em 0 #fff;
    font-size: 1.1em
}

.ath-ios.ath-phone:after {
    content: '';
    background: #eee;
    position: absolute;
    width: 2em;
    height: 2em;
    bottom: -.9em;
    left: 50%;
    margin-left: -1em;
    -webkit-transform: scaleX(.9) rotate(45deg);
    transform: scaleX(.9) rotate(45deg);
    box-shadow: .2em .2em 0 #d1d1d1
}

.ath-ios.ath-tablet:after {
    content: '';
    background: #eee;
    position: absolute;
    width: 2em;
    height: 2em;
    top: -.9em;
    left: 50%;
    margin-left: -1em;
    -webkit-transform: scaleX(.9) rotate(45deg);
    transform: scaleX(.9) rotate(45deg);
    z-index: 2147483641
}

.ath-application-icon {
    position: relative;
    padding: 0;
    border: 0;
    margin: 0 auto .2em;
    height: 6em;
    width: 6em;
    z-index: 2147483642
}

.ath-container.ath-ios .ath-application-icon {
    border-radius: 1em;
    box-shadow: 0 .2em .4em rgba(0, 0, 0, .3), inset 0 .07em 0 rgba(255, 255, 255, .5);
    margin: 0 auto .4em
}

@media only screen and (orientation: landscape) {
    .ath-container.ath-phone {
        width: 24em
    }

    .ath-android.ath-phone, .ath-ios.ath-phone {
        margin-left: -12em
    }

    .ath-ios6:after {
        left: 39%
    }

    .ath-ios8.ath-phone {
        left: auto;
        bottom: auto;
        right: .4em;
        top: 1.8em
    }

    .ath-ios8.ath-phone:after {
        bottom: auto;
        top: -.9em;
        left: 68%;
        z-index: 2147483641;
        box-shadow: none
    }
}

body {
    -webkit-backface-visibility: hidden
}

.test {
    background: #ddd;
    min-height: 300px;
    margin-bottom: 28px
}

.welcome .modal-backdrop {
    visibility: visible;
    opacity: 1;
    height: 100%
}

.animated {
    -webkit-animation-duration: 1.5s;
    -moz-animation-duration: 1.5s;
    -o-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-play-state: running;
    -moz-animation-play-state: running;
    -o-animation-play-state: running;
    animation-play-state: running
}

.animated.hinge {
    -webkit-animation-duration: 3s;
    -moz-animation-duration: 3s;
    -o-animation-duration: 3s;
    animation-duration: 3s
}

.animated.iterate {
    -webkit-animation-iteration-count: 10;
    -moz-animation-iteration-count: 10;
    -o-animation-iteration-count: 10;
    animation-iteration-count: 10
}

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

.animated:hover {
    -webkit-animation-play-state: paused !important;
    -moz-animation-play-state: paused !important;
    -o-animation-play-state: paused !important;
    animation-play-state: paused !important
}

h1, h2, h3, h4, h5, li, p, .btn, .nav > li > a {
    visibility: visible
}

.wf-loading h1, .wf-loading h2, .wf-loading h3, .wf-loading h4, .wf-loading h5, .wf-loading li, .wf-loading p, .wf-loading .btn, .wf-loading .nav > li > a {
    visibility: hidden;
    -moz-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    -webkit-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out
}

#tawkchat-iframe-container {
    z-index: 1000 !important
}

html, body {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    width: 100%
}

html.contact, html.news, html.activities, html.shiftech-center, html.section-scroll, html.home, body.contact, body.news, body.activities, body.shiftech-center, body.section-scroll, body.home {
    height: 100%
}

html.contact #section-1, html.news #section-1, html.activities #section-1, html.shiftech-center #section-1, html.section-scroll #section-1, html.home #section-1, body.contact #section-1, body.news #section-1, body.activities #section-1, body.shiftech-center #section-1, body.section-scroll #section-1, body.home #section-1 {
    padding-top: 50px !important
}

html.contact .section-home, html.news .section-home, html.activities .section-home, html.shiftech-center .section-home, html.section-scroll .section-home, html.home .section-home, body.contact .section-home, body.news .section-home, body.activities .section-home, body.shiftech-center .section-home, body.section-scroll .section-home, body.home .section-home {
    position: relative;
    padding-top: 100px !important;
    min-height: 700px;
    padding-bottom: 120px !important
}

html.contact .section-home img.landing-logo, html.news .section-home img.landing-logo, html.activities .section-home img.landing-logo, html.shiftech-center .section-home img.landing-logo, html.section-scroll .section-home img.landing-logo, html.home .section-home img.landing-logo, body.contact .section-home img.landing-logo, body.news .section-home img.landing-logo, body.activities .section-home img.landing-logo, body.shiftech-center .section-home img.landing-logo, body.section-scroll .section-home img.landing-logo, body.home .section-home img.landing-logo {
    width: 35px;
    height: auto;
    margin: 20px;
    transition: all ease-in-out .3s;
    display: inline-block;
    cursor: pointer
}

html.contact .section-home img.landing-exhaut-logo, html.news .section-home img.landing-exhaut-logo, html.activities .section-home img.landing-exhaut-logo, html.shiftech-center .section-home img.landing-exhaut-logo, html.section-scroll .section-home img.landing-exhaut-logo, html.home .section-home img.landing-exhaut-logo, body.contact .section-home img.landing-exhaut-logo, body.news .section-home img.landing-exhaut-logo, body.activities .section-home img.landing-exhaut-logo, body.shiftech-center .section-home img.landing-exhaut-logo, body.section-scroll .section-home img.landing-exhaut-logo, body.home .section-home img.landing-exhaut-logo {
    width: 120px;
    height: auto;
    margin: 10px;
    transition: all ease-in-out .3s;
    display: inline-block;
    cursor: pointer
}

html.contact .section-home .img-responsive.section-thumb, html.contact .section-home .img-responsive.lazyload, html.contact .section-home .img-responsive.lazyloaded, html.news .section-home .img-responsive.section-thumb, html.news .section-home .img-responsive.lazyload, html.news .section-home .img-responsive.lazyloaded, html.activities .section-home .img-responsive.section-thumb, html.activities .section-home .img-responsive.lazyload, html.activities .section-home .img-responsive.lazyloaded, html.shiftech-center .section-home .img-responsive.section-thumb, html.shiftech-center .section-home .img-responsive.lazyload, html.shiftech-center .section-home .img-responsive.lazyloaded, html.section-scroll .section-home .img-responsive.section-thumb, html.section-scroll .section-home .img-responsive.lazyload, html.section-scroll .section-home .img-responsive.lazyloaded, html.home .section-home .img-responsive.section-thumb, html.home .section-home .img-responsive.lazyload, html.home .section-home .img-responsive.lazyloaded, body.contact .section-home .img-responsive.section-thumb, body.contact .section-home .img-responsive.lazyload, body.contact .section-home .img-responsive.lazyloaded, body.news .section-home .img-responsive.section-thumb, body.news .section-home .img-responsive.lazyload, body.news .section-home .img-responsive.lazyloaded, body.activities .section-home .img-responsive.section-thumb, body.activities .section-home .img-responsive.lazyload, body.activities .section-home .img-responsive.lazyloaded, body.shiftech-center .section-home .img-responsive.section-thumb, body.shiftech-center .section-home .img-responsive.lazyload, body.shiftech-center .section-home .img-responsive.lazyloaded, body.section-scroll .section-home .img-responsive.section-thumb, body.section-scroll .section-home .img-responsive.lazyload, body.section-scroll .section-home .img-responsive.lazyloaded, body.home .section-home .img-responsive.section-thumb, body.home .section-home .img-responsive.lazyload, body.home .section-home .img-responsive.lazyloaded {
    width: 100%
}

@media (min-width: 1200px) {
    html.contact .section-home.bg-cover, html.news .section-home.bg-cover, html.activities .section-home.bg-cover, html.shiftech-center .section-home.bg-cover, html.section-scroll .section-home.bg-cover, html.home .section-home.bg-cover, body.contact .section-home.bg-cover, body.news .section-home.bg-cover, body.activities .section-home.bg-cover, body.shiftech-center .section-home.bg-cover, body.section-scroll .section-home.bg-cover, body.home .section-home.bg-cover {
        background-attachment: fixed
    }

    @supports (-webkit-appearance:none) {
        html.contact .section-home.bg-cover, html.news .section-home.bg-cover, html.activities .section-home.bg-cover, html.shiftech-center .section-home.bg-cover, html.section-scroll .section-home.bg-cover, html.home .section-home.bg-cover, body.contact .section-home.bg-cover, body.news .section-home.bg-cover, body.activities .section-home.bg-cover, body.shiftech-center .section-home.bg-cover, body.section-scroll .section-home.bg-cover, body.home .section-home.bg-cover {
            background-attachment: scroll
        }
    }
}

@media (min-width: 768px) {
    html.contact .section-home, html.news .section-home, html.activities .section-home, html.shiftech-center .section-home, html.section-scroll .section-home, html.home .section-home, body.contact .section-home, body.news .section-home, body.activities .section-home, body.shiftech-center .section-home, body.section-scroll .section-home, body.home .section-home {
        padding-top: 101px !important
    }
}

@media (min-width: 992px) {
    html.contact .section-home, html.news .section-home, html.activities .section-home, html.shiftech-center .section-home, html.section-scroll .section-home, html.home .section-home, body.contact .section-home, body.news .section-home, body.activities .section-home, body.shiftech-center .section-home, body.section-scroll .section-home, body.home .section-home {
        padding-top: 131px !important
    }
}

@media (min-width: 1200px) {
    html.contact .section-home, html.news .section-home, html.activities .section-home, html.shiftech-center .section-home, html.section-scroll .section-home, html.home .section-home, body.contact .section-home, body.news .section-home, body.activities .section-home, body.shiftech-center .section-home, body.section-scroll .section-home, body.home .section-home {
        min-height: auto
    }

    html.contact .section-home > .container, html.contact .section-home > .container > .row, html.news .section-home > .container, html.news .section-home > .container > .row, html.activities .section-home > .container, html.activities .section-home > .container > .row, html.shiftech-center .section-home > .container, html.shiftech-center .section-home > .container > .row, html.section-scroll .section-home > .container, html.section-scroll .section-home > .container > .row, html.home .section-home > .container, html.home .section-home > .container > .row, body.contact .section-home > .container, body.contact .section-home > .container > .row, body.news .section-home > .container, body.news .section-home > .container > .row, body.activities .section-home > .container, body.activities .section-home > .container > .row, body.shiftech-center .section-home > .container, body.shiftech-center .section-home > .container > .row, body.section-scroll .section-home > .container, body.section-scroll .section-home > .container > .row, body.home .section-home > .container, body.home .section-home > .container > .row {
        height: 100%;
        position: relative
    }

    html.contact .section-home .row.vertical-text, html.news .section-home .row.vertical-text, html.activities .section-home .row.vertical-text, html.shiftech-center .section-home .row.vertical-text, html.section-scroll .section-home .row.vertical-text, html.home .section-home .row.vertical-text, body.contact .section-home .row.vertical-text, body.news .section-home .row.vertical-text, body.activities .section-home .row.vertical-text, body.shiftech-center .section-home .row.vertical-text, body.section-scroll .section-home .row.vertical-text, body.home .section-home .row.vertical-text {
        width: 100%;
        margin: 0
    }
}

html.contact .section-home .text-overflow, html.news .section-home .text-overflow, html.activities .section-home .text-overflow, html.shiftech-center .section-home .text-overflow, html.section-scroll .section-home .text-overflow, html.home .section-home .text-overflow, body.contact .section-home .text-overflow, body.news .section-home .text-overflow, body.activities .section-home .text-overflow, body.shiftech-center .section-home .text-overflow, body.section-scroll .section-home .text-overflow, body.home .section-home .text-overflow {
    max-height: 350px;
    overflow: auto
}

html.contact .section-home a, html.news .section-home a, html.activities .section-home a, html.shiftech-center .section-home a, html.section-scroll .section-home a, html.home .section-home a, body.contact .section-home a, body.news .section-home a, body.activities .section-home a, body.shiftech-center .section-home a, body.section-scroll .section-home a, body.home .section-home a {
    color: #4c4c4c;
    text-decoration: none;
    text-decoration-style: dotted
}

html.contact .section-home a:focus, html.contact .section-home a:hover, html.news .section-home a:focus, html.news .section-home a:hover, html.activities .section-home a:focus, html.activities .section-home a:hover, html.shiftech-center .section-home a:focus, html.shiftech-center .section-home a:hover, html.section-scroll .section-home a:focus, html.section-scroll .section-home a:hover, html.home .section-home a:focus, html.home .section-home a:hover, body.contact .section-home a:focus, body.contact .section-home a:hover, body.news .section-home a:focus, body.news .section-home a:hover, body.activities .section-home a:focus, body.activities .section-home a:hover, body.shiftech-center .section-home a:focus, body.shiftech-center .section-home a:hover, body.section-scroll .section-home a:focus, body.section-scroll .section-home a:hover, body.home .section-home a:focus, body.home .section-home a:hover {
    color: #ec1100
}

html.contact .section-home a.btn-primary, html.news .section-home a.btn-primary, html.activities .section-home a.btn-primary, html.shiftech-center .section-home a.btn-primary, html.section-scroll .section-home a.btn-primary, html.home .section-home a.btn-primary, body.contact .section-home a.btn-primary, body.news .section-home a.btn-primary, body.activities .section-home a.btn-primary, body.shiftech-center .section-home a.btn-primary, body.section-scroll .section-home a.btn-primary, body.home .section-home a.btn-primary {
    color: #fff
}

html.contact .section-home a.btn-primary i, html.news .section-home a.btn-primary i, html.activities .section-home a.btn-primary i, html.shiftech-center .section-home a.btn-primary i, html.section-scroll .section-home a.btn-primary i, html.home .section-home a.btn-primary i, body.contact .section-home a.btn-primary i, body.news .section-home a.btn-primary i, body.activities .section-home a.btn-primary i, body.shiftech-center .section-home a.btn-primary i, body.section-scroll .section-home a.btn-primary i, body.home .section-home a.btn-primary i {
    font-size: 100%
}

html.contact .section-home .btn, html.news .section-home .btn, html.activities .section-home .btn, html.shiftech-center .section-home .btn, html.section-scroll .section-home .btn, html.home .section-home .btn, body.contact .section-home .btn, body.news .section-home .btn, body.activities .section-home .btn, body.shiftech-center .section-home .btn, body.section-scroll .section-home .btn, body.home .section-home .btn {
    text-decoration: none
}

html.contact .section-home .btn.btn-default, html.news .section-home .btn.btn-default, html.activities .section-home .btn.btn-default, html.shiftech-center .section-home .btn.btn-default, html.section-scroll .section-home .btn.btn-default, html.home .section-home .btn.btn-default, body.contact .section-home .btn.btn-default, body.news .section-home .btn.btn-default, body.activities .section-home .btn.btn-default, body.shiftech-center .section-home .btn.btn-default, body.section-scroll .section-home .btn.btn-default, body.home .section-home .btn.btn-default {
    color: #4c4c4c
}

html.contact .section-home .section-title, html.news .section-home .section-title, html.activities .section-home .section-title, html.shiftech-center .section-home .section-title, html.section-scroll .section-home .section-title, html.home .section-home .section-title, body.contact .section-home .section-title, body.news .section-home .section-title, body.activities .section-home .section-title, body.shiftech-center .section-home .section-title, body.section-scroll .section-home .section-title, body.home .section-home .section-title {
    font-size: 30px;
    margin: 0 0 30px
}

html.contact .section-home.section-configurable-option .section-title, html.news .section-home.section-configurable-option .section-title, html.activities .section-home.section-configurable-option .section-title, html.shiftech-center .section-home.section-configurable-option .section-title, html.section-scroll .section-home.section-configurable-option .section-title, html.home .section-home.section-configurable-option .section-title, body.contact .section-home.section-configurable-option .section-title, body.news .section-home.section-configurable-option .section-title, body.activities .section-home.section-configurable-option .section-title, body.shiftech-center .section-home.section-configurable-option .section-title, body.section-scroll .section-home.section-configurable-option .section-title, body.home .section-home.section-configurable-option .section-title {
    text-transform: capitalize
}

html.contact .section-home h1, html.news .section-home h1, html.activities .section-home h1, html.shiftech-center .section-home h1, html.section-scroll .section-home h1, html.home .section-home h1, body.contact .section-home h1, body.news .section-home h1, body.activities .section-home h1, body.shiftech-center .section-home h1, body.section-scroll .section-home h1, body.home .section-home h1 {
    letter-spacing: .05em;
    font-weight: 300;
    font-size: 2em
}

html.contact .section-home h2, html.news .section-home h2, html.activities .section-home h2, html.shiftech-center .section-home h2, html.section-scroll .section-home h2, html.home .section-home h2, body.contact .section-home h2, body.news .section-home h2, body.activities .section-home h2, body.shiftech-center .section-home h2, body.section-scroll .section-home h2, body.home .section-home h2 {
    font-weight: 300;
    display: block;
    font-size: 1.4em;
    margin-top: .7em
}

html.contact .section-home p, html.news .section-home p, html.activities .section-home p, html.shiftech-center .section-home p, html.section-scroll .section-home p, html.home .section-home p, body.contact .section-home p, body.news .section-home p, body.activities .section-home p, body.shiftech-center .section-home p, body.section-scroll .section-home p, body.home .section-home p {
    font-size: 1.1em
}

html.contact .section-home li, html.news .section-home li, html.activities .section-home li, html.shiftech-center .section-home li, html.section-scroll .section-home li, html.home .section-home li, body.contact .section-home li, body.news .section-home li, body.activities .section-home li, body.shiftech-center .section-home li, body.section-scroll .section-home li, body.home .section-home li {
    font-size: 18px;
    font-weight: 200
}

html.contact .section-home .row .inner, html.contact .section-home .row.inner, html.news .section-home .row .inner, html.news .section-home .row.inner, html.activities .section-home .row .inner, html.activities .section-home .row.inner, html.shiftech-center .section-home .row .inner, html.shiftech-center .section-home .row.inner, html.section-scroll .section-home .row .inner, html.section-scroll .section-home .row.inner, html.home .section-home .row .inner, html.home .section-home .row.inner, body.contact .section-home .row .inner, body.contact .section-home .row.inner, body.news .section-home .row .inner, body.news .section-home .row.inner, body.activities .section-home .row .inner, body.activities .section-home .row.inner, body.shiftech-center .section-home .row .inner, body.shiftech-center .section-home .row.inner, body.section-scroll .section-home .row .inner, body.section-scroll .section-home .row.inner, body.home .section-home .row .inner, body.home .section-home .row.inner {
    padding: 0 15px
}

@media (min-width: 992px) {
    html.contact .section-home .row .inner, html.contact .section-home .row.inner, html.news .section-home .row .inner, html.news .section-home .row.inner, html.activities .section-home .row .inner, html.activities .section-home .row.inner, html.shiftech-center .section-home .row .inner, html.shiftech-center .section-home .row.inner, html.section-scroll .section-home .row .inner, html.section-scroll .section-home .row.inner, html.home .section-home .row .inner, html.home .section-home .row.inner, body.contact .section-home .row .inner, body.contact .section-home .row.inner, body.news .section-home .row .inner, body.news .section-home .row.inner, body.activities .section-home .row .inner, body.activities .section-home .row.inner, body.shiftech-center .section-home .row .inner, body.shiftech-center .section-home .row.inner, body.section-scroll .section-home .row .inner, body.section-scroll .section-home .row.inner, body.home .section-home .row .inner, body.home .section-home .row.inner {
        padding: 0 45px
    }
}

html.contact .section-home .row .inner > div, html.contact .section-home .row.inner > div, html.news .section-home .row .inner > div, html.news .section-home .row.inner > div, html.activities .section-home .row .inner > div, html.activities .section-home .row.inner > div, html.shiftech-center .section-home .row .inner > div, html.shiftech-center .section-home .row.inner > div, html.section-scroll .section-home .row .inner > div, html.section-scroll .section-home .row.inner > div, html.home .section-home .row .inner > div, html.home .section-home .row.inner > div, body.contact .section-home .row .inner > div, body.contact .section-home .row.inner > div, body.news .section-home .row .inner > div, body.news .section-home .row.inner > div, body.activities .section-home .row .inner > div, body.activities .section-home .row.inner > div, body.shiftech-center .section-home .row .inner > div, body.shiftech-center .section-home .row.inner > div, body.section-scroll .section-home .row .inner > div, body.section-scroll .section-home .row.inner > div, body.home .section-home .row .inner > div, body.home .section-home .row.inner > div {
    padding: 0 15px 30px
}

@media (min-width: 992px) {
    html.contact .section-home .row .inner > div, html.contact .section-home .row.inner > div, html.news .section-home .row .inner > div, html.news .section-home .row.inner > div, html.activities .section-home .row .inner > div, html.activities .section-home .row.inner > div, html.shiftech-center .section-home .row .inner > div, html.shiftech-center .section-home .row.inner > div, html.section-scroll .section-home .row .inner > div, html.section-scroll .section-home .row.inner > div, html.home .section-home .row .inner > div, html.home .section-home .row.inner > div, body.contact .section-home .row .inner > div, body.contact .section-home .row.inner > div, body.news .section-home .row .inner > div, body.news .section-home .row.inner > div, body.activities .section-home .row .inner > div, body.activities .section-home .row.inner > div, body.shiftech-center .section-home .row .inner > div, body.shiftech-center .section-home .row.inner > div, body.section-scroll .section-home .row .inner > div, body.section-scroll .section-home .row.inner > div, body.home .section-home .row .inner > div, body.home .section-home .row.inner > div {
        padding: 0 30px
    }
}

html.contact .section-home.section-dark, html.news .section-home.section-dark, html.activities .section-home.section-dark, html.shiftech-center .section-home.section-dark, html.section-scroll .section-home.section-dark, html.home .section-home.section-dark, body.contact .section-home.section-dark, body.news .section-home.section-dark, body.activities .section-home.section-dark, body.shiftech-center .section-home.section-dark, body.section-scroll .section-home.section-dark, body.home .section-home.section-dark {
    background-color: #282828
}

html.contact .section-home.section-dark h1, html.contact .section-home.section-dark h2, html.contact .section-home.section-dark p, html.contact .section-home.section-dark li, html.news .section-home.section-dark h1, html.news .section-home.section-dark h2, html.news .section-home.section-dark p, html.news .section-home.section-dark li, html.activities .section-home.section-dark h1, html.activities .section-home.section-dark h2, html.activities .section-home.section-dark p, html.activities .section-home.section-dark li, html.shiftech-center .section-home.section-dark h1, html.shiftech-center .section-home.section-dark h2, html.shiftech-center .section-home.section-dark p, html.shiftech-center .section-home.section-dark li, html.section-scroll .section-home.section-dark h1, html.section-scroll .section-home.section-dark h2, html.section-scroll .section-home.section-dark p, html.section-scroll .section-home.section-dark li, html.home .section-home.section-dark h1, html.home .section-home.section-dark h2, html.home .section-home.section-dark p, html.home .section-home.section-dark li, body.contact .section-home.section-dark h1, body.contact .section-home.section-dark h2, body.contact .section-home.section-dark p, body.contact .section-home.section-dark li, body.news .section-home.section-dark h1, body.news .section-home.section-dark h2, body.news .section-home.section-dark p, body.news .section-home.section-dark li, body.activities .section-home.section-dark h1, body.activities .section-home.section-dark h2, body.activities .section-home.section-dark p, body.activities .section-home.section-dark li, body.shiftech-center .section-home.section-dark h1, body.shiftech-center .section-home.section-dark h2, body.shiftech-center .section-home.section-dark p, body.shiftech-center .section-home.section-dark li, body.section-scroll .section-home.section-dark h1, body.section-scroll .section-home.section-dark h2, body.section-scroll .section-home.section-dark p, body.section-scroll .section-home.section-dark li, body.home .section-home.section-dark h1, body.home .section-home.section-dark h2, body.home .section-home.section-dark p, body.home .section-home.section-dark li {
    color: #fff
}

html.contact .section-home.section-dark h1 a, html.contact .section-home.section-dark h2 a, html.contact .section-home.section-dark p a, html.contact .section-home.section-dark li a, html.news .section-home.section-dark h1 a, html.news .section-home.section-dark h2 a, html.news .section-home.section-dark p a, html.news .section-home.section-dark li a, html.activities .section-home.section-dark h1 a, html.activities .section-home.section-dark h2 a, html.activities .section-home.section-dark p a, html.activities .section-home.section-dark li a, html.shiftech-center .section-home.section-dark h1 a, html.shiftech-center .section-home.section-dark h2 a, html.shiftech-center .section-home.section-dark p a, html.shiftech-center .section-home.section-dark li a, html.section-scroll .section-home.section-dark h1 a, html.section-scroll .section-home.section-dark h2 a, html.section-scroll .section-home.section-dark p a, html.section-scroll .section-home.section-dark li a, html.home .section-home.section-dark h1 a, html.home .section-home.section-dark h2 a, html.home .section-home.section-dark p a, html.home .section-home.section-dark li a, body.contact .section-home.section-dark h1 a, body.contact .section-home.section-dark h2 a, body.contact .section-home.section-dark p a, body.contact .section-home.section-dark li a, body.news .section-home.section-dark h1 a, body.news .section-home.section-dark h2 a, body.news .section-home.section-dark p a, body.news .section-home.section-dark li a, body.activities .section-home.section-dark h1 a, body.activities .section-home.section-dark h2 a, body.activities .section-home.section-dark p a, body.activities .section-home.section-dark li a, body.shiftech-center .section-home.section-dark h1 a, body.shiftech-center .section-home.section-dark h2 a, body.shiftech-center .section-home.section-dark p a, body.shiftech-center .section-home.section-dark li a, body.section-scroll .section-home.section-dark h1 a, body.section-scroll .section-home.section-dark h2 a, body.section-scroll .section-home.section-dark p a, body.section-scroll .section-home.section-dark li a, body.home .section-home.section-dark h1 a, body.home .section-home.section-dark h2 a, body.home .section-home.section-dark p a, body.home .section-home.section-dark li a {
    color: #fff
}

html.contact .section-home.section-dark h1 a i, html.contact .section-home.section-dark h2 a i, html.contact .section-home.section-dark p a i, html.contact .section-home.section-dark li a i, html.news .section-home.section-dark h1 a i, html.news .section-home.section-dark h2 a i, html.news .section-home.section-dark p a i, html.news .section-home.section-dark li a i, html.activities .section-home.section-dark h1 a i, html.activities .section-home.section-dark h2 a i, html.activities .section-home.section-dark p a i, html.activities .section-home.section-dark li a i, html.shiftech-center .section-home.section-dark h1 a i, html.shiftech-center .section-home.section-dark h2 a i, html.shiftech-center .section-home.section-dark p a i, html.shiftech-center .section-home.section-dark li a i, html.section-scroll .section-home.section-dark h1 a i, html.section-scroll .section-home.section-dark h2 a i, html.section-scroll .section-home.section-dark p a i, html.section-scroll .section-home.section-dark li a i, html.home .section-home.section-dark h1 a i, html.home .section-home.section-dark h2 a i, html.home .section-home.section-dark p a i, html.home .section-home.section-dark li a i, body.contact .section-home.section-dark h1 a i, body.contact .section-home.section-dark h2 a i, body.contact .section-home.section-dark p a i, body.contact .section-home.section-dark li a i, body.news .section-home.section-dark h1 a i, body.news .section-home.section-dark h2 a i, body.news .section-home.section-dark p a i, body.news .section-home.section-dark li a i, body.activities .section-home.section-dark h1 a i, body.activities .section-home.section-dark h2 a i, body.activities .section-home.section-dark p a i, body.activities .section-home.section-dark li a i, body.shiftech-center .section-home.section-dark h1 a i, body.shiftech-center .section-home.section-dark h2 a i, body.shiftech-center .section-home.section-dark p a i, body.shiftech-center .section-home.section-dark li a i, body.section-scroll .section-home.section-dark h1 a i, body.section-scroll .section-home.section-dark h2 a i, body.section-scroll .section-home.section-dark p a i, body.section-scroll .section-home.section-dark li a i, body.home .section-home.section-dark h1 a i, body.home .section-home.section-dark h2 a i, body.home .section-home.section-dark p a i, body.home .section-home.section-dark li a i {
    color: #fff
}

html.contact .section-home.section-dark h1 a:focus, html.contact .section-home.section-dark h1 a:hover, html.contact .section-home.section-dark h2 a:focus, html.contact .section-home.section-dark h2 a:hover, html.contact .section-home.section-dark p a:focus, html.contact .section-home.section-dark p a:hover, html.contact .section-home.section-dark li a:focus, html.contact .section-home.section-dark li a:hover, html.news .section-home.section-dark h1 a:focus, html.news .section-home.section-dark h1 a:hover, html.news .section-home.section-dark h2 a:focus, html.news .section-home.section-dark h2 a:hover, html.news .section-home.section-dark p a:focus, html.news .section-home.section-dark p a:hover, html.news .section-home.section-dark li a:focus, html.news .section-home.section-dark li a:hover, html.activities .section-home.section-dark h1 a:focus, html.activities .section-home.section-dark h1 a:hover, html.activities .section-home.section-dark h2 a:focus, html.activities .section-home.section-dark h2 a:hover, html.activities .section-home.section-dark p a:focus, html.activities .section-home.section-dark p a:hover, html.activities .section-home.section-dark li a:focus, html.activities .section-home.section-dark li a:hover, html.shiftech-center .section-home.section-dark h1 a:focus, html.shiftech-center .section-home.section-dark h1 a:hover, html.shiftech-center .section-home.section-dark h2 a:focus, html.shiftech-center .section-home.section-dark h2 a:hover, html.shiftech-center .section-home.section-dark p a:focus, html.shiftech-center .section-home.section-dark p a:hover, html.shiftech-center .section-home.section-dark li a:focus, html.shiftech-center .section-home.section-dark li a:hover, html.section-scroll .section-home.section-dark h1 a:focus, html.section-scroll .section-home.section-dark h1 a:hover, html.section-scroll .section-home.section-dark h2 a:focus, html.section-scroll .section-home.section-dark h2 a:hover, html.section-scroll .section-home.section-dark p a:focus, html.section-scroll .section-home.section-dark p a:hover, html.section-scroll .section-home.section-dark li a:focus, html.section-scroll .section-home.section-dark li a:hover, html.home .section-home.section-dark h1 a:focus, html.home .section-home.section-dark h1 a:hover, html.home .section-home.section-dark h2 a:focus, html.home .section-home.section-dark h2 a:hover, html.home .section-home.section-dark p a:focus, html.home .section-home.section-dark p a:hover, html.home .section-home.section-dark li a:focus, html.home .section-home.section-dark li a:hover, body.contact .section-home.section-dark h1 a:focus, body.contact .section-home.section-dark h1 a:hover, body.contact .section-home.section-dark h2 a:focus, body.contact .section-home.section-dark h2 a:hover, body.contact .section-home.section-dark p a:focus, body.contact .section-home.section-dark p a:hover, body.contact .section-home.section-dark li a:focus, body.contact .section-home.section-dark li a:hover, body.news .section-home.section-dark h1 a:focus, body.news .section-home.section-dark h1 a:hover, body.news .section-home.section-dark h2 a:focus, body.news .section-home.section-dark h2 a:hover, body.news .section-home.section-dark p a:focus, body.news .section-home.section-dark p a:hover, body.news .section-home.section-dark li a:focus, body.news .section-home.section-dark li a:hover, body.activities .section-home.section-dark h1 a:focus, body.activities .section-home.section-dark h1 a:hover, body.activities .section-home.section-dark h2 a:focus, body.activities .section-home.section-dark h2 a:hover, body.activities .section-home.section-dark p a:focus, body.activities .section-home.section-dark p a:hover, body.activities .section-home.section-dark li a:focus, body.activities .section-home.section-dark li a:hover, body.shiftech-center .section-home.section-dark h1 a:focus, body.shiftech-center .section-home.section-dark h1 a:hover, body.shiftech-center .section-home.section-dark h2 a:focus, body.shiftech-center .section-home.section-dark h2 a:hover, body.shiftech-center .section-home.section-dark p a:focus, body.shiftech-center .section-home.section-dark p a:hover, body.shiftech-center .section-home.section-dark li a:focus, body.shiftech-center .section-home.section-dark li a:hover, body.section-scroll .section-home.section-dark h1 a:focus, body.section-scroll .section-home.section-dark h1 a:hover, body.section-scroll .section-home.section-dark h2 a:focus, body.section-scroll .section-home.section-dark h2 a:hover, body.section-scroll .section-home.section-dark p a:focus, body.section-scroll .section-home.section-dark p a:hover, body.section-scroll .section-home.section-dark li a:focus, body.section-scroll .section-home.section-dark li a:hover, body.home .section-home.section-dark h1 a:focus, body.home .section-home.section-dark h1 a:hover, body.home .section-home.section-dark h2 a:focus, body.home .section-home.section-dark h2 a:hover, body.home .section-home.section-dark p a:focus, body.home .section-home.section-dark p a:hover, body.home .section-home.section-dark li a:focus, body.home .section-home.section-dark li a:hover {
    color: #ec1100
}

html.contact .section-home.section-dark .media-gallery .media-thumb, html.news .section-home.section-dark .media-gallery .media-thumb, html.activities .section-home.section-dark .media-gallery .media-thumb, html.shiftech-center .section-home.section-dark .media-gallery .media-thumb, html.section-scroll .section-home.section-dark .media-gallery .media-thumb, html.home .section-home.section-dark .media-gallery .media-thumb, body.contact .section-home.section-dark .media-gallery .media-thumb, body.news .section-home.section-dark .media-gallery .media-thumb, body.activities .section-home.section-dark .media-gallery .media-thumb, body.shiftech-center .section-home.section-dark .media-gallery .media-thumb, body.section-scroll .section-home.section-dark .media-gallery .media-thumb, body.home .section-home.section-dark .media-gallery .media-thumb {
    border-color: #282828
}

html.contact .section-home.section-right .col-sm-6, html.news .section-home.section-right .col-sm-6, html.activities .section-home.section-right .col-sm-6, html.shiftech-center .section-home.section-right .col-sm-6, html.section-scroll .section-home.section-right .col-sm-6, html.home .section-home.section-right .col-sm-6, body.contact .section-home.section-right .col-sm-6, body.news .section-home.section-right .col-sm-6, body.activities .section-home.section-right .col-sm-6, body.shiftech-center .section-home.section-right .col-sm-6, body.section-scroll .section-home.section-right .col-sm-6, body.home .section-home.section-right .col-sm-6 {
    float: right
}

html.contact .section-home.section-medias, html.news .section-home.section-medias, html.activities .section-home.section-medias, html.shiftech-center .section-home.section-medias, html.section-scroll .section-home.section-medias, html.home .section-home.section-medias, body.contact .section-home.section-medias, body.news .section-home.section-medias, body.activities .section-home.section-medias, body.shiftech-center .section-home.section-medias, body.section-scroll .section-home.section-medias, body.home .section-home.section-medias {
    height: auto
}

html.contact .curve-gallery, html.news .curve-gallery, html.activities .curve-gallery, html.shiftech-center .curve-gallery, html.section-scroll .curve-gallery, html.home .curve-gallery, body.contact .curve-gallery, body.news .curve-gallery, body.activities .curve-gallery, body.shiftech-center .curve-gallery, body.section-scroll .curve-gallery, body.home .curve-gallery {
    cursor: pointer
}

html {
    -webkit-font-smoothing: antialiased;
    height: 100%
}

::selection {
    background: #ff3020;
    color: #fff
}

::-moz-selection {
    background: #ff3020;
    color: #fff
}

body {
    background: #fff;
    font-family: myriad-pro, sans-serif;
    font-size: 14px;
    line-height: 1em;
    -webkit-overflow-scrolling: touch
}

h1, h2, h3, h4, h5, h6 {
    color: #4c4c4c;
    font-weight: 300
}

a {
    -moz-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    color: #4c4c4c;
    cursor: pointer;
    outline: none
}

a:focus {
    color: #4c4c4c;
    outline: none;
    text-decoration: none
}

a:hover {
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    color: #ccc;
    outline: none;
    text-decoration: none
}

a.link {
    color: #4c4c4c
}

a.link:hover {
    color: #ccc
}

.logo-print {
    display: none
}

.btn {
    -moz-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    -moz-box-shadow: 1px 1px 3px rgba(0, 1, 1, .17);
    -webkit-box-shadow: 1px 1px 3px rgba(0, 1, 1, .17);
    box-shadow: 1px 1px 3px rgba(0, 1, 1, .17);
    border: 0
}

.btn.btn-lg, .btn-group-lg > .btn, .btn-group-lg > .btn {
    padding: 7.5px 15px;
    font-size: 18px
}

.btn i {
    margin-right: 5px
}

.btn i + i {
    margin-left: -5px
}

.btn i.icon-arrow-right {
    margin-right: 0;
    margin-left: 5px
}

.btn.btn-default:hover, .btn.btn-default.active:hover {
    border-color: #fff;
    background-color: #fafafa;
    -moz-box-shadow: 1px 1px 3px rgba(0, 1, 1, .17);
    -webkit-box-shadow: 1px 1px 3px rgba(0, 1, 1, .17);
    box-shadow: 1px 1px 3px rgba(0, 1, 1, .17)
}

.btn.btn-default.active {
    -moz-box-shadow: 1px 1px 3px rgba(0, 1, 1, .17);
    -webkit-box-shadow: 1px 1px 3px rgba(0, 1, 1, .17);
    box-shadow: 1px 1px 3px rgba(0, 1, 1, .17);
    background-color: inherit;
    border-color: #fff
}

.btn.btn-inverse {
    background-color: #4c4c4c;
    color: #fff
}

.btn.btn-inverse:hover, .btn.btn-inverse.active:hover {
    border-color: #666;
    background-color: #666;
    -moz-box-shadow: 1px 1px 3px rgba(0, 1, 1, .17);
    -webkit-box-shadow: 1px 1px 3px rgba(0, 1, 1, .17);
    box-shadow: 1px 1px 3px rgba(0, 1, 1, .17)
}

.btn.btn-inverse.active {
    -moz-box-shadow: 1px 1px 3px rgba(0, 1, 1, .17);
    -webkit-box-shadow: 1px 1px 3px rgba(0, 1, 1, .17);
    box-shadow: 1px 1px 3px rgba(0, 1, 1, .17);
    border-color: #666;
    background-color: #666
}

.btn.btn-blue {
    background-color: #1372b8
}

.btn.btn-blue:hover {
    background-color: #1372b8
}

.open > .btn-default.dropdown-toggle:hover, .open > .btn-default.dropdown-toggle:focus {
    background-color: #eee;
    -moz-box-shadow: 1px 1px 1px rgba(0, 1, 1, .17);
    -webkit-box-shadow: 1px 1px 1px rgba(0, 1, 1, .17);
    box-shadow: 1px 1px 1px rgba(0, 1, 1, .17);
    border-color: #eee
}

.form-group {
    margin: 10px 0;
    overflow: hidden;
    *zoom: 1
}

.form-group .text {
    color: #999;
    line-height: 1.2
}

.form-group .form-control {
    font-size: 14px;
    font-weight: 400;
    background-color: #fff;
    border: 1px solid #eee;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    height: 32px;
    padding: 6px 12px
}

.form-group .form-control:focus {
    -moz-box-shadow: .7px .7px 2px rgba(0, 1, 1, .1);
    -webkit-box-shadow: .7px .7px 2px rgba(0, 1, 1, .1);
    box-shadow: .7px .7px 2px rgba(0, 1, 1, .1)
}

.form-group .form-control + .error {
    font-size: 12px;
    font-weight: 400;
    position: relative;
    display: block;
    height: 32px;
    padding: 6px 12px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    color: #ff3020;
    background-color: rgba(0, 0, 0, .5);
    margin-top: -32px;
    line-height: 20px;
    text-align: right;
    cursor: text
}

.form-group textarea.form-control {
    height: 100px;
    resize: none;
    margin-bottom: 5px
}

.form-group textarea.form-control + .error {
    height: 100px;
    margin-top: -105px;
    cursor: text
}

@media (min-width: 768px) {
    .form-group textarea.form-control {
        height: 170px
    }

    .form-group textarea.form-control + .error {
        height: 170px;
        margin-top: -175px;
        margin-bottom: 5px;
        cursor: text
    }
}

.contact-form .form-group .form-control, .nostage-contact-form .form-group .form-control, .sticky-action-bar .form-group .form-control {
    color: #fff;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background-color: #4c4c4c;
    border-color: #4c4c4c
}

.contact-form .form-group .form-control + .error, .nostage-contact-form .form-group .form-control + .error, .sticky-action-bar .form-group .form-control + .error {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px
}

.contact-form .form-group textarea.form-control, .nostage-contact-form .form-group textarea.form-control, .sticky-action-bar .form-group textarea.form-control {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background-color: #4c4c4c;
    border-color: #4c4c4c
}

.contact .form-group .text, .page-contact-form .form-group .text {
    display: none
}

ul, ol {
    color: #4c4c4c;
    padding-left: 26px;
    line-height: 1.5625em
}

p {
    color: #4c4c4c;
    font-size: 14px;
    line-height: 1.5625em
}

address {
    font-size: 14px;
    font-weight: 400;
    margin: 15px 0
}

address strong {
    font-size: 14px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 10px;
    display: block
}

.contact-form address, .sticky-action-bar address {
    color: #fff
}

.contact-form address strong, .sticky-action-bar address strong {
    color: #fff
}

.contact-form address .col-lg-6, .sticky-action-bar address .col-lg-6 {
    margin-bottom: 15px
}

abbr[title], abbr[data-original-title] {
    border: 0
}

hr {
    border-width: 3px;
    border-color: #ff3020
}

.highlight, .pac-container .pac-matched, time {
    color: #ff3020
}

.green-highlight {
    color: #73b736
}

.orange-highlight {
    color: #f19133
}

.bg-contain {
    -moz-background-size: contain;
    -o-background-size: contain;
    -webkit-background-size: contain;
    background-size: contain;
    background-position: center top;
    background-repeat: no-repeat;
    padding: 0 !important
}

.bg-cover {
    -moz-background-size: cover;
    -o-background-size: cover;
    -webkit-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 0 !important
}

.bg-ultralight-gray {
    background-color: #eee
}

.bg-light-gray {
    background-color: #ccc
}

.bg-white {
    background-color: #fff
}

.bg-black {
    background-color: #000
}

.bg-dark-gray {
    background-color: #666
}

.bg-separator, .reprog-header {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjIzIi8+PHN0b3Agb2Zmc2V0PSI1JSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjA2Ii8+PHN0b3Agb2Zmc2V0PSIxMS42NjY2NyUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wMyIvPjxzdG9wIG9mZnNldD0iNzkuMTY2NjclIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=);
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, rgba(0, 0, 0, 0.23)), color-stop(5%, rgba(0, 0, 0, 0.06)), color-stop(11.66667%, rgba(0, 0, 0, 0.03)), color-stop(79.16667%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0)));
    background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.23) 0px, rgba(0, 0, 0, 0.06) 6px, rgba(0, 0, 0, 0.03) 14px, rgba(0, 0, 0, 0) 95px, rgba(0, 0, 0, 0) 120px);
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.23) 0px, rgba(0, 0, 0, 0.06) 6px, rgba(0, 0, 0, 0.03) 14px, rgba(0, 0, 0, 0) 95px, rgba(0, 0, 0, 0) 120px);
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.23) 0px, rgba(0, 0, 0, 0.06) 6px, rgba(0, 0, 0, 0.03) 14px, rgba(0, 0, 0, 0) 95px, rgba(0, 0, 0, 0) 120px);
    -moz-box-shadow: inset 0 28px 29px 35px #fff;
    -webkit-box-shadow: inset 0 28px 29px 35px #fff;
    box-shadow: inset 0 28px 29px 35px #fff
}

.patterned {
    background-image: url(/img/pattern.png);
    background-repeat: repeat;
    background-attachment: fixed
}

.mask {
    background-color: transparent;
    overflow: hidden
}

.bg-video {
    z-index: 10
}

.gradient {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjQwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjYiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC45Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g);
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(40%, rgba(0, 0, 0, 0.6)), color-stop(100%, rgba(0, 0, 0, 0.9)));
    background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.9) 100%);
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.9) 100%);
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 40%, rgba(0, 0, 0, 0.9) 100%)
}

@media (min-width: 768px) {
    .gradient {
        background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSI0MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4wIi8+PHN0b3Agb2Zmc2V0PSI2MCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC41Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMDAwMDAwIiBzdG9wLW9wYWNpdHk9IjAuOSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
        background-size: 100%;
        background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(40%, rgba(0, 0, 0, 0)), color-stop(60%, rgba(0, 0, 0, 0.5)), color-stop(100%, rgba(0, 0, 0, 0.9)));
        background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.9) 100%);
        background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.9) 100%);
        background-image: linear-gradient(to top, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.5) 60%, rgba(0, 0, 0, 0.9) 100%)
    }
}

.radial-gradient {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHJhZGlhbEdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IiIgcj0iMTI4MCUiPjxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiM2NjY2NjYiIHN0b3Atb3BhY2l0eT0iMC4yIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNjY2NjY2IiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvcmFkaWFsR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
    background-size: 100%;
    background-image: -moz-radial-gradient(center, ellipse cover, rgba(102, 102, 102, 0.2) 0%, rgba(102, 102, 102, 0) 1280px);
    background-image: -webkit-radial-gradient(center, ellipse cover, rgba(102, 102, 102, 0.2) 0%, rgba(102, 102, 102, 0) 1280px);
    background-image: radial-gradient(ellipse cover at center, rgba(102, 102, 102, 0.2) 0%, rgba(102, 102, 102, 0) 1280px)
}

.full-height {
    height: 100% !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important
}

.full-width {
    width: 100% !important;
    margin: 0 !important
}

.full-stretch {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
    width: 100%;
    height: 100%
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.no-padding {
    padding: 0 !important
}

.no-border {
    border: 0 !important
}

.intro {
    margin-bottom: 3.125em;
    text-align: center
}

.fixed {
    position: fixed;
    top: -60px
}

.smooth, .media-gallery .media-thumb, .media-gallery .media-thumb img, .media-gallery .media-thumb a::before, .grid-item:hover, .grid-item:hover h2, .grid-item img {
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out
}

.smooth img, .media-gallery .media-thumb img, .media-gallery .media-thumb a::before img, .grid-item:hover img, .grid-item img img {
    -moz-transition: all .5s ease-in-out;
    -o-transition: all .5s ease-in-out;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out
}

.smooth-opacity, .config-prev, .config-prev.in, .config-next, .config-next.in {
    -moz-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    -webkit-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out
}

.smooth-opacity img, .config-prev img, .config-prev.in img, .config-next img, .config-next.in img {
    -moz-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    -webkit-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out
}

@media (min-width: 1200px) {
    .vertical-text {
        display: table
    }

    .vertical-text .inner {
        position: relative;
        display: table-cell;
        vertical-align: middle;
        margin: 0
    }
}

@media (min-width: 768px) {
    .home .vertical-text {
        display: table
    }

    .home .vertical-text .inner {
        position: relative;
        display: table-cell;
        vertical-align: middle;
        margin: 0
    }
}

.corner-ad {
    display: block;
    width: 120px;
    height: 30px;
    position: absolute;
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    background: #ff3020;
    text-align: center;
    color: #fff;
    right: -28px;
    top: 17px;
    text-decoration: none;
    padding: 6px;
    font-weight: 700
}

.corner-ad.blue {
    background: #1372b8
}

.center-list ul {
    display: block;
    float: left;
    left: 50%;
    overflow: visible;
    position: relative
}

.center-list ul li {
    float: left;
    position: relative;
    right: 50%
}

.center-ul {
    margin: 0 auto;
    padding: 0;
    text-align: center
}

.center-ul li {
    display: inline;
    margin: 0 5px;
    text-align: center
}

@media (min-width: 992px) {
    .list-2columns {
        min-height: initial;
        -moz-column-count: 2;
        -webkit-column-count: 2;
        column-count: 2
    }

    .list-3columns {
        min-height: initial;
        -moz-column-count: 3;
        -webkit-column-count: 3;
        column-count: 3
    }

    .list-4columns {
        min-height: initial;
        -moz-column-count: 4;
        -webkit-column-count: 4;
        column-count: 4
    }
}

.header .navbar-fixed-top .navbar-collapse, .header .navbar-fixed-bottom .navbar-collapse {
    max-height: 580px
}

.header .navbar {
    padding: 8px 0 16px;
    background-color: rgba(40, 40, 40, .98);
    -moz-box-shadow: 3.5px 3.5px 11.7px 1.3px rgba(0, 0, 0, .21);
    -webkit-box-shadow: 3.5px 3.5px 11.7px 1.3px rgba(0, 0, 0, .21);
    box-shadow: 3.5px 3.5px 11.7px 1.3px rgba(0, 0, 0, .21);
    border-color: #3a3b3b
}

@supports (-webkit-backdrop-filter:blur(1px)) or (backdrop-filter:blur(1px)) {
    .header .navbar {
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        background-color: rgba(40, 40, 40, .85)
    }
}

.header .navbar .navbar-header {
    position: relative
}

.home .header .navbar {
    -moz-box-shadow: 3.5px 3.5px 11.7px 1.3px rgba(0, 0, 0, .21);
    -webkit-box-shadow: 3.5px 3.5px 11.7px 1.3px rgba(0, 0, 0, .21);
    box-shadow: 3.5px 3.5px 11.7px 1.3px rgba(0, 0, 0, .21)
}

@media (min-width: 992px) {
    .home .header .navbar {
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        background-color: transparent;
        border-color: transparent;
        transition: all .5s ease-in-out
    }
}

@media (min-width: 992px) {
    .home.has-scroll .header .navbar {
        background-color: rgba(40, 40, 40, .9);
        border-color: #3a3b3b
    }
}

@media (min-width: 992px) {
    .header .navbar {
        background-color: rgba(40, 40, 40, .9);
        padding: 8px 0 16px
    }

    .header .navbar .navbar-right {
        margin-right: -5px
    }
}

@media (min-width: 992px) {
    .header .navbar {
        -moz-box-shadow: none;
        -webkit-box-shadow: none;
        box-shadow: none
    }
}

.header .navbar .nav {
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: .03em
}

@media (min-width: 768px) and (max-width: 991px) {
    .header .navbar .nav.navbar-nav {
        margin: 7.5px 0
    }
}

@media (min-width: 992px) {
    .header .navbar .nav {
        margin: 0
    }
}

.header .navbar .nav a {
    color: #fff;
    position: relative
}

.header .navbar .nav a:hover {
    color: #fff
}

.header .navbar .nav > li .caret {
    margin-left: 5px;
    margin-top: -3px
}

@media (min-width: 992px) {
    .header .navbar .nav > li .caret {
        float: none
    }
}

.header .navbar .nav > li.open > a {
    background-color: rgba(0, 0, 0, .2);
    color: #fff
}

.header .navbar .nav > li.open > a::after {
    width: 100%
}

.header .navbar .nav > li.open > a:hover {
    background-color: rgba(0, 0, 0, .2);
    color: #fff
}

.header .navbar .nav > li > .dropdown-menu {
    background-color: rgba(0, 0, 0, .3);
    z-index: 1030;
    border-radius: 0
}

@media (min-width: 992px) {
    .header .navbar .nav > li > .dropdown-menu {
        background-color: rgba(255, 255, 255, .98)
    }
}

.header .navbar .nav > li > .dropdown-menu .divider {
    background-color: rgba(153, 153, 153, .2);
    margin: 5px 0
}

.header .navbar .nav > li > .dropdown-menu .dropdown-header {
    color: #fff;
    font-size: 14px;
    padding: 3px 15px;
    text-transform: none
}

@media (min-width: 992px) {
    .header .navbar .nav > li > .dropdown-menu .dropdown-header {
        color: #222
    }
}

.header .navbar .nav > li > .dropdown-menu > li > a {
    text-transform: none;
    color: #999;
    padding: 10px 15px
}

@media (min-width: 992px) {
    .header .navbar .nav > li > .dropdown-menu > li > a {
        padding: 7px 15px;
        color: #666
    }
}

.header .navbar .nav > li > .dropdown-menu > li > a img {
    margin-right: 5px;
    margin-top: -4px;
    border: 1px solid rgba(255, 255, 255, .5)
}

@media (min-width: 992px) {
    .header .navbar .nav > li > .dropdown-menu > li > a img {
        border: 1px solid rgba(255, 255, 255, .8)
    }
}

.header .navbar .nav > li > .dropdown-menu > li > a:hover {
    background-color: #ff3020;
    color: #fff
}

.header .navbar .nav > li > a {
    color: #fff;
    position: relative;
    padding: 15px 12px
}

.header .navbar .nav > li > a.e85 {
    color: #73b736 !important;
    font-weight: 700
}

.header .navbar .nav > li > a.e85 span.new {
    border: 1px solid #73b736;
    padding: 0 3px;
    border-radius: 3px;
    text-transform: uppercase;
    font-weight: 700;
    margin-left: 5px;
    line-height: inherit;
    color: #73b736
}

@media (min-width: 992px) {
    .header .navbar .nav > li > a {
        padding: 15px
    }
}

.header .navbar .nav > li > a::after {
    -moz-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    content: " ";
    display: block;
    background-color: #fff;
    width: 0%;
    height: 1px;
    margin-top: 5px;
    margin-bottom: -6px
}

@media (max-width: 480px) {
    .header .navbar .nav > li > a {
        padding: 15px
    }

    .header .navbar .nav > li > a::after {
        display: none
    }
}

@media (max-width: 767px) and (min-width: 481px) {
    .header .navbar .nav > li > a {
        padding: 15px
    }

    .header .navbar .nav > li > a::after {
        display: none
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .header .navbar .nav > li > a {
        padding: 15px
    }

    .header .navbar .nav > li > a::after {
        display: none
    }
}

.header .navbar .nav > li a:hover, .header .navbar .nav > li.active a {
    background-color: rgba(0, 0, 0, .2)
}

.header .navbar .nav > li a:hover::after, .header .navbar .nav > li.active a::after {
    width: 100%
}

@media (min-width: 992px) {
    .header .navbar .nav > li a:hover, .header .navbar .nav > li.active a {
        background-color: transparent
    }
}

.header .navbar .nav > li a:hover {
    background-color: rgba(0, 0, 0, .15)
}

@media (min-width: 992px) {
    .header .navbar .nav > li a:hover {
        background-color: transparent
    }
}

@media (max-width: 480px) {
    .header .navbar .nav > li:last-child {
        margin-bottom: 20px
    }
}

@media (max-width: 767px) and (min-width: 481px) {
    .header .navbar .nav > li:last-child {
        margin-bottom: 20px
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .header .navbar .nav > li:last-child {
        margin-bottom: 20px
    }
}

.header .navbar .nav .nav-search {
    background-color: rgba(0, 0, 0, .2);
    font-size: 18px
}

@media (min-width: 992px) {
    .header .navbar .nav .nav-search {
        margin-right: 5px
    }
}

.header .navbar .nav .nav-search a:hover {
    color: #ff3020
}

.header .navbar .nav .nav-search a:hover::after {
    width: 0
}

@media (min-width: 992px) {
    .header .navbar .nav .nav-search {
        font-size: 14px;
        background-color: transparent
    }
}

.header .navbar .nav .nav-social {
    border-top: 1px solid #3a3b3b
}

@media (min-width: 992px) {
    .header .navbar .nav .nav-social {
        border: 0
    }
}

.header .navbar .nav .nav-social ul {
    margin: 0;
    overflow: hidden;
    *zoom: 1
}

.header .navbar .nav .nav-social li {
    padding: 0;
    width: 33.33333%;
    text-align: center;
    display: block;
    float: left
}

@media (min-width: 992px) {
    .header .navbar .nav .nav-social li {
        width: auto;
        display: inline-block;
        float: none
    }

    .header .navbar .nav .nav-social li a {
        padding: 15px 5px;
        height: 50px
    }
}

@media (min-width: 992px) {
    .header .navbar .nav .nav-social li:last-child a {
        margin-right: -5px
    }
}

.header .navbar .nav .nav-social img {
    width: 16px
}

.header .navbar .nav .nav-social a {
    display: block;
    padding: 15px 5px;
    line-height: 20px;
    font-size: 20px
}

.header .navbar .nav .nav-10years img {
    vertical-align: middle;
    width: 120px;
    margin-left: 15px;
    margin-top: 5px
}

.header .navbar-brand {
    padding-top: 11px
}

.header .navbar-collapse {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 0;
    padding-top: 15px;
    margin-bottom: -23px
}

@media (min-width: 992px) {
    .header .navbar-collapse {
        margin: 0;
        padding: 0
    }
}

.header .navbar-toggle {
    -moz-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    border: 0;
    margin: 10px 15px 0 0
}

@media (min-width: 768px) {
    .header .navbar-toggle {
        margin-right: 5px
    }
}

.header .navbar-toggle:focus, .header .navbar-toggle:hover {
    background-color: rgba(0, 0, 0, .05)
}

.header .navbar-toggle.active:hover, .header .navbar-toggle.active {
    background-color: transparent
}

.header .search-toggle {
    position: absolute;
    top: -8px;
    right: 75px;
    color: #ccc;
    padding: 23px 20px
}

@media (min-width: 768px) and (max-width: 991px) {
    .header .search-toggle {
        right: 70px
    }
}

.header .search-toggle .icon-search-light {
    height: 28px;
    width: 28px;
    background: url(/img/icon-search-light.svg) center center no-repeat
}

.header .search-toggle:hover {
    color: #fff
}

.header .action-phone {
    position: absolute;
    top: -8px;
    right: 140px;
    color: #ccc;
    padding: 22px 20px
}

.header .action-phone i {
    font-size: 32px
}

.header .action-phone:hover {
    color: #fff
}

.nav-icon {
    width: 36px;
    height: 22px;
    position: relative;
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -moz-transition: ease-in-out .5s;
    -o-transition: ease-in-out .5s;
    -webkit-transition: ease-in-out .5s;
    transition: ease-in-out .5s;
    cursor: pointer;
    display: block
}

.nav-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ccc;
    opacity: 1;
    left: 0;
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -moz-transition: ease-in-out .25s;
    -o-transition: ease-in-out .25s;
    -webkit-transition: ease-in-out .25s;
    transition: ease-in-out .25s
}

.nav-icon span:nth-child(1) {
    top: 0
}

.nav-icon span:nth-child(2), .nav-icon span:nth-child(3) {
    top: 10px
}

.nav-icon span:nth-child(4) {
    top: 20px
}

.active .nav-icon span:nth-child(1) {
    top: 18px;
    width: 0;
    left: 50%
}

.active .nav-icon span:nth-child(2) {
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.active .nav-icon span:nth-child(3) {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

.active .nav-icon span:nth-child(4) {
    top: 18px;
    width: 0;
    left: 50%
}

.close-icon {
    width: 36px;
    height: 36px;
    position: absolute;
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -moz-transition: ease-in-out .5s;
    -o-transition: ease-in-out .5s;
    -webkit-transition: ease-in-out .5s;
    transition: ease-in-out .5s;
    cursor: pointer
}

.close-icon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #ccc;
    opacity: 1;
    left: 0;
    top: 18px;
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    -moz-transition: ease-in-out .25s;
    -o-transition: ease-in-out .25s;
    -webkit-transition: ease-in-out .25s;
    transition: ease-in-out .25s
}

.close-icon span:nth-child(1) {
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.close-icon span:nth-child(2) {
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg)
}

@media (min-width: 767px) {
    .navbar {
        -webkit-transition: background .5s ease-in-out, padding .5s ease-in-out;
        -moz-transition: background .5s ease-in-out, padding .5s ease-in-out;
        transition: background .5s ease-in-out, padding .5s ease-in-out
    }

    .top-nav-collapse {
        padding: 0
    }
}

.container-main {
    position: relative;
    margin-top: 75px;
    min-height: 480px;
    padding-top: 30px
}

@media (min-width: 768px) {
    .container-main {
        margin-top: 101px
    }
}

@media (min-width: 992px) {
    .container-main {
        margin-top: 101px
    }
}

.home .container-main {
    padding-top: 0;
    margin-top: 0
}

@media (min-width: 768px) {
    .home .container-main .home-section {
        height: 75vh;
        margin: 0
    }
}

@media (min-width: 768px) {
    .no-min-height.home .container-main .home-section {
        height: auto
    }
}

.page-cms .container-main {
    padding-bottom: 60px
}

.section {
    position: relative;
    padding-top: 100px !important;
    min-height: 700px;
    padding-bottom: 120px !important
}

.section img.landing-logo {
    width: 35px;
    height: auto;
    margin: 20px;
    transition: all ease-in-out .3s;
    display: inline-block;
    cursor: pointer
}

.section img.landing-exhaut-logo {
    width: 120px;
    height: auto;
    margin: 10px;
    transition: all ease-in-out .3s;
    display: inline-block;
    cursor: pointer
}

.section .img-responsive.section-thumb, .section .img-responsive.lazyload, .section .img-responsive.lazyloaded {
    width: 100%
}

@media (min-width: 1200px) {
    .section.bg-cover {
        background-attachment: fixed
    }

    @supports (-webkit-appearance:none) {
        .section.bg-cover {
            background-attachment: scroll
        }
    }
}

@media (min-width: 768px) {
    .section {
        padding-top: 101px !important
    }
}

@media (min-width: 992px) {
    .section {
        padding-top: 131px !important
    }
}

@media (min-width: 1200px) {
    .section {
        min-height: auto;
        height: 100vh
    }

    .section > .container, .section > .container > .row {
        height: 100%;
        position: relative
    }

    .section .row.vertical-text {
        width: 100%;
        margin: 0
    }
}

.section .text-overflow {
    max-height: 350px;
    overflow: auto
}

.section a {
    color: #4c4c4c;
    text-decoration: none;
    text-decoration-style: dotted
}

.section a:focus, .section a:hover {
    color: #ec1100
}

.section a.btn-primary {
    color: #fff
}

.section a.btn-primary i {
    font-size: 100%
}

.section .btn {
    text-decoration: none
}

.section .btn.btn-default {
    color: #4c4c4c
}

.section .section-title {
    font-size: 30px;
    margin: 0 0 30px
}

.section.section-configurable-option .section-title {
    text-transform: capitalize
}

.section p {
    font-size: 18px;
    font-weight: 200
}

.section li {
    font-size: 18px;
    font-weight: 200
}

.section .row .inner, .section .row.inner {
    padding: 0 15px
}

@media (min-width: 992px) {
    .section .row .inner, .section .row.inner {
        padding: 0 45px
    }
}

.section .row .inner > div, .section .row.inner > div {
    padding: 0 15px 30px
}

@media (min-width: 992px) {
    .section .row .inner > div, .section .row.inner > div {
        padding: 0 30px
    }
}

.section.section-dark {
    background-color: #282828
}

.section.section-dark h1, .section.section-dark h2, .section.section-dark p, .section.section-dark li {
    color: #fff
}

.section.section-dark h1 a, .section.section-dark h2 a, .section.section-dark p a, .section.section-dark li a {
    color: #fff
}

.section.section-dark h1 a i, .section.section-dark h2 a i, .section.section-dark p a i, .section.section-dark li a i {
    color: #fff
}

.section.section-dark h1 a:focus, .section.section-dark h1 a:hover, .section.section-dark h2 a:focus, .section.section-dark h2 a:hover, .section.section-dark p a:focus, .section.section-dark p a:hover, .section.section-dark li a:focus, .section.section-dark li a:hover {
    color: #ec1100
}

.section.section-dark .media-gallery .media-thumb {
    border-color: #282828
}

.section.section-right .col-sm-6 {
    float: right
}

.section.section-medias {
    height: auto
}

.curve-gallery {
    cursor: pointer
}

.reprog-nostage .btn-green, .intro-section .btn-green {
    background: #73b736 !important;
    border-color: #73b736 !important
}

.reprog-nostage .btn-orange, .intro-section .btn-orange {
    background: #f19133 !important;
    border-color: #f19133 !important
}

.reprog-nostage .reprog-header, .intro-section .reprog-header {
    background: 0 0;
    padding: 0 0
}

@media (min-width: 992px) {
    .reprog-nostage .reprog-header, .intro-section .reprog-header {
        padding: 0 0
    }
}

.reprog-nostage .reprog-header img, .intro-section .reprog-header img {
    width: 80px;
    margin-top: -10px;
    margin-right: 15px
}

.reprog-nostage .reprog-header img.illu-car, .intro-section .reprog-header img.illu-car {
    width: 200px
}

.reprog-nostage .reprog-header img + .reprog-title, .intro-section .reprog-header img + .reprog-title {
    display: inline-block;
    text-align: left;
    margin-bottom: 0;
    padding-bottom: 10px;
    vertical-align: bottom
}

.reprog-nostage .reprog-header img + .reprog-title span, .intro-section .reprog-header img + .reprog-title span {
    display: block
}

.reprog-nostage .nav-tabs > li a, .intro-section .nav-tabs > li a {
    position: relative;
    display: block;
    padding: 5px 7px;
    font-size: 13px
}

.reprog-nostage .nav-tabs > li img, .intro-section .nav-tabs > li img {
    max-height: 10px;
    vertical-align: middle;
    margin-right: 2px;
    margin-bottom: 2px
}

@media (min-width: 992px) {
    .reprog-nostage .nav-tabs > li a, .intro-section .nav-tabs > li a {
        position: relative;
        display: block;
        padding: 10px 15px;
        font-size: 16px
    }

    .reprog-nostage .nav-tabs > li img, .intro-section .nav-tabs > li img {
        max-height: 20px;
        vertical-align: middle;
        margin-right: 5px;
        margin-bottom: 5px
    }
}

@media (min-width: 1200px) {
    .reprog-nostage .nav-tabs > li a, .intro-section .nav-tabs > li a {
        position: relative;
        display: block;
        padding: 10px 15px;
        font-size: 18px
    }

    .reprog-nostage .nav-tabs > li img, .intro-section .nav-tabs > li img {
        max-height: 20px;
        vertical-align: middle;
        margin-right: 5px;
        margin-bottom: 5px
    }
}

.reprog-nostage .tab-content, .intro-section .tab-content {
    margin-top: 30px
}

.reprog-nostage .reprog-title, .intro-section .reprog-title {
    margin-top: 30px;
    color: #b2b2b2;
    border: 0
}

.reprog-nostage .reprog-title div, .intro-section .reprog-title div {
    line-height: 28px
}

@media (min-width: 768px) {
    .reprog-nostage .reprog-title div, .intro-section .reprog-title div {
        line-height: 28px
    }
}

@media (min-width: 992px) {
    .reprog-nostage .reprog-title div, .intro-section .reprog-title div {
        line-height: 28px
    }
}

@media (min-width: 1200px) {
    .reprog-nostage .reprog-title div, .intro-section .reprog-title div {
        line-height: normal
    }
}

.reprog-nostage .reprog-title img, .intro-section .reprog-title img {
    float: left
}

.reprog-nostage .reprog-title small, .intro-section .reprog-title small {
    color: #b2b2b2
}

.reprog-nostage .reprog-title span, .intro-section .reprog-title span {
    font-size: 18px;
    font-weight: 400;
    white-space: nowrap;
    display: block;
    line-height: 42px
}

@media (min-width: 1200px) {
    .reprog-nostage .reprog-title span, .intro-section .reprog-title span {
        display: inline-block
    }
}

.reprog-nostage .reprog-title span strong, .intro-section .reprog-title span strong {
    font-weight: 600
}

.reprog-nostage p, .intro-section p {
    color: #666
}

.reprog-nostage .reprog-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 30px
}

.reprog-nostage h3.nostage {
    font-size: 18px;
    margin: 30px 0;
    font-weight: 400
}

.reprog-nostage h3.nostage i {
    margin-right: 10px
}

.reprog-nostage p.text-head {
    font-size: 24px;
    font-weight: 200;
    padding: 30px 15%
}

.reprog-nostage h3.text-head {
    font-size: 24px;
    font-weight: 200;
    color: #ccc;
    margin: 30px 0
}

.reprog-nostage h4.title {
    font-size: 24px;
    font-weight: 500;
    color: #ccc;
    margin-bottom: 30px
}

.reprog-nostage .tab-pane.active {
    min-height: 335px
}

.reprog-nostage .nav-tabs, .reprog-nostage .btn-group-action {
    padding: 30px 0;
    border-bottom: 0;
    text-align: center
}

.reprog-nostage .nav-tabs > li, .reprog-nostage .btn-group-action > li {
    float: none;
    display: inline-block
}

.reprog-nostage .nav-tabs > li a, .reprog-nostage .btn-group-action > li a {
    border-radius: 4px
}

.reprog-nostage .nav-tabs > li a:hover, .reprog-nostage .btn-group-action > li a:hover {
    background-color: #fafafa;
    border-color: #fafafa
}

.reprog-nostage .nav-tabs > li a i, .reprog-nostage .btn-group-action > li a i {
    color: #ff3020;
    font-size: 120%
}

.reprog-nostage .nav-tabs > li.active a, .reprog-nostage .btn-group-action > li.active a {
    background-color: #ff3020;
    border-color: #ff3020;
    color: #fff
}

.reprog-nostage .nav-tabs > li.active i, .reprog-nostage .btn-group-action > li.active i {
    color: #fff
}

.reprog-nostage .nav-tabs .btn, .reprog-nostage .btn-group-action .btn {
    margin: 7.5px
}

.reprog-nostage .nav-tabs .btn-default.active, .reprog-nostage .btn-group-action .btn-default.active {
    background-color: #666;
    color: #fff
}

.reprog-nostage .nav-tabs .btn-primary.active, .reprog-nostage .btn-group-action .btn-primary.active {
    background-color: #b90d00
}

.reprog-nostage .nostage-contact-form {
    max-height: inherit
}

@media (min-width: 768px) {
    .reprog-nostage .nostage-contact-form {
        position: sticky;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%
    }
}

.reprog-nostage .nostage-contact-form > .container {
    min-height: inherit
}

.reprog-nostage .nostage-contact-form .inner {
    padding: 0 15px 46px
}

@media (min-width: 768px) {
    .reprog-nostage .nostage-contact-form .inner {
        padding: 0 15% 46px
    }
}

.reprog-nostage .nostage-contact-form .switch-centers {
    text-align: center;
    padding: 0
}

.reprog-nostage .nostage-contact-form .switch-centers .btn {
    float: none
}

.reprog-nostage .nostage-contact-form p.text {
    color: #999;
    font-weight: 300;
    font-size: 18px;
    margin-bottom: 30px
}

.reprog-nostage .nostage-contact-form .col-md-4 p.text {
    margin-top: 20px
}

#section-medias .inner {
    padding: 0
}

.media-gallery {
    margin: 7.5px -7.5px;
    text-align: center;
    font-size: 0
}

.media-gallery .media-thumb {
    border: 7.5px solid #fff;
    padding: 0;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    float: none;
    display: inline-block
}

.media-gallery .media-thumb img {
    opacity: 1;
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0)
}

.media-gallery .media-thumb a::before {
    opacity: 0;
    font-family: FontAwesome;
    content: "";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    color: #fff;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -16px;
    margin-left: -16px;
    line-height: 32px;
    width: 32px;
    z-index: 10;
    font-size: 32px;
    font-weight: 100
}

.media-gallery .media-thumb:hover {
    background-color: #282828
}

.media-gallery .media-thumb:hover a:hover::before {
    opacity: 1
}

.media-gallery .media-thumb:hover img {
    opacity: .3
}

.media-embed {
    margin-top: 30px
}

.media-pictures, .media-embed {
    padding: 0 15px !important
}

@media (min-width: 992px) {
    .media-pictures, .media-embed {
        padding: 0 15% !important
    }
}

.media-pictures {
    margin-bottom: 30px
}

.page-title {
    font-size: 30px;
    font-weight: 200;
    margin-bottom: 0;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin-top: 0
}

@media (min-width: 768px) {
    .page-title {
        margin-top: 20px
    }
}

.page-title.chevron-left::before {
    top: 18px
}

.page-title small {
    font-weight: 200;
    margin-left: 5px;
    max-width: 50%
}

.page-title .meta-right {
    display: block;
    line-height: 30px;
    font-size: 12px;
    text-align: right
}

.page-title .meta-right .btn {
    -moz-box-shadow: 1px 1px 2px rgba(0, 1, 1, .17);
    -webkit-box-shadow: 1px 1px 2px rgba(0, 1, 1, .17);
    box-shadow: 1px 1px 2px rgba(0, 1, 1, .17);
    margin-left: 15px
}

.page-title .meta-right .btn.btn-sm, .page-title .meta-right .btn-group-sm > .btn {
    line-height: 18px
}

.page-title .meta-right .btn.btn-sm i, .page-title .meta-right .btn-group-sm > .btn i {
    font-size: 18px;
    vertical-align: text-bottom
}

.page-title .meta-right.back {
    float: right
}

.page-title .meta-right.back .btn {
    margin-top: 0;
    margin-left: 0
}

@media (max-width: 480px) {
    .page-title .meta-right.back .btn {
        width: 32px;
        overflow: hidden
    }

    .page-title .meta-right.back .btn i {
        margin-right: 15px;
        margin-left: 2px
    }
}

.reprog-title {
    font-size: 32px;
    color: #ddd;
    font-weight: 700;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
    margin: 12px 0
}

@media (min-width: 768px) {
    .reprog-title {
        font-size: 48px
    }
}

.reprog-title small {
    white-space: nowrap;
    color: #ddd;
    font-weight: 700
}

.reprog-title img {
    width: 80px;
    margin-top: -10px;
    margin-right: 15px
}

.reprog-more {
    padding: 30px 0 !important
}

@media (min-width: 1200px) {
    .reprog-more {
        padding: 60px 0 !important;
        position: absolute;
        width: 100%;
        bottom: 70px;
        left: 0
    }
}

.no-min-height .reprog-more {
    position: relative;
    padding: 30px 0 !important;
    bottom: auto;
    left: auto
}

.reprog-more .btn {
    color: #4c4c4c;
    font-weight: 600;
    -moz-animation: floating 1.5s cubic-bezier(.445, .05, .55, .95) infinite;
    -webkit-animation: floating 1.5s cubic-bezier(.445, .05, .55, .95) infinite;
    animation: floating 1.5s cubic-bezier(.445, .05, .55, .95) infinite
}

.reprog-more .btn i {
    margin: 0 10px 0 0
}

.reprog-more .btn span {
    margin: 0
}

.page-more {
    padding: 30px 0 !important
}

@media (min-width: 1200px) {
    .page-more {
        padding: 30px 0 60px !important;
        width: 100%;
        bottom: 30px;
        left: 0
    }
}

.no-min-height .page-more {
    position: relative;
    padding: 30px 0 !important;
    bottom: auto;
    left: auto
}

.page-more .btn {
    color: #fff;
    background: #ff3020;
    font-weight: 600;
    -moz-animation: floating 1.5s cubic-bezier(.445, .05, .55, .95) infinite;
    -webkit-animation: floating 1.5s cubic-bezier(.445, .05, .55, .95) infinite;
    animation: floating 1.5s cubic-bezier(.445, .05, .55, .95) infinite
}

.page-more .btn i {
    margin: 0
}

.page-more .btn span {
    margin: 0
}

.page-more .btn:hover, .page-more .btn:active, .page-more .btn:focus, .page-more .btn:visited {
    color: #ff3020;
    background: #fff
}

.config-prev {
    position: fixed;
    left: 15px;
    bottom: -144px;
    top: auto;
    cursor: default;
    font-weight: 600
}

.config-prev.in {
    position: absolute;
    cursor: pointer;
    width: auto;
    bottom: auto;
    top: -60px
}

.config-prev i {
    color: #ff3020;
    font-size: 100%;
    margin: 0
}

.config-prev span {
    margin: 0 0 0 15px
}

.config-next {
    position: fixed;
    right: 15px;
    bottom: -144px;
    top: auto;
    cursor: default;
    font-weight: 600
}

.config-next.in {
    position: absolute;
    cursor: pointer;
    width: auto;
    bottom: auto;
    top: -60px
}

.config-next i {
    color: #ff3020;
    font-size: 100%;
    margin: 0
}

.config-next span {
    margin: 0 15px 0 0
}

.table-noline > thead > tr > th, .table-noline > thead > tr > td {
    border-top: 0;
    font-size: 16px;
    color: #a1a1a1;
    font-weight: 600
}

.table-noline > tbody > tr.highlight th, .pac-container .table-noline > tbody > tr.pac-matched th, .table-noline > tbody > tr.highlight td, .pac-container .table-noline > tbody > tr.pac-matched td {
    color: #ff3020
}

.table-noline > tbody > tr.highlight td, .pac-container .table-noline > tbody > tr.pac-matched td {
    font-weight: 600
}

.table-noline > tbody > tr.green-highlight th, .table-noline > tbody > tr.green-highlight td {
    color: #73b736
}

.table-noline > tbody > tr.green-highlight td {
    font-weight: 600
}

.table-noline > tbody > tr.orange-highlight th, .table-noline > tbody > tr.orange-highlight td {
    color: #f19133
}

.table-noline > tbody > tr.orange-highlight td {
    font-weight: 600
}

.table-noline > tbody > tr + tr th, .table-noline > tbody > tr + tr td {
    color: #666
}

.table-noline > tbody > tr th, .table-noline > tbody > tr td {
    border-top: 0;
    font-size: 16px;
    color: #a1a1a1
}

.table-noline > tfoot > tr > th, .table-noline > tfoot > tr > td {
    border-top: 0;
    font-size: 16px;
    color: #a1a1a1
}

.table-noline > thead > tr > th {
    border-bottom-width: 1px
}

.table-noline > tbody > tr > th {
    font-weight: 500
}

.table-shiftech {
    padding: 5px 15px 10px;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzliOWI5YiIgc3RvcC1vcGFjaXR5PSIwLjA1Ii8+PHN0b3Agb2Zmc2V0PSIzJSIgc3RvcC1jb2xvcj0iI2M5YzljOSIgc3RvcC1vcGFjaXR5PSIwLjA1Ii8+PHN0b3Agb2Zmc2V0PSIxMiUiIHN0b3AtY29sb3I9IiNlZWVlZWUiIHN0b3Atb3BhY2l0eT0iMC4wNSIvPjxzdG9wIG9mZnNldD0iNTYlIiBzdG9wLWNvbG9yPSIjZmFmYWZhIiBzdG9wLW9wYWNpdHk9IjAuMDUiLz48c3RvcCBvZmZzZXQ9Ijc0JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjA1Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAuMDUiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=);
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, rgba(155, 155, 155, 0.05)), color-stop(3%, rgba(201, 201, 201, 0.05)), color-stop(12%, rgba(238, 238, 238, 0.05)), color-stop(56%, rgba(250, 250, 250, 0.05)), color-stop(74%, rgba(255, 255, 255, 0.05)), color-stop(100%, rgba(255, 255, 255, 0.05)));
    background-image: -moz-linear-gradient(bottom, rgba(155, 155, 155, 0.05) 0%, rgba(201, 201, 201, 0.05) 3%, rgba(238, 238, 238, 0.05) 12%, rgba(250, 250, 250, 0.05) 56%, rgba(255, 255, 255, 0.05) 74%, rgba(255, 255, 255, 0.05) 100%);
    background-image: -webkit-linear-gradient(bottom, rgba(155, 155, 155, 0.05) 0%, rgba(201, 201, 201, 0.05) 3%, rgba(238, 238, 238, 0.05) 12%, rgba(250, 250, 250, 0.05) 56%, rgba(255, 255, 255, 0.05) 74%, rgba(255, 255, 255, 0.05) 100%);
    background-image: linear-gradient(to top, rgba(155, 155, 155, 0.05) 0%, rgba(201, 201, 201, 0.05) 3%, rgba(238, 238, 238, 0.05) 12%, rgba(250, 250, 250, 0.05) 56%, rgba(255, 255, 255, 0.05) 74%, rgba(255, 255, 255, 0.05) 100%);
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-box-shadow: 1.5px 2.6px 2px rgba(0, 0, 0, .1), inset 1.4px 1.4px 0 rgba(0, 0, 0, .05);
    -webkit-box-shadow: 1.5px 2.6px 2px rgba(0, 0, 0, .1), inset 1.4px 1.4px 0 rgba(0, 0, 0, .05);
    box-shadow: 1.5px 2.6px 2px rgba(0, 0, 0, .1), inset 1.4px 1.4px 0 rgba(0, 0, 0, .05);
    margin-bottom: 0
}

.table-shiftech .table {
    margin-bottom: 0
}

.price {
    font-size: 24px;
    margin: 30px 0
}

.price s {
    color: #b2b2b2
}

.price small {
    font-size: 70%
}

.meta-bottom {
    display: block;
    min-height: 30px
}

.meta-bottom img {
    float: right;
    width: 200px;
    margin: -50px 0 15px
}

.reprog-1 .meta-bottom, .reprog-2 .meta-bottom {
    padding-top: 10px;
    min-height: 40px
}

.page-cms .container-main h2, .page-cms .container-main h3, .chevron-left {
    position: relative;
    padding-left: 25px
}

.page-cms .container-main h2::before, .page-cms .container-main h3::before, .chevron-left::before {
    font-family: FontAwesome;
    content: "";
    color: #ff3020;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
    line-height: 20px;
    z-index: 102;
    font-size: 18px
}

.chevron-bottom {
    position: relative;
    padding-left: 25px
}

.chevron-bottom::before {
    font-family: FontAwesome;
    content: "";
    color: #ff3020;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
    line-height: 20px;
    z-index: 102;
    font-size: 18px
}

.breadcrumb-container {
    position: fixed;
    width: 100%;
    top: 75px;
    left: 0;
    right: 0;
    height: 26px;
    background-color: rgba(255, 255, 255, .85);
    z-index: 1029;
    border-bottom: 1px solid #eee;
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05)
}

.home .breadcrumb-container {
    display: none
}

.breadcrumb-container .header-phone {
    display: block;
    padding: 5px 0 5px 15px
}

.breadcrumb-container .header-phone i {
    margin-right: 5px;
    color: #ff3020
}

.breadcrumb-container .header-phone:hover {
    color: #000
}

.breadcrumb-container .select-lang {
    margin: 0;
    border-left: 1px solid rgba(0, 0, 0, .2)
}

.breadcrumb-container .select-lang .btn.btn-default {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    font-size: 12px;
    padding: 5px 0 7px 5px;
    background-color: transparent
}

.breadcrumb-container .select-lang .btn.btn-default:focus, .breadcrumb-container .select-lang .btn.btn-default:hover {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    background-color: transparent
}

.breadcrumb-container .select-lang span {
    margin-right: 0
}

.breadcrumb-container .breadcrumb {
    float: left;
    line-height: 25px;
    height: 25px;
    background-color: transparent;
    margin: 0;
    padding: 0
}

.breadcrumb-container .breadcrumb i {
    color: #666
}

.breadcrumb-container .breadcrumb li.home {
    margin-left: -15px;
    border-right: 1px solid rgba(0, 0, 0, .2);
    margin-right: 10px
}

.breadcrumb-container .breadcrumb li.home a {
    padding: 0 15px
}

.breadcrumb-container .breadcrumb li.home + li::before {
    display: none
}

.breadcrumb-container .breadcrumb li.home + li + li {
    margin-left: 7.5px
}

.breadcrumb-container .breadcrumb li.home + li + li::before {
    display: none
}

.breadcrumb-container .breadcrumb li::before {
    color: rgba(0, 0, 0, .2)
}

.breadcrumb-container .breadcrumb li.active {
    font-style: italic
}

.breadcrumb-container .breadcrumb li, .breadcrumb-container .breadcrumb a {
    line-height: 25px
}

.breadcrumb-container .breadcrumb a {
    height: 25px
}

.breadcrumb-container .breadcrumb a:hover {
    color: rgba(0, 0, 0, .4)
}

.breadcrumb-container .breadcrumb em {
    margin-left: 5px
}

.flash-message-container {
    position: fixed;
    width: 100%;
    top: 75px;
    left: 0;
    right: 0;
    z-index: 1029;
    color: #fff;
    font-size: 14px
}

@media (min-width: 768px) {
    .flash-message-container {
        top: 100px
    }

    .home .flash-message-container {
        top: 75px
    }
}

.flash-message-container .container {
    position: relative;
    text-align: left
}

@media (min-width: 992px) {
    .flash-message-container .container {
        text-align: center
    }
}

.flash-message-container a {
    display: block;
    color: #fff
}

.flash-message-container a:hover {
    color: rgba(255, 255, 255, .7)
}

.flash-message-container p {
    font-size: 14px;
    margin: 0;
    color: #fff;
    padding: 0 80px 2px 0;
    line-height: 28px
}

@media (min-width: 992px) {
    .flash-message-container p {
        padding: 0 80px 2px
    }
}

.flash-message-container.blue {
    background-color: #1372b8
}

.flash-message-container.orange {
    background-color: #ff8a00
}

.flash-message-container.red {
    background-color: #ff3020
}

.flash-message-container.green {
    background-color: #5cb85c
}

.flash-message-container.yellow {
    background-color: #d2aa08
}

.flash-message-container .btn {
    position: absolute;
    right: 15px;
    top: 5px;
    color: #fff
}

.flash-message-container .btn:hover {
    color: #fff;
    background-color: rgba(0, 0, 0, .2)
}

.sticky-action-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    min-height: 120px;
    background-color: #fff;
    z-index: 1000;
    -moz-box-shadow: 0 -1px 3px rgba(0, 0, 0, .05);
    -webkit-box-shadow: 0 -1px 3px rgba(0, 0, 0, .05);
    box-shadow: 0 -1px 3px rgba(0, 0, 0, .05)
}

.sticky-action-bar .reprog-car-img {
    width: 200px;
    max-width: 100%;
    margin-top: 10px
}

.sticky-action-bar h3 {
    font-size: 14px;
    margin: 15px 0 5px
}

.sticky-action-bar .page-nav {
    -moz-box-shadow: 0 .5px 0 0 #fff inset;
    -webkit-box-shadow: 0 .5px 0 0 #fff inset;
    box-shadow: 0 .5px 0 0 #fff inset;
    height: auto;
    background-color: #fafafa;
    border-bottom: 1px solid #f0f0f0
}

.sticky-action-bar .page-nav .navbar {
    margin: -1px -15px 0;
    min-height: 25px;
    text-align: center
}

@media (min-width: 768px) {
    .sticky-action-bar .page-nav .navbar {
        text-align: left;
        height: 25px
    }
}

.sticky-action-bar .page-nav .navbar .navbar-header {
    text-align: center
}

.sticky-action-bar .page-nav .navbar .navbar-header .navbar-brand {
    float: none;
    line-height: 25px;
    font-weight: 600
}

@media (min-width: 768px) {
    .sticky-action-bar .page-nav .navbar .navbar-header {
        text-align: left;
        float: left
    }

    .sticky-action-bar .page-nav .navbar .navbar-header .navbar-brand {
        float: left;
        max-width: 180px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis
    }
}

@media (min-width: 992px) {
    .sticky-action-bar .page-nav .navbar .navbar-header .navbar-brand {
        max-width: 300px
    }
}

@media (min-width: 1200px) {
    .sticky-action-bar .page-nav .navbar .navbar-header .navbar-brand {
        max-width: 400px
    }
}

.sticky-action-bar .page-nav .navbar .navbar-nav {
    display: inline-block;
    margin: 0 -15px
}

@media (min-width: 768px) {
    .sticky-action-bar .page-nav .navbar .navbar-nav {
        display: block;
        float: right !important;
        margin-right: 0
    }
}

.sticky-action-bar .page-nav .navbar .navbar-nav > li {
    float: left;
    margin-top: 2px
}

@media (min-width: 768px) {
    .sticky-action-bar .page-nav .navbar .navbar-nav > li {
        margin-top: 0
    }
}

.sticky-action-bar .page-nav .navbar .navbar-nav > li > a, .sticky-action-bar .page-nav .navbar .navbar-brand {
    font-size: 12px;
    line-height: 21px;
    padding: 0 10px;
    text-align: center
}

@media (min-width: 768px) {
    .sticky-action-bar .page-nav .navbar .navbar-nav > li > a, .sticky-action-bar .page-nav .navbar .navbar-brand {
        height: 25px
    }
}

.sticky-action-bar .page-nav .navbar .navbar-nav > li > a span, .sticky-action-bar .page-nav .navbar .navbar-brand span {
    display: none;
    vertical-align: middle
}

.sticky-action-bar .page-nav .navbar .navbar-nav > li > a:hover, .sticky-action-bar .page-nav .navbar .navbar-brand:hover {
    color: #666;
    background-color: #eee
}

.sticky-action-bar .page-nav .navbar .navbar-nav > li > a i, .sticky-action-bar .page-nav .navbar .navbar-brand i {
    color: rgba(0, 0, 0, .3);
    font-size: 16px;
    width: 25px
}

.sticky-action-bar .page-nav .navbar .navbar-nav > li > a .customicon.icon-engineer-notes, .sticky-action-bar .page-nav .navbar .navbar-brand .customicon.icon-engineer-notes {
    line-height: 26px;
    font-size: 107%
}

.sticky-action-bar .page-nav .navbar .navbar-nav > li > a.selected i, .sticky-action-bar .page-nav .navbar .navbar-nav > li > a.included i, .sticky-action-bar .page-nav .navbar .navbar-brand.selected i, .sticky-action-bar .page-nav .navbar .navbar-brand.included i {
    color: #ff3020
}

.sticky-action-bar .page-nav .navbar .navbar-nav > li > a.selected .icon-circle::before, .sticky-action-bar .page-nav .navbar .navbar-nav > li > a.included .icon-circle::before, .sticky-action-bar .page-nav .navbar .navbar-brand.selected .icon-circle::before, .sticky-action-bar .page-nav .navbar .navbar-brand.included .icon-circle::before {
    content: ""
}

.sticky-action-bar .page-nav .navbar .navbar-nav > li > a.included i, .sticky-action-bar .page-nav .navbar .navbar-brand.included i {
    color: #4c4c4c
}

.sticky-action-bar .page-nav .navbar .navbar-nav > li.reprog-prepa > a i, .sticky-action-bar .page-nav .navbar .navbar-nav > li.reprog-medias > a i {
    color: #4c4c4c
}

.sticky-action-bar .page-nav .navbar .navbar-nav > li.reprog-prepa.active > a i, .sticky-action-bar .page-nav .navbar .navbar-nav > li.reprog-medias.active > a i {
    color: #fff
}

.sticky-action-bar .page-nav .navbar .navbar-nav > li > a {
    background-color: #eee;
    margin-left: 2px
}

@media (max-width: 480px) {
    .sticky-action-bar .page-nav .navbar .navbar-nav > li > a {
        padding: 0 10px
    }
}

.sticky-action-bar .page-nav .navbar .navbar-nav > li > a i {
    margin: 0;
    vertical-align: middle;
    line-height: 25px
}

.sticky-action-bar .page-nav .navbar .navbar-nav > li.active > a {
    background-color: #ff3020;
    color: #fff
}

.sticky-action-bar .page-nav .navbar .navbar-nav > li.active > a span {
    display: inline-block
}

.sticky-action-bar .page-nav .navbar .navbar-nav > li.active > a i {
    color: rgba(255, 255, 255, .7)
}

.sticky-action-bar .page-nav .navbar .navbar-nav > li.active > a.selected i, .sticky-action-bar .page-nav .navbar .navbar-nav > li.active > a.included i {
    color: #fff
}

.sticky-action-bar .reprog-results span {
    display: block;
    line-height: 22px;
    font-weight: 400
}

.sticky-action-bar .reprog-results span.highlight, .sticky-action-bar .reprog-results .pac-container span.pac-matched, .pac-container .sticky-action-bar .reprog-results span.pac-matched {
    font-weight: 600
}

.sticky-action-bar .reprog-results .resume > span {
    display: inline;
    font-weight: inherit
}

.sticky-action-bar .price {
    margin: 10px 0;
    color: gray;
    line-height: 1
}

.sticky-action-bar .price > small {
    display: block;
    font-size: 12px;
    line-height: 24px;
    white-space: nowrap
}

.sticky-action-bar .price .highlight, .sticky-action-bar .price .pac-container .pac-matched, .pac-container .sticky-action-bar .price .pac-matched {
    margin: 0 5px
}

@media (min-width: 768px) {
    .sticky-action-bar .price {
        margin: 10px 0
    }

    .sticky-action-bar .price small {
        font-size: 14px;
        display: inline
    }
}

.sticky-action-bar .col-xs-7.text-right {
    min-height: 95px;
    padding-bottom: 30px;
    padding-left: 0
}

@media (min-width: 768px) {
    .sticky-action-bar .col-xs-7.text-right {
        padding-bottom: 0
    }
}

.sticky-action-bar .btn-group-action {
    display: inline-block;
    margin-right: 10px
}

.sticky-action-bar .btn-group-action .btn {
    line-height: 14px;
    padding: 9px;
    text-align: center;
    background-color: #eee;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    width: 32px;
    height: 32px;
    color: #999
}

.sticky-action-bar .btn-group-action .btn:hover {
    background-color: #ddd;
    color: #666
}

.sticky-action-bar .btn-group-action img {
    vertical-align: baseline
}

.sticky-action-bar .btn-group-action i {
    font-size: 14px;
    margin: 0
}

.sticky-action-bar.contact-bar {
    min-height: 50px
}

.sticky-action-bar.contact-bar .col-xs-7.text-right {
    min-height: 50px
}

.sticky-action-bar.contact-bar .col-xs-7.text-right .btn-primary {
    margin-top: 9px
}

.sticky-action-bar.contact-bar.home-contact-bar {
    min-height: 0
}

.sticky-action-bar.contact-bar.home-contact-bar .col-xs-7.text-right {
    min-height: 0
}

.sticky-action-bar.contact-bar .page-contact-form {
    background: #333
}

.sticky-action-bar.contact-bar .contact-form form {
    border: 0
}

.contact-form, .nostage-contact-form, .meeting-contact-form {
    background-color: #333
}

.contact-form .btn-submit, .nostage-contact-form .btn-submit, .meeting-contact-form .btn-submit {
    margin-bottom: 20px
}

.call-me-back-form, .contact-form, .nostage-contact-form, .meeting-contact-form {
    max-height: 350px;
    overflow: auto
}

@media (min-width: 768px) {
    .call-me-back-form, .contact-form, .nostage-contact-form, .meeting-contact-form {
        max-height: 600px
    }
}

.call-me-back-form h3, .contact-form h3, .nostage-contact-form h3, .meeting-contact-form h3 {
    font-size: 18px;
    font-weight: 400;
    color: #999
}

.call-me-back-form .container, .contact-form .container, .nostage-contact-form .container, .meeting-contact-form .container {
    min-height: 350px;
    position: relative
}

.call-me-back-form .btn-close, .contact-form .btn-close, .nostage-contact-form .btn-close, .meeting-contact-form .btn-close {
    background-color: #4c4c4c;
    color: #ccc;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10
}

.call-me-back-form .address .btn, .contact-form .address .btn, .nostage-contact-form .address .btn, .meeting-contact-form .address .btn {
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
    text-align: left
}

@media (min-width: 992px) {
    .call-me-back-form .address > .col-lg-6 + .col-lg-6, .contact-form .address > .col-lg-6 + .col-lg-6, .nostage-contact-form .address > .col-lg-6 + .col-lg-6, .meeting-contact-form .address > .col-lg-6 + .col-lg-6 {
        padding-left: 0
    }
}

.call-me-back-form .address .opening-hours, .contact-form .address .opening-hours, .nostage-contact-form .address .opening-hours, .meeting-contact-form .address .opening-hours {
    color: #fff
}

.call-me-back-form .btn-submit.loading, .contact-form .btn-submit.loading, .nostage-contact-form .btn-submit.loading, .meeting-contact-form .btn-submit.loading {
    position: relative;
    padding-left: 30px;
    background-color: #ec1100
}

.call-me-back-form .btn-submit.loading::before, .contact-form .btn-submit.loading::before, .nostage-contact-form .btn-submit.loading::before, .meeting-contact-form .btn-submit.loading::before {
    font-family: FontAwesome;
    content: "";
    color: #fff;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -9px;
    line-height: 20px;
    z-index: 102;
    font-size: 14px
}

.call-me-back-form .btn-submit.success, .contact-form .btn-submit.success, .nostage-contact-form .btn-submit.success, .meeting-contact-form .btn-submit.success {
    position: relative;
    padding-left: 30px;
    background-color: #5cb85c
}

.call-me-back-form .btn-submit.success::before, .contact-form .btn-submit.success::before, .nostage-contact-form .btn-submit.success::before, .meeting-contact-form .btn-submit.success::before {
    font-family: FontAwesome;
    content: "";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    color: #fff;
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -9px;
    line-height: 20px;
    z-index: 102;
    font-size: 14px
}

.call-me-back-form .btn-submit.error, .contact-form .btn-submit.error, .nostage-contact-form .btn-submit.error, .meeting-contact-form .btn-submit.error {
    position: relative;
    padding-left: 30px
}

.call-me-back-form .btn-submit.error::before, .contact-form .btn-submit.error::before, .nostage-contact-form .btn-submit.error::before, .meeting-contact-form .btn-submit.error::before {
    font-family: FontAwesome;
    content: "";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    color: #fff;
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -9px;
    line-height: 20px;
    z-index: 102;
    font-size: 14px
}

.feature-included {
    color: #ff3020 !important;
    font-size: 22px;
    font-weight: 600;
    margin-top: 20px;
    min-width: 120px;
    line-height: 1.2;
    text-transform: lowercase;
    cursor: default
}

.feature-included:hover {
    background-color: #fff !important;
    color: #ff3020
}

.switch-options {
    margin-top: 30px
}

.switch-options .btn {
    cursor: default !important;
    height: 40px;
    text-align: center;
    margin-bottom: 10px;
    font-size: 22px;
    font-weight: 600;
    position: relative;
    color: #666;
    background-color: #fff;
    line-height: 1.2;
    display: inline-block;
    -moz-border-radius: 2px 0 0 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px 0 0 2px
}

.switch-options .btn small {
    font-size: 16px
}

.switch-options .btn small abbr {
    font-size: 14px
}

.switch-options .btn img {
    height: 20px;
    margin: -2px 0 0
}

.switch-options .btn span.meta {
    height: 40px;
    font-size: 14px;
    font-weight: 200;
    background-color: rgba(40, 40, 40, .9);
    display: block;
    position: absolute;
    left: 100%;
    top: 0;
    line-height: 28px;
    padding: 5px 10px;
    color: #999;
    border-radius: 0 2px 2px 0
}

.switch-options .btn span.meta small {
    font-size: 16px
}

.switch-options .btn span.meta abbr {
    font-size: 12px
}

.switch-options .btn span.meta strong {
    font-size: 18px;
    font-weight: 500;
    margin-left: 5px;
    color: #aaa
}

@media (min-width: 992px) {
    .switch-options.switch-configurable-option {
        margin-left: -60px
    }
}

@media (min-width: 1200px) {
    .switch-options.switch-configurable-option {
        margin-left: 0
    }
}

.switch-options.switch-configurable-option > div {
    position: relative
}

.switch-options.switch-configurable-option > div input {
    display: none
}

.switch-options.switch-configurable-option .btn {
    padding-right: 100px;
    margin-bottom: 50px;
    -moz-border-radius: 2px 0 0 0;
    -webkit-border-radius: 2px;
    border-radius: 2px 0 0 0;
    width: 300px;
    display: block
}

@media (min-width: 768px) {
    .switch-options.switch-configurable-option .btn {
        -moz-border-radius: 2px 0 0 2px;
        -webkit-border-radius: 2px;
        border-radius: 2px 0 0 2px;
        width: 170px;
        margin-bottom: 10px;
        padding-right: 40px
    }
}

.switch-options.switch-configurable-option .btn span.meta {
    width: 300px;
    top: 40px;
    left: 0;
    -moz-border-radius: 0 0 2px 2px;
    -webkit-border-radius: 0;
    border-radius: 0 0 2px 2px
}

@media (min-width: 768px) {
    .switch-options.switch-configurable-option .btn span.meta {
        width: 260px;
        -moz-border-radius: 0 2px 2px 0;
        -webkit-border-radius: 0;
        border-radius: 0 2px 2px 0;
        position: absolute;
        left: 100%;
        top: 0
    }
}

.switch-options.switch-configurable-option .btn .icon-stack {
    font-size: 12px;
    position: absolute;
    left: 188px;
    top: 8px;
    -moz-border-radius: 20px;
    -webkit-border-radius: 20px;
    border-radius: 20px;
    color: #ff3020;
    border: 1px solid #ff3020
}

.switch-options.switch-configurable-option .btn .icon-stack i {
    margin: 0
}

.switch-options.switch-configurable-option .btn .icon-stack .icon-stack-1x {
    font-size: 13px;
    text-align: left;
    text-indent: -1px;
    line-height: 22px
}

@media (min-width: 768px) {
    .switch-options.switch-configurable-option .btn .icon-stack .icon-stack-1x {
        ine-height: 21.5px
    }
}

@media (min-width: 768px) {
    .switch-options.switch-configurable-option .btn .icon-stack {
        left: 138px
    }
}

.switch-options.switch-configurable-option .btn-video {
    background-color: #ff3020;
    display: block;
    padding: 12px;
    text-align: center;
    position: absolute;
    left: 260px;
    top: 0;
    color: #fff;
    height: 40px;
    width: 40px;
    border-left: 1px solid #fff;
    -moz-border-radius: 0 2px 0 0;
    -webkit-border-radius: 0;
    border-radius: 0 2px 0 0
}

.switch-options.switch-configurable-option .btn-video:hover {
    background-color: #ec1100
}

@media (min-width: 768px) {
    .switch-options.switch-configurable-option .btn-video {
        left: 435px;
        -moz-border-radius: 2px;
        -webkit-border-radius: 2px;
        border-radius: 2px;
        border-left: 0
    }
}

.switch-options.switch-configurable-option .btn-video + .btn-video {
    left: 220px
}

@media (min-width: 768px) {
    .switch-options.switch-configurable-option .btn-video + .btn-video {
        left: 480px
    }
}

.switch-centers {
    display: block;
    border-bottom: 1px solid #4c4c4c;
    overflow: hidden;
    padding-right: 70px
}

.switch-centers .btn {
    text-align: left;
    color: #999;
    font-size: 14px;
    line-height: 18px;
    padding: 15px;
    text-transform: uppercase;
    border-radius: 0 !important;
    min-width: 150px;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

.switch-centers .btn:hover {
    color: #fff
}

.switch-centers .btn.active {
    background-color: rgba(255, 255, 255, .1);
    color: #fff;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-radius: 0 !important
}

.switch-centers .btn img {
    margin-top: -4px;
    margin-right: 10px
}

.fixed-action-btn {
    position: fixed;
    right: 16px;
    bottom: 16px;
    z-index: 998
}

.fixed-action-btn button {
    display: inline-block;
    color: #fff;
    background-color: #ff3020;
    border-color: #ff1806;
    position: relative;
    overflow: hidden;
    z-index: 1;
    padding: 0;
    margin: 0;
    border: 0;
    border-radius: 50%;
    transition: .3s;
    cursor: pointer;
    vertical-align: middle;
    height: 60px;
    line-height: 60px;
    width: 60px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
    transition: box-shadow .3s ease-in-out
}

.fixed-action-btn button:hover {
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, .18), 0 4px 15px 0 rgba(0, 0, 0, .15);
    transition: box-shadow .3s ease-in-out
}

.fixed-action-btn button i {
    width: inherit;
    display: inline-block;
    text-align: center;
    color: #fff;
    font-size: 3rem;
    line-height: inherit
}

@media (max-width: 768px) {
    .fixed-action-btn {
        right: 20px;
        bottom: 20px
    }
}

@media (max-width: 446px) {
    .home-section .home-banner .home-center-link .btn-group.select-lang {
        margin-top: 10px;
        margin-left: 0
    }
}

@media (min-width: 446px) {
    .home-section .home-banner .home-center-link .btn-group.select-lang {
        margin-top: 0;
        margin-left: 10px
    }
}

.home-section {
    padding: 0;
    text-align: center;
    background: #fff
}

@media (min-width: 768px) {
    .home-section {
        height: 100%
    }
}

.home-section .home-banner {
    position: relative;
    width: 100%;
    min-height: 550px;
    font-size: 12px;
    background-color: #ccc
}

.home-section .home-banner .full-stretch.gradient {
    z-index: 10
}

@media (min-width: 768px) {
    .home-section .home-banner {
        height: 100%;
        font-size: 14px
    }
}

@media (min-width: 992px) {
    .home-section .home-banner {
        font-size: 16px
    }
}

.home-section .home-banner .container {
    padding-top: 100px;
    position: relative;
    z-index: 11
}

.home-section .home-banner h1 {
    letter-spacing: .05em;
    color: #fff;
    font-weight: 300;
    font-size: 2em
}

.home-section .home-banner h2 {
    color: #fff;
    font-weight: 300;
    display: block;
    font-size: 1.4em;
    margin-top: .7em
}

.home-section .home-banner p.home-paragraph {
    font-size: 1.1em;
    color: #fff
}

.home-section .home-banner .home-banner-link {
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 0;
    z-index: 10
}

.home-section .home-banner .home-banner-link .btn {
    line-height: 22px;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    background-color: #ff3020;
    max-width: 290px;
    -moz-animation: floating 1.5s cubic-bezier(.445, .05, .55, .95) infinite;
    -webkit-animation: floating 1.5s cubic-bezier(.445, .05, .55, .95) infinite;
    animation: floating 1.5s cubic-bezier(.445, .05, .55, .95) infinite
}

.home-section .home-banner .home-banner-link .btn i {
    font-size: 22px;
    vertical-align: middle;
    line-height: 20px;
    margin-top: -3px
}

.home-section .home-banner .home-center-link {
    color: #fff;
    position: absolute;
    width: 100%;
    text-align: center;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 0;
    z-index: 10;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 40%, rgba(0, 0, 0, 0.8) 100%)
}

.home-section .home-banner .home-center-link i {
    margin-right: 5px
}

.home-section .home-cta-banners {
    position: relative;
    width: 100%;
    font-size: 14px
}

@media (min-width: 768px) {
    .home-section .home-cta-banners {
        height: 25%;
        font-size: 14px
    }
}

@media (min-width: 992px) {
    .home-section .home-cta-banners {
        font-size: 16px;
        height: 25%
    }
}

.home-section .home-cta-banners .bg-anim {
    padding: 0
}

.home-section .home-cta-banners .bg-anim .vertical-text .inner {
    padding: 0
}

.home-section .home-cta-banners .row, .home-section .home-cta-banners .row > a {
    display: block;
    margin: 0;
    position: relative;
    height: auto;
    border: 2px solid #fff;
    min-height: 200px
}

@media (min-width: 768px) {
    .home-section .home-cta-banners .row, .home-section .home-cta-banners .row > a {
        height: 100%
    }
}

.home-section .home-cta-banners .row > a {
    background-color: #ccc
}

.home-section .home-cta-banners .row > a:hover .mask {
    background-color: rgba(0, 0, 0, .4)
}

.home-section .home-cta-banners .row > a:hover p img {
    margin-left: -200%
}

.home-section .home-cta-banners .row > a:hover p span.promo-desc {
    left: 0;
    opacity: 1;
    -moz-transition: all .35s cubic-bezier(1, .04, .6, .97) .5s;
    -o-transition: all .35s cubic-bezier(1, .04, .6, .97) .5s;
    -webkit-transition: all .35s cubic-bezier(1, .04, .6, .97);
    -webkit-transition-delay: .5s;
    transition: all .35s cubic-bezier(1, .04, .6, .97) .5s
}

.home-section .home-cta-banners .vertical-text {
    margin: 0;
    position: relative;
    height: 196px;
    width: 100%;
    overflow: hidden
}

@media (min-width: 768px) {
    .home-section .home-cta-banners .vertical-text {
        height: 100%;
        min-height: 196px
    }
}

.home-section .home-cta-banners .vertical-text .inner {
    padding: 30px
}

@media (min-width: 768px) {
    .home-section .home-cta-banners .vertical-text .inner {
        padding: 15px
    }
}

.home-section .home-cta-banners h2 {
    letter-spacing: .05em;
    color: #fff;
    font-weight: 300;
    font-size: 1.8em;
    padding: 0;
    margin: 0
}

.home-section .home-cta-banners h2 small {
    color: #fff;
    font-weight: 300;
    font-size: 70%;
    margin: 0 0 0 15px
}

.home-section .home-cta-banners h3, .home-section .home-cta-banners p {
    font-size: 1em;
    color: #fff;
    margin: 0;
    padding: 15px 0 0;
    font-weight: 400
}

.home-section .home-cta-banners h3 img, .home-section .home-cta-banners p img {
    -moz-transition: all .85s cubic-bezier(1, .04, .6, .97);
    -o-transition: all .85s cubic-bezier(1, .04, .6, .97);
    -webkit-transition: all .85s cubic-bezier(1, .04, .6, .97);
    transition: all .85s cubic-bezier(1, .04, .6, .97);
    margin-top: 10px;
    max-width: 80%
}

.home-section .home-cta-banners h3 span.promo-desc, .home-section .home-cta-banners p span.promo-desc {
    -moz-transition: all .85s cubic-bezier(1, .04, .6, .97);
    -o-transition: all .85s cubic-bezier(1, .04, .6, .97);
    -webkit-transition: all .85s cubic-bezier(1, .04, .6, .97);
    transition: all .85s cubic-bezier(1, .04, .6, .97);
    display: block;
    width: 100%;
    position: absolute;
    top: 50%;
    left: 0;
    opacity: 0
}

.home-section .home-cta-banners h3 span.promo-desc .btn, .home-section .home-cta-banners p span.promo-desc .btn {
    margin-top: 10px
}

.home-section .home-cta-banners .bg-light {
    color: #262626
}

.home-section .home-cta-banners .bg-light h2, .home-section .home-cta-banners .bg-light h2 small, .home-section .home-cta-banners .bg-light h3, .home-section .home-cta-banners .bg-light p {
    color: #262626
}

.banner-section {
    padding: 0;
    text-align: left;
    background: #fff
}

.contact .banner-section {
    padding: 75px 0 0
}

@media (min-width: 992px) {
    .contact .banner-section {
        padding: 101px 0 0
    }
}

.contact .banner-section .center-banner {
    min-height: 600px
}

.contact .banner-section .full-stretch {
    bottom: 28px
}

@media (min-width: 992px) {
    .banner-section {
        height: 100%
    }

    .no-min-height .banner-section {
        height: auto
    }
}

@media (min-width: 768px) {
    .news .banner-section {
        height: 75%
    }
}

@media (min-width: 768px) {
    .shiftech-center .banner-section {
        height: 75%
    }
}

.banner-section .news-banner, .banner-section .center-banner {
    position: relative;
    width: 100%;
    font-size: 10px;
    min-height: 350px
}

@media (min-width: 1200px) {
    .banner-section .news-banner.bg-cover, .banner-section .center-banner.bg-cover {
        background-attachment: fixed;
        background-position: center bottom
    }

    @supports (-webkit-appearance:none) {
        .banner-section .news-banner.bg-cover, .banner-section .center-banner.bg-cover {
            background-attachment: scroll
        }
    }
}

.banner-section .news-banner.center-lu iframe.full-stretch, .banner-section .news-banner.center-fr iframe.full-stretch, .banner-section .center-banner.center-lu iframe.full-stretch, .banner-section .center-banner.center-fr iframe.full-stretch {
    display: none
}

.banner-section .news-banner .slick-slider, .banner-section .center-banner .slick-slider {
    margin: 0
}

.banner-section .news-banner .slick-list, .banner-section .news-banner .slick-track, .banner-section .news-banner .slick-slide, .banner-section .center-banner .slick-list, .banner-section .center-banner .slick-track, .banner-section .center-banner .slick-slide {
    height: 100%
}

@media (min-width: 768px) {
    .banner-section .news-banner, .banner-section .center-banner {
        height: 100%;
        font-size: 10px
    }
}

@media (min-width: 992px) {
    .banner-section .news-banner, .banner-section .center-banner {
        font-size: 12px
    }
}

@media (min-width: 1200px) {
    .banner-section .news-banner, .banner-section .center-banner {
        font-size: 14px
    }
}

.banner-section .news-banner h1, .banner-section .center-banner h1 {
    letter-spacing: .05em;
    color: #fff;
    font-weight: 300;
    font-size: 4em;
    margin: 0
}

.banner-section .news-banner h1 img, .banner-section .center-banner h1 img {
    margin-top: -10px;
    margin-right: 20px
}

.banner-section .news-banner h1 small, .banner-section .center-banner h1 small {
    color: #fff;
    font-weight: 300;
    display: block;
    font-size: 70%;
    margin-top: .7em
}

.banner-section .news-banner h1 .meta-right, .banner-section .center-banner h1 .meta-right {
    display: block;
    margin-top: 20px;
    text-align: right
}

@media (min-width: 992px) {
    .banner-section .news-banner h1 .meta-right, .banner-section .center-banner h1 .meta-right {
        float: right;
        margin-top: -7px
    }
}

.banner-section .news-banner h1 .btn, .banner-section .center-banner h1 .btn {
    letter-spacing: 0
}

.banner-section .news-banner h1 .btn .icon-angle-left, .banner-section .news-banner h1 .btn .icon-angle-down, .banner-section .center-banner h1 .btn .icon-angle-left, .banner-section .center-banner h1 .btn .icon-angle-down {
    font-size: 120%
}

.banner-section .news-banner .center-banner-link, .banner-section .center-banner .center-banner-link {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC45NSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.95)));
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.95) 100%);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.95) 100%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.95) 100%);
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 0
}

.banner-section .news-banner .news-banner-link, .banner-section .center-banner .news-banner-link {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjAiLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC45NSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0.95)));
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.95) 100%);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.95) 100%);
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.95) 100%);
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 90px 0 30px
}

.banner-section .news-banner .news-banner-link h1, .banner-section .center-banner .news-banner-link h1 {
    font-size: 3em
}

.banner-section .news-banner .news-banner-link .at4-icon, .banner-section .center-banner .news-banner-link .at4-icon {
    display: block
}

.banner-section .news-banner .map-search, .banner-section .center-banner .map-search {
    position: absolute;
    top: 0;
    left: 100px;
    right: 100px;
    padding: 30px 0
}

.banner-section .news-banner .map-search .form-group, .banner-section .center-banner .map-search .form-group {
    position: absolute;
    top: 45px;
    max-width: 360px;
    background-color: #fff;
    padding: 15px;
    margin: 0;
    -moz-box-shadow: 2.1px 2.1px 4px rgba(0, 0, 0, .2);
    -webkit-box-shadow: 2.1px 2.1px 4px rgba(0, 0, 0, .2);
    box-shadow: 2.1px 2.1px 4px rgba(0, 0, 0, .2);
    border-radius: 4px
}

.banner-section .news-banner .map-search .form-group label, .banner-section .center-banner .map-search .form-group label {
    color: #666;
    font-weight: 400;
    line-height: 1.2;
    font-size: 14px;
    margin-bottom: 15px
}

.banner-section .news-banner .map-search .form-group label strong, .banner-section .center-banner .map-search .form-group label strong {
    font-weight: 600
}

.pac-container {
    border-top: 0;
    font-family: myriad-pro, sans-serif;
    font-weight: 400
}

.pac-container::after {
    background-image: none;
    height: 0
}

.pac-container .pac-matched {
    font-weight: 400
}

.pac-container .pac-item-selected {
    background-color: #eee
}

.contact .banner-section .center-banner-link {
    background-image: none;
    background-color: #333;
    padding: 0
}

.contact .banner-section .center-banner-link .switch-centers {
    border: none;
    padding-right: 0
}

.contact-form form {
    border-top: 1px solid #4c4c4c
}

.contact-form .container {
    min-height: 300px
}

.center-more-section {
    padding: 80px 0
}

.center-more-section p {
    font-size: 16px;
    margin-bottom: 15px
}

.center-more-section p span {
    display: block
}

@media (min-width: 1200px) {
    .center-more-section p span {
        display: inline
    }
}

.center-more-section img.landing-logo {
    width: 35px;
    height: auto;
    margin: 20px;
    transition: all ease-in-out .3s;
    display: inline-block;
    cursor: pointer
}

.center-more-section .center-address {
    font-size: 18px;
    margin-top: 30px
}

.center-more-section .center-address p {
    font-size: 16px;
    margin-bottom: 15px
}

.center-more-section .center-address p span {
    display: block
}

@media (min-width: 1200px) {
    .center-more-section .center-address p span {
        display: inline
    }
}

.center-more-section .center-address address {
    margin-top: 0;
    font-size: 18px
}

.center-more-section .center-address .center-buttons {
    margin: 0 -7.5px
}

.center-more-section .center-address .center-buttons > div {
    padding: 0 7.5px
}

.center-more-section .center-address .btn {
    margin: 5px 0 15px;
    text-align: left;
    font-size: 14px
}

.center-more-section .center-address .contact-form {
    background: 0 0;
    max-height: none;
    overflow: hidden
}

.center-more-section .center-address .contact-form form {
    border-top: 0 transparent
}

.center-more-section .center-address .contact-form a.btn-primary, .center-more-section .center-address .contact-form button.btn-primary {
    background: #1372b8
}

.center-more-section .center-address .contact-form a.btn-primary:hover, .center-more-section .center-address .contact-form button.btn-primary:hover {
    background: #1372b8
}

.center-more-section .center-address .contact-form .form-control, .center-more-section .center-address .contact-form textarea {
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    background-color: #eee;
    border-color: #eee;
    color: #333
}

.center-more-section .center-address .contact-form h3 {
    color: #333
}

.center-more-section .center-address .contact-form p.opening-hours {
    color: #333
}

.center-more-section .center-address .contact-form span.text {
    display: none
}

.center-more-section .center-team {
    text-align: left;
    font-size: 0
}

.center-more-section .center-team > div {
    font-size: 14px;
    float: none;
    display: inline-block
}

.center-more-section .center-team .ceo + .ceo {
    margin-right: 5px
}

.center-more-section .center-team-member {
    margin: 30px 0;
    position: relative;
    display: inline-block
}

.center-more-section .center-team-member img {
    width: 105px
}

.center-more-section .center-team-member h3 {
    font-weight: 200;
    margin-bottom: 5px
}

.center-more-section .center-team-member-meta {
    display: block;
    margin-left: 130px;
    text-align: left
}

.center-more-section .center-team-member-position {
    font-weight: 200;
    display: block;
    margin-bottom: 5px
}

.center-more-section .center-feature {
    position: relative;
    display: inline-block;
    cursor: default;
    border-radius: 5px;
    padding: 4px 0;
    border: 1px solid #eee;
    margin: 30px 0;
    -moz-box-shadow: 1px 1px 1px rgba(0, 0, 0, .17);
    -webkit-box-shadow: 1px 1px 1px rgba(0, 0, 0, .17);
    box-shadow: 1px 1px 1px rgba(0, 0, 0, .17);
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzliOWI5YiIgc3RvcC1vcGFjaXR5PSIwLjAyIi8+PHN0b3Agb2Zmc2V0PSIzJSIgc3RvcC1jb2xvcj0iI2M5YzljOSIgc3RvcC1vcGFjaXR5PSIwLjAyIi8+PHN0b3Agb2Zmc2V0PSIxMiUiIHN0b3AtY29sb3I9IiNlZWVlZWUiIHN0b3Atb3BhY2l0eT0iMC4wMiIvPjxzdG9wIG9mZnNldD0iNTYlIiBzdG9wLWNvbG9yPSIjZmFmYWZhIiBzdG9wLW9wYWNpdHk9IjAuMDIiLz48c3RvcCBvZmZzZXQ9Ijc0JSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjAyIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjZmZmZmZmIiBzdG9wLW9wYWNpdHk9IjAuMDIiLz48L2xpbmVhckdyYWRpZW50PjwvZGVmcz48cmVjdCB4PSIwIiB5PSIwIiB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyYWQpIiAvPjwvc3ZnPiA=);
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, rgba(155, 155, 155, 0.02)), color-stop(3%, rgba(201, 201, 201, 0.02)), color-stop(12%, rgba(238, 238, 238, 0.02)), color-stop(56%, rgba(250, 250, 250, 0.02)), color-stop(74%, rgba(255, 255, 255, 0.02)), color-stop(100%, rgba(255, 255, 255, 0.02)));
    background-image: -moz-linear-gradient(bottom, rgba(155, 155, 155, 0.02) 0%, rgba(201, 201, 201, 0.02) 3%, rgba(238, 238, 238, 0.02) 12%, rgba(250, 250, 250, 0.02) 56%, rgba(255, 255, 255, 0.02) 74%, rgba(255, 255, 255, 0.02) 100%);
    background-image: -webkit-linear-gradient(bottom, rgba(155, 155, 155, 0.02) 0%, rgba(201, 201, 201, 0.02) 3%, rgba(238, 238, 238, 0.02) 12%, rgba(250, 250, 250, 0.02) 56%, rgba(255, 255, 255, 0.02) 74%, rgba(255, 255, 255, 0.02) 100%);
    background-image: linear-gradient(to top, rgba(155, 155, 155, 0.02) 0%, rgba(201, 201, 201, 0.02) 3%, rgba(238, 238, 238, 0.02) 12%, rgba(250, 250, 250, 0.02) 56%, rgba(255, 255, 255, 0.02) 74%, rgba(255, 255, 255, 0.02) 100%)
}

.center-more-section .center-feature span.illu {
    display: block;
    width: 128px;
    height: 120px;
    padding-top: 28px
}

.center-more-section .center-feature span.illu > span {
    color: #666;
    display: block;
    padding: 7px 15px;
    font-size: 30px;
    font-weight: 600;
    font-style: italic;
    letter-spacing: 1px
}

.center-more-section .center-feature img {
    width: 128px
}

.center-more-section .badge {
    position: absolute;
    left: 50%;
    bottom: -18px;
    margin-left: -18px;
    background-color: #ff3020;
    font-size: 24px;
    height: 36px;
    width: 36px;
    text-align: center;
    line-height: 28px;
    font-weight: 600;
    border-radius: 100%
}

.center-more-section h3 {
    font-size: 18px;
    font-weight: 400
}

@media (min-width: 768px) {
    .center-more-section {
        padding: 100px 0
    }
}

.center-more-section h2 {
    margin: 40px 0 20px
}

.center-more-section .media-pictures {
    padding: 0 15px !important
}

.news article time {
    line-height: 30px;
    color: #999;
    font-size: 18px
}

.news-section {
    padding: 15px 0 45px
}

.news-section h2 {
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    font-size: 24px;
    padding-bottom: 15px
}

.news-section h2::before {
    margin-top: -17px
}

.news-section h2.chevron-left {
    clear: both
}

.news-section p, .news-section li {
    font-size: 16px
}

.news-section p + h2.chevron-left, .news-section ul + h2.chevron-left, .news-section ol + h2.chevron-left {
    margin-top: 50px
}

.news-section .embed-responsive {
    margin: 30px 0
}

.news-section .inner-text img {
    max-width: 100%
}

.news-section .inner-text ul {
    padding-left: 0
}

.news-section .inner-text ul li {
    list-style: none
}

.news-section .inner-text ul li::before {
    color: #ff3020;
    content: "\2022";
    font-size: 1.7em;
    padding-right: .35em;
    position: relative;
    top: .05em
}

.news-section .media-pictures {
    padding: 0 !important
}

.news-section .media-gallery {
    text-align: left
}

.grid {
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px
}

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

.gutter-sizer {
    width: 0%
}

.grid-sizer, .grid-item {
    width: 100%
}

.grid-item {
    float: left;
    min-height: 200px;
    margin-bottom: 30px;
    overflow: hidden;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -moz-box-shadow: 1px 1px 2px rgba(0, 1, 1, .17);
    -webkit-box-shadow: 1px 1px 2px rgba(0, 1, 1, .17);
    box-shadow: 1px 1px 2px rgba(0, 1, 1, .17)
}

.grid-item:hover {
    -moz-box-shadow: 1.4px 1.4px 4px rgba(0, 1, 1, .17);
    -webkit-box-shadow: 1.4px 1.4px 4px rgba(0, 1, 1, .17);
    box-shadow: 1.4px 1.4px 4px rgba(0, 1, 1, .17)
}

.grid-item:hover img {
    -webkit-filter: saturate(.3);
    filter: saturate(.3)
}

.grid-item:hover h2 {
    color: #ff3020
}

.grid-item a {
    display: block
}

.grid-item h2 {
    margin-top: 0;
    margin-bottom: 15px;
    padding: 0 15px;
    font-size: 20px;
    font-weight: 100
}

.grid-item time {
    color: #999;
    font-weight: 600;
    padding: 10px 15px;
    display: block;
    font-size: 12px
}

.grid-item h3 {
    font-size: 14px;
    font-weight: 400;
    padding: 0 15px 15px;
    margin-top: 0;
    margin-bottom: 0
}

.grid-item .buttons {
    margin-top: 20px
}

.grid-item img {
    width: 100%;
    height: auto;
    margin-bottom: 5px
}

@media (min-width: 768px) {
    .gutter-sizer {
        width: 3%
    }

    .grid-sizer, .grid-item {
        width: 48.5%
    }

    .grid-item {
        margin-bottom: 3%
    }
}

@media (min-width: 992px) {
    .gutter-sizer {
        width: 2%
    }

    .grid-sizer, .grid-item {
        width: 32%
    }

    .grid-item {
        margin-bottom: 2%
    }
}

@media (min-width: 1200px) {
    .gutter-sizer {
        width: 2%
    }

    .grid-sizer, .grid-item {
        width: 23.5%
    }

    .grid-item {
        margin-bottom: 2%
    }
}

.footer {
    clear: both;
    min-height: 70px;
    background: url(/img/bg-footer.png) center top no-repeat;
    -moz-background-size: 100% 9px;
    -o-background-size: 100% 9px;
    -webkit-background-size: 100% 9px;
    background-size: 100% 9px
}

@media (max-width: 480px) {
    .footer h3 {
        text-align: center
    }
}

.footer .copyright {
    margin-top: 20px;
    font-size: 12px;
    color: #666
}

.footer .copyright a {
    color: #666;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-transform: capitalize
}

.footer .copyright a:hover {
    color: #999
}

@media (max-width: 480px) {
    .footer .copyright {
        text-align: center
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    .cms-page .footer {
        padding-bottom: 80px
    }

    .cms-page.page-seo .footer {
        padding-bottom: 0
    }

    .reprog-config .footer {
        padding-bottom: 200px
    }
}

.select-lang {
    margin-top: -2px;
    margin-left: 10px
}

.select-lang .btn {
    border-radius: 1px;
    line-height: 11px;
    font-size: 12px;
    font-weight: 600;
    vertical-align: bottom;
    padding: 5px
}

.select-lang .btn.btn-default {
    -moz-box-shadow: 1px 1px 2px rgba(0, 1, 1, .17);
    -webkit-box-shadow: 1px 1px 2px rgba(0, 1, 1, .17);
    box-shadow: 1px 1px 2px rgba(0, 1, 1, .17)
}

.select-lang .btn.btn-default:hover {
    border-color: #fff;
    background-color: #fafafa;
    -moz-box-shadow: 1px 1px 2px rgba(0, 1, 1, .17);
    -webkit-box-shadow: 1px 1px 2px rgba(0, 1, 1, .17);
    box-shadow: 1px 1px 2px rgba(0, 1, 1, .17)
}

.select-lang .btn.btn-default:focus {
    background-color: #fff;
    -moz-box-shadow: 1px 1px 2px rgba(0, 1, 1, .17);
    -webkit-box-shadow: 1px 1px 2px rgba(0, 1, 1, .17);
    box-shadow: 1px 1px 2px rgba(0, 1, 1, .17)
}

.select-lang .dropdown-menu {
    min-width: 60px;
    border-radius: 1px;
    border: 0;
    padding: 0;
    right: 0;
    left: auto
}

.select-lang .dropdown-menu > li > a {
    padding: 5px 9px;
    text-align: right;
    background-color: #fafafa
}

.select-lang .dropdown-menu > li > a:hover {
    background-color: #eee
}

.select-lang .dropdown-menu > li > a span {
    margin-right: 0
}

.select-lang img {
    vertical-align: middle;
    margin: -2px 5px 0 0
}

.select-lang span {
    vertical-align: middle;
    margin: -2px 3px 0 0;
    display: inline-block
}

.select-lang i {
    vertical-align: bottom;
    line-height: 13px;
    color: #999;
    padding: 0 9px 0 5px;
    margin-right: 7px;
    border-right: 1px solid rgba(0, 0, 0, .1)
}

.search .search-filters h2 {
    font-size: 14px;
    font-weight: 400;
    margin-bottom: 20px
}

.search .search-filters form {
    padding-left: 25px;
    margin-bottom: 30px
}

.search .search-filters form h2 {
    margin-left: -25px
}

.search .search-filters .btn {
    text-align: left;
    width: 138px;
    margin-bottom: 5px;
    font-size: 14px;
    position: relative;
    padding-left: 40px;
    color: #666
}

@media (min-width: 768px) {
    .search .search-filters .btn {
        display: block;
        width: 160px
    }
}

.search .search-filters .btn::before {
    font-family: FontAwesome;
    content: "";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1);
    color: #ccc;
    position: absolute;
    left: 10px;
    top: 50%;
    margin-top: -9px;
    line-height: 20px;
    z-index: 102;
    font-size: 14px
}

.search .search-filters .btn.active::before {
    content: "";
    filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0);
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    transform: scale(1, 1);
    color: #ff3020
}

.modal-search {
    display: none;
    z-index: 1040;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(40, 40, 40, .9)
}

@supports (-webkit-backdrop-filter:blur(1px)) or (backdrop-filter:blur(1px)) {
    .modal-search {
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        background-color: rgba(40, 40, 40, .8)
    }
}

.modal-search .inner {
    text-align: center;
    margin-top: 80px;
    padding: 0 15px
}

@media (min-width: 768px) {
    .modal-search .inner {
        padding: 0;
        width: 480px;
        height: 480px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin: -240px 0 0 -240px
    }
}

.modal-search h2 {
    margin: 0;
    color: #fff;
    font-size: 36px
}

@media (min-width: 768px) {
    .modal-search h2 {
        font-size: 48px
    }
}

.modal-search .modal-close {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: 20px 25px;
    height: 76px;
    width: 86px
}

.twitter-typeahead {
    margin-top: 30px;
    width: 100%;
    max-width: 465px;
    text-align: left;
    -moz-box-shadow: 6px 6px 18px rgba(0, 0, 0, .45), inset .7px .7px 16px rgba(0, 0, 0, .05);
    -webkit-box-shadow: 6px 6px 18px rgba(0, 0, 0, .45), inset .7px .7px 16px rgba(0, 0, 0, .05);
    box-shadow: 6px 6px 18px rgba(0, 0, 0, .45), inset .7px .7px 16px rgba(0, 0, 0, .05)
}

.twitter-typeahead::before {
    font-family: FontAwesome;
    content: "";
    color: #ff3020;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    position: absolute;
    left: 15px;
    top: 15px;
    line-height: 20px;
    z-index: 102;
    font-size: 22px
}

.typeahead, .tt-query, .tt-hint {
    width: 100%;
    max-width: 465px;
    height: 50px;
    padding: 10px 15px 10px 50px;
    font-size: 18px;
    line-height: 30px;
    border-radius: 4px;
    outline: none;
    border: 0
}

.typeahead {
    background-color: #fff;
    z-index: 101
}

.tt-query {
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.tt-hint {
    color: #999
}

.tt-menu {
    -moz-box-shadow: 6px 6px 18px rgba(0, 0, 0, .45), inset .7px .7px 16px rgba(0, 0, 0, .05);
    -webkit-box-shadow: 6px 6px 18px rgba(0, 0, 0, .45), inset .7px .7px 16px rgba(0, 0, 0, .05);
    box-shadow: 6px 6px 18px rgba(0, 0, 0, .45), inset .7px .7px 16px rgba(0, 0, 0, .05);
    width: 100%;
    margin-top: -2px;
    padding: 0;
    background-color: #fff;
    border-radius: 0 0 4px 4px
}

.tt-menu.inside {
    min-height: 502px;
    padding-bottom: 45px;
    border-radius: 0;
    margin-top: -1px;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

@media (min-width: 768px) {
    .tt-menu.inside {
        border-left: 1px solid #eee
    }
}

.tt-menu.inside .tt-dataset {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none;
    border-top: 1px solid #eee
}

.tt-menu.inside .tt-dataset .tt-title {
    padding: 12px 10px 8px;
    margin: 0 0 5px;
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIgc3RvcC1vcGFjaXR5PSIwLjE1Ii8+PHN0b3Agb2Zmc2V0PSIyNiUiIHN0b3AtY29sb3I9IiNmZmZmZmYiIHN0b3Atb3BhY2l0eT0iMC4xNSIvPjxzdG9wIG9mZnNldD0iNDQlIiBzdG9wLWNvbG9yPSIjZmFmYWZhIiBzdG9wLW9wYWNpdHk9IjAuMTUiLz48c3RvcCBvZmZzZXQ9Ijg4JSIgc3RvcC1jb2xvcj0iI2VlZWVlZSIgc3RvcC1vcGFjaXR5PSIwLjE1Ii8+PHN0b3Agb2Zmc2V0PSI5NyUiIHN0b3AtY29sb3I9IiNjOWM5YzkiIHN0b3Atb3BhY2l0eT0iMC4xNSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzliOWI5YiIgc3RvcC1vcGFjaXR5PSIwLjE1Ii8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g);
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, rgba(255, 255, 255, 0.15)), color-stop(26%, rgba(255, 255, 255, 0.15)), color-stop(44%, rgba(250, 250, 250, 0.15)), color-stop(88%, rgba(238, 238, 238, 0.15)), color-stop(97%, rgba(201, 201, 201, 0.15)), color-stop(100%, rgba(155, 155, 155, 0.15)));
    background-image: -moz-linear-gradient(bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.15) 26%, rgba(250, 250, 250, 0.15) 44%, rgba(238, 238, 238, 0.15) 88%, rgba(201, 201, 201, 0.15) 97%, rgba(155, 155, 155, 0.15) 100%);
    background-image: -webkit-linear-gradient(bottom, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.15) 26%, rgba(250, 250, 250, 0.15) 44%, rgba(238, 238, 238, 0.15) 88%, rgba(201, 201, 201, 0.15) 97%, rgba(155, 155, 155, 0.15) 100%);
    background-image: linear-gradient(to top, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.15) 26%, rgba(250, 250, 250, 0.15) 44%, rgba(238, 238, 238, 0.15) 88%, rgba(201, 201, 201, 0.15) 97%, rgba(155, 155, 155, 0.15) 100%)
}

.tt-menu.inside .tt-dataset + .tt-dataset {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

.tt-menu.inside .tt-suggestion {
    padding: 0 10px
}

.tt-menu .tt-dataset {
    -moz-box-shadow: 0 3px 3px rgba(0, 0, 0, .05) inset;
    -webkit-box-shadow: 0 3px 3px rgba(0, 0, 0, .05) inset;
    box-shadow: 0 3px 3px rgba(0, 0, 0, .05) inset;
    margin-bottom: 5px
}

.tt-menu .tt-dataset + .tt-dataset {
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, .05) inset;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .05) inset;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .05) inset
}

.tt-menu .tt-title {
    padding: 12px 0 5px;
    margin: 0 15px 5px;
    font-size: 12px;
    color: gray;
    font-weight: 400;
    border-bottom: 1px solid #eee
}

.tt-suggestion {
    display: block;
    padding: 0 15px;
    font-size: 18px;
    height: 64px;
    line-height: 50px;
    margin: 0
}

.tt-suggestion:first-of-type p {
    border-top: 0;
    margin: 0
}

.tt-suggestion:hover, .tt-suggestion.tt-cursor {
    background-color: #eee
}

.tt-suggestion p {
    margin: -1px 0 0;
    padding: 6px 0 8px;
    border-top: 1px solid #eee
}

.tt-suggestion .tt-img {
    height: 50px;
    line-height: 50px;
    display: inline-block;
    -moz-box-shadow: 1px 1px 1px rgba(0, 1, 1, .17);
    -webkit-box-shadow: 1px 1px 1px rgba(0, 1, 1, .17);
    box-shadow: 1px 1px 1px rgba(0, 1, 1, .17);
    border-radius: 4px;
    padding: 5px;
    background-color: #fff;
    vertical-align: middle;
    margin: 0 15px 0 0
}

.tt-suggestion .tt-img img {
    vertical-align: baseline;
    max-height: 40px;
    max-width: 80px
}

.tt-suggestion .tt-count {
    float: right;
    font-size: 12px;
    line-height: 50px
}

.tt-highlight {
    color: #ff3020;
    font-weight: 400
}

.tt-more a {
    display: block;
    margin: 5px 15px 0;
    font-size: 14px;
    font-weight: 600;
    border-top: 1px solid #eee;
    padding: 10px 0;
    line-height: 20px
}

.tt-more a:hover {
    color: gray
}

.tt-more i {
    color: gray;
    margin-left: 10px;
    font-size: 18px
}

.empty-message {
    padding: 0 15px
}

.empty-message p {
    color: #999;
    font-size: 14px
}

.reprog-header {
    min-height: 120px;
    overflow: hidden;
    *zoom: 1
}

.reprog-header p {
    font-size: 14px;
    line-height: 1.4;
    margin: 20px 0
}

.reprog-header .reprog-breadcrumb {
    padding: 30px 15px 15px;
    margin-bottom: 0;
    list-style-type: none
}

.reprog-header .reprog-breadcrumb li {
    text-align: center;
    line-height: 3em;
    border-top: 1px solid #e0e0e0;
    font-size: 12px;
    margin-top: 30px;
    padding: 0 5% 0 0;
    min-height: 60px
}

.reprog-header .reprog-breadcrumb li a.no-link {
    cursor: default
}

.reprog-header .reprog-breadcrumb li a:hover {
    color: #4c4c4c
}

.reprog-header .reprog-breadcrumb li::after {
    content: "\00a0\00a0"
}

.reprog-header .reprog-breadcrumb li::before {
    font-size: 10px;
    position: relative;
    top: -1em;
    float: left;
    left: 50%;
    line-height: 1em;
    margin-left: -1em;
    font-family: FontAwesome;
    content: "";
    color: #4c4c4c;
    background-color: #4c4c4c;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    height: 2em;
    width: 2em;
    line-height: 1em;
    border: .5em solid #fff;
    border-radius: 1em
}

.reprog-header .reprog-breadcrumb li:first-child {
    text-align: left;
    padding: 0
}

.reprog-header .reprog-breadcrumb li:first-child img {
    width: 90px;
    margin-top: -40px;
    background-color: #fff;
    padding-right: 20px
}

.reprog-header .reprog-breadcrumb li:first-child::after, .reprog-header .reprog-breadcrumb li:first-child::before {
    display: none
}

.reprog-header .reprog-breadcrumb li:first-child span {
    display: block;
    width: 70px;
    line-height: 1;
    padding-top: 5px;
    text-align: center;
    margin-bottom: -15px
}

.reprog-header .reprog-breadcrumb li:last-child::before {
    font-size: 18px;
    background-color: #fff;
    border: 0;
    width: 1em;
    height: 1em;
    top: -.5em;
    margin-left: -.5em;
    line-height: 14px
}

.reprog-header .reprog-breadcrumb li:last-child.active::before {
    content: "";
    background-color: #fff;
    color: #ff3020
}

.reprog-header .reprog-breadcrumb li.active a {
    color: #ff3020
}

.reprog-header .reprog-breadcrumb li.active a:hover {
    color: #ff3020
}

.reprog-header .reprog-breadcrumb li.active::before {
    color: #ff3020;
    background-color: #ff3020
}

@media (min-width: 768px) {
    .reprog-2 .reprog-header .reprog-breadcrumb li:first-child img {
        background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZlZmVmZSIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iI2ZmZmZmZiIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
        background-size: 100%;
        background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #fefefe), color-stop(100%, #ffffff));
        background-image: -moz-linear-gradient(bottom, #fefefe 0%, #ffffff 100%);
        background-image: -webkit-linear-gradient(bottom, #fefefe 0%, #ffffff 100%);
        background-image: linear-gradient(to top, #fefefe 0%, #ffffff 100%);
        -moz-box-shadow: 25px 20px 10px 0 #fff inset;
        -webkit-box-shadow: 25px 20px 10px 0 #fff inset;
        box-shadow: 25px 20px 10px 0 #fff inset
    }
}

.brands-grid {
    margin: 10px -15px
}

.brands-grid li {
    text-align: center;
    padding: 0
}

.brands-grid li a {
    display: block;
    padding: 15px;
    border-radius: 5px
}

.brands-grid li a:hover {
    background-color: #fafafa;
    color: #ff3020
}

.brands-grid li img {
    width: 50px
}

.brands-grid li .brand-name {
    font-size: 12px;
    height: 32px;
    display: block;
    padding: 10px 0 0;
    margin: 0 -5px
}

.models-grid {
    margin: 10px -15px
}

.models-grid li {
    text-align: center;
    padding: 0
}

.models-grid li a {
    display: block;
    padding: 15px;
    border-radius: 5px
}

.models-grid li a:hover {
    background-color: #fafafa;
    color: #ff3020
}

.models-grid li .model-name {
    height: 44px;
    display: block;
    padding: 15px 0
}

.models-grid li img {
    max-width: 100%
}

@media (min-width: 992px) {
    .models-grid li img {
        width: 200px
    }
}

.buttons-grid {
    text-align: center;
    margin: 10px -10px;
    font-size: 0
}

.buttons-grid li {
    display: inline-block;
    float: none;
    font-size: 14px;
    text-align: center;
    padding: 10px
}

.buttons-grid li a {
    position: relative;
    display: block;
    overflow: hidden;
    padding: 15px;
    border-radius: 5px;
    -moz-box-shadow: 1px 1px 2px rgba(0, 1, 1, .17);
    -webkit-box-shadow: 1px 1px 2px rgba(0, 1, 1, .17);
    box-shadow: 1px 1px 2px rgba(0, 1, 1, .17)
}

.buttons-grid li a:hover {
    -moz-box-shadow: 1.4px 1.4px 4px rgba(0, 1, 1, .17);
    -webkit-box-shadow: 1.4px 1.4px 4px rgba(0, 1, 1, .17);
    box-shadow: 1.4px 1.4px 4px rgba(0, 1, 1, .17);
    background-color: #ff3020;
    color: #fff
}

.buttons-grid li a:hover .corner-ad {
    -moz-transition: all .1s ease-in-out;
    -o-transition: all .1s ease-in-out;
    -webkit-transition: all .1s ease-in-out;
    transition: all .1s ease-in-out;
    background-color: #fff;
    color: #ff3020
}

.buttons-grid li a:hover .corner-ad.blue {
    color: #1372b8
}

.buttons-grid li .corner-ad {
    -moz-transition: all .15s ease-in-out;
    -o-transition: all .15s ease-in-out;
    -webkit-transition: all .15s ease-in-out;
    transition: all .15s ease-in-out;
    right: -42px;
    top: 6px;
    line-height: 10px;
    height: 24px
}

.buttons-grid li .item-name {
    height: 66px;
    font-size: 14px;
    line-height: 14px;
    display: block;
    padding: 25px 0
}

.buttons-grid li img {
    max-width: 100%
}

@media (min-width: 992px) {
    .buttons-grid li img {
        width: 200px
    }
}

.page-error {
    position: relative;
    width: 100%;
    font-size: 10px;
    padding-bottom: 60px
}

.page-error h1 {
    margin: 30px 0 0;
    font-size: 16em;
    font-weight: 200
}

.page-error h2 {
    font-size: 4em;
    line-height: 1.4;
    margin: 0;
    font-weight: 200;
    color: #ff3020
}

.page-error p {
    font-weight: 200;
    margin-bottom: 30px;
    font-size: 18px
}

.page-error h3 {
    font-size: 2em;
    line-height: 1.4;
    font-weight: 200;
    color: #999
}

.page-error .btn {
    margin: 0 7.5px
}

.modal .modal-header {
    border-bottom: 0;
    padding: 7.5px 15px
}

.modal .modal-header .close {
    margin-top: 1px
}

.modal .modal-body {
    -moz-box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, .1);
    -webkit-box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, .1);
    box-shadow: inset 0 0 5px 0 rgba(0, 0, 0, .1);
    padding: 15px
}

.modal .modal-footer {
    border-top: 0;
    padding: 7.5px 15px
}

.modal.transparent {
    background-color: transparent;
    border: 0;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

.modal.transparent .modal-header .close {
    color: #fff;
    text-shadow: none;
    opacity: 1;
    font-size: 24px
}

.modal.transparent .modal-header .close:hover {
    opacity: .5
}

.modal.transparent .modal-body {
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
    box-shadow: none
}

.modal.transparent .modal-title {
    color: #fff
}

.modal .btn {
    min-width: 90px;
    font-size: 18px;
    font-weight: 600
}

.modal .checkbox, .modal .radio {
    font-size: 16px;
    margin-bottom: 20px
}

.modal .checkbox input[type=radio], .modal .checkbox input[type=checkbox], .modal .radio input[type=radio], .modal .radio input[type=checkbox] {
    margin-top: 1px;
    cursor: pointer
}

.modal .checkbox:last-of-type, .modal .radio:last-of-type {
    margin-bottom: 5px
}

.modal .input-phone {
    position: relative
}

.modal .input-phone::before {
    font-family: FontAwesome;
    content: "";
    color: #ff3020;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    position: absolute;
    left: 15px;
    top: 15px;
    line-height: 20px;
    z-index: 102;
    font-size: 22px
}

.modal .input-phone .form-control {
    height: 50px;
    padding: 10px 15px 10px 50px
}

.modal .input-phone .form-control + .error {
    font-size: 12px;
    font-weight: 400;
    position: relative;
    display: block;
    height: 50px;
    padding: 6px 12px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    color: #ff3020;
    background-color: rgba(255, 255, 255, .5);
    margin-top: -50px;
    line-height: 20px;
    text-align: right;
    cursor: text
}

.modal-backdrop {
    bottom: 0;
    z-index: 1020;
    position: fixed;
    opacity: 0;
    background-color: rgba(40, 40, 40, .9)
}

@supports (-webkit-backdrop-filter:blur(1px)) or (backdrop-filter:blur(1px)) {
    .modal-backdrop {
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        background-color: rgba(40, 40, 40, .8)
    }
}

.modal-backdrop.welcome-backdrop {
    -moz-transition: opacity 1s ease-in-out;
    -o-transition: opacity 1s ease-in-out;
    -webkit-transition: opacity 1s ease-in-out;
    transition: opacity 1s ease-in-out;
    z-index: 1050;
    background: #fff
}

.modal-backdrop.welcome-backdrop.fade.in {
    visibility: visible !important;
    opacity: .7
}

.modal-backdrop.fade.in {
    background-color: rgba(40, 40, 40, .9);
    opacity: 1
}

@supports (-webkit-backdrop-filter:blur(1px)) or (backdrop-filter:blur(1px)) {
    .modal-backdrop.fade.in {
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        background-color: rgba(40, 40, 40, .8)
    }
}

.spinner {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    opacity: 0
}

.spinner .inner {
    position: absolute;
    top: 50%;
    left: 50%;
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%)
}

.input-loader {
    background: url(/img/spinner.svg) no-repeat center;
    background-size: 45px 45px
}

.welcome .spinner.in {
    -moz-transition: all 1s ease-in-out;
    -o-transition: all 1s ease-in-out;
    -webkit-transition: all 1s ease-in-out;
    transition: all 1s ease-in-out;
    opacity: 1;
    bottom: 0
}

.loading {
    position: relative
}

.loading .loader {
    margin-top: -1px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    right: 15px;
    border-top: 1px solid #eee
}

.loading .loader .inner {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .1), 2px 1px 0 #ff3020;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -15px;
    -moz-animation: spin .7s linear infinite;
    -webkit-animation: spin .7s linear infinite;
    animation: spin .7s linear infinite
}

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

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

@keyframes spin {
    100% {
        -moz-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.print-only, .car-print {
    display: none
}

#fliptech {
    -webkit-animation-name: fliptech;
    -webkit-animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 2s;
    animation-name: fliptech;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-duration: 2s;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d
}

@-webkit-keyframes fliptech {
    from {
        -webkit-transform: rotateY(0deg)
    }
    to {
        -webkit-transform: rotateY(-360deg)
    }
}

@keyframes fliptech {
    from {
        -moz-transform: rotateY(0deg);
        -ms-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }
    to {
        -moz-transform: rotateY(-360deg);
        -ms-transform: rotateY(-360deg);
        transform: rotateY(-360deg)
    }
}

@-webkit-keyframes floating {
    0% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px)
    }
    50% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px)
    }
}

@-moz-keyframes floating {
    0% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px)
    }
    50% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px)
    }
}

@-o-keyframes floating {
    0% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px)
    }
    50% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px)
    }
}

@keyframes floating {
    0% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px)
    }
    50% {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0)
    }
    100% {
        -webkit-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
        transform: translateY(-10px)
    }
}
@media (max-width: 380px) {
	.table > thead > tr > th, .table > thead > tr > td, .table > tbody > tr > th, .table > tbody > tr > td, .table > tfoot > tr > th, .table > tfoot > tr > td {
  	padding: 3px;
  }
}
.price .highlight {
    font-size: 20px;
}
@media (max-width: 420px) {
  .body-box-sub .sub-menu {
  	display: none;
  }
  .buttons-grid li {width:50%;}
}
@media (max-width: 480px) {
    @-webkit-viewport {
        width: 480px;
    }@-moz-viewport {
    width: 480px;
}@-ms-viewport {
    width: 480px;
}@-o-viewport {
    width: 480px;
}@viewport {
    width: 480px;
}
}
