@-webkit-keyframes flash {
    0%,100%,50% {
        opacity: 1;
        filter: alpha(opacity=100)
    }

    25%,75% {
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@-moz-keyframes flash {
    0%,100%,50% {
        opacity: 1;
        filter: alpha(opacity=100)
    }

    25%,75% {
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@-o-keyframes flash {
    0%,100%,50% {
        opacity: 1;
        filter: alpha(opacity=100)
    }

    25%,75% {
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@keyframes flash {
    0%,100%,50% {
        opacity: 1;
        filter: alpha(opacity=100)
    }

    25%,75% {
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

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

@-webkit-keyframes shake {
    0%,100% {
        -webkit-transform: translateX(0)
    }

    10%,30%,50%,70%,90% {
        -webkit-transform: translateX(-10px)
    }

    20%,40%,60%,80% {
        -webkit-transform: translateX(10px)
    }
}

@-moz-keyframes shake {
    0%,100% {
        -moz-transform: translateX(0)
    }

    10%,30%,50%,70%,90% {
        -moz-transform: translateX(-10px)
    }

    20%,40%,60%,80% {
        -moz-transform: translateX(10px)
    }
}

@-o-keyframes shake {
    0%,100% {
        -o-transform: translateX(0)
    }

    10%,30%,50%,70%,90% {
        -o-transform: translateX(-10px)
    }

    20%,40%,60%,80% {
        -o-transform: translateX(10px)
    }
}

@keyframes shake {
    0%,100% {
        transform: translateX(0)
    }

    10%,30%,50%,70%,90% {
        transform: translateX(-10px)
    }

    20%,40%,60%,80% {
        transform: translateX(10px)
    }
}

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

@-webkit-keyframes bounce {
    0%,100%,20%,50%,80% {
        -webkit-transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-30px)
    }

    60% {
        -webkit-transform: translateY(-15px)
    }
}

@-moz-keyframes bounce {
    0%,100%,20%,50%,80% {
        -moz-transform: translateY(0)
    }

    40% {
        -moz-transform: translateY(-30px)
    }

    60% {
        -moz-transform: translateY(-15px)
    }
}

@-o-keyframes bounce {
    0%,100%,20%,50%,80% {
        -o-transform: translateY(0)
    }

    40% {
        -o-transform: translateY(-30px)
    }

    60% {
        -o-transform: translateY(-15px)
    }
}

@keyframes bounce {
    0%,100%,20%,50%,80% {
        transform: translateY(0)
    }

    40% {
        transform: translateY(-30px)
    }

    60% {
        transform: translateY(-15px)
    }
}

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

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1)
    }

    10%,20% {
        -webkit-transform: scale(.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        -webkit-transform: scale(1.1) rotate(3deg)
    }

    40%,60%,80% {
        -webkit-transform: scale(1.1) rotate(-3deg)
    }

    100% {
        -webkit-transform: scale(1) rotate(0)
    }
}

@-moz-keyframes tada {
    0% {
        -moz-transform: scale(1)
    }

    10%,20% {
        -moz-transform: scale(.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        -moz-transform: scale(1.1) rotate(3deg)
    }

    40%,60%,80% {
        -moz-transform: scale(1.1) rotate(-3deg)
    }

    100% {
        -moz-transform: scale(1) rotate(0)
    }
}

@-o-keyframes tada {
    0% {
        -o-transform: scale(1)
    }

    10%,20% {
        -o-transform: scale(.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        -o-transform: scale(1.1) rotate(3deg)
    }

    40%,60%,80% {
        -o-transform: scale(1.1) rotate(-3deg)
    }

    100% {
        -o-transform: scale(1) rotate(0)
    }
}

@keyframes tada {
    0% {
        transform: scale(1)
    }

    10%,20% {
        transform: scale(.9) rotate(-3deg)
    }

    30%,50%,70%,90% {
        transform: scale(1.1) rotate(3deg)
    }

    40%,60%,80% {
        transform: scale(1.1) rotate(-3deg)
    }

    100% {
        transform: scale(1) rotate(0)
    }
}

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

@-webkit-keyframes swing {
    100%,20%,40%,60%,80% {
        -webkit-origin: top center
    }

    20% {
        -webkit: rotate(15deg)
    }

    40% {
        -webkit: rotate(-10deg)
    }

    60% {
        -webkit: rotate(5deg)
    }

    80% {
        -webkit: rotate(-5deg)
    }

    100% {
        -webkit-transform: rotate(0deg)
    }
}

@-moz-keyframes swing {
    20% {
        -moz-transform: rotate(15deg)
    }

    40% {
        -moz-transform: rotate(-10deg)
    }

    60% {
        -moz-transform: rotate(5deg)
    }

    80% {
        -moz-transform: rotate(-5deg)
    }

    100% {
        -moz-transform: rotate(0deg)
    }
}

@-o-keyframes swing {
    20% {
        -o-transform: rotate(15deg)
    }

    40% {
        -o-transform: rotate(-10deg)
    }

    60% {
        -o-transform: rotate(5deg)
    }

    80% {
        -o-transform: rotate(-5deg)
    }

    100% {
        -o-transform: rotate(0deg)
    }
}

@keyframes swing {
    20% {
        transform: rotate(15deg)
    }

    40% {
        transform: rotate(-10deg)
    }

    60% {
        transform: rotate(5deg)
    }

    80% {
        transform: rotate(-5deg)
    }

    100% {
        transform: rotate(0deg)
    }
}

@-webkit-keyframes wobble {
    0% {
        -webkit: translateX(0)
    }

    15% {
        -webkit: translateX(-25%) rotate(-5deg)
    }

    30% {
        -webkit: translateX(20%) rotate(3deg)
    }

    45% {
        -webkit: translateX(-15%) rotate(-3deg)
    }

    60% {
        -webkit: translateX(10%) rotate(2deg)
    }

    75% {
        -webkit: translateX(-5%) rotate(-1deg)
    }

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

@-moz-keyframes wobble {
    0% {
        -moz-transform: translateX(0)
    }

    15% {
        -moz-transform: translateX(-25%) rotate(-5deg)
    }

    30% {
        -moz-transform: translateX(20%) rotate(3deg)
    }

    45% {
        -moz-transform: translateX(-15%) rotate(-3deg)
    }

    60% {
        -moz-transform: translateX(10%) rotate(2deg)
    }

    75% {
        -moz-transform: translateX(-5%) rotate(-1deg)
    }

    100% {
        -moz-transform: translateX(0)
    }
}

@-o-keyframes wobble {
    0% {
        -o-transform: translateX(0)
    }

    15% {
        -o-transform: translateX(-25%) rotate(-5deg)
    }

    30% {
        -o-transform: translateX(20%) rotate(3deg)
    }

    45% {
        -o-transform: translateX(-15%) rotate(-3deg)
    }

    60% {
        -o-transform: translateX(10%) rotate(2deg)
    }

    75% {
        -o-transform: translateX(-5%) rotate(-1deg)
    }

    100% {
        -o-transform: translateX(0)
    }
}

@keyframes wobble {
    0% {
        transform: translateX(0)
    }

    15% {
        transform: translateX(-25%) rotate(-5deg)
    }

    30% {
        transform: translateX(20%) rotate(3deg)
    }

    45% {
        transform: translateX(-15%) rotate(-3deg)
    }

    60% {
        transform: translateX(10%) rotate(2deg)
    }

    75% {
        transform: translateX(-5%) rotate(-1deg)
    }

    100% {
        transform: translateX(0)
    }
}

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

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

@-webkit-keyframes pulse {
    0% {
        -webkit: scale(1)
    }

    50% {
        -webkit: scale(1.1)
    }

    100% {
        -webkit: 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)
    }
}

.flip {
    -webkit-backface-visibility: visible!important;
    -moz-backface-visibility: visible!important;
    -o-backface-visibility: visible!important;
    backface-visibility: visible!important;
    -webkit-animation-name: flip;
    -moz-animation-name: flip;
    -o-animation-name: flip;
    animation-name: flip
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotateY(0);
        -webkit-animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
        -webkit-animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: perspective(400px) scale(1);
        -webkit-animation-timing-function: ease-in
    }
}

@-moz-keyframes flip {
    0% {
        -moz-transform: perspective(400px) rotateY(0);
        -moz-animation-timing-function: ease-out
    }

    40% {
        -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg);
        -moz-animation-timing-function: ease-out
    }

    50% {
        -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -moz-animation-timing-function: ease-in
    }

    80% {
        -moz-transform: perspective(400px) rotateY(360deg) scale(.95);
        -moz-animation-timing-function: ease-in
    }

    100% {
        -moz-transform: perspective(400px) scale(1);
        -moz-animation-timing-function: ease-in
    }
}

@-o-keyframes flip {
    0% {
        -o-transform: perspective(400px) rotateY(0);
        -o-animation-timing-function: ease-out
    }

    40% {
        -o-transform: perspective(400px) translateZ(150px) rotateY(170deg);
        -o-animation-timing-function: ease-out
    }

    50% {
        -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -o-animation-timing-function: ease-in
    }

    80% {
        -o-transform: perspective(400px) rotateY(360deg) scale(.95);
        -o-animation-timing-function: ease-in
    }

    100% {
        -o-transform: perspective(400px) scale(1);
        -o-animation-timing-function: ease-in
    }
}

@keyframes flip {
    0% {
        transform: perspective(400px) rotateY(0);
        animation-timing-function: ease-out
    }

    40% {
        transform: perspective(400px) translateZ(150px) rotateY(170deg);
        animation-timing-function: ease-out
    }

    50% {
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        animation-timing-function: ease-in
    }

    80% {
        transform: perspective(400px) rotateY(360deg) scale(.95);
        animation-timing-function: ease-in
    }

    100% {
        transform: perspective(400px) scale(1);
        animation-timing-function: ease-in
    }
}

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

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@-moz-keyframes flipInX {
    0% {
        -moz-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    40% {
        -moz-transform: perspective(400px) rotateX(-10deg)
    }

    70% {
        -moz-transform: perspective(400px) rotateX(10deg)
    }

    100% {
        -moz-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@-o-keyframes flipInX {
    0% {
        -o-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    40% {
        -o-transform: perspective(400px) rotateX(-10deg)
    }

    70% {
        -o-transform: perspective(400px) rotateX(10deg)
    }

    100% {
        -o-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    40% {
        transform: perspective(400px) rotateX(-10deg)
    }

    70% {
        transform: perspective(400px) rotateX(10deg)
    }

    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

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

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@-moz-keyframes flipOutX {
    0% {
        -moz-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -moz-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@-o-keyframes flipOutX {
    0% {
        -o-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -o-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

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

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@-moz-keyframes flipInY {
    0% {
        -moz-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    40% {
        -moz-transform: perspective(400px) rotateY(-10deg)
    }

    70% {
        -moz-transform: perspective(400px) rotateY(10deg)
    }

    100% {
        -moz-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@-o-keyframes flipInY {
    0% {
        -o-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    40% {
        -o-transform: perspective(400px) rotateY(-10deg)
    }

    70% {
        -o-transform: perspective(400px) rotateY(10deg)
    }

    100% {
        -o-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    40% {
        transform: perspective(400px) rotateY(-10deg)
    }

    70% {
        transform: perspective(400px) rotateY(10deg)
    }

    100% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

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

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@-moz-keyframes flipOutY {
    0% {
        -moz-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -moz-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@-o-keyframes flipOutY {
    0% {
        -o-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -o-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@keyframes flipOutY {
    0% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

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

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

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

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateY(20px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateY(20px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateY(0)
    }
}

@-o-keyframes fadeInUp {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateY(20px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateY(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateY(0)
    }
}

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

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateY(0)
    }
}

@-o-keyframes fadeInDown {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateY(0)
    }
}

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

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes fadeInLeft {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateX(0)
    }
}

@-o-keyframes fadeInLeft {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateX(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateX(20px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes fadeInRight {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateX(20px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateX(0)
    }
}

@-o-keyframes fadeInRight {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateX(20px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateX(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(20px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateX(0)
    }
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateY(2000px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateY(2000px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateY(0)
    }
}

@-o-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateY(2000px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateY(0)
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateY(2000px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateY(0)
    }
}

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

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateY(-2000px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateY(-2000px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateY(0)
    }
}

@-o-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateY(-2000px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateY(0)
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateY(-2000px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateY(0)
    }
}

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

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateX(-2000px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateX(-2000px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateX(0)
    }
}

@-o-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateX(-2000px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateX(0)
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(-2000px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateX(2000px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateX(2000px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateX(0)
    }
}

@-o-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateX(2000px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateX(0)
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(2000px)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateX(0)
    }
}

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

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@-o-keyframes fadeOut {
    0% {
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

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

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateY(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateY(-20px)
    }
}

@-moz-keyframes fadeOutUp {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateY(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateY(-20px)
    }
}

@-o-keyframes fadeOutUp {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateY(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateY(-20px)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateY(-20px)
    }
}

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

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateY(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateY(20px)
    }
}

@-moz-keyframes fadeOutDown {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateY(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateY(20px)
    }
}

@-o-keyframes fadeOutDown {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateY(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateY(20px)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateY(20px)
    }
}

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

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateX(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateX(-20px)
    }
}

@-moz-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateX(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateX(-20px)
    }
}

@-o-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateX(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateX(-20px)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(-20px)
    }
}

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

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateX(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateX(20px)
    }
}

@-moz-keyframes fadeOutRight {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateX(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateX(20px)
    }
}

@-o-keyframes fadeOutRight {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateX(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateX(20px)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(20px)
    }
}

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

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateY(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateY(-2000px)
    }
}

@-moz-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateY(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateY(-2000px)
    }
}

@-o-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateY(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateY(-2000px)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateY(-2000px)
    }
}

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

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateY(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateY(2000px)
    }
}

@-moz-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateY(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateY(2000px)
    }
}

@-o-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateY(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateY(2000px)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateY(2000px)
    }
}

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

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateX(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateX(-2000px)
    }
}

@-moz-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateX(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateX(-2000px)
    }
}

@-o-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateX(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateX(-2000px)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(-2000px)
    }
}

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

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateX(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateX(2000px)
    }
}

@-moz-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateX(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateX(2000px)
    }
}

@-o-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateX(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateX(2000px)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(2000px)
    }
}

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

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: scale(.3)
    }

    50% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: scale(1.05)
    }

    70% {
        -webkit-transform: scale(.9)
    }

    100% {
        -webkit-transform: scale(1)
    }
}

@-moz-keyframes bounceIn {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: scale(.3)
    }

    50% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: scale(1.05)
    }

    70% {
        -moz-transform: scale(.9)
    }

    100% {
        -moz-transform: scale(1)
    }
}

@-o-keyframes bounceIn {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: scale(.3)
    }

    50% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: scale(1.05)
    }

    70% {
        -o-transform: scale(.9)
    }

    100% {
        -o-transform: scale(1)
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: scale(.3)
    }

    50% {
        opacity: 1;
        filter: alpha(opacity=100);
        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 bounceInUp {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateY(2000px)
    }

    60% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateY(-30px)
    }

    80% {
        -webkit-transform: translateY(10px)
    }

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

@-moz-keyframes bounceInUp {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateY(2000px)
    }

    60% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateY(-30px)
    }

    80% {
        -moz-transform: translateY(10px)
    }

    100% {
        -moz-transform: translateY(0)
    }
}

@-o-keyframes bounceInUp {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateY(2000px)
    }

    60% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateY(-30px)
    }

    80% {
        -o-transform: translateY(10px)
    }

    100% {
        -o-transform: translateY(0)
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateY(2000px)
    }

    60% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateY(-30px)
    }

    80% {
        transform: translateY(10px)
    }

    100% {
        transform: translateY(0)
    }
}

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

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateY(-2000px)
    }

    60% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateY(30px)
    }

    80% {
        -webkit-transform: translateY(-10px)
    }

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

@-moz-keyframes bounceInDown {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateY(-2000px)
    }

    60% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateY(30px)
    }

    80% {
        -moz-transform: translateY(-10px)
    }

    100% {
        -moz-transform: translateY(0)
    }
}

@-o-keyframes bounceInDown {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateY(-2000px)
    }

    60% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateY(30px)
    }

    80% {
        -o-transform: translateY(-10px)
    }

    100% {
        -o-transform: translateY(0)
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateY(-2000px)
    }

    60% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateY(30px)
    }

    80% {
        transform: translateY(-10px)
    }

    100% {
        transform: translateY(0)
    }
}

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

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateX(-2000px)
    }

    60% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateX(30px)
    }

    80% {
        -webkit-transform: translateX(-10px)
    }

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

@-moz-keyframes bounceInLeft {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateX(-2000px)
    }

    60% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateX(30px)
    }

    80% {
        -moz-transform: translateX(-10px)
    }

    100% {
        -moz-transform: translateX(0)
    }
}

@-o-keyframes bounceInLeft {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateX(-2000px)
    }

    60% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateX(30px)
    }

    80% {
        -o-transform: translateX(-10px)
    }

    100% {
        -o-transform: translateX(0)
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(-2000px)
    }

    60% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateX(30px)
    }

    80% {
        transform: translateX(-10px)
    }

    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;
        filter: alpha(opacity=0);
        -webkit-transform: translateX(2000px)
    }

    60% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateX(-30px)
    }

    80% {
        -webkit-transform: translateX(10px)
    }

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

@-moz-keyframes bounceInRight {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateX(2000px)
    }

    60% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateX(-30px)
    }

    80% {
        -moz-transform: translateX(10px)
    }

    100% {
        -moz-transform: translateX(0)
    }
}

@-o-keyframes bounceInRight {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateX(2000px)
    }

    60% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateX(-30px)
    }

    80% {
        -o-transform: translateX(10px)
    }

    100% {
        -o-transform: translateX(0)
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(2000px)
    }

    60% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateX(-30px)
    }

    80% {
        transform: translateX(10px)
    }

    100% {
        transform: translateX(0)
    }
}

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

@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1)
    }

    25% {
        -webkit-transform: scale(.95)
    }

    50% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: scale(1.1)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: scale(.3)
    }
}

@-moz-keyframes bounceOut {
    0% {
        -moz-transform: scale(1)
    }

    25% {
        -moz-transform: scale(.95)
    }

    50% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: scale(1.1)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: scale(.3)
    }
}

@-o-keyframes bounceOut {
    0% {
        -o-transform: scale(1)
    }

    25% {
        -o-transform: scale(.95)
    }

    50% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: scale(1.1)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: scale(.3)
    }
}

@keyframes bounceOut {
    0% {
        transform: scale(1)
    }

    25% {
        transform: scale(.95)
    }

    50% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: scale(1.1)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: scale(.3)
    }
}

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

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

    20% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateY(20px)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateY(-2000px)
    }
}

@-moz-keyframes bounceOutUp {
    0% {
        -moz-transform: translateY(0)
    }

    20% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateY(20px)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateY(-2000px)
    }
}

@-o-keyframes bounceOutUp {
    0% {
        -o-transform: translateY(0)
    }

    20% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateY(20px)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateY(-2000px)
    }
}

@keyframes bounceOutUp {
    0% {
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateY(20px)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateY(-2000px)
    }
}

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

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

    20% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateY(-20px)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateY(2000px)
    }
}

@-moz-keyframes bounceOutDown {
    0% {
        -moz-transform: translateY(0)
    }

    20% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateY(-20px)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateY(2000px)
    }
}

@-o-keyframes bounceOutDown {
    0% {
        -o-transform: translateY(0)
    }

    20% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateY(-20px)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateY(2000px)
    }
}

@keyframes bounceOutDown {
    0% {
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateY(-20px)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateY(2000px)
    }
}

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

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

    20% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateX(20px)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateX(-2000px)
    }
}

@-moz-keyframes bounceOutLeft {
    0% {
        -moz-transform: translateX(0)
    }

    20% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateX(20px)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateX(-2000px)
    }
}

@-o-keyframes bounceOutLeft {
    0% {
        -o-transform: translateX(0)
    }

    20% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateX(20px)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateX(-2000px)
    }
}

@keyframes bounceOutLeft {
    0% {
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateX(20px)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(-2000px)
    }
}

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

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

    20% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateX(-20px)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateX(2000px)
    }
}

@-moz-keyframes bounceOutRight {
    0% {
        -moz-transform: translateX(0)
    }

    20% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateX(-20px)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateX(2000px)
    }
}

@-o-keyframes bounceOutRight {
    0% {
        -o-transform: translateX(0)
    }

    20% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateX(-20px)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateX(2000px)
    }
}

@keyframes bounceOutRight {
    0% {
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateX(-20px)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(2000px)
    }
}

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

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@-moz-keyframes rotateIn {
    0% {
        -moz-transform-origin: center center;
        -moz-transform: rotate(-200deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        -moz-transform-origin: center center;
        -moz-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@-o-keyframes rotateIn {
    0% {
        -o-transform-origin: center center;
        -o-transform: rotate(-200deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        -o-transform-origin: center center;
        -o-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@keyframes rotateIn {
    0% {
        transform-origin: center center;
        transform: rotate(-200deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        transform-origin: center center;
        transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

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

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@-moz-keyframes rotateInUpLeft {
    0% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@-o-keyframes rotateInUpLeft {
    0% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

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

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@-moz-keyframes rotateInDownLeft {
    0% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(-90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@-o-keyframes rotateInDownLeft {
    0% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(-90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

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

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@-moz-keyframes rotateInUpRight {
    0% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(-90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@-o-keyframes rotateInUpRight {
    0% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(-90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

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

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@-moz-keyframes rotateInDownRight {
    0% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@-o-keyframes rotateInDownRight {
    0% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    100% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

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

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(200deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@-moz-keyframes rotateOut {
    0% {
        -moz-transform-origin: center center;
        -moz-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -moz-transform-origin: center center;
        -moz-transform: rotate(200deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@-o-keyframes rotateOut {
    0% {
        -o-transform-origin: center center;
        -o-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -o-transform-origin: center center;
        -o-transform: rotate(200deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@keyframes rotateOut {
    0% {
        transform-origin: center center;
        transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        transform-origin: center center;
        transform: rotate(200deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

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

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@-moz-keyframes rotateOutUpLeft {
    0% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(-90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@-o-keyframes rotateOutUpLeft {
    0% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(-90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -transform-origin: left bottom;
        -transform: rotate(-90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

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

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@-moz-keyframes rotateOutDownLeft {
    0% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@-o-keyframes rotateOutDownLeft {
    0% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

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

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@-moz-keyframes rotateOutUpRight {
    0% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@-o-keyframes rotateOutUpRight {
    0% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

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

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@-moz-keyframes rotateOutDownRight {
    0% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(-90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@-o-keyframes rotateOutDownRight {
    0% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(-90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

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

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

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

    40% {
        -webkit-transform: rotate(60deg);
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out
    }

    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out
    }

    100% {
        -webkit-transform: translateY(700px);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

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

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

    40% {
        -moz-transform: rotate(60deg);
        -moz-transform-origin: top left;
        -moz-animation-timing-function: ease-in-out
    }

    80% {
        -moz-transform: rotate(60deg) translateY(0);
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform-origin: top left;
        -moz-animation-timing-function: ease-in-out
    }

    100% {
        -moz-transform: translateY(700px);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

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

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

    40% {
        -o-transform: rotate(60deg);
        -o-transform-origin: top left;
        -o-animation-timing-function: ease-in-out
    }

    80% {
        -o-transform: rotate(60deg) translateY(0);
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform-origin: top left;
        -o-animation-timing-function: ease-in-out
    }

    100% {
        -o-transform: translateY(700px);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

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

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

    40% {
        transform: rotate(60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }

    80% {
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        filter: alpha(opacity=100);
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }

    100% {
        transform: translateY(700px);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

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

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateX(-100%) rotate(-120deg)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateX(0) rotate(0deg)
    }
}

@-moz-keyframes rollIn {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateX(-100%) rotate(-120deg)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateX(0) rotate(0deg)
    }
}

@-o-keyframes rollIn {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateX(-100%) rotate(-120deg)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateX(0) rotate(0deg)
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(-100%) rotate(-120deg)
    }

    100% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateX(0) rotate(0deg)
    }
}

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

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translateX(0) rotate(0deg)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translateX(100%) rotate(120deg)
    }
}

@-moz-keyframes rollOut {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -moz-transform: translateX(0) rotate(0deg)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -moz-transform: translateX(100%) rotate(120deg)
    }
}

@-o-keyframes rollOut {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        -o-transform: translateX(0) rotate(0deg)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        -o-transform: translateX(100%) rotate(120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        filter: alpha(opacity=100);
        transform: translateX(0) rotate(0deg)
    }

    100% {
        opacity: 0;
        filter: alpha(opacity=0);
        transform: translateX(100%) rotate(120deg)
    }
}

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

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit: translateX(100%) skewX(-30deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    60% {
        -webkit: translateX(-20%) skewX(30deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    80% {
        -webkit: translateX(0) skewX(-15deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -webkit: translateX(0) skewX(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@-moz-keyframes lightSpeedIn {
    0% {
        -moz-transform: translateX(100%) skewX(-30deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    60% {
        -moz-transform: translateX(-20%) skewX(30deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    80% {
        -moz-transform: translateX(0) skewX(-15deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -moz-transform: translateX(0) skewX(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@-o-keyframes lightSpeedIn {
    0% {
        -o-transform: translateX(100%) skewX(-30deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    60% {
        -o-transform: translateX(-20%) skewX(30deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    80% {
        -o-transform: translateX(0) skewX(-15deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -o-transform: translateX(0) skewX(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

@keyframes lightSpeedIn {
    0% {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }

    60% {
        transform: translateX(-20%) skewX(30deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    80% {
        transform: translateX(0) skewX(-15deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        transform: translateX(0) skewX(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }
}

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

.animated.lightSpeedIn {
    -webkit-animation-duration: .5s;
    -moz-animation-duration: .5s;
    -o-animation-duration: .5s;
    animation-duration: .5s
}

@-webkit-keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0) skewX(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -webkit: translateX(100%) skewX(-30deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@-moz-keyframes lightSpeedOut {
    0% {
        -moz-transform: translateX(0) skewX(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -moz-transform: translateX(100%) skewX(-30deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@-o-keyframes lightSpeedOut {
    0% {
        -o-transform: translateX(0) skewX(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        -o-transform: translateX(100%) skewX(-30deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

@keyframes lightSpeedOut {
    0% {
        transform: translateX(0) skewX(0deg);
        opacity: 1;
        filter: alpha(opacity=100)
    }

    100% {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0;
        filter: alpha(opacity=0)
    }
}

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

.animated.lightSpeedOut {
    -webkit-animation-duration: .25s;
    -moz-animation-duration: .25s;
    -o-animation-duration: .25s;
    animation-duration: .25s
}

@-webkit-keyframes wiggle {
    0% {
        -webkit: skewX(9deg)
    }

    10% {
        -webkit: skewX(-8deg)
    }

    20% {
        -webkit: skewX(7deg)
    }

    30% {
        -webkit: skewX(-6deg)
    }

    40% {
        -webkit: skewX(5deg)
    }

    50% {
        -webkit: skewX(-4deg)
    }

    60% {
        -webkit: skewX(3deg)
    }

    70% {
        -webkit: skewX(-2deg)
    }

    80% {
        -webkit: skewX(1deg)
    }

    100%,90% {
        -webkit: skewX(0deg)
    }
}

@-moz-keyframes wiggle {
    0% {
        -moz-transform: skewX(9deg)
    }

    10% {
        -moz-transform: skewX(-8deg)
    }

    20% {
        -moz-transform: skewX(7deg)
    }

    30% {
        -moz-transform: skewX(-6deg)
    }

    40% {
        -moz-transform: skewX(5deg)
    }

    50% {
        -moz-transform: skewX(-4deg)
    }

    60% {
        -moz-transform: skewX(3deg)
    }

    70% {
        -moz-transform: skewX(-2deg)
    }

    80% {
        -moz-transform: skewX(1deg)
    }

    100%,90% {
        -moz-transform: skewX(0deg)
    }
}

@-o-keyframes wiggle {
    0% {
        -o-transform: skewX(9deg)
    }

    10% {
        -o-transform: skewX(-8deg)
    }

    20% {
        -o-transform: skewX(7deg)
    }

    30% {
        -o-transform: skewX(-6deg)
    }

    40% {
        -o-transform: skewX(5deg)
    }

    50% {
        -o-transform: skewX(-4deg)
    }

    60% {
        -o-transform: skewX(3deg)
    }

    70% {
        -o-transform: skewX(-2deg)
    }

    80% {
        -o-transform: skewX(1deg)
    }

    100%,90% {
        -o-transform: skewX(0deg)
    }
}

@keyframes wiggle {
    0% {
        transform: skewX(9deg)
    }

    10% {
        transform: skewX(-8deg)
    }

    20% {
        transform: skewX(7deg)
    }

    30% {
        transform: skewX(-6deg)
    }

    40% {
        transform: skewX(5deg)
    }

    50% {
        transform: skewX(-4deg)
    }

    60% {
        transform: skewX(3deg)
    }

    70% {
        transform: skewX(-2deg)
    }

    80% {
        transform: skewX(1deg)
    }

    100%,90% {
        transform: skewX(0deg)
    }
}

.wiggle {
    -webkit-animation-name: wiggle;
    -moz-animation-name: wiggle;
    -o-animation-name: wiggle;
    animation-name: wiggle;
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

.animated.wiggle {
    -webkit-animation-duration: .75s;
    -moz-animation-duration: .75s;
    -o-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes resize {
    0% {
        height: 50px;
        width: 50px
    }

    50% {
        height: 100px;
        width: 100px
    }

    100% {
        height: 150px;
        width: 150px
    }
}

@-moz-keyframes resize {
    0% {
        height: 50px;
        width: 50px
    }

    50% {
        height: 100px;
        width: 100px
    }

    100% {
        height: 150px;
        width: 150px
    }
}

@-o-keyframes resize {
    0% {
        height: 50px;
        width: 50px
    }

    50% {
        height: 100px;
        width: 100px
    }

    100% {
        height: 150px;
        width: 150px
    }
}

@keyframes resize {
    0% {
        height: 50px;
        width: 50px
    }

    50% {
        height: 100px;
        width: 100px
    }

    100% {
        height: 150px;
        width: 150px
    }
}

.growing-box {
    animation-name: resize;
    animation-duration: 1s;
    animation-iteration-count: 4;
    animation-direction: alternate;
    animation-timing-function: ease-in-out
}

.list-reset {
    margin: 0;
    padding: 0;
    list-style: none
}

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

.branding {
    font-weight: 400;
    font-family: Rambla,Arial,serif;
    padding: 0;
    margin: 6px 0 0;
    display: block;
    border: none;
    text-shadow: none;
    line-height: 1;
    color: #55a79a;
    max-width: none;
    text-align: center;
    float: none;
    height: auto
}

.branding h1 {
    font-size: 40px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-family: Rambla,Arial,serif
}

.branding h1 span {
    color: #464646;
    color: rgba(27,27,27,.8);
    font-weight: 700
}

.branding:hover {
    text-decoration: none;
    cursor: pointer
}

.header-button {
    font-size: 18px;
    color: #fff;
    background: #242424;
    padding: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    display: block;
    height: 32px;
    width: 32px;
    line-height: 26px;
    text-align: center;
    margin-top: 20px;
    margin-left: 10px
}

.header-button.open,.header-button:hover {
    background: #55a79a;
    color: #fff;
    cursor: pointer;
    text-decoration: none
}

@media screen and (min-width: 768px) {
    .header-button {
        margin-top:10px
    }
}

body,html {
    font-size: 18px;
    font-family: "Open Sans",Arial,serif;
    background: #fff
}

a,a: focus,a:hover {
    color:#55a79a
}

a: hover img {
    opacity:.8;
    filter: alpha(opacity=80)
}

a: focus {
    outline:0
}

p {
    margin-bottom: 15px
}

.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6 {
    font-family: inherit;
    font-weight: 700;
    line-height: 1.1
}

.h1 small,.h2 small,.h3 small,.h4 small,.h5 small,.h6 small,h1 small,h2 small,h3 small,h4 small,h5 small,h6 small {
    font-weight: 400;
    line-height: 1;
    color: rgba(27,27,27,.8)
}

h1 {
    font-size: 34.3px
}

h2 {
    font-size: 33px
}

h2.media-heading{
    font-size: 19px;
	margin-bottom:15px;

}

h3 {
    font-size: 24.5px
}

h3.media-heading{
    font-size: 18px;
	font-weight: inherit;
	margin-bottom:15px;
}

h4 {
    font-size: 19px
}

h5 {
    font-size: 14px
}

h6 {
    font-size: 11.9px
}

h1 small {
    font-size: 21.7px
}

h2 small {
    font-size: 14.7px
}

h3 small,h4 small {
    font-size: 14px
}

.page-title {
    margin: 0
}

.page-title small {
    color: rgba(51,51,51,.5)
}

ul.inline>li: first-child {
    padding-left:0
}

blockquote {
    border: none;
    padding: 0
}

blockquote p {
    background: #e6e6e6;
    padding: 20px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    position: relative
}

blockquote p: after,blockquote p:before {
    top:100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none
}

blockquote p: after {
    border-top-color:#e6e6e6;
    border-width: 10px;
    left: 10%;
    margin-left: -10px
}

blockquote p: before {
    border-top-color:rgba(0,0,0,.01);
    border-width: 11px;
    left: 10%;
    margin-left: -11px
}

blockquote footer,blockquote small {
    display: block;
    padding: 12px 0 0 10px
}

blockquote footer: before,blockquote small:before {
    content:''
}

blockquote footer img,blockquote small img {
    padding-right: 1em;
    max-width: 50px
}

blockquote.blockquote-plain {
    border-left: 2px solid #55a79a;
    padding: 0 1em;
    margin: 1.5em 0
}

blockquote.blockquote-plain p {
    background: 0 0;
    padding: 0
}

blockquote.blockquote-plain p: after,blockquote.blockquote-plain p:before {
    display:none
}

blockquote.blockquote-plain footer,blockquote.blockquote-plain small {
    padding: 0
}

blockquote.blockquote-plain.pull-left,blockquote.blockquote-plain.pull-right {
    float: none!important
}

@media (min-width: 992px) {
    blockquote.blockquote-plain.pull-left,blockquote.blockquote-plain.pull-right {
        width:55%
    }

    blockquote.blockquote-plain.pull-right {
        margin: 1em 0 1em 2em;
        float: right!important
    }

    blockquote.blockquote-plain.pull-left {
        margin: 1em 2em 1em 0;
        float: left!important
    }
}

.focus-box {
    border-top: 1px solid #e3e3e3;
    border-bottom: 5px solid #55a79a;
    padding: 1em;
    margin: 1.5em 0
}

.focus-box h1,.focus-box h2,.focus-box h3,.focus-box h4,.focus-box h5,.focus-box h6 {
    margin-top: 0
}

.focus-box.pull-left,.focus-box.pull-right {
    float: none!important
}

@media (min-width: 992px) {
    .focus-box.pull-left,.focus-box.pull-right {
        width:45%
    }

    .focus-box.pull-right {
        margin: 1em 0 1em 2em;
        float: right!important
    }

    .focus-box.pull-left {
        margin: 1em 2em 1em 0;
        float: left!important
    }
}

.incontent-header {
    margin: 1.2em 0 5px
}

.text-uppercase {
    text-transform: uppercase
}

.text-light {
    font-weight: 100!important
}

.fancy,.text-fancy {
    font-family: Calligraffitti,cursive;
    text-transform: lowercase
}

.new-tag {
    display: inline;
    color: #d9534f;
    vertical-align: super;
    font-size: 10px;
    font-weight: 700
}

.title-divider {
    text-align: left;
    /* margin-bottom: 1em; */
    /* background: url(/img/bg_divider.png) left center repeat-x #fff; */
    padding: 0
}

.title-divider span {
    padding-right: .5em
}

.title-divider small {
    display: block;
    color: rgba(51,51,51,.6)
}

.block .title {
    font-size: 25px;
    text-transform: uppercase;
    margin: 0 0 .5em;
    line-height: 1
}

.block.block-callout {
    background-color: #f6f6f6;
    border-bottom: 1px dashed #e6e6e6;
    border-top: 1px dashed #e6e6e6;
    padding: 1em
}

.mdrs .btn,.mdrs .btn-block {
    padding: .6em 1em;
    font-size: 1.2em
}

.intro p {
    margin-bottom: 0
}

.btn span {
    display: block;
    font-size: 12px
}

.spacer {
    font-weight: 700;
    color: #55a79a
}

.spacer.dark {
    color: #4c968a
}

.de-em {
    font-weight: 400;
    color: rgba(51,51,51,.8)!important;
}

a .de-em {
    font-weight: 400;
    color: rgba(85,167,154,.8)
}

.em {
    font-weight: 700
}

.fa {
    vertical-align: middle
}

.font-xs-x1 {
    font-size: 13px!important
}

.font-xs-x2 {
    font-size: 22px!important
}

.font-xs-x3 {
    font-size: 33px!important
}

.font-xs-x4 {
    font-size: 44px!important
}

.font-xs-x5 {
    font-size: 55px!important
}

.font-xs-x6 {
    font-size: 66px!important
}

.font-xs-x7 {
    font-size: 77px!important
}

.font-xs-x8 {
    font-size: 88px!important
}

.font-xs-x9 {
    font-size: 99px!important
}

.font-xs-x10 {
    font-size: 110px!important
}

@media (min-width: 768px) {
    .font-sm-x1 {
        font-size:14px!important
    }

    .font-sm-x2 {
        font-size: 24px!important
    }

    .font-sm-x3 {
        font-size: 36px!important
    }

    .font-sm-x4 {
        font-size: 48px!important
    }

    .font-sm-x5 {
        font-size: 60px!important
    }

    .font-sm-x6 {
        font-size: 72px!important
    }

    .font-sm-x7 {
        font-size: 84px!important
    }

    .font-sm-x8 {
        font-size: 96px!important
    }

    .font-sm-x9 {
        font-size: 108px!important
    }

    .font-sm-x10 {
        font-size: 120px!important
    }
}

@media (min-width: 992px) {
    .font-md-x1 {
        font-size:16px!important
    }

    .font-md-x2 {
        font-size: 28px!important
    }

    .font-md-x3 {
        font-size: 42px!important
    }

    .font-md-x4 {
        font-size: 56px!important
    }

    .font-md-x5 {
        font-size: 70px!important
    }

    .font-md-x6 {
        font-size: 84px!important
    }

    .font-md-x7 {
        font-size: 98px!important
    }

    .font-md-x8 {
        font-size: 112px!important
    }

    .font-md-x9 {
        font-size: 126px!important
    }

    .font-md-x10 {
        font-size: 140px!important
    }
}

@media (min-width: 1200px) {
    .font-lg-x1 {
        font-size:19px!important
    }

    .font-lg-x2 {
        font-size: 32px!important
    }

    .font-lg-x3 {
        font-size: 48px!important
    }

    .font-lg-x4 {
        font-size: 64px!important
    }

    .font-lg-x5 {
        font-size: 80px!important
    }

    .font-lg-x6 {
        font-size: 96px!important
    }

    .font-lg-x7 {
        font-size: 112px!important
    }

    .font-lg-x8 {
        font-size: 128px!important
    }

    .font-lg-x9 {
        font-size: 144px!important
    }

    .font-lg-x10 {
        font-size: 160px!important
    }
}

.pad-right {
    padding-right: .5em
}

.pad-left {
    padding-left: .5em
}

.pad-right-large {
    padding-right: 1.5em
}

.pad-left-large {
    padding-left: 1.5em
}

.pad-right-xlarge {
    padding-right: 3em
}

.pad-left-xlarge {
    padding-left: 3em
}

small img {
    max-width: 50px
}

.row-90 {
    width: 90%
}

.row-80 {
    width: 80%
}

.row-70 {
    width: 70%
}

.row-60 {
    width: 60%
}

.row-50 {
    width: 50%
}

.row-40 {
    width: 40%
}

.row-30 {
    width: 30%
}

.row-20 {
    width: 20%
}

.row-10 {
    width: 10%
}

.form-wrapper {
    margin: 0 auto;
    border: 1px solid #e6e6e6;
    padding: 20px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -webkit-box-shadow: 1px 1px 10px rgba(27,27,27,.2);
    box-shadow: 1px 1px 10px rgba(27,27,27,.2)
}

.form-wrapper.form-narrow {
    min-width: 200px;
    max-width: 400px
}

.form-wrapper.form-medium {
    min-width: 300px;
    max-width: 500px
}

.form-wrapper h2.title-divider,.form-wrapper h3.title-divider {
    margin-top: 0
}

.inline-el {
    display: inline-block
}

.inline-el h1,.inline-el h2,.inline-el h3,.inline-el h4,.inline-el h5,.inline-el p {
    margin: 0
}

.badge.badge-lg,.badge.label-lg,.label.badge-lg,.label.label-lg {
    padding: 4px 8px;
    font-size: 14px
}

.badge.badge-xlg,.badge.label-xlg,.label.badge-xlg,.label.label-xlg {
    padding: 8px 12px;
    font-size: 18px
}

.primary-colour {
    color: #55a79a
}

.primary-colour-bg {
    background-color: #55a79a
}

.more-link:hover {
    border-bottom: 3px solid #55a79a;
    text-decoration: none
}

.pull-center {
    text-align: center
}

.space-reset {
    line-height: 1;
    padding: 0;
    margin: 0
}

.margin-top-none {
    margin-top: 0
}

.margin-top-sm,.margin-top-small {
    margin-top: .5em
}

.margin-top-md,.margin-top-medium {
    margin-top: 1em
}

.margin-top-large,.margin-top-lg {
    margin-top: 2em
}

.margin-top-large:after,.margin-top-large:before,.margin-top-lg:after,.margin-top-lg:before,.margin-top-md:after,.margin-top-md:before,.margin-top-medium:after,.margin-top-medium:before,.margin-top-sm:after,.margin-top-sm:before,.margin-top-small:after,.margin-top-small:before {
    content: " ";
    display: table
}

.margin-top-large:after,.margin-top-lg:after,.margin-top-md:after,.margin-top-medium:after,.margin-top-sm:after,.margin-top-small:after {
    clear: both
}

.bordered-top-sm,.bordered-top-small {
    margin-top: .5em;
    padding-top: .5em;
    border-top: 1px solid rgba(204,204,204,.7)
}

.bordered-top-md,.bordered-top-medium {
    margin-top: 1em;
    padding-top: 1em;
    border-top: 1px solid rgba(204,204,204,.7)
}

.bordered-top-large,.bordered-top-lg {
    margin-top: 2em;
    padding-top: 2em;
    border-top: 1px solid rgba(204,204,204,.7)
}

.margin-bottom-none {
    margin-bottom: 0
}

.margin-bottom-sm,.margin-bottom-small {
    margin-bottom: .5em
}

.margin-bottom-md,.margin-bottom-medium {
    margin-bottom: 1em
}

.margin-bottom-large,.margin-bottom-lg {
    margin-bottom: 2em
}

.bordered-bottom-sm,.bordered-bottom-small {
    margin-bottom: .5em;
    padding-bottom: .5em;
    border-bottom: 1px solid rgba(204,204,204,.7)
}

.bordered-bottom-md,.bordered-bottom-medium {
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: 1px solid rgba(204,204,204,.7)
}

.bordered-bottom-large,.bordered-bottom-lg {
    margin-bottom: 2em;
    padding-bottom: 2em;
    border-bottom: 1px solid rgba(204,204,204,.7)
}

ul.big-list,ul.list-lg {
    font-size: 1.1em
}

ul.big-list li,ul.list-lg li {
    list-style: none;
    padding-bottom: .8em
}

ul.list-border-spacer {
    font-size: 1.1em;
    padding: 0;
    margin: 0
}

ul.list-border-spacer li {
    list-style: none;
    margin: 0 0 .5em;
    padding: .5em;
    border-bottom: 1px solid rgba(204,204,204,.7);
    border-color: rgba(204,204,204,.6)
}

ul.list-border-spacer li: hover {
    background:#f7f7f7
}

.secondary-nav {
    margin: 0;
    padding: 0
}

.secondary-nav li a {
    margin: 0 0 1px;
    padding: 8px .5em;
    background: rgba(85,167,154,.05);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid rgba(85,167,154,.1)
}

.secondary-nav li a i {
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
    opacity: .6;
    filter: alpha(opacity=60)
}

.secondary-nav li a: hover {
    background:rgba(85,167,154,.1)
}

.secondary-nav li a: hover i {
    opacity:.9;
    filter: alpha(opacity=90)
}

.secondary-nav li.active a {
    background: #55a79a
}

.secondary-nav li ul {
    margin: 0 0 1px;
    padding: 8px 1em;
    border: 1px solid rgba(85,167,154,.3);
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px;
    background: rgba(85,167,154,.1)
}

.popover-title {
    font-size: 16px;
    font-weight: 700
}

.popover-content {
    font-size: 12px;
    font-weight: 400
}

.accordion-primary .accordion-group {
    margin-bottom: 1px;
    border: 1px solid rgba(85,167,154,.1);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: rgba(85,167,154,.05)
}

.accordion-primary .accordion-group:hover {
    background: rgba(85,167,154,.1)
}

.accordion-primary .accordion-inner {
    border-top: 1px solid rgba(85,167,154,.2)
}

.background-clip-fix {
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box
}

.alert-inline {
    display: inline-block
}

.social-media-branding a.social-link {
    display: inline-block;
    margin-right: 5px;
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in
}

.social-media-branding .fa {
    font-size: 36px
}

.social-media-branding.social-media-branding-sm a.social-link {
    margin-right: 2px
}

.social-media-branding.social-media-branding-sm .fa {
    font-size: 26px
}

.social-media-branding.social-media-branding-xs a.social-link {
    margin-right: 0
}

.social-media-branding.social-media-branding-xs .fa {
    font-size: 20px
}

.branding-twitter {
    color: #464646
}

.branding-twitter:hover {
    color: #55acee
}

.branding-facebook {
    color: #464646
}

.branding-facebook:hover {
    color: #3b569b
}

.branding-linkedin {
    color: #464646
}

.branding-linkedin:hover {
    color: #4875b4
}

.branding-google-plus {
    color: #464646
}

.branding-google-plus:hover {
    color: #dd4b39
}

.overlay-wrapper {
    position: relative;
    display: block
}

.overlay-wrapper .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #000;
    opacity: 0;
    filter: alpha(opacity=0);
    padding: 2em 1em;
    text-align: center;
    -webkit-transition: all .3s ease-in;
    -o-transition: all .3s ease-in;
    transition: all .3s ease-in;
    color: #fff;
    display: block
}

.overlay-wrapper:hover .overlay {
    opacity: .8;
    filter: alpha(opacity=80)
}

.dur-fast {
    -webkit-animation-duration: .5s;
    -moz-animation-duration: .5s;
    -o-animation-duration: .5s;
    animation-duration: .5s
}

.dur-slow {
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s
}

.dur-x-slow {
    -webkit-animation-duration: 3s;
    -moz-animation-duration: 3s;
    -o-animation-duration: 3s;
    animation-duration: 3s
}

.de-02 {
    animation-delay: .2s;
    -webkit-animation-delay: .2s
}

.de-04 {
    animation-delay: .4s;
    -webkit-animation-delay: .4s
}

.de-06 {
    animation-delay: .6s;
    -webkit-animation-delay: .6s
}

.de-08 {
    animation-delay: .8s;
    -webkit-animation-delay: .8s
}

.de-1 {
    animation-delay: 1s;
    -webkit-animation-delay: 1s
}

.de-12 {
    animation-delay: 1.2s;
    -webkit-animation-delay: 1.2s
}

.de-14 {
    animation-delay: 1.4s;
    -webkit-animation-delay: 1.4s
}

.de-16 {
    animation-delay: 1.6s;
    -webkit-animation-delay: 1.6s
}

.de-18 {
    animation-delay: 1.8s;
    -webkit-animation-delay: 1.8s
}

.de-2 {
    animation-delay: 2s;
    -webkit-animation-delay: 2s
}

.page-boxed #content,.page-boxed #content-below,.page-boxed #footer,.page-boxed #highlighted,.page-boxed #navigation {
    margin-left: auto;
    margin-right: auto
}

.page-boxed #content,.page-boxed #navigation {
    background-color: #fff
}

@media (min-width: 768px) {
    .page-boxed #content,.page-boxed #content-below,.page-boxed #footer,.page-boxed #highlighted,.page-boxed #navigation {
        width:790px;
        border-left: 1px solid #ccc;
        border-right: 1px solid #ccc
    }

    .page-boxed #footer {
        border-left-color: #333;
        border-right-color: #333
    }
}

@media (min-width: 992px) {
    .page-boxed #content,.page-boxed #content-below,.page-boxed #footer,.page-boxed #highlighted,.page-boxed #navigation {
        width:1010px
    }
}

@media (min-width: 1200px) {
    .page-boxed #content,.page-boxed #content-below,.page-boxed #footer,.page-boxed #highlighted,.page-boxed #navigation {
        width:1210px
    }
}

.timeline-list-reset {
    list-style: none;
    padding: 0;
    margin: 0
}

.timeline-list-reset:after,.timeline-list-reset:before {
    content: " ";
    display: table
}

.timeline-list-reset:after {
    clear: both
}

.timeline {
    list-style: none;
    background-image: url(/img/misc/bg_timeline-line.png);
    background-size: 2px auto;
    background-repeat: repeat-y;
    background-position: center top;
    padding: 0;
    margin: 2em 0;
    text-align: center
}

@media all and (-webkit-min-device-pixel-ratio: 1.5) {
    .timeline {
        background-image:url(/img/misc/bg_timeline-line@2x.png);
        background-size: 2px auto
    }
}

.timeline:after,.timeline:before {
    content: " ";
    display: table
}

.timeline:after {
    clear: both
}

.timeline-marker {
    clear: both;
    background: #fff
}

.timeline-marker h1,.timeline-marker h2,.timeline-marker h3,.timeline-marker h4,.timeline-marker h5 {
    margin: 0 0 5px
}

.timeline-marker:after,.timeline-marker:before {
    width: 12px;
    height: 12px;
    background: #1b1b1b;
    margin: 0 auto;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    display: block;
    content: ' '
}

.timeline-marker:before {
    display: none
}

.timeline-marker.timeline-marker-bottom h1,.timeline-marker.timeline-marker-bottom h2,.timeline-marker.timeline-marker-bottom h3,.timeline-marker.timeline-marker-bottom h4,.timeline-marker.timeline-marker-bottom h5 {
    margin: 5px 0 0
}

.timeline-marker.timeline-marker-bottom:before {
    display: block
}

.timeline-marker.timeline-marker-bottom:after {
    display: none
}

.timeline-marker.timeline-marker-middle {
    margin-top: 20px;
    margin-bottom: 20px
}

.timeline-breaker {
    background: #1b1b1b;
    color: #fff;
    font-weight: 600;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    margin: 0 auto;
    text-align: center;
    padding: .6em;
    line-height: 1;
    display: block;
    position: relative;
    width: 100%;
    max-width: 15em;
    clear: both
}

.timeline-breaker:after,.timeline-breaker:before {
    display: table
}

.timeline-breaker:after {
    clear: both
}

.timeline-breaker a {
    color: #fff
}

.timeline-breaker a: hover {
    color:#eee
}

.timeline-breaker:after,.timeline-breaker:before {
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 1px;
    width: 0;
    position: absolute;
    pointer-events: none
}

.timeline-breaker:after {
    border-top-color: #1b1b1b;
    border-width: 10px;
    left: 50%;
    margin-left: -10px
}

.timeline-breaker:before {
    border-top-color: rgba(0,0,0,.01);
    border-width: 11px;
    left: 50%;
    margin-left: -11px
}

.timeline-breaker.timeline-breaker-bottom,.timeline-breaker.timeline-breaker-middle {
    margin-top: 40px;
    margin-bottom: 20px;
    clear: both!important
}

.timeline-breaker.timeline-breaker-bottom {
    margin-bottom: 0
}

.timeline-breaker.timeline-breaker-bottom:after,.timeline-breaker.timeline-breaker-bottom:before {
    top: -10px;
    border-top: none
}

.timeline-breaker.timeline-breaker-bottom:after {
    border-bottom-color: #1b1b1b
}

.timeline-breaker.timeline-breaker-bottom:before {
    border-bottom-color: rgba(0,0,0,.01)
}

.timeline-item-default {
    float: none;
    left: auto;
    right: auto;
    width: 100%;
    padding: 15px;
    margin: 60px auto 0;
    background: #f6f6f6;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    position: relative;
    border: 1px solid #f2f2f2;
    border-bottom: 3px solid #55a79a;
    text-align: left
}

.timeline-item-default:after {
    clear: both
}

.timeline-item-default:after,.timeline-item-default:before {
    top: -20px;
    right: 50%;
    left: 50%;
    position: absolute;
    pointer-events: none;
    display: block;
    font-size: 30px;
    height: 30px;
    line-height: 30px;
    width: 30px;
    text-align: center;
    margin-top: 0;
    margin-left: -14px
}

.timeline-item-default:before {
    font-family: FontAwesome;
    font-style: normal;
    speak: none;
    display: inline-block;
    content: '\F0D8';
    color: #f6f6f6
}

.timeline-item-default:after {
    font-family: FontAwesome;
    font-style: normal;
    speak: none;
    display: inline-block;
    content: '\f192';
    top: -39px;
    background: #fff
}

.timeline-item-default.highlight:after,.timeline-item-default.marker-highlight:after,.timeline-item-default.tag-featured:after {
    color: #65b1a5
}

.timeline-item-default.overlap-push-large {
    margin-top: 120px
}

.timeline-item-default.overlap-push-medium {
    margin-top: 60px
}

.timeline-item-default.overlap-push-small {
    margin-top: 30px
}

.timeline-item.timeline-item-first {
    margin-top: 20px!important
}

.timeline-item.timeline-item-last {
    margin-bottom: 20px!important
}

.timeline-item {
    float: none;
    left: auto;
    right: auto;
    width: 100%;
    padding: 15px;
    margin: 60px auto 0;
    background: #f6f6f6;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    position: relative;
    border: 1px solid #f2f2f2;
    border-bottom: 3px solid #55a79a;
    text-align: left
}

.timeline-item:after {
    clear: both
}

.timeline-item:after,.timeline-item:before {
    top: -20px;
    right: 50%;
    left: 50%;
    position: absolute;
    pointer-events: none;
    display: block;
    font-size: 30px;
    height: 30px;
    line-height: 30px;
    width: 30px;
    text-align: center;
    margin-top: 0;
    margin-left: -14px
}

.timeline-item:before {
    font-family: FontAwesome;
    font-style: normal;
    speak: none;
    display: inline-block;
    content: '\F0D8';
    color: #f6f6f6
}

.timeline-item:after {
    font-family: FontAwesome;
    font-style: normal;
    speak: none;
    display: inline-block;
    content: '\f192';
    top: -39px;
    background: #fff
}

.timeline-item.highlight:after,.timeline-item.marker-highlight:after,.timeline-item.tag-featured:after {
    color: #65b1a5
}

.timeline-item.overlap-push-large {
    margin-top: 120px
}

.timeline-item.overlap-push-medium {
    margin-top: 60px
}

.timeline-item.overlap-push-small {
    margin-top: 30px
}

.timeline-stacked-down .timeline-item:first-child {
    margin-top: 40px
}

.timeline-stacked-down .timeline-item:last-child {
    margin-bottom: 60px
}

.timeline-stacked-down .timeline-item:after,.timeline-stacked-down .timeline-item:before {
    bottom: -20px;
    top: auto
}

.timeline-stacked-down .timeline-item:before {
    font-family: FontAwesome;
    font-style: normal;
    speak: none;
    display: inline-block;
    content: '\F0D7'
}

.timeline-stacked-down .timeline-item:after {
    bottom: -40px;
    top: auto
}

.timeline-item-date {
    text-transform: uppercase;
    font-weight: 600;
    color: #666
}

.timeline-item-title {
    margin-top: 0
}

@media (min-width: 768px) {
    .timeline-breaker.timeline-breaker-bottom,.timeline-breaker.timeline-breaker-middle {
        top:40px
    }

    .timeline-item {
        float: left;
        width: 48%;
        padding: 15px;
        margin-top: 40px;
        right: 30px;
        margin-left: 2%;
        clear: left
    }

    .timeline-item:after,.timeline-item:before {
        top: 10%;
        bottom: auto;
        right: -20px;
        left: auto;
        position: absolute;
        pointer-events: none;
        margin: 0;
        display: block;
        font-size: 30px;
        height: 30px;
        line-height: 30px;
        width: 30px;
        text-align: center
    }

    .timeline-item:before {
        font-family: FontAwesome;
        font-style: normal;
        speak: none;
        display: inline-block;
        content: '\F0DA'
    }

    .timeline-item:after {
        right: -46px
    }

    .timeline-item.even,.timeline-item.right {
        float: right;
        clear: right;
        left: 30px;
        right: 0;
        margin-right: 2%;
        margin-left: 0;
        margin-top: 100px
    }

    .timeline-item.even:after,.timeline-item.even:before,.timeline-item.right:after,.timeline-item.right:before {
        left: -20px;
        top: 10%
    }

    .timeline-item.even:before,.timeline-item.right:before {
        font-family: FontAwesome;
        font-style: normal;
        speak: none;
        display: inline-block;
        content: '\F0D9'
    }

    .timeline-item.even:after,.timeline-item.right:after {
        left: -46px
    }

    .timeline-item.overlap-off {
        margin-top: 0
    }

    .timeline-item.overlap-pull-large {
        margin-top: -120px
    }

    .timeline-item.overlap-pull-small {
        margin-top: -30px
    }

    .timeline-stacked,.timeline.timeline-stacked {
        padding-left: 0;
        padding-right: 0
    }

    .timeline-stacked .timeline-item,.timeline-stacked .timeline-item.even,.timeline-stacked .timeline-item.right,.timeline.timeline-stacked .timeline-item,.timeline.timeline-stacked .timeline-item.even,.timeline.timeline-stacked .timeline-item.right {
        float: none;
        left: auto;
        right: auto;
        width: 100%;
        padding: 15px;
        margin: 80px auto 0;
        background: #f6f6f6;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        border-radius: 2px;
        position: relative;
        border: 1px solid #f2f2f2;
        border-bottom: 3px solid #55a79a;
        text-align: left
    }

    .timeline-stacked .timeline-item.even:after,.timeline-stacked .timeline-item.right:after,.timeline-stacked .timeline-item:after,.timeline.timeline-stacked .timeline-item.even:after,.timeline.timeline-stacked .timeline-item.right:after,.timeline.timeline-stacked .timeline-item:after {
        clear: both
    }

    .timeline-stacked .timeline-item.even:after,.timeline-stacked .timeline-item.even:before,.timeline-stacked .timeline-item.right:after,.timeline-stacked .timeline-item.right:before,.timeline-stacked .timeline-item:after,.timeline-stacked .timeline-item:before,.timeline.timeline-stacked .timeline-item.even:after,.timeline.timeline-stacked .timeline-item.even:before,.timeline.timeline-stacked .timeline-item.right:after,.timeline.timeline-stacked .timeline-item.right:before,.timeline.timeline-stacked .timeline-item:after,.timeline.timeline-stacked .timeline-item:before {
        top: -20px;
        right: 50%;
        left: 50%;
        position: absolute;
        pointer-events: none;
        display: block;
        font-size: 30px;
        height: 30px;
        line-height: 30px;
        width: 30px;
        text-align: center;
        margin-top: 0;
        margin-left: -14px
    }

    .timeline-stacked .timeline-item.even:before,.timeline-stacked .timeline-item.right:before,.timeline-stacked .timeline-item:before,.timeline.timeline-stacked .timeline-item.even:before,.timeline.timeline-stacked .timeline-item.right:before,.timeline.timeline-stacked .timeline-item:before {
        font-family: FontAwesome;
        font-style: normal;
        speak: none;
        display: inline-block;
        content: '\F0D8';
        color: #f6f6f6
    }

    .timeline-stacked .timeline-item.even:after,.timeline-stacked .timeline-item.right:after,.timeline-stacked .timeline-item:after,.timeline.timeline-stacked .timeline-item.even:after,.timeline.timeline-stacked .timeline-item.right:after,.timeline.timeline-stacked .timeline-item:after {
        font-family: FontAwesome;
        font-style: normal;
        speak: none;
        display: inline-block;
        content: '\f192';
        top: -39px;
        background: #fff
    }

    .timeline-stacked .timeline-item.even.highlight:after,.timeline-stacked .timeline-item.even.marker-highlight:after,.timeline-stacked .timeline-item.even.tag-featured:after,.timeline-stacked .timeline-item.highlight:after,.timeline-stacked .timeline-item.marker-highlight:after,.timeline-stacked .timeline-item.right.highlight:after,.timeline-stacked .timeline-item.right.marker-highlight:after,.timeline-stacked .timeline-item.right.tag-featured:after,.timeline-stacked .timeline-item.tag-featured:after,.timeline.timeline-stacked .timeline-item.even.highlight:after,.timeline.timeline-stacked .timeline-item.even.marker-highlight:after,.timeline.timeline-stacked .timeline-item.even.tag-featured:after,.timeline.timeline-stacked .timeline-item.highlight:after,.timeline.timeline-stacked .timeline-item.marker-highlight:after,.timeline.timeline-stacked .timeline-item.right.highlight:after,.timeline.timeline-stacked .timeline-item.right.marker-highlight:after,.timeline.timeline-stacked .timeline-item.right.tag-featured:after,.timeline.timeline-stacked .timeline-item.tag-featured:after {
        color: #65b1a5
    }

    .timeline-stacked .timeline-item.even.overlap-push-large,.timeline-stacked .timeline-item.overlap-push-large,.timeline-stacked .timeline-item.right.overlap-push-large,.timeline.timeline-stacked .timeline-item.even.overlap-push-large,.timeline.timeline-stacked .timeline-item.overlap-push-large,.timeline.timeline-stacked .timeline-item.right.overlap-push-large {
        margin-top: 120px
    }

    .timeline-stacked .timeline-item.even.overlap-push-medium,.timeline-stacked .timeline-item.overlap-push-medium,.timeline-stacked .timeline-item.right.overlap-push-medium,.timeline.timeline-stacked .timeline-item.even.overlap-push-medium,.timeline.timeline-stacked .timeline-item.overlap-push-medium,.timeline.timeline-stacked .timeline-item.right.overlap-push-medium {
        margin-top: 60px
    }

    .timeline-stacked .timeline-item.even.overlap-push-small,.timeline-stacked .timeline-item.overlap-push-small,.timeline-stacked .timeline-item.right.overlap-push-small,.timeline.timeline-stacked .timeline-item.even.overlap-push-small,.timeline.timeline-stacked .timeline-item.overlap-push-small,.timeline.timeline-stacked .timeline-item.right.overlap-push-small {
        margin-top: 30px
    }

    .timeline-stacked.timeline-stacked-down .timeline-item:first-child,.timeline.timeline-stacked.timeline-stacked-down .timeline-item:first-child {
        margin-top: 40px
    }

    .timeline-stacked.timeline-stacked-down .timeline-item:last-child,.timeline.timeline-stacked.timeline-stacked-down .timeline-item:last-child {
        margin-bottom: 60px
    }

    .timeline-stacked.timeline-stacked-down .timeline-item:after,.timeline-stacked.timeline-stacked-down .timeline-item:before,.timeline.timeline-stacked.timeline-stacked-down .timeline-item:after,.timeline.timeline-stacked.timeline-stacked-down .timeline-item:before {
        bottom: -20px;
        top: auto
    }

    .timeline-stacked.timeline-stacked-down .timeline-item:before,.timeline.timeline-stacked.timeline-stacked-down .timeline-item:before {
        font-family: FontAwesome;
        font-style: normal;
        speak: none;
        display: inline-block;
        content: '\F0D7'
    }

    .timeline-stacked.timeline-stacked-down .timeline-item:after,.timeline.timeline-stacked.timeline-stacked-down .timeline-item:after {
        bottom: -40px;
        top: auto
    }

    .timeline-stacked.timeline-stacked-down .timeline-item.even.last,.timeline-stacked.timeline-stacked-down .timeline-item.last,.timeline-stacked.timeline-stacked-down .timeline-item.right.last,.timeline.timeline-stacked.timeline-stacked-down .timeline-item.even.last,.timeline.timeline-stacked.timeline-stacked-down .timeline-item.last,.timeline.timeline-stacked.timeline-stacked-down .timeline-item.right.last {
        margin-bottom: 40px
    }

    .timeline-stacked .timeline-breaker.timeline-breaker-bottom,.timeline-stacked .timeline-breaker.timeline-breaker-middle,.timeline.timeline-stacked .timeline-breaker.timeline-breaker-bottom,.timeline.timeline-stacked .timeline-breaker.timeline-breaker-middle {
        top: auto
    }
}

.timeline-left,.timeline.timeline-left {
    background-position: left top;
    margin-left: 20px;
    padding-bottom: 0;
    text-align: left
}

.timeline-left .timeline-marker,.timeline.timeline-left .timeline-marker {
    margin-left: -5px;
    margin-right: 0
}

.timeline-left .timeline-marker:after,.timeline-left .timeline-marker:before,.timeline.timeline-left .timeline-marker:after,.timeline.timeline-left .timeline-marker:before {
    margin-left: 0
}

.timeline-left .timeline-breaker,.timeline.timeline-left .timeline-breaker {
    margin-left: -20px
}

.timeline-left .timeline-breaker:after,.timeline-left .timeline-breaker:before,.timeline.timeline-left .timeline-breaker:after,.timeline.timeline-left .timeline-breaker:before {
    left: 20px
}

.timeline-left .timeline-item,.timeline-left .timeline-item.even,.timeline-left .timeline-item.right,.timeline.timeline-left .timeline-item,.timeline.timeline-left .timeline-item.even,.timeline.timeline-left .timeline-item.right {
    float: none;
    clear: both;
    width: 92%;
    margin-left: 25px;
    margin-right: 0;
    margin-top: 40px;
    left: auto;
    right: auto
}

.timeline-left .timeline-item.even:after,.timeline-left .timeline-item.even:before,.timeline-left .timeline-item.right:after,.timeline-left .timeline-item.right:before,.timeline-left .timeline-item:after,.timeline-left .timeline-item:before,.timeline.timeline-left .timeline-item.even:after,.timeline.timeline-left .timeline-item.even:before,.timeline.timeline-left .timeline-item.right:after,.timeline.timeline-left .timeline-item.right:before,.timeline.timeline-left .timeline-item:after,.timeline.timeline-left .timeline-item:before {
    right: auto;
    left: -20px;
    margin-left: 0;
    top: 20px
}

.timeline-left .timeline-item.even:before,.timeline-left .timeline-item.right:before,.timeline-left .timeline-item:before,.timeline.timeline-left .timeline-item.even:before,.timeline.timeline-left .timeline-item.right:before,.timeline.timeline-left .timeline-item:before {
    font-family: FontAwesome;
    font-style: normal;
    speak: none;
    display: inline-block;
    content: '\F0D9'
}

.timeline-left .timeline-item.even:after,.timeline-left .timeline-item.right:after,.timeline-left .timeline-item:after,.timeline.timeline-left .timeline-item.even:after,.timeline.timeline-left .timeline-item.right:after,.timeline.timeline-left .timeline-item:after {
    left: -40px
}

.timeline-left .pagination,.timeline.timeline-left .pagination {
    background: 0 0;
    padding-left: 1em;
    padding-right: 1em
}

.timeline-left .timeline-breaker.timeline-breaker-bottom,.timeline-left .timeline-breaker.timeline-breaker-middle,.timeline.timeline-left .timeline-breaker.timeline-breaker-bottom,.timeline.timeline-left .timeline-breaker.timeline-breaker-middle {
    top: auto;
    margin-bottom: 0
}

.timeline-right,.timeline.timeline-right {
    background-position: right top;
    margin-right: 20px;
    text-align: right
}

.timeline-right .timeline-marker,.timeline.timeline-right .timeline-marker {
    margin-left: 0;
    margin-right: -5px;
    float: right
}

.timeline-right .timeline-breaker,.timeline.timeline-right .timeline-breaker {
    margin-left: 0;
    margin-right: -20px;
    float: right
}

.timeline-right .timeline-breaker:after,.timeline-right .timeline-breaker:before,.timeline.timeline-right .timeline-breaker:after,.timeline.timeline-right .timeline-breaker:before {
    right: 12px;
    left: auto
}

.timeline-right .timeline-item,.timeline-right .timeline-item.even,.timeline-right .timeline-item.right,.timeline.timeline-right .timeline-item,.timeline.timeline-right .timeline-item.even,.timeline.timeline-right .timeline-item.right {
    float: right;
    clear: both;
    width: 92%;
    margin-left: 0;
    margin-right: 25px;
    margin-top: 40px;
    left: auto;
    right: 0
}

.timeline-right .timeline-item.even:after,.timeline-right .timeline-item.even:before,.timeline-right .timeline-item.right:after,.timeline-right .timeline-item.right:before,.timeline-right .timeline-item:after,.timeline-right .timeline-item:before,.timeline.timeline-right .timeline-item.even:after,.timeline.timeline-right .timeline-item.even:before,.timeline.timeline-right .timeline-item.right:after,.timeline.timeline-right .timeline-item.right:before,.timeline.timeline-right .timeline-item:after,.timeline.timeline-right .timeline-item:before {
    left: auto;
    right: -20px;
    margin-right: 0;
    top: 20px
}

.timeline-right .timeline-item.even:before,.timeline-right .timeline-item.right:before,.timeline-right .timeline-item:before,.timeline.timeline-right .timeline-item.even:before,.timeline.timeline-right .timeline-item.right:before,.timeline.timeline-right .timeline-item:before {
    font-family: FontAwesome;
    font-style: normal;
    speak: none;
    display: inline-block;
    content: '\F0DA'
}

.timeline-right .timeline-item.even:after,.timeline-right .timeline-item.right:after,.timeline-right .timeline-item:after,.timeline.timeline-right .timeline-item.even:after,.timeline.timeline-right .timeline-item.right:after,.timeline.timeline-right .timeline-item:after {
    right: -40px;
    left: auto
}

.timeline-right .pagination,.timeline.timeline-right .pagination {
    background: 0 0;
    padding-left: 1em;
    padding-right: 1em
}

.timeline-right .timeline-breaker.timeline-breaker-bottom,.timeline-right .timeline-breaker.timeline-breaker-middle,.timeline.timeline-right .timeline-breaker.timeline-breaker-bottom,.timeline.timeline-right .timeline-breaker.timeline-breaker-middle {
    top: auto;
    margin-bottom: 0
}

@media (min-width: 768px) {
    .timeline.timeline-left .timeline-item,.timeline.timeline-left .timeline-item.even,.timeline.timeline-left .timeline-item.right,.timeline.timeline-right .timeline-item,.timeline.timeline-right .timeline-item.even,.timeline.timeline-right .timeline-item.right {
        width:96%
    }
}

#navigation {
    z-index: 99999;
    position: relative;
    color: #eee;
    color: rgba(255,255,255,.7)
}

#navigation:after,#navigation:before {
    content: " ";
    display: table
}

#navigation:after {
    clear: both
}

.header-hidden {
    background: #4c968a;
    -webkit-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
    height: 0;
    overflow: hidden
}

.header-hidden.show-hide-open {
    padding: 15px 0
}

.header-hidden a {
    color: #fff
}

.header-hidden h1,.header-hidden h3,.header-hidden h4,.header-hidden h5,.header-hidden h6 {
    font-weight: 600
}

.header-upper {
    background: #55a79a;
    position: relative;
    padding: 5px 0
}

.header-upper .user-menu {
    padding: 0;
    margin-top: 2px
}

.header-upper .user-menu a.btn {
    text-transform: uppercase;
    font-size: 11px;
    padding: 0 10px 0 0;
    color: #f4f4f4
}

.header-upper .user-menu a.btn: hover {
    color:#fff
}

.header-upper .user-menu a.btn: first-child {
    padding-left:0
}

.header-upper .user-menu .fa {
    font-size: 16px
}

.header-upper .user-menu .btn-group {
    border-left: 1px solid #f4f4f4;
    padding-left: 5px;
    padding-right: 5px
}

.header-upper .user-menu .btn-group:first-child {
    border-left: none;
    padding-left: 0
}

.header-upper .user-menu .login-mobile {
    display: block
}

.header-upper .user-menu .login-mobile .fa {
    vertical-align: middle;
    line-height: 1;
    display: block
}

.header-upper .user-menu .login,.header-upper .user-menu .signup {
    display: none
}

.search-form-tigger {
    font-size: 18px;
    color: #fff;
    background: #242424;
    padding: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    display: block;
    height: 32px;
    width: 32px;
    line-height: 26px;
    text-align: center;
    margin-top: 20px;
    margin-left: 10px
}

.search-form-tigger.open,.search-form-tigger:hover {
    background: #55a79a;
    color: #fff;
    cursor: pointer;
    text-decoration: none
}

@media screen and (min-width: 768px) {
    .search-form-tigger {
        margin-top:10px
    }
}

.header-search {
    height: 0;
    overflow: hidden;
    background: #404040
}

.header-search.open {
    height: auto
}

.header-search form {
    padding-top: .5em;
    padding-bottom: .5em;
    position: relative
}

.header-search form .btn {
    position: absolute;
    right: 50px;
    top: 0;
    bottom: 0;
    padding: 5px 10px;
    line-height: 1;
    width: 50px;
    outline: 0;
    background: 0 0;
    font-size: 36px;
    color: #fff
}

.header-search form .btn.active: focus,.header-search form .btn:active:focus,.header-search form .btn:focus {
    outline:0
}

.header-search form .close-btn {
    right: 0;
    display: block;
    font-size: 20px
}

.header-search form input {
    padding: 0 150px 0 0;
    background: 0 0;
    height: 50px;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-size: 30px;
    font-weight: 100;
    box-shadow: none;
    margin: 0
}

.header-search form input: :-moz-placeholder {
    color:#fff;
    opacity: 1
}

.header-search form input: -ms-input-placeholder {
    color:#fff
}

.header-search form input: :-webkit-input-placeholder {
    color:#fff
}

.header-search form input: focus {
    color:#fff;
    box-shadow: none
}

.header {
    background: #fff;
    background: rgba(255,255,255,.9);
    border-bottom: 1px solid #55a79a;
    color: #1b1b1b;
    height: auto;
    padding: 20px 0 15px
}

.header .navbar-brand {
    font-weight: 400;
    font-family: Rambla,Arial,serif;
    padding: 0;
    margin: 6px 0 0;
    display: block;
    border: none;
    text-shadow: none;
    line-height: 1;
    color: #55a79a;
    max-width: none;
    text-align: center;
    float: none;
    height: auto
}

.header .navbar-brand h1 {
    font-size: 40px;
    font-weight: 400;
    margin: 0;
    padding: 0;
    line-height: 1;
    font-family: Rambla,Arial,serif
}

.header .navbar-brand h1 span {
    color: #464646;
    color: rgba(27,27,27,.8);
    font-weight: 700
}

.header .navbar-brand:hover {
    text-decoration: none;
    cursor: pointer
}

.header .slogan {
    color: #888;
    font-size: 14px
}

.header .search-form-tigger {
    float: right
}

.navbar {
    color: #eee;
    color: rgba(255,255,255,.7);
    margin-bottom: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    border: none;
    background: 0 0;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    -webkit-box-shadow: none;
    box-shadow: none
}

.js-clingify-placeholder {
    height: auto!important
}

.show-hide-open {
    height: auto!important;
    min-height: 40px;
    max-height: 40000px
}

.show-hide-close {
    height: 0;
    overflow: hidden
}

#header-hidden-link {
    width: 32px;
    float: right;
    margin-top: -5px
}

#header-hidden-link a.show-hide>i: before {
    content:"\f107";
    font-family: FontAwesome;
    font-size: 20px;
    font-weight: 400;
    font-style: normal
}

#header-hidden-link a.show-hide.open {
    text-decoration: none
}

#header-hidden-link a.show-hide.open>i: before {
    content:"\f106"
}

#header-hidden-link a.show-hide,#header-hidden-link a.top-link {
    font-size: 0;
    line-height: 1;
    background: #4c968a;
    padding: 0 8px;
    -webkit-border-radius: 0 0 3px 3px;
    -moz-border-radius: 0 0 3px 3px;
    border-radius: 0 0 3px 3px;
    height: 22px;
    display: block;
    text-align: center;
    text-decoration: none;
    color: transparent
}

#header-hidden-link a.show-hide i,#header-hidden-link a.top-link i {
    color: #eee;
    color: rgba(255,255,255,.8);
    font-size: 16px;
    line-height: 1
}

#header-hidden-link a.show-hide: hover,#header-hidden-link a.top-link:hover {
    text-decoration:none
}

#header-hidden-link a.show-hide: hover i,#header-hidden-link a.top-link:hover i {
    color:#fff
}

.colour-switcher a {
    text-indent: -10000px;
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid #ccc;
    border: 3px solid rgba(255,255,255,.5)
}

.colour-switcher a.active,.colour-switcher a: hover {
    border:3px solid #fff
}

.colour-switcher p {
    margin-top: 1em
}

.colour-switcher .green {
    background: #55a79a
}

.colour-switcher .red {
    background: #be3e1d
}

.colour-switcher .blue {
    background: #00adbb
}

.colour-switcher.page a {
    width: 200px;
    height: 200px;
    border: 3px solid rgba(27,27,27,.2)
}

.colour-switcher.page a.active,.colour-switcher.page a: hover {
    border:3px solid rgba(27,27,27,.6)
}

.social-media {
    float: right;
    margin-right: 10px
}

.social-media a {
    text-decoration: none;
    display: inline-block;
    margin-right: 0;
    color: #f4f4f4;
    font-size: 24px;
    line-height: 1
}

.social-media a .fa {
    vertical-align: top;
    line-height: inherit;
    display: block
}

.social-media a: hover {
    text-decoration:none;
    color: #fff
}

.social-media a: hover i {
    -webkit-animation:tada;
    -o-animation: tada;
    animation: tada;
    -webkit-animation-name: tada;
    -moz-animation-name: tada;
    -o-animation-name: tada;
    animation-name: tada;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both
}

#login-modal .form-group,#signup-modal .form-group {
    margin-bottom: 10px
}

.header-upper .btn-group,.language-menu {
    text-align: left
}

.header-upper .btn-group .flag-icon,.language-menu .flag-icon {
    margin-right: 4px
}

.header-upper .btn-group .dropdown-toggle,.language-menu .dropdown-toggle {
    padding: 5px!important;
    margin-top: -5px;
    margin-bottom: -5px
}

.header-upper .btn-group .dropdown-toggle .flag-icon,.language-menu .dropdown-toggle .flag-icon {
    display: inline-block!important;
    margin-right: 0
}

.header-upper .btn-group .dropdown-menu,.language-menu .dropdown-menu {
    margin-top: 5px!important;
    border: none!important
}

.header-upper .btn-group .dropdown-menu>li>a,.language-menu .dropdown-menu>li>a {
    padding: 5px 10px
}

.header-upper .btn-group.open .dropdown-toggle,.language-menu.open .dropdown-toggle {
    color: #333!important;
    text-decoration: none!important
}

@media (min-width: 768px) {
    #navigation .navbar-brand,#navigation .slogan {
        float:left
    }

    #navigation .slogan {
        margin: 8px 0 0 1em;
        padding: 12px 0 8px 1em;
        border-left: 1px solid #e6e6e6;
        float: left
    }

    #navigation .navbar {
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        border-radius: 3px
    }

    #navigation .navbar-full-width .navbar {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0
    }

    #navigation .user-menu {
        padding: 0
    }

    .social-media {
        float: right;
        margin-right: 1em
    }

    .header-upper {
        background: #55a79a;
        position: relative
    }

    .header-upper .user-menu {
        float: left
    }

    .header-upper .user-menu a.btn {
        padding-right: 20px
    }

    .header-upper .user-menu .login-mobile {
        display: none
    }

    .header-upper .user-menu .login,.header-upper .user-menu .signup {
        display: inline-block
    }
}

@media screen and (min-width: 768px) {
    #login-modal .modal-dialog,#signup-modal .modal-dialog {
        max-width:350px
    }

    #signup-modal .modal-dialog {
        max-width: 450px
    }

    .header-upper .btn-group .dropdown-toggle,.language-menu .dropdown-toggle {
        padding: 5px 14px!important
    }
}

@media screen and (min-width: 992px) {
    .header .navbar-collapse {
        float:right
    }
}

#highlighted {
    background-image: -webkit-linear-gradient(top,#fff 0,#e6e6e6 100%);
    background-image: -o-linear-gradient(top,#fff 0,#e6e6e6 100%);
    background-image: linear-gradient(to bottom,#fff 0,#e6e6e6 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);
    border-bottom: 1px solid rgba(27,27,27,.2);
    border-top: none;
    -webkit-transition: all .4s ease-out;
    -o-transition: all .4s ease-out;
    transition: all .4s ease-out;
    color: #1b1b1b
}

#highlighted:after,#highlighted:before {
    content: " ";
    display: table
}

#highlighted:after {
    clear: both
}

#highlighted.no-bg {
    background: 0 0
}

#highlighted .inner {
    background: url(/img/bg_diamond.png) left bottom repeat-x
}

#highlighted ul.nav-pills {
    margin: 0
}

#content {
    padding: 30px 0
}

body.page-translucent,html.page-translucent {
    background: 0 0;
    background: rgba(255,255,255,.7)
}

#content-below {
    padding: 15px 0;
    border-top: 1px solid #cdcdcd;
    background: #e6e6e6
}

.upsell {
    text-align: center
}

.upsell .title {
    display: inline-block;
    padding: 0 .5em;
    margin: 0
}

.upsell .title small {
    display: block
}

.upsell p {
    margin: 0;
    padding: .5em 0 0
}

.sidebar .block {
    margin-bottom: 2em
}

.sidebar ul.big-list {
    font-size: 1em
}

.section-menu ul.nav-list {
    padding: 2em 0;
    margin-left: 0
}

.section-menu ul.nav-list li.nav-header {
    padding-left: 5px;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(255,255,255,.5);
    color: #999;
    font-weight: 700;
    font-size: 11px
}

.section-menu ul.nav-list li a {
    color: #494949;
    color: rgba(27,27,27,.7);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    font-weight: 700;
    font-size: 18px;
    border: 1px solid #e6e6e6;
    border-top: none;
    margin: 0 -1px 0 3px;
    -webkit-box-shadow: 1px 1px 1px #fff;
    box-shadow: 1px 1px 1px #fff;
    background: #fafafa;
    text-shadow: none;
    padding: 8px 15px;
    position: relative
}

.section-menu ul.nav-list li a.first {
    border-top: 1px solid #e6e6e6
}

.section-menu ul.nav-list li a: hover {
    background:#f0f0f0
}

.section-menu ul.nav-list li a: hover i {
    color:#55a79a
}

.section-menu ul.nav-list li a i {
    font-size: 22px;
    position: absolute;
    top: 20px;
    right: 20px;
    color: #e6e6e6;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg)
}

.section-menu ul.nav-list li a small {
    display: block;
    font-weight: 400;
    color: rgba(27,27,27,.5)
}

.section-menu ul.nav-list li.active>a,.section-menu ul.nav-list li.active>a: hover {
    border-left:4px solid #55a79a;
    margin: 0 -1px 0 0;
    background: #fff;
    color: #55a79a
}

.section-menu ul.nav-list li.active>a i,.section-menu ul.nav-list li.active>a: hover i {
    color:#55a79a
}

@media (min-width: 992px) {
    .sidebar {
        margin:0
    }

    .sidebar.sidebar-right .divider,.sidebar.sidebar-right .inner {
        border-left: 1px solid #e6e6e6;
        padding-left: 20px
    }

    .sidebar.sidebar-left .divider,.sidebar.sidebar-left .inner {
        border-right: 1px solid #e6e6e6;
        padding-right: 20px
    }

    .section-menu ul.nav-list {
        border-right: 1px solid #e6e6e6
    }

    .section-menu ul.nav-list li a i {
        right: 10px;
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg)
    }

    .section-menu ul.nav-list li.active>a,.section-menu ul.nav-list li.active>a:hover {
        border-right-color: #fff
    }
}

#footer {
    font-size: 14px;
    background: #333;
    min-height: 200px;
    padding: 30px 0;
    color: #a2a2a2;
    color: rgba(255,255,255,.6);
    border-top: 2px solid #55a79a
}

#footer h3 {
    font-size: 1.2em;
    color: #ccc;
    color: rgba(255,255,255,.8);
    line-height: 1
}

#footer .media-icons a {
    text-decoration: none;
}

#footer a {
    color: #ccc;
    color: rgba(255,255,255,.8)
}

#footer .block {
    margin-bottom: 2em
}

#footer .inline {
    display: inline-block
}

#footer .contact-block p {
    margin-bottom: .2em
}

#footer .contact-block i {
    padding-right: .5em
}

#footer #toplink {
    margin-bottom: -25px;
    text-align: center
}

#footer #toplink a: hover {
    text-decoration:none;
    color: #fff
}

#footer #toplink i {
    color: #55a79a
}

#footer .subfooter {
    border-top: 1px dotted #3e3e3e;
    border-top: 1px dotted rgba(255,255,255,.1);
    margin-top: 1em;
    padding-top: 1em
}

#footer .container {
    position: relative
}

@media (min-width: 992px) {
    #footer .footer-menu {
        float:right!important
    }
}

.btn {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.428571429;
    border-radius: 1px
}

.btn span.caret {
    display: inline-block
}

.btn-block {
    display: block
}

.btn-group-lg>.btn,.btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33;
    border-radius: 2px
}

.btn-group-sm>.btn,.btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 1px
}

.btn-group-xs>.btn,.btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 1px
}

.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:not(:first-child):not(:last-child)>.btn {
    border-radius: 0
}

.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0
}

.btn-group>.btn-group:last-child>.btn:first-child {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0
}

.modal {
    z-index: 1040000
}

.modal-dialog {
    z-index: 1040010
}

.modal-content {
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
    box-shadow: 0 3px 9px rgba(0,0,0,.5);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

.modal-backdrop {
    z-index: 1039990;
    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;
    min-height: 16.43px
}

.modal-title {
    margin: 0
}

.modal-body {
    padding: 15px
}

.modal-footer {
    margin-top: 0;
    padding: 14px 15px 15px
}

@media screen and (min-width: 768px) {
    .modal-dialog {
        padding-top:5%;
        padding-bottom: 30px
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
        box-shadow: 0 5px 15px rgba(0,0,0,.5)
    }
}

.tabbable:after,.tabbable:before {
    content: " ";
    display: table
}

.tabbable:after {
    clear: both
}

.tabbable.row {
    margin-left: 0;
    margin-right: 0
}

ul.nav-tabs {
    margin-bottom: 1em;
    border-bottom: none
}

ul.nav-tabs li,ul.nav-tabs li.open {
    float: none
}

ul.nav-tabs li a,ul.nav-tabs li a: active,ul.nav-tabs li a:focus,ul.nav-tabs li a:hover,ul.nav-tabs li.open a,ul.nav-tabs li.open a:active,ul.nav-tabs li.open a:focus,ul.nav-tabs li.open a:hover {
    border-radius:0!important;
    border: 1px solid #e6e6e6;
    margin-right: 0;
    background: #fff
}

ul.nav-tabs li a: hover,ul.nav-tabs li.open a:hover {
    background:#f7f7f7
}

ul.nav-tabs li.open: last-child,ul.nav-tabs li:last-child {
    margin-bottom:0;
    border-bottom: none
}

ul.nav-tabs li.active a,ul.nav-tabs li.active a: hover,ul.nav-tabs li.open.active a,ul.nav-tabs li.open.active a:hover {
    color:#55a79a;
    border: 1px solid #e6e6e6;
    border-top: 4px solid #55a79a;
    border-radius: 0!important
}

ul.nav-tabs li.open a,ul.nav-tabs li.open a: active,ul.nav-tabs li.open a:focus,ul.nav-tabs li.open a:hover {
    background:#f7f7f7
}

ul.nav-tabs li.open.active a,ul.nav-tabs li.open.active a: active,ul.nav-tabs li.open.active a:focus,ul.nav-tabs li.open.active a:hover {
    background:#fff
}

.vertical-tabs ul.nav-stacked {
    margin-right: 0;
    border-bottom: 0;
    border-right: none
}

.vertical-tabs ul.nav-stacked li {
    margin-right: -15px
}

.vertical-tabs ul.nav-stacked li a {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    position: relative
}

.vertical-tabs ul.nav-stacked li a i {
    font-size: 22px;
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -10px;
    color: #e6e6e6
}

.vertical-tabs ul.nav-stacked li a small {
    display: block;
    font-weight: 400
}

.vertical-tabs ul.nav-stacked li a: hover i {
    color:#55a79a
}

.vertical-tabs ul.nav-stacked li.active a,.vertical-tabs ul.nav-stacked li.active a: hover {
    border-top:1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    border-left: 4px solid #55a79a
}

.vertical-tabs ul.nav-stacked li.active a i,.vertical-tabs ul.nav-stacked li.active a: hover i {
    color:#55a79a
}

.vertical-tabs .tab-content {
    margin-left: -15px;
    margin-right: -15px
}

.bold-tabs ul li a {
    font-weight: 700;
    font-size: 18px;
    color: rgba(27,27,27,.8)
}

.bold-tabs ul li a i {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg)
}

.bold-tabs ul li a small {
    display: block;
    font-weight: 400
}

.bold-tabs ul li a: hover i {
    color:#55a79a
}

@media (min-width: 768px) {
    ul.nav-tabs {
        border-bottom:1px solid #e6e6e6
    }

    ul.nav-tabs li,ul.nav-tabs li.open {
        float: left;
        margin-right: 1px
    }

    ul.nav-tabs li a,ul.nav-tabs li a:focus,ul.nav-tabs li a:hover,ul.nav-tabs li.open a,ul.nav-tabs li.open a:focus,ul.nav-tabs li.open a:hover {
        border: none;
        border-top: 4px solid transparent
    }

    ul.nav-tabs li a:focus:last-child,ul.nav-tabs li a:hover:last-child,ul.nav-tabs li a:last-child,ul.nav-tabs li.open a:focus:last-child,ul.nav-tabs li.open a:hover:last-child,ul.nav-tabs li.open a:last-child {
        margin-bottom: 0;
        border-bottom: none
    }

    ul.nav-tabs li.active,ul.nav-tabs li.open.active {
        bottom: -1px
    }

    ul.nav-tabs li.active a,ul.nav-tabs li.active a:hover,ul.nav-tabs li.open.active a,ul.nav-tabs li.open.active a:hover {
        border-top: 4px solid #55a79a;
        border-right: 1px solid #e6e6e6;
        border-left: 1px solid #e6e6e6;
        border-bottom: none
    }

    ul.nav-tabs li.dropdown .dropdown-menu {
        margin-top: 2px;
        min-width: 160px
    }

    .vertical-tabs ul.nav-tabs {
        display: block;
        border-bottom: none;
        border-right: 1px solid #e6e6e6
    }

    .vertical-tabs ul.nav-tabs li,.vertical-tabs ul.nav-tabs li.open {
        float: none;
        margin-right: -15px
    }

    .vertical-tabs ul.nav-tabs li a,.vertical-tabs ul.nav-tabs li a:focus,.vertical-tabs ul.nav-tabs li.open a,.vertical-tabs ul.nav-tabs li.open a:focus {
        border-right: none;
        border-top: 1px solid transparent;
        border-left: 4px solid transparent
    }

    .vertical-tabs ul.nav-tabs li a i,.vertical-tabs ul.nav-tabs li a:focus i,.vertical-tabs ul.nav-tabs li.open a i,.vertical-tabs ul.nav-tabs li.open a:focus i {
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }

    .vertical-tabs ul.nav-tabs li.active,.vertical-tabs ul.nav-tabs li.open.active {
        bottom: 0
    }

    .vertical-tabs ul.nav-tabs li.active a,.vertical-tabs ul.nav-tabs li.active a:hover,.vertical-tabs ul.nav-tabs li.open.active a,.vertical-tabs ul.nav-tabs li.open.active a:hover {
        border-left: 4px solid #55a79a;
        border-top: 1px solid #e6e6e6;
        border-bottom: 1px solid #e6e6e6;
        border-right: none
    }

    .vertical-tabs ul.nav-tabs li.active {
        margin-right: -16px
    }

    .vertical-tabs ul.nav-tabs li.dropdown .dropdown-menu {
        min-width: 100%;
        margin-top: 1px
    }

    .vertical-tabs .tab-content {
        margin-right: auto;
        margin-left: auto
    }
}

.pagination {
    display: block
}

.pagination:after,.pagination:before {
    content: " ";
    display: table
}

.pagination:after {
    clear: both
}

.pagination>li>a,.pagination>li>span {
    color: #55a79a
}

.pagination>li>a: focus,.pagination>li>a:hover,.pagination>li>span:focus,.pagination>li>span:hover {
    color:#4c968a
}

.pagination>.active>a,.pagination>.active>a: focus,.pagination>.active>a:hover,.pagination>.active>span,.pagination>.active>span:focus,.pagination>.active>span:hover {
    background:#55a79a;
    border-color: #55a79a
}

.nav-tabs>li.dropdown {
    position: relative
}

.nav-tabs>li.dropdown .dropdown-menu {
    box-shadow: none;
    border: 1px solid #e6e6e6;
    margin-top: 1px;
    padding: 0
}

.nav-tabs>li.dropdown .dropdown-menu: before {
    content:'';
    display: inline-block;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #ccc;
    border-bottom-color: rgba(0,0,0,.15);
    position: absolute;
    top: -7px;
    left: 12px
}

.nav-tabs>li.dropdown .dropdown-menu: after {
    content:'';
    display: inline-block;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    position: absolute;
    top: -6px;
    left: 13px
}

.nav-tabs>li.dropdown .dropdown-menu li {
    margin-right: 0!important;
    border-bottom: none;
    bottom: 0!important;
    margin-bottom: 0!important;
    float: none!important
}

.nav-tabs>li.dropdown .dropdown-menu li a {
    border: none;
    border-bottom: 1px solid #e6e6e6;
    background: #fff;
    color: rgba(27,27,27,.8);
    padding: 5px 8px!important
}

.nav-tabs>li.dropdown .dropdown-menu li a: before {
    font-family:FontAwesome;
    font-size: 10px;
    color: rgba(27,27,27,.6);
    width: 30px;
    height: 30px;
    content: "\f0da";
    padding-right: 10px
}

.nav-tabs>li.dropdown .dropdown-menu li a: last-child {
    margin:0!important;
    border-bottom: 1px solid #e6e6e6
}

.nav-tabs>li.dropdown .dropdown-menu li a: hover,.nav-tabs>li.dropdown .dropdown-menu li.active a,.nav-tabs>li.dropdown .dropdown-menu li.open a {
    background:#f7f7f7
}

.nav-tabs>li.dropdown .dropdown-menu .open>a,.nav-tabs>li.dropdown .dropdown-menu .open>a: focus,.nav-tabs>li.dropdown .dropdown-menu .open>a:hover {
    border-color:#e6e6e6
}

.nav-tabs>li.dropdown.active .dropdown-menu li a {
    border: none!important
}

.tab-content-bordered {
    border: 1px solid #e6e6e6;
    border-top: none;
    padding: 15px;
    margin-top: -1em
}

.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-default a {
    color: #333
}

.panel-default a: hover {
    color:#666
}

.panel-primary {
    border-color: #55a79a
}

.panel-primary>.panel-heading {
    color: #fff;
    background-color: #87c2b8;
    border-color: #55a79a
}

.panel-primary>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #55a79a
}

.panel-primary>.panel-heading .badge {
    color: #87c2b8;
    background-color: #fff
}

.panel-primary>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #55a79a
}

.panel-primary a {
    color: #fff
}

.panel-primary a: hover {
    color:#f2f2f2
}

.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-success a {
    color: #3c763d
}

.panel-success a: hover {
    color:#2b542c
}

.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-info a {
    color: #31708f
}

.panel-info a: hover {
    color:#245269
}

.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-warning a {
    color: #8a6d3b
}

.panel-warning a: hover {
    color:#66512c
}

.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
}

.panel-danger a {
    color: #a94442
}

.panel-danger a: hover {
    color:#843534
}

.panel-heading.panel-heading-clear {
    background: 0 0!important
}

.panel.panel-noborder {
    border: none!important
}

.panel-group .panel+.panel {
    margin-top: 5px
}

.panel-group .panel {
    box-shadow: none
}

.panel-group .panel-heading {
    padding: 0
}

.panel-group .panel-heading .panel-title a,.panel-group .panel-heading a.panel-title {
    display: block;
    padding: 15px
}

.panel-group .panel-heading .panel-title a: after,.panel-group .panel-heading a.panel-title:after {
    font-family:FontAwesome;
    font-style: normal;
    speak: none;
    display: inline-block;
    content: '\f107';
    float: right;
    font-size: 22px;
    line-height: 18px;
    width: 22px;
    text-align: center
}

.panel-group .panel-heading .panel-title a.collapsed: after,.panel-group .panel-heading a.panel-title.collapsed:after {
    font-family:FontAwesome;
    font-style: normal;
    speak: none;
    display: inline-block;
    content: '\f105'
}

.panel-group .panel-heading .panel-title a: hover,.panel-group .panel-heading a.panel-title:hover {
    text-decoration:none
}

.panel-group .panel-heading.panel-heading-icon-left .panel-title a: after,.panel-group .panel-heading.panel-heading-icon-left a.panel-title:after {
    float:left;
    padding-right: .6em
}

.panel-group .panel-body {
    border: none!important;
    background: #fff
}

.panel-group.panel-group-list-style .panel+.panel {
    margin-top: 1px
}

.panel-group.panel-group-list-style .panel {
    border: none;
    border-bottom: 1px solid #ddd;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0
}

.panel-group.panel-group-list-style .panel-heading {
    padding: 0;
    background: 0 0
}

.panel-group.panel-group-list-style .panel-heading .panel-title a,.panel-group.panel-group-list-style .panel-heading a.panel-title {
    padding: 8px 15px
}

.panel-group.panel-group-list-style .panel-heading .panel-title a: after,.panel-group.panel-group-list-style .panel-heading a.panel-title:after {
    float:left;
    font-size: 14px;
    line-height: 22px;
    padding-right: .6em;
    color: #55a79a;
    width: 18px
}

.panel-group.panel-group-list-style .panel-body {
    padding: 4px 15px 15px
}

.progress {
    border-radius: 1px
}

.progress-bar {
    background-color: #55a79a
}

.progress-bar-success {
    background-color: #5cb85c
}

.progress-striped .progress-bar-success {
    background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)
}

.progress-bar-info {
    background-color: #5bc0de
}

.progress-striped .progress-bar-info {
    background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)
}

.progress-bar-warning {
    background-color: #f0ad4e
}

.progress-striped .progress-bar-warning {
    background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)
}

.progress-bar-danger {
    background-color: #d9534f
}

.progress-striped .progress-bar-danger {
    background-image: -webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: -o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
    background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)
}

.slider-wrapper {
    width: 100%;
    position: relative;
    padding: 0
}

.slide h1,.slide h2,.slide h3,.slide h4,.slide h5,.slide p {
    margin-top: 0;
    font-weight: 400
}

.flex-direction-nav a,.slider-appstrap-theme .tparrows {
    text-indent: 0;
    font-size: 0;
    text-align: center;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    bottom: 0;
    right: 0;
    background: 0 0;
    color: transparent;
    width: 50px;
    height: 100px;
    line-height: 100px;
    top: 50%;
    font-weight: 100;
    margin-top: -50px;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out
}

.flex-direction-nav a: hover,.slider-appstrap-theme .tparrows:hover {
    opacity:.01;
    filter: alpha(opacity=1)
}

.flex-direction-nav a: before,.slider-appstrap-theme .tparrows:before {
    content:'\f105';
    font-family: FontAwesome;
    font-size: 50px;
    font-weight: 700;
    color: #55a79a
}

.flex-direction-nav a.flex-next,.flex-direction-nav a.tp-rightarrow,.slider-appstrap-theme .tparrows.flex-next,.slider-appstrap-theme .tparrows.tp-rightarrow {
    right: 0;
    text-align: center
}

.flex-direction-nav a.flex-next: before,.flex-direction-nav a.tp-rightarrow:before,.slider-appstrap-theme .tparrows.flex-next:before,.slider-appstrap-theme .tparrows.tp-rightarrow:before {
    content:'\f105'
}

.flex-direction-nav a.flex-prev,.flex-direction-nav a.tp-leftarrow,.slider-appstrap-theme .tparrows.flex-prev,.slider-appstrap-theme .tparrows.tp-leftarrow {
    left: 0;
    right: auto
}

.flex-direction-nav a.flex-prev: before,.flex-direction-nav a.tp-leftarrow:before,.slider-appstrap-theme .tparrows.flex-prev:before,.slider-appstrap-theme .tparrows.tp-leftarrow:before {
    content:'\f104'
}

.flex-direction-nav a: hover,.slider-appstrap-theme .tparrows:hover {
    text-decoration:none
}

.slider-appstrap-theme .slider-wrapper:hover .tparrows,.slider-wrapper:hover .flex-direction-nav a {
    opacity: .7;
    filter: alpha(opacity=70)
}

.slider-appstrap-theme .slider-wrapper:hover .tparrows:hover,.slider-wrapper:hover .flex-direction-nav a: hover {
    opacity:1;
    filter: alpha(opacity=100)
}

.flex-control-nav,.slider-appstrap-theme .tp-bullets,.slider-appstrap-theme .tp-bullets.round,.slider-appstrap-theme .tp-bullets.simplebullets.round {
    position: absolute;
    bottom: 10px!important;
    right: 10px!important;
    left: auto!important;
    text-align: center;
    width: auto;
    line-height: 1;
    opacity: 1;
    filter: alpha(opacity=100);
    z-index: 300
}

.flex-control-nav li,.slider-appstrap-theme .tp-bullets li,.slider-appstrap-theme .tp-bullets.round li,.slider-appstrap-theme .tp-bullets.simplebullets.round li {
    margin: 0
}

.flex-control-nav .bullet,.flex-control-nav li a,.slider-appstrap-theme .tp-bullets .bullet,.slider-appstrap-theme .tp-bullets li a,.slider-appstrap-theme .tp-bullets.round .bullet,.slider-appstrap-theme .tp-bullets.round li a,.slider-appstrap-theme .tp-bullets.simplebullets.round .bullet,.slider-appstrap-theme .tp-bullets.simplebullets.round li a {
    margin: 0 3px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    height: 15px;
    width: 15px;
    background: #bbb
}

.flex-control-nav .bullet.flex-active,.flex-control-nav .bullet.selected,.flex-control-nav .bullet:hover,.flex-control-nav li a.flex-active,.flex-control-nav li a.selected,.flex-control-nav li a: hover,.slider-appstrap-theme .tp-bullets .bullet.flex-active,.slider-appstrap-theme .tp-bullets .bullet.selected,.slider-appstrap-theme .tp-bullets .bullet:hover,.slider-appstrap-theme .tp-bullets li a.flex-active,.slider-appstrap-theme .tp-bullets li a.selected,.slider-appstrap-theme .tp-bullets li a:hover,.slider-appstrap-theme .tp-bullets.round .bullet.flex-active,.slider-appstrap-theme .tp-bullets.round .bullet.selected,.slider-appstrap-theme .tp-bullets.round .bullet:hover,.slider-appstrap-theme .tp-bullets.round li a.flex-active,.slider-appstrap-theme .tp-bullets.round li a.selected,.slider-appstrap-theme .tp-bullets.round li a:hover,.slider-appstrap-theme .tp-bullets.simplebullets.round .bullet.flex-active,.slider-appstrap-theme .tp-bullets.simplebullets.round .bullet.selected,.slider-appstrap-theme .tp-bullets.simplebullets.round .bullet:hover,.slider-appstrap-theme .tp-bullets.simplebullets.round li a.flex-active,.slider-appstrap-theme .tp-bullets.simplebullets.round li a.selected,.slider-appstrap-theme .tp-bullets.simplebullets.round li a:hover {
    background:#55a79a
}

.slider-mini-nav .flex-control-nav,.slider-mini-nav .slider-appstrap-theme .tp-bullets,.slider-mini-nav .slider-appstrap-theme .tp-bullets.round,.slider-mini-nav .slider-appstrap-theme .tp-bullets.simplebullets.round {
    bottom: 5px!important;
    right: 5px!important
}

.slider-mini-nav .flex-control-nav .bullet,.slider-mini-nav .flex-control-nav li a,.slider-mini-nav .slider-appstrap-theme .tp-bullets .bullet,.slider-mini-nav .slider-appstrap-theme .tp-bullets li a,.slider-mini-nav .slider-appstrap-theme .tp-bullets.round .bullet,.slider-mini-nav .slider-appstrap-theme .tp-bullets.round li a,.slider-mini-nav .slider-appstrap-theme .tp-bullets.simplebullets.round .bullet,.slider-mini-nav .slider-appstrap-theme .tp-bullets.simplebullets.round li a {
    margin: 0 2px;
    height: 12px;
    width: 12px
}

.slider-boxed #highlighted,.slider-full-width #highlighted,.slider-full-width-behind #highlighted {
    background: 0 0
}

.slider-boxed #highlighted {
    border: none
}

.slider-boxed .navbar {
    -webkit-border-bottom-right-radius: 0!important;
    -webkit-border-bottom-left-radius: 0!important;
    -moz-border-radius-bottomright: 0!important;
    -moz-border-radius-bottomleft: 0!important;
    border-bottom-right-radius: 0!important;
    border-bottom-left-radius: 0!important
}

.slider-boxed .flexslider-wrapper,.slider-boxed .slider-wrapper {
    border: 1px solid rgba(27,27,27,.15);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin-top: 10px;
    -webkit-box-shadow: 1px 1px 10px rgba(27,27,27,.2);
    box-shadow: 1px 1px 10px rgba(27,27,27,.2)
}

.slider-boxed .slide-content {
    padding-top: 20px
}

.slider-full-width .slide-content {
    padding: 2em 0 0
}

@media (min-width: 992px) {
    .slider-full-width-behind #navigation {
        background:0 0!important
    }

    .slider-full-width-behind #highlighted {
        top: -160px;
        position: relative;
        margin-bottom: -160px
    }

    .slider-full-width-behind .slide-content {
        padding-top: 170px
    }
}

.flexslider {
    background: 0 0;
    padding: 0;
    list-style: none;
    margin: 0;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none
}

.flexslider .items>.item,.flexslider .slides>.slide {
    display: none;
    -webkit-backface-visibility: hidden
}

.slide {
    overflow: hidden;
    -webkit-transform: translateZ(0)
}

.slide .caption {
    padding: 5%;
    text-align: center
}

.slide .caption .btn {
    margin: 0
}

.slide .caption .inverse {
    background: #1b1b1b;
    color: #fff;
    padding: 5px;
    display: inline-block;
    -webkit-border-radius: 1px;
    -moz-border-radius: 1px;
    border-radius: 1px
}

.slide .caption .inverse a {
    color: rgba(255,255,255,.9)
}

.flexslider .slide img {
    width: auto;
    display: inline;
    max-width: 100%;
    height: auto!important
}

.slide-bg {
    background-position: center center;
    background-repeat: repeat
}

@media (min-width: 768px) {
    .slide .caption {
        text-align:left
    }
}

@media (max-width: 860px) {
    .flex-direction-nav {
        display:none
    }

    .flex-control-nav {
        bottom: 0
    }

    .flexslider {
        padding-bottom: 0
    }

    .flexslider .flex-control-nav {
        display: block
    }
}

@media (min-width: 992px) {
    .slide .caption {
        padding:5% 0
    }
}

.tp-banner {
    width: 100%;
    position: relative
}

.slider-appstrap-theme .tp-caption a {
    color: #55a79a
}

.slider-appstrap-theme .tp-caption a: hover {
    color:#4c968a
}

.slider-appstrap-theme .tp-bannertimer {
    background: #55a79a;
    height: 2px
}

.slider-appstrap-theme .tp-bannertimer.tp-bottom {
    bottom: -1px
}

.slider-revolution-full-width-behind .slide-content .tp-caption {
    margin: 0!important
}

@media (min-width: 992px) {
    .slider-revolution-full-width-behind #navigation {
        background:0 0!important
    }

    .slider-revolution-full-width-behind #highlighted {
        top: -160px;
        position: relative;
        margin-bottom: -160px
    }

    .slider-revolution-full-width-behind .slide-content .tp-caption {
        margin-top: 160px!important
    }
}

.quicksand-target {
    min-height: 300px;
    height: auto;
    width: auto!important;
    -webkit-transition: height .4s ease-out;
    -o-transition: height .4s ease-out;
    transition: height .4s ease-out
}

.bootstrap-switch {
    min-width: none
}

.bootstrap-switch>div>label,.bootstrap-switch>div>span {
    height: auto;
    line-height: 1;
    padding: 8px
}

.bootstrap-switch>div>span.bootstrap-switch-primary {
    background: #55a79a
}

.bootstrap-switch.bootstrap-switch-focused {
    border-color: #55a79a;
    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)
}

.has-backstretch .backstretch-overlay {
    background: 0 0;
    background: rgba(255,255,255,.7);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    z-index: -999998
}

.has-isotope,body.has-isotope {
    overflow-x: none!important
}

.owl-controls:after,.owl-controls:before {
    content: " ";
    display: table
}

.owl-controls:after {
    clear: both
}

.owl-controls .owl-buttons {
    float: right
}

.owl-controls .owl-pagination {
    float: left;
    display: none
}

.owl-controls .owl-buttons div {
    color: #fff;
    display: inline-block;
    zoom:1;margin: 0 1px;
    padding: 0;
    height: 30px;
    width: 30px;
    background: #1b1b1b;
    opacity: .2;
    filter: alpha(opacity=20);
    font-size: 0
}

.owl-controls .owl-buttons div: before {
    content:'\f105';
    font-family: FontAwesome;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    display: block;
    padding: 0;
    margin: 0
}

.owl-controls .owl-buttons div.owl-prev {
    left: 0
}

.owl-controls .owl-buttons div.owl-prev: before {
    content:'\f104'
}

.owl-controls .owl-buttons div.owl-next {
    right: 0
}

.owl-controls.clickable .owl-buttons div: hover {
    opacity:1;
    filter: alpha(opacity=100);
    text-decoration: none;
    background: #55a79a
}

.owl-controls .owl-page {
    display: inline-block;
    zoom:1}

.owl-controls .owl-page span {
    display: block;
    width: 12px;
    height: 12px;
    margin: 0 3px;
    opacity: .2;
    filter: alpha(opacity=20);
    background: #1b1b1b
}

.owl-controls .owl-page.active span,.owl-controls.clickable .owl-page: hover span {
    opacity:1;
    filter: alpha(opacity=100);
    background: #55a79a
}

.owl-controls .owl-page span.owl-numbers {
    height: auto;
    width: auto;
    color: #fff;
    padding: 2px 10px;
    font-size: 12px
}

.owl-item.loading {
    min-height: 150px;
    background: url(/img/misc/icon_loading.gif) center center no-repeat
}

@media (min-width: 992px) {
    .owl-controls .owl-pagination {
        display:block
    }
}

.mfp-bg {
    z-index: 100000
}

.mfp-wrap {
    z-index: 100001
}

.features .title {
    margin-top: 10px
}

.features .feature {
    margin-bottom: 2em
}

.features .feature:after,.features .feature:before {
    content: " ";
    display: table
}

.features .feature:after {
    clear: both
}

.features .feature img {
    background-image: -webkit-linear-gradient(top,#fafafa 0,#ebebeb 100%);
    background-image: -o-linear-gradient(top,#fafafa 0,#ebebeb 100%);
    background-image: linear-gradient(to bottom,#fafafa 0,#ebebeb 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffafafa', endColorstr='#ffebebeb', GradientType=0);
    border: 1px solid #e6e6e6;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px
}

.features .feature img: hover {
    background-image:-webkit-linear-gradient(top,#f5f5f5 0,#e0e0e0 100%);
    background-image: -o-linear-gradient(top,#f5f5f5 0,#e0e0e0 100%);
    background-image: linear-gradient(to bottom,#f5f5f5 0,#e0e0e0 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5', endColorstr='#ffe0e0e0', GradientType=0)
}

@media (min-width: 768px) {
    .features .feature {
        margin-bottom:1em
    }

    .features .feature.tab-pane {
        padding-left: 15px;
        padding-right: 15px
    }

    .features .feature.tab-pane img {
        min-width: 260px
    }
}

.pricing-stack .well {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    border: 1px solid #cdcdcd;
    padding: 10px;
    background: #fff;
    -webkit-box-shadow: 1px 1px 5px #cdcdcd;
    box-shadow: 1px 1px 5px #cdcdcd
}

.pricing-stack .well .title {
    margin: 10px 0 0;
    color: rgba(27,27,27,.8);
    font-size: 22px;
    text-shadow: 1px 1px 1px rgba(231,231,231,.8);
    text-align: center;
    font-weight: 400;
    text-transform: none
}

.pricing-stack .well .description {
    font-size: 12px;
    text-align: center
}

.pricing-stack .well .price {
    margin: 1em -14px;
    padding: 20px 0;
    text-shadow: none;
    color: #55a79a;
    display: block;
    border: 1px solid #cdcdcd;
    background: #fff;
    text-align: center;
    font-size: 16px;
    line-height: 1
}

.pricing-stack .well .price .fancy {
    font-size: 28px
}

.pricing-stack .well .price .digits {
    font-size: 32px;
    font-weight: 700
}

.pricing-stack .well ul.points li {
    border-bottom: 1px dotted rgba(180,180,180,.8);
    padding: .2em
}

.pricing-stack .well .btn {
    display: block;
    width: auto;
    margin: 20px auto 0
}

.pricing-stack .well.active {
    border-color: #55a79a;
    border-width: 1px;
    -webkit-box-shadow: 1px 2px 5px #cdcdcd;
    box-shadow: 1px 2px 5px #cdcdcd
}

.pricing-stack .well.active .title {
    font-size: 28px;
    text-transform: uppercase
}

.pricing-stack .well.active .price {
    background: repeat-x #55a79a;
    background-image: -webkit-linear-gradient(top,#55a79a 0,#65b1a5 100%);
    background-image: -o-linear-gradient(top,#55a79a 0,#65b1a5 100%);
    background-image: linear-gradient(to bottom,#55a79a 0,#65b1a5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff55a79a', endColorstr='#ff65b1a5', GradientType=0);
    border-color: #55a79a;
    color: #fff
}

.pricing-stack .well.active .btn {
    margin-top: 40px
}

.pricing-stack-compressed,.pricing-stack-compressed .well {
    text-align: center
}

.pricing-stack-compressed .well .price {
    padding: 8px 0;
    margin-left: 0;
    margin-right: 0
}

.pricing-stack-compressed .well .btn {
    display: inline-block
}

.pricing-table .pricing-table-features .title-hidden {
    margin-top: 90px;
    display: block
}

.pricing-table .pricing-table-features .title-hidden .title {
    display: none
}

.pricing-table .pricing-table-features .price {
    font-weight: 700;
    font-size: 22px
}

.pricing-table .well {
    padding: 1px
}

.pricing-table .well.active {
    margin-top: -10px!important
}

.pricing-table .well.active .title {
    height: 100px!important;
    padding-top: 40px!important
}

.pricing-table .well.active .sign-up-btn {
    padding-bottom: 25px!important
}

.pricing-table .well.active .price {
    margin-left: -1px!important;
    margin-right: -1px!important
}

.pricing-table .pricing-table-features-list {
    margin: 0;
    padding: 0;
    list-style: none
}

.pricing-table .pricing-table-features-list li {
    padding: 10px 20px;
    min-height: 40px;
    border: none!important;
    border-bottom: 1px solid #e3e3e3!important;
    text-align: right
}

.pricing-table .pricing-table-features-list li.row-odd,.pricing-table .pricing-table-features-list li: nth-child(odd) {
    background:#f3f3f3
}

.pricing-table .pricing-table-features-list li.last,.pricing-table .pricing-table-features-list li: last-child {
    border-bottom:none!important
}

.pricing-table .pricing-table-features-list li.title {
    margin: 0;
    padding-top: 30px!important;
    padding-bottom: 30px!important;
    font-size: 22px!important;
    height: 90px;
    background: #fff
}

.pricing-table .pricing-table-features-list li.price {
    margin: 0;
    padding: 16px 20px;
    height: 60px;
    text-align: right
}

.pricing-table .pricing-table-features-list li.price .digits {
    font-size: 22px
}

.pricing-table .pricing-table-features-list li.sign-up-btn {
    padding: 15px
}

.pricing-table .pricing-table-features-list li.sign-up-btn .btn {
    margin-top: 0
}

.pricing-table .pricing-table-plan .pricing-table-features-list li {
    text-align: center
}

@media (min-width: 768px) {
    .pricing-stack .well {
        min-height:380px
    }

    .pricing-stack .well.active .btn {
        margin-top: 20px
    }

    .pricing-stack-overlap {
        margin-left: 15px;
        margin-right: 15px
    }

    .pricing-stack-overlap .well {
        margin-left: -16px;
        margin-right: -15px;
        z-index: 1;
        margin-top: 15px
    }

    .pricing-stack-overlap .well.active {
        z-index: 2;
        position: relative;
        margin-top: 0
    }

    .pricing-stack-overlap .well.active .btn {
        margin-top: 40px
    }

    .pricing-stack-overlap .well .price {
        margin-left: 0;
        margin-right: 0
    }

    .pricing-stack-compressed {
        width: 80%;
        margin-right: auto;
        margin-left: auto
    }

    .pricing-table {
        margin-left: 15px;
        margin-right: 15px
    }

    .pricing-table .well {
        margin-left: -16px;
        margin-right: -15px
    }

    .pricing-table .well.active {
        z-index: 2;
        position: relative;
        margin-top: 0
    }
}

@media (min-width: 992px) {
    .pricing-stack .well {
        min-height:10px
    }
}

.page-customers .tabbable>ul.nav-tabs li a,.page-customers ul.nav-tabs li a {
    padding-right: 30px;
    padding-left: 30px
}

.customers {
    margin-top: 2em
}

.customers li.customer {
    margin: 0 0 6em;
    height: auto;
    float: left;
    padding-left: 15px;
    padding-right: 15px
}

.customers li.customer a .inner-wrapper {
    padding: 15px;
    border: 1px solid #d9d9d9;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    display: block;
    position: relative;
    background-image: -webkit-linear-gradient(top,#fff 0,#ebebeb 100%);
    background-image: -o-linear-gradient(top,#fff 0,#ebebeb 100%);
    background-image: linear-gradient(to bottom,#fff 0,#ebebeb 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffebebeb', GradientType=0)
}

.customers li.customer a span {
    display: block
}

.customers li.customer a .img-wrapper {
    text-align: center;
    height: 100px;
    display: block
}

.customers li.customer a .img-wrapper img {
    max-height: 80px;
    max-width: 100%;
    margin: 1em auto
}

.customers li.customer a .title {
    text-transform: none;
    font-weight: 700
}

.customers li.customer a .description {
    color: rgba(27,27,27,.8)
}

.customers li.customer a: hover {
    text-decoration:none
}

.customers li.customer a: hover .inner-wrapper {
    border-color:#a6a6a6
}

.customers-carousel .owl-item {
    width: 220px;
    padding: 0 1em;
    text-align: center
}

.customers-carousel .owl-item img {
    display: block;
    margin: 0 auto
}

@media (min-width: 768px) {
    .customers li.customer {
        height:320px;
        width: 250px
    }
}

@media (min-width: 992px) {
    .customers li.customer {
        height:290px;
        width: 322px
    }
}

@media (min-width: 1200px) {
    .customers li.customer {
        height:260px;
        width: 390px
    }
}

.stats .stat {
    font-size: 24px;
    text-align: center;
    color: #fff;
    margin-bottom: 10px
}

.stats .stat .well {
    background: no-repeat #55a79a;
    background-image: -webkit-radial-gradient(circle,#64b1a4,#4c968a);
    background-image: radial-gradient(circle,#64b1a4,#4c968a);
    padding: 20px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    position: relative;
    margin: 0 15px;
    min-height: 40px;
    line-height: 40px
}

.stats .stat .well:after,.stats .stat .well:before {
    top: 100%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none
}

.stats .stat .well:after {
    border-top-color: #55a79a;
    border-width: 5px;
    left: 50%;
    margin-left: -5px
}

.stats .stat .well:before {
    border-top-color: rgba(0,0,0,.01);
    border-width: 6px;
    left: 50%;
    margin-left: -6px
}

.stats .stat small {
    text-shadow: none;
    font-size: 12px;
    display: block;
    color: #494949;
    color: rgba(27,27,27,.8);
    margin: 10px 0 0;
    text-transform: uppercase
}

.team-member {
    padding-bottom: 1.5em;
    margin-bottom: 1.5em;
    border-bottom: 1px solid #e6e6e6
}

.team-member p {
    color: rgba(27,27,27,.8);
    font-size: 13px
}

.team-member p.member-since {
    font-size: 12px;
    text-decoration: underline
}

.team-member .media-heading,.team-member .name {
    margin: 5px 0 0;
    color: #000
}

.team-member .media-heading a,.team-member .name a {
    color: #000
}

.team-member .role,.team-member p.role {
    color: rgba(27,27,27,.8);
    font-size: 15px;
    margin: 0 0 5px
}

.team-member.team-member-active>* {
    opacity: .3;
    filter: alpha(opacity=30)
}

.team-member-full {
    padding-bottom: 3em;
    margin-bottom: 3em
}

.team-member-full p {
    font-size: 14px
}

.team-member-full .role,.team-member-full p.role {
    font-size: 16px
}

.team-grid .team-member {
    text-align: center;
    border: none
}

.team-grid .media-heading,.team-grid .name {
    margin: 5px 0
}

.date-md {
    padding-right: 0;
    text-align: center;
    display: none
}

.date-wrapper {
    color: #1b1b1b;
    text-align: center;
    margin: 0 0 1em;
    padding: 0;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    min-width: 50px;
    font-weight: 400!important;
    background: #f5f5f5
}

.date-wrapper span {
    font-size: 16px;
    display: block
}

.date-wrapper span.date-m {
    padding: 2px 4px;
    color: #fff;
    background: #55a79a;
    -webkit-border-radius: 2px 2px 0 0;
    -moz-border-radius: 2px 2px 0 0;
    border-radius: 2px 2px 0 0;
    font-size: 12px;
    text-transform: uppercase
}

.date-wrapper span.date-d {
    font-size: 26px;
    line-height: 1;
    padding: 5px 0;
    color: #1b1b1b;
    font-weight: 200!important;
    border: 1px solid #e4e4e4;
    border-top: none;
    -webkit-border-radius: 0 0 2px 2px;
    -moz-border-radius: 0 0 2px 2px;
    border-radius: 0 0 2px 2px
}

.date-wrapper-horizontal {
    display: inline-block;
    margin-bottom: 5px;
    line-height: 1;
    padding: 1px
}

.date-wrapper-horizontal span {
    font-size: 16px;
    display: inline-block
}

.date-wrapper-horizontal span.date-d,.date-wrapper-horizontal span.date-m {
    font-size: 13px;
    line-height: 13px;
    padding: 3px 6px;
    -webkit-border-radius: 2px 0 0 2px;
    -moz-border-radius: 2px 0 0 2px;
    border-radius: 2px 0 0 2px
}

.date-wrapper-horizontal span.date-m {
    font-size: 12px;
    line-height: 18px
}

.date-wrapper-horizontal span.date-d {
    font-weight: 800;
    padding-left: 2px;
    border: none
}

.author {
    font-size: 12px;
    text-align: center
}

.author i {
    display: block
}

.sections,.tags {
    font-size: 12px;
    text-transform: uppercase
}

.sections .tag,.tags .tag {
    color: #55a79a
}

.sections .type,.tags .type {
    color: #1b1b1b
}

.tag-cloud .tag,.tag-cloud span {
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: #f5f5f5;
    display: inline-block;
    padding: 4px 8px;
    margin: 2px 0;
    font-size: 13px;
    text-transform: uppercase
}

.tag-cloud .tag:hover,.tag-cloud span: hover {
    background:#f1f1f1
}

.blog-post {
    margin-bottom: 3em
}

.blog-post .title,.blog-roll .title {
    margin: 0 0 10px;
    line-height: 1
}

.blog-post .meta,.blog-roll .meta {
    font-size: 12px;
    margin-bottom: 5px
}

.blog-post .blog-post,.blog-post .media,.blog-roll .blog-post,.blog-roll .media {
    padding-bottom: 3em;
    margin-bottom: 3em;
    border-bottom: 1px solid #e6e6e6
}

.blog-post .links,.blog-roll .links {
    margin-top: .5em
}

.blog-post .blog-media,.blog-post .media-object,.blog-roll .blog-media,.blog-roll .media-object {
    max-width: 100%
}

.blog-post .pagination,.blog-roll .pagination {
    display: block
}

.blog-roll-mini .blog-post,.blog-roll-mini .media {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #e6e6e6
}

.blog-roll-mini .blog-post:last-child,.blog-roll-mini .media:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none
}

.blog-roll-mini .blog-post h4,.blog-roll-mini .blog-post h5,.blog-roll-mini .blog-post h6,.blog-roll-mini .media h4,.blog-roll-mini .media h5,.blog-roll-mini .media h6 {
    margin: 0
}

.blog-timeline .blog-post,.blog-timeline .media {
    padding-bottom: 15px;
    margin-bottom: 0;
    border-bottom: 3px solid #e6e6e6
}

.blog-grid .blog-post {
    border: 1px solid #e6e6e6;
    border-bottom: 3px solid #55a79a;
    padding: 15px;
    margin-bottom: 30px;
    background: #fff
}

.blog-grid .blog-media .flexslider {
    min-height: 140px
}

.blog-post .media-body .lead {
    margin: .5em 0;
    padding: 1em 0;
    font-size: 1.6em
}

.blog-post .btn-link {
    color: #000
}

.post-author,.post-block,.post-related-content,.post-share,.post-tag-cloud,.post-to-post-pager {
    margin-top: 2em
}

.post-author .post-author:first-child,.post-author .post-block:first-child,.post-author .post-related-content:first-child,.post-author .post-share:first-child,.post-author .post-tag-cloud:first-child,.post-author .post-to-post-pager:first-child,.post-block .post-author:first-child,.post-block .post-block:first-child,.post-block .post-related-content:first-child,.post-block .post-share:first-child,.post-block .post-tag-cloud:first-child,.post-block .post-to-post-pager:first-child,.post-related-content .post-author:first-child,.post-related-content .post-block:first-child,.post-related-content .post-related-content:first-child,.post-related-content .post-share:first-child,.post-related-content .post-tag-cloud:first-child,.post-related-content .post-to-post-pager:first-child,.post-share .post-author:first-child,.post-share .post-block:first-child,.post-share .post-related-content:first-child,.post-share .post-share:first-child,.post-share .post-tag-cloud:first-child,.post-share .post-to-post-pager:first-child,.post-tag-cloud .post-author:first-child,.post-tag-cloud .post-block:first-child,.post-tag-cloud .post-related-content:first-child,.post-tag-cloud .post-share:first-child,.post-tag-cloud .post-tag-cloud:first-child,.post-tag-cloud .post-to-post-pager:first-child,.post-to-post-pager .post-author:first-child,.post-to-post-pager .post-block:first-child,.post-to-post-pager .post-related-content:first-child,.post-to-post-pager .post-share:first-child,.post-to-post-pager .post-tag-cloud:first-child,.post-to-post-pager .post-to-post-pager:first-child {
    margin-top: 0
}

.post-to-post-pager {
    border-bottom: 1px solid #eee;
    border-top: 1px solid #eee;
    background: #f6f6f6;
    padding: 1em;
    margin-top: 2em
}

.post-to-post-pager:after,.post-to-post-pager:before {
    content: " ";
    display: table
}

.post-to-post-pager:after {
    clear: both
}

.post-to-post-pager .previous {
    float: left
}

.post-to-post-pager .next {
    float: right
}

.post-share {
    margin-top: 2em
}

.post-share h5 {
    font-size: 12px;
    margin-bottom: 5px
}

.post-related-content .blog-post {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 1em
}

.comments {
    margin-top: 3em
}

.comments h3 {
    font-weight: 100!important;
    margin-bottom: 20px
}

.comments .media-object {
    max-width: 60px;
    margin-top: 0
}

.comments .media-body {
    margin-top: 0
}

.comments .media-body .meta {
    margin: 0 0 5px;
    display: block
}

.comments .comment-form {
    margin-top: 2em
}

@media (min-width: 992px) {
    .date-md {
        display:block
    }

    .blog-post.blog-list,.blog-roll.blog-list {
        padding-left: 15px;
        padding-right: 15px
    }

    .blog-post .meta,.blog-roll .meta {
        display: none
    }

    .blog-roll-mini .blog-post div[class*=col-]:first-child,.blog-roll-mini .media div[class*=col-]:first-child {
        padding-right: 0
    }
}

.project {
    margin-bottom: 2em
}

.projects-grid .project {
    margin-bottom: 30px;
    padding: 5px;
    background: #f3f3f3;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px
}

.projects-grid .project .overlay {
    top: 5px;
    bottom: 5px;
    left: 5px;
    right: 5px
}

.page-elements h3.title-divider {
    margin-top: 2em
}

.error-code {
    margin: 0
}

.error-message {
    margin: 0 0 1em
}

.error-details {
    margin: 0 0 2em
}
